body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f3f6f7;
}
header .navbar-brand {
  font-weight: bold;
  font-size: 1.3em;
}
footer {
  background: #222;
  color: #fff;
}
footer h5 {
  font-size: 1em;
  text-transform: uppercase;
  margin-bottom: 1em;
  letter-spacing: 1px;
}
footer a {
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: #e3c730;
}
.btn-primary, .btn-secondary, .btn-outline-dark {
  border-radius: 30px;
  padding: 0.6em 2em;
  font-weight: 600;
  letter-spacing: 1px;
  margin-right: 0.5em;
}
/* Навигация по категориям */
.main-nav {
    border-bottom: 1px solid #e9ecef;
}

.main-nav .nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
}

.main-nav .nav-link:hover {
    color: #e3c730;
}

/* Контент страницы политики конфиденциальности */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-section h2 {
    color: #333;
    margin-bottom: 2rem;
}

.content-section h3 {
    color: #444;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-section p {
    color: #666;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.btn-link {
    color: #666 !important;
    text-decoration: none !important;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: #e3c730 !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content-section {
        padding: 0 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .main-nav .nav-link {
        margin: 0 1rem !important;
        display: block;
        text-align: center;
    }
}
/* Business Philosophy Page Specific Styles */
.philosophy-image-container {
    position: relative;
}

.philosophy-text {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-section {
    margin-bottom: 4rem;
}

.value-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.value-image-placeholder {
    min-height: 300px;
    background-color: #f8f9fa;
}

/* Company Values Section */
.value-section h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.value-section p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Image styling */
.value-section img {
    transition: transform 0.3s ease;
}

.value-section img:hover {
    transform: scale(1.02);
}

/* Badge colors */
.badge.bg-danger {
    background-color: #dc3545 !important;
}

.badge.bg-success {
    background-color: #28a745 !important;
}

/* Corporate philosophy section */
.philosophy-text strong {
    color: #333;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .philosophy-text {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .value-section {
        margin-bottom: 3rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .value-badge {
        position: static !important;
        text-align: center;
        margin-top: 1rem !important;
    }
    
    .value-image-placeholder {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .philosophy-text {
        padding: 1rem;
    }
    
    .value-section img {
        height: 250px !important;
    }
}
/* Women Category Page Specific Styles */
.active-category {
    color: #e3c730 !important;
    border-bottom: 2px solid #e3c730;
}

/* Product Categories Filter */
.product-categories .btn-outline-primary {
    border-color: #e3c730;
    color: #e3c730;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.product-categories .btn-outline-primary:hover {
    background-color: #e3c730;
    border-color: #e3c730;
    color: white;
}

/* Products Grid */
.products-grid {
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

.product-info {
    padding: 1rem;
    text-align: center;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* Featured Product Badge */
.featured {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.featured-badge .badge {
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 15px;
    padding: 0.4rem 0.8rem;
}

/* Category Description */
.lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 1400px) {
    .product-image img {
        height: 320px;
    }
}

@media (max-width: 992px) {
    .product-image img {
        height: 250px;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .product-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .product-image img {
        height: 200px;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .product-categories .btn-outline-primary {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .product-image img {
        height: 160px;
    }
    
    .product-info {
        padding: 0.6rem;
    }
    
    .product-title {
        font-size: 0.75rem;
    }
    
    .products-grid {
        margin-top: 2rem;
    }
}

/* Loading Animation for Product Cards */
.product-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animation for Product Cards */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }
/* Imprint Page Specific Styles */
.imprint-content {
    max-width: 800px;
    margin: 0 auto;
}

.imprint-section {
    margin-bottom: 2.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #e3c730;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.info-card h2 {
    color: #e3c730;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-block {
    color: #666;
    line-height: 1.6;
}

.info-block p {
    margin-bottom: 0.8rem;
}

.info-block strong {
    color: #333;
    font-weight: 600;
}

/* Links styling */
.info-block a {
    color: #e3c730;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #d4b429;
    text-decoration: underline !important;
}

/* External link styling */
.info-block a[target="_blank"]::after {
    content: ' ↗';
    font-size: 0.8em;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .imprint-section {
        margin-bottom: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .info-card h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .info-card {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .info-card h2 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .info-block {
        font-size: 0.9rem;
    }
    
    .imprint-content {
        padding: 0 1rem;
    }
}

/* Animation Effects */
.info-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }
.info-card:nth-child(5) { animation-delay: 0.5s; }
.info-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography improvements */
.imprint-section h2 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-block p:last-child {
    margin-bottom: 0;
}

/* Print styles */
@media print {
    .info-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .info-card:hover {
        transform: none;
    }
    
    .info-block a {
        color: #333 !important;
        text-decoration: underline;
    }
    
    .info-block a[target="_blank"]::after {
        display: none;
    }
}
/* About Boiled Wool Page Specific Styles */
.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #e3c730;
}

.text-primary {
    color: #e3c730 !important;
}

/* Care Instructions Styling */
.care-instructions {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.care-item {
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.care-item:hover {
    background-color: #f8f9fa;
}

.care-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    margin-right: 1rem;
}

.care-icon img {
    max-width: 30px;
    max-height: 30px;
}

.care-icon i {
    font-size: 1.5rem !important;
}

/* Alert Styling */
.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.alert-warning .fas {
    color: #ffc107;
}

/* Section Headings */
section h2 {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e3c730;
}

/* Text Styling */
.content-container p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-container .small {
    color: #888;
    font-style: italic;
}

/* Care Item Titles */
.care-item h4 {
    color: #333;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .care-instructions {
        padding: 1.5rem;
    }
    
    .care-item {
        padding: 0.8rem;
    }
    
    .care-icon {
        width: 50px;
        height: 50px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .care-icon img {
        max-width: 25px;
        max-height: 25px;
    }
}

@media (max-width: 576px) {
    .content-block {
        padding: 1rem;
    }
    
    .care-instructions {
        padding: 1rem;
    }
    
    .care-item {
        padding: 0.5rem;
    }
    
    .care-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.5rem;
    }
    
    .care-item h4 {
        font-size: 0.9rem;
    }
    
    .care-item .small {
        font-size: 0.8rem;
    }
}

/* Animation Effects */
.care-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.care-item:nth-child(1) { animation-delay: 0.1s; }
.care-item:nth-child(2) { animation-delay: 0.2s; }
.care-item:nth-child(3) { animation-delay: 0.3s; }
.care-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Block Animation */
.content-block {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
/* Men Category Page Specific Styles */
.men-products-grid {
    margin-top: 3rem;
}

/* Winner Badge Styling */
.product-card.winner {
    position: relative;
}

.winner-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.winner-badge .badge {
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 15px;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Featured Story Card */
.product-card.featured .story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(227, 199, 48, 0.95);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card.featured:hover .story-overlay {
    opacity: 1;
}

.story-text {
    color: white;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Gift Voucher Card */
.gift-voucher-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.gift-voucher-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.voucher-image {
    position: relative;
    height: 100%;
    min-height: 250px;
    background: #f8f9fa;
}

.voucher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voucher-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.voucher-badge .badge {
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 15px;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.voucher-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.voucher-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

.voucher-description {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.voucher-note {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Product Categories Filter */
.product-categories .btn-outline-primary {
    border-color: #e3c730;
    color: #e3c730;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.product-categories .btn-outline-primary:hover {
    background-color: #e3c730;
    border-color: #e3c730;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .voucher-content {
        padding: 1.5rem;
    }
    
    .voucher-image {
        min-height: 200px;
    }
    
    .story-overlay {
        padding: 1rem !important;
    }
    
    .story-text {
        font-size: 0.75rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .product-categories .btn-outline-primary {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .voucher-content {
        padding: 1rem;
    }
    
    .voucher-title {
        font-size: 1.2rem;
    }
    
    .voucher-description,
    .voucher-note {
        font-size: 0.85rem;
    }
    
    .men-products-grid {
        margin-top: 2rem;
    }
    
    .gift-voucher-card {
        margin-top: 1.5rem;
    }
}

/* Enhanced hover effects for men's products */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-card.winner:hover {
    box-shadow: 0 12px 24px rgba(220, 53, 69, 0.2);
}

.product-card.featured:hover {
    box-shadow: 0 12px 24px rgba(227, 199, 48, 0.2);
}

/* Loading Animation for Product Cards */
.product-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.gift-voucher-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animation for Product Cards */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }
.product-card:nth-child(9) { animation-delay: 0.9s; }
/* Terms and Conditions Page Specific Styles */
.terms-content {
    max-width: 100%;
}

/* Table of Contents Styles */
.toc-sidebar {
    top: 2rem;
}

.toc-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #e3c730;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.toc-card h3 {
    color: #e3c730;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    counter-reset: toc-counter;
}

.toc-list li {
    counter-increment: toc-counter;
    margin-bottom: 0.8rem;
}

.toc-list li::before {
    content: counter(toc-counter) ". ";
    font-weight: 600;
    color: #e3c730;
    margin-right: 0.5rem;
}

.toc-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
    line-height: 1.4;
}

.toc-link:hover {
    color: #e3c730;
    text-decoration: none;
}

.toc-link.active {
    color: #e3c730;
    font-weight: 600;
}

/* Terms Sections Styles */
.terms-section {
    scroll-margin-top: 100px; /* For smooth scrolling with fixed header */
}

.section-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e3c730;
    font-size: 1.3rem;
}

.section-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 3px solid #e9ecef;
}

.section-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Paragraph numbering */
.section-content p {
    position: relative;
    padding-left: 1rem;
}

/* Highlight important terms */
.section-content strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .toc-sidebar {
        position: static !important;
        margin-bottom: 2rem;
    }
    
    .toc-card {
        padding: 1.5rem;
    }
    
    .section-content {
        padding: 1.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .toc-card {
        padding: 1rem;
    }
    
    .section-content {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .section-content p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .toc-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .terms-section {
        margin-bottom: 2rem !important;
    }
    
    .section-content {
        padding: 0.8rem;
        border-radius: 8px;
    }
    
    .section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .section-content p {
        font-size: 0.85rem;
        line-height: 1.6;
        padding-left: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .toc-sidebar {
        display: none;
    }
    
    .section-content {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .terms-section {
        page-break-before: auto;
        page-break-after: auto;
    }
    
    .section-title {
        page-break-after: avoid;
    }
}

/* Smooth scrolling animation */
html {
    scroll-behavior: smooth;
}

/* Animation for sections */
.terms-section {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.terms-section:nth-child(1) { animation-delay: 0.1s; }
.terms-section:nth-child(2) { animation-delay: 0.2s; }
.terms-section:nth-child(3) { animation-delay: 0.3s; }
.terms-section:nth-child(4) { animation-delay: 0.4s; }
.terms-section:nth-child(5) { animation-delay: 0.5s; }
.terms-section:nth-child(6) { animation-delay: 0.6s; }
.terms-section:nth-child(7) { animation-delay: 0.7s; }
.terms-section:nth-child(8) { animation-delay: 0.8s; }
.terms-section:nth-child(9) { animation-delay: 0.9s; }
.terms-section:nth-child(10) { animation-delay: 1.0s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
/* About Loden and Wool Page Specific Styles */
.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-block {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #e3c730;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.content-block h2 {
    color: #e3c730;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.content-block h3 {
    color: #333;
    margin-bottom: 1rem;
}

.content-block p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-block .small {
    color: #888;
    font-style: italic;
}

/* Care Instructions Styling */
.care-instructions {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    margin-top: 1.5rem;
}

.care-item {
    padding: 1rem;
    border-radius: 8px;
    background: #fafafa;
    margin-bottom: 1rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.care-item:hover {
    background-color: #f5f5f5;
    border-color: #e3c730;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 199, 48, 0.1);
}

.care-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.temperature-icon {
    background: #007bff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.care-item h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.care-item p {
    color: #666;
    margin-bottom: 0.3rem;
}

.care-item strong {
    color: #e3c730;
    font-weight: 600;
}

/* Icon Colors */
.care-icon .fa-hand-paper {
    color: #17a2b8;
}

.care-icon .fa-times-circle {
    color: #dc3545;
}

.care-icon .fa-square {
    color: #6c757d;
}

.care-icon .fa-iron {
    color: #ffc107;
}

.care-icon .fa-circle {
    color: #17a2b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-block {
        padding: 2rem 1.5rem;
    }
    
    .care-instructions {
        padding: 1.5rem;
    }
    
    .care-item {
        padding: 1rem 0.8rem;
    }
    
    .care-icon {
        width: 60px;
        height: 60px;
    }
    
    .temperature-icon {
        width: 45px;
        height: 45px;
        font-size: 0.7rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .content-block {
        padding: 1.5rem 1rem;
    }
    
    .care-instructions {
        padding: 1rem;
    }
    
    .care-item {
        padding: 0.8rem 0.5rem;
    }
    
    .care-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .temperature-icon {
        width: 40px;
        height: 40px;
        font-size: 0.6rem;
    }
    
    .care-item h4 {
        font-size: 0.9rem;
    }
    
    .care-item .small {
        font-size: 0.8rem;
    }
}

/* Animation Effects */
.content-block {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.content-block:nth-child(1) { animation-delay: 0.1s; }
.content-block:nth-child(2) { animation-delay: 0.2s; }
.content-block:nth-child(3) { animation-delay: 0.3s; }
.content-block:nth-child(4) { animation-delay: 0.4s; }
.content-block:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .content-block {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .care-item {
        page-break-inside: avoid;
    }
}
/* Shop and Partner Page Specific Styles */
.partners-content {
    max-width: 1000px;
    margin: 0 auto;
}

.partner-section {
    margin-bottom: 2.5rem;
}

.partner-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem;
    border-left: 4px solid #e3c730;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.partner-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.partner-header h2 {
    color: #e3c730;
    flex: 1;
    margin-right: 1rem;
}

.location-badge {
    display: flex;
    align-items: center;
}

.location-badge i {
    color: #666;
}

.company-name {
    font-size: 1.1rem;
    color: #333;
}

.company-name small {
    color: #666;
    font-size: 0.9rem;
}

.partner-content address {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    font-style: normal;
    line-height: 1.6;
    border-left: 3px solid #e3c730;
}

.partner-content address i {
    width: 20px;
}

.contact-info {
    background: #f0f8ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #007bff;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: #e3c730;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d4b429;
    text-decoration: underline;
}

.special-note {
    padding: 0.5rem 0;
}

.partner-links {
    margin-top: 1rem;
}

.partner-links .btn {
    border-color: #e3c730;
    color: #e3c730;
    transition: all 0.3s ease;
}

.partner-links .btn:hover {
    background-color: #e3c730;
    border-color: #e3c730;
    color: white;
}

/* Badge Colors */
.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-info {
    background-color: #17a2b8 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

.badge.bg-primary {
    background-color: #007bff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partner-card {
        padding: 1.5rem;
    }
    
    .partner-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .partner-header h2 {
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }
    
    .location-badge {
        margin-bottom: 1rem;
    }
    
    .partner-content address {
        padding: 0.8rem;
    }
    
    .contact-info {
        padding: 0.8rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .partner-card {
        padding: 1rem;
    }
    
    .partner-content address {
        padding: 0.5rem;
    }
    
    .contact-info {
        padding: 0.5rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .partner-links .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animation Effects */
.partner-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }
.partner-card:nth-child(5) { animation-delay: 0.5s; }
.partner-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .partner-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .partner-card:hover {
        transform: none;
    }
    
    .contact-item a {
        color: #333 !important;
        text-decoration: underline;
    }
}
/* Right of Revocation Page Specific Styles */
.revocation-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-section {
    margin-bottom: 3rem;
}

.intro-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border-top: 5px solid #e3c730;
}

.intro-header i {
    color: #e3c730;
}

.intro-header h2 {
    color: #e3c730;
    margin-bottom: 1.5rem;
}

.intro-card .lead {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Section Cards */
.section-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #e3c730;
}

.section-title {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

/* Subsections */
.subsection {
    margin-bottom: 2rem;
}

.subsection-title {
    color: #555;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.subsection-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.subsection-content strong {
    color: #333;
    font-weight: 600;
}

.subsection-content a {
    color: #e3c730;
    text-decoration: none;
}

.subsection-content a:hover {
    color: #d4b429;
    text-decoration: underline;
}

/* Highlight Box */
.highlight-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.highlight-box p {
    margin: 0;
    color: #856404;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-box {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.info-box h4 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-box p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Warning Box */
.warning-box {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-left: 4px solid #dc3545;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.warning-box h4 {
    color: #721c24;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.warning-box ul {
    color: #721c24;
    margin: 0;
    padding-left: 1.5rem;
}

.warning-box li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Form Container */
.form-container {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.form-header {
    background: white;
    padding: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.form-header address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.form-header strong {
    color: #333;
    font-size: 1.1rem;
}

.form-body {
    padding: 2rem;
}

.form-notice {
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-fields {
    margin-bottom: 2rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-line {
    border-bottom: 2px solid #333;
    height: 2rem;
    display: block;
    margin: 0.5rem 0;
}

.form-line.inline {
    display: inline-block;
    width: 120px;
    margin: 0 0.5rem;
}

.form-line.short {
    width: 150px;
}

.separator {
    font-weight: 600;
    color: #333;
}

.form-note {
    font-style: italic;
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-card {
        padding: 2rem 1.5rem;
    }
    
    .section-card {
        padding: 2rem 1.5rem;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-box,
    .highlight-box,
    .warning-box {
        padding: 1rem;
    }
    
    .form-body {
        padding: 1.5rem;
    }
    
    .form-header {
        padding: 1.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .intro-card {
        padding: 1.5rem 1rem;
    }
    
    .section-card {
        padding: 1.5rem 1rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .form-line.inline {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .separator {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Print Styles */
@media print {
    .section-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .form-container {
        border: 2px solid #333;
    }
    
    .form-line {
        border-bottom: 1px solid #333;
    }
    
    .intro-card {
        background: white !important;
        border: 1px solid #ddd;
    }
}
