/* ===== LIORA PERFUMES - CSS COMPLETO ===== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: #5c0414;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(92, 4, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.02);
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    color: #dec49d;
    cursor: pointer;
    font: inherit;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    line-height: 1;
}

.nav-item-dropdown .dropdown-toggle:hover {
    color: #9b6632;
    transform: translateY(-1px);
}

.nav-item-dropdown .dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #9b6632;
    transition: width 0.3s ease;
}

.nav-item-dropdown .dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #ffffff;
    padding: 0.75rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: none;
    min-width: 240px;
    z-index: 1200;
    border: 1px solid rgba(155, 102, 50, 0.1);
}

.dropdown-menu.open {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-menu li + li {
    border-top: 1px solid rgba(155, 102, 50, 0.08);
}

.dropdown-menu a {
    color: #5c0414;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    color: #9b6632;
    background: rgba(155, 102, 50, 0.08);
    padding-left: 1.5rem;
}

.dropdown-empty {
    display: block;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.nav-link {
    text-decoration: none;
    color: #dec49d;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #9b6632;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #9b6632;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #ffffff;
    font-weight: 600;
    background: rgba(155, 102, 50, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link.active::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container {
    position: relative;
}

.search-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #dec49d;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(222, 196, 157, 0.1);
    color: #9b6632;
    transform: scale(1.1);
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    min-width: 300px;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1001;
}

.search-box.active {
    display: flex;
}

.search-input {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #9b6632;
}

.search-submit, .search-close {
    background: #9b6632;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.search-submit:hover, .search-close:hover {
    background: #5c0414;
    transform: translateY(-1px);
}

.search-close {
    background: #dc3545;
}

.search-close:hover {
    background: #c82333;
}

.cart-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #dec49d;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    background: rgba(222, 196, 157, 0.1);
    color: #9b6632;
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #9b6632;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #dec49d;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #5c0414;
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
    width: 100vw !important;
    max-width: none !important;
}

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(222, 196, 157, 0.2);
}

.mobile-logo-image {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #dec49d;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1003;
    position: relative;
    pointer-events: auto;
}

.mobile-menu-close:hover {
    background: rgba(222, 196, 157, 0.1);
    color: #9b6632;
}

.mobile-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-search-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid rgba(222, 196, 157, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.mobile-search-input::placeholder {
    color: rgba(222, 196, 157, 0.7);
}

.mobile-search-input:focus {
    border-color: #9b6632;
    background: rgba(255, 255, 255, 0.2);
}

.mobile-search-btn {
    background: #9b6632;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search-btn:hover {
    background: #5c0414;
    transform: scale(1.05);
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mobile-nav-list li {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: block;
    color: #dec49d;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background: rgba(222, 196, 157, 0.1);
    color: #9b6632;
    transform: translateX(5px);
}

.mobile-nav-dropdown .mobile-dropdown-menu {
    display: none;
    margin-left: 0.75rem;
    padding-left: 0.6rem;
    border-left: 2px solid rgba(222, 196, 157, 0.25);
}

.mobile-nav-dropdown .mobile-dropdown-menu li {
    list-style: none;
}

.mobile-nav-dropdown .mobile-dropdown-menu.open {
    display: block;
}

.mobile-dropdown-link {
    display: block;
    padding: 0.65rem 0;
    color: #f4e8d7;
    text-decoration: none;
    font-size: 0.95rem;
}

.mobile-dropdown-link:hover {
    color: #ffffff;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(222, 196, 157, 0.2);
}

.mobile-cart {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #dec49d;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-cart:hover {
    background: rgba(222, 196, 157, 0.1);
    color: #9b6632;
}

.mobile-cart i {
    font-size: 1.3rem;
}

/* Garantir que o menu mobile ocupe toda a tela */
@media (max-width: 768px) {
    .mobile-menu {
        width: 100vw !important;
        max-width: none !important;
    }
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.search-overlay.active {
    display: block;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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


/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    z-index: 10000;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 350px;
    border-left: 4px solid #3498db;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #27ae60;
}

.notification-error {
    border-left-color: #e74c3c;
}

.notification-warning {
    border-left-color: #f39c12;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-content i {
    font-size: 18px;
    color: #3498db;
}

.notification-success .notification-content i {
    color: #27ae60;
}

.notification-error .notification-content i {
    color: #e74c3c;
}

.notification-warning .notification-content i {
    color: #f39c12;
}

.notification-content span {
    font-weight: 500;
    color: #2c3e50;
}

/* ===== PRODUCT PAGE ===== */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #9b6632;
}

.breadcrumb-separator {
    color: #adb5bd;
}

.breadcrumb-current {
    color: #2c3e50;
    font-weight: 500;
}

.product-page {
    padding: 3rem 0 2rem 0;
    background: white;
    margin-top: 2rem;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Desktop features - show only on desktop */
.desktop-features {
    display: block !important;
}

.mobile-features {
    display: none !important;
}


.main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: #9b6632;
}

.thumbnail:hover {
    border-color: #dec49d;
}

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

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-breadcrumb {
    margin-bottom: 0.5rem;
}

.product-brand {
    color: #9b6632;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-size {
    margin-bottom: 0.8rem;
}

.size-label {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.size-options {
    display: flex;
    gap: 0.3rem;
}

.size-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 40px;
}

.size-btn:hover {
    background: #e9ecef;
    border-color: #dec49d;
}

.size-btn.active {
    background: #dec49d;
    border-color: #dec49d;
    color: white;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ffc107;
    font-size: 1rem;
}

.rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #9b6632;
}

.original-price {
    font-size: 1.2rem;
    color: #adb5bd;
    text-decoration: line-through;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-description {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #9b6632;
}

.product-description h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-description p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-description p:last-child {
    margin-bottom: 0;
}

.product-features {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.product-features h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #6c757d;
}

.product-features li i {
    color: #27ae60;
    font-size: 0.9rem;
}

.product-options {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f8f9fa;
    border-color: #9b6632;
    color: #9b6632;
}

#productQuantity {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-weight: 600;
    color: #2c3e50;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.add-to-cart-btn,
.whatsapp-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    min-height: 48px;
}

.add-to-cart-btn {
    background: #9b6632;
    color: #ffffff;
    border: 1px solid #9b6632;
    box-shadow: 0 6px 16px rgba(155, 102, 50, 0.25);
}

.add-to-cart-btn:hover {
    background: #5c0414;
    border-color: #5c0414;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(92, 4, 20, 0.3);
}

.whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30, 190, 93, 0.3);
}

.product-page .whatsapp-btn {
    min-height: 40px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}


.product-shipping {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.shipping-info h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shipping-info h3 i {
    color: #27ae60;
}

.shipping-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shipping-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #6c757d;
}

.shipping-info li i {
    color: #27ae60;
    font-size: 0.9rem;
}

.related-products {
    background: #f8f9fa;
    padding: 3rem 0;
}

.related-products h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* ===== RESPONSIVE PRODUCT PAGE ===== */
@media (max-width: 768px) {
    .product-page {
        padding: 2.5rem 0 2rem 0;
        margin-top: 1.5rem;
    }
    
    .product-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Hide desktop features, show mobile features */
    .desktop-features {
        display: none !important;
    }
    
    .mobile-features {
        display: block !important;
    }
    
    
    .main-image {
        height: 300px;
    }
    
    .product-gallery .product-features {
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .add-to-cart-btn, .whatsapp-btn {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .product-page {
        padding: 2rem 0 1rem 0;
        margin-top: 1rem;
    }
    
    .product-details {
        gap: 1.5rem;
    }
    
    
    .main-image {
        height: 250px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
    
    .product-description,
    .product-features,
    .product-options,
    .product-shipping {
        padding: 1rem;
    }
    
    .product-gallery .product-features {
        padding: 0.8rem;
        margin-top: 0.5rem;
    }
    
    /* Hide desktop features, show mobile features */
    .desktop-features {
        display: none !important;
    }
    
    .mobile-features {
        display: block !important;
    }
    
    .add-to-cart-btn, .whatsapp-btn {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: 600;
    }
    
    .related-products h2 {
        font-size: 1.5rem;
    }
    
    /* Botão Comprar Agora específico mobile - apenas na página do produto */
    .product-page .whatsapp-btn {
        min-height: 42px !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    z-index: 10000;
    transition: right 0.3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-sidebar.active .cart-sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa, #ffffff);
}

.cart-sidebar-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.cart-sidebar-close {
    background: none;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.cart-sidebar-close:hover {
    background: #f8f9fa;
    color: #2c3e50;
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
}

.cart-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.cart-empty h4 {
    font-size: 18px;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.cart-empty p {
    color: #7f8c8d;
    margin: 0 0 24px 0;
    line-height: 1.4;
}

.continue-shopping-btn {
    background: linear-gradient(135deg, #9b6632, #7a4f28);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.continue-shopping-btn:hover {
    background: linear-gradient(135deg, #5c0414, #4a0310);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 4, 20, 0.3);
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    flex-shrink: 0;
}

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

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.cart-item-brand {
    font-size: 12px;
    color: #7f8c8d;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: #9b6632;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 4px 8px;
}

.quantity-btn {
    background: none;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.quantity-number {
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
    min-width: 16px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 12px;
}

.cart-item-remove:hover {
    background: #f8d7da;
}

.cart-sidebar-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px;
    background: #fafafa;
}

.cart-summary {
    margin-bottom: 20px;
}

.cart-subtotal,
.cart-shipping,
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.cart-subtotal,
.cart-shipping {
    color: #7f8c8d;
}

.cart-total {
    font-weight: 700;
    font-size: 16px;
    color: #2c3e50;
    border-top: 1px solid #e9ecef;
    margin-top: 8px;
    padding-top: 12px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-continue {
    background: white;
    border: 2px solid #e9ecef;
    color: #2c3e50;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-continue:hover {
    border-color: #9b6632;
    color: #9b6632;
    background: rgba(155, 102, 50, 0.05);
}

.cart-checkout {
    background: linear-gradient(135deg, #9b6632, #7a4f28);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-checkout:hover {
    background: linear-gradient(135deg, #5c0414, #4a0310);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 4, 20, 0.3);
}

/* ===== QUIZ MODAL - NOVO DESIGN ===== */
.quiz-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.quiz-modal.active {
    display: flex !important;
}

.quiz-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.quiz-modal-container {
    position: relative;
    background: white;
    border-radius: 24px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.4s ease;
    display: flex;
    flex-direction: column;
}

.quiz-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 32px 24px 32px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa, #ffffff);
}

.quiz-header-content {
    flex: 1;
}

.quiz-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.quiz-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.4;
}

.quiz-close-btn {
    background: none;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 16px;
}

.quiz-close-btn:hover {
    background: #f8f9fa;
    color: #2c3e50;
    transform: scale(1.1);
}

.quiz-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 32px;
}

.quiz-progress-container {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

.quiz-progress-bar {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9b6632, #7a4f28);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 20%;
}

.quiz-progress-text {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
    white-space: nowrap;
}

.quiz-content {
    padding: 32px 0;
    min-height: 400px;
}

.quiz-question {
    display: none;
    animation: fadeIn 0.3s ease;
}

.quiz-question.active {
    display: block;
}

.question-header {
    text-align: center;
    margin-bottom: 32px;
}

.question-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.question-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.4;
}

.question-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.question-options.multiple-select {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.option-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    user-select: none;
    min-height: 100px;
}

.option-btn:hover {
    border-color: #9b6632;
    background: rgba(155, 102, 50, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(155, 102, 50, 0.15);
}

.option-btn.selected {
    background: linear-gradient(135deg, #9b6632, #7a4f28);
    border-color: #9b6632;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(155, 102, 50, 0.3);
}

.option-btn.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.option-icon {
    font-size: 32px;
    line-height: 1;
}

.option-text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.quiz-result {
    text-align: center;
    padding: 40px 20px;
}

.result-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: bounce 0.6s ease;
}

.result-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.result-description {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.result-btn {
    background: linear-gradient(135deg, #9b6632, #7a4f28);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(155, 102, 50, 0.3);
}

.result-btn:hover {
    background: linear-gradient(135deg, #5c0414, #4a0310);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(92, 4, 20, 0.4);
}

.quiz-modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 32px 32px 32px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.quiz-nav-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.quiz-nav-btn:hover:not(:disabled) {
    border-color: #9b6632;
    background: rgba(155, 102, 50, 0.05);
    color: #9b6632;
    transform: translateY(-2px);
}

.quiz-nav-btn:disabled {
    background: #f8f9fa;
    color: #bdc3c7;
    cursor: not-allowed;
    border-color: #e9ecef;
}

.next-btn {
    background: linear-gradient(135deg, #9b6632, #7a4f28);
    color: white;
    border-color: #9b6632;
}

.next-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #5c0414, #4a0310);
    border-color: #5c0414;
    color: white;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.quiz-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.quiz-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.quiz-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.quiz-modal-close:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.quiz-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    position: relative;
    min-height: 400px;
}

.quiz-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quiz-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.quiz-step.active {
    opacity: 1;
    transform: translateX(0);
}

.quiz-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.quiz-options.quiz-multiple {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.quiz-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    z-index: 1;
}

.quiz-option:hover {
    border-color: #9b6632;
    background: rgba(155, 102, 50, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 102, 50, 0.25);
}

.quiz-option.selected {
    background: linear-gradient(135deg, #9b6632, #7a4f28);
    border-color: #9b6632;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(155, 102, 50, 0.4);
    font-weight: 700;
}

.quiz-option.selected::before {
    content: '✓';
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 0.8rem;
    font-weight: bold;
}

.quiz-results {
    text-align: center;
    padding: 1.5rem;
}

.quiz-results h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.quiz-results p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.quiz-progress {
    margin: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9b6632, #5c0414);
    border-radius: 3px;
    transition: width 0.5s ease;
    width: 20%;
}

.progress-text {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-weight: 500;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin: 0 2rem 2rem 2rem;
    padding-top: 1rem;
}

.quiz-btn {
    background: linear-gradient(135deg, #9b6632, #7a4f28);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(155, 102, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.quiz-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #5c0414, #4a0310);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 4, 20, 0.4);
}

.quiz-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.quiz-finish {
    background: #5c0414;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.quiz-finish:hover {
    background: #9b6632;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 102, 50, 0.3);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}


.cta-btn {
    background: #9b6632;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cta-btn:hover {
    background: #5c0414;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(92, 4, 20, 0.3);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== RESPONSIVE HERO IMAGES ===== */
.slide-image .desktop-image {
    display: block;
}

.slide-image .mobile-image {
    display: none;
}

@media (max-width: 768px) {
    .slide-image .desktop-image {
        display: none;
    }
    
    .slide-image .mobile-image {
        display: block;
    }
}


/* ===== INFO BANNER ===== */
.info-banner {
    background: #f8f9fa;
    padding: 3rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 2rem;
    color: #5c0414;
    min-width: 40px;
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== PRODUCT SECTIONS ===== */
.products-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.products-section:nth-child(even) {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.products-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    align-items: center;
}

.products-grid.list-view .product-image img {
    height: 140px;
}

.products-grid.list-view .product-actions {
    justify-content: flex-start;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(222, 196, 157, 0.2);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(222, 196, 157, 0.4);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

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

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

.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.product-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-brand {
    color: #7f8c8d;
    font-size: 0.75rem;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.3rem 0;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    color: #9b6632;
}

.original-price {
    font-size: 0.8rem;
    color: #7f8c8d;
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin: 0.3rem 0;
}

.product-rating i {
    color: #f39c12;
    font-size: 0.7rem;
}

.product-rating span {
    color: #7f8c8d;
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.product-card .add-to-cart-btn,
.product-card .whatsapp-btn {
    flex: 1;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.2px;
    min-height: 32px;
}

.product-card .add-to-cart-btn {
    background: #9b6632;
    border: 1px solid #9b6632;
    box-shadow: none;
}

.product-card .add-to-cart-btn:hover {
    background: #5c0414;
    border-color: #5c0414;
}

.product-card .whatsapp-btn {
    background: #25d366;
    box-shadow: none;
}

.product-card .whatsapp-btn:hover {
    background: #1ebe5d;
}

/* ===== FOOTER ===== */
.footer {
    background: #5c0414;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.footer-section .logo {
    margin-bottom: 1.5rem;
}

.footer-section .logo-image {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-section .logo-image:hover {
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(30deg);
    transform: scale(1.05);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dec49d;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #dec49d;
    color: #5c0414;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #bdc3c7;
}

.payment-methods i {
    font-size: 1.5rem;
    color: #dec49d;
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .slide-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        height: 50vh;
        min-height: 300px;
    }
    
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .product-info h3 {
        font-size: 0.85rem;
    }
    
    .current-price {
        font-size: 0.9rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-info {
        padding: 0.6rem;
        gap: 0.4rem;
    }
    
    .product-info h3 {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0.2rem;
    }
    
    .product-brand {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }
    
    .current-price {
        font-size: 0.8rem;
    }
    
    .original-price {
        font-size: 0.7rem;
    }
    
    .product-rating {
        gap: 0.1rem;
        margin-bottom: 0.3rem;
    }
    
    .product-rating i {
        font-size: 0.6rem;
    }
    
    .product-rating span {
        font-size: 0.6rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .product-card .add-to-cart-btn, .product-card .whatsapp-btn {
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
        min-height: 28px;
        width: 100%;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .quiz-container {
        padding: 1rem;
        margin: 0.5rem;
        max-width: 95%;
    }
    
    .quiz-header h2 {
        font-size: 1.5rem;
    }
    
    .quiz-header p {
        font-size: 0.9rem;
    }
    
    .quiz-step h3 {
        font-size: 1.1rem;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .quiz-options.quiz-multiple {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quiz-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .quiz-navigation {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quiz-btn {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .quiz-finish {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .quiz-modal-container {
        max-width: 95%;
        margin: 10px;
    }
    
    .quiz-modal-header {
        padding: 24px 20px 20px 20px;
    }
    
    .quiz-title {
        font-size: 24px;
    }
    
    .quiz-modal-body {
        padding: 0 20px;
    }
    
    .quiz-progress-container {
        padding: 20px 0;
    }
    
    .quiz-content {
        padding: 24px 0;
    }
    
    .question-title {
        font-size: 20px;
    }
    
    .question-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .question-options.multiple-select {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .option-btn {
        padding: 16px 12px;
        min-height: 80px;
    }
    
    .option-icon {
        font-size: 24px;
    }
    
    .option-text {
        font-size: 13px;
    }
    
    .quiz-modal-footer {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
    }
    
    .quiz-nav-btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    /* Cart Sidebar Mobile */
    .cart-sidebar {
        max-width: 100%;
    }
    
    .cart-sidebar-header {
        padding: 20px 16px;
    }
    
    .cart-sidebar-header h3 {
        font-size: 18px;
    }
    
    .cart-sidebar-body {
        padding: 16px;
    }
    
    .cart-item {
        padding: 12px 0;
    }
    
    .cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    .cart-item-name {
        font-size: 13px;
    }
    
    .cart-item-brand {
        font-size: 11px;
    }
    
    .cart-item-price {
        font-size: 13px;
    }
    
    .cart-sidebar-footer {
        padding: 16px;
    }
    
    .cart-actions {
        gap: 10px;
    }
    
    .cart-continue,
    .cart-checkout {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    /* Footer logo mobile */
    .footer-section .logo-image {
        height: 40px;
    }
    
    .quiz-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .quiz-content {
        padding: 1.5rem;
    }
    
    .quiz-progress {
        margin: 1rem 1.5rem;
    }
    
    .quiz-navigation {
        margin: 0 1.5rem 1.5rem 1.5rem;
    }
}

/* ===== CATEGORY PAGE STYLES ===== */
.category-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    border-bottom: 1px solid #e9ecef;
}

.category-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.category-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.category-title p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

.category-image {
    text-align: center;
}

.category-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-content {
    padding: 3rem 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ===== CATEGORY SIDEBAR ===== */
.category-sidebar {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.category-main {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-controls-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-controls-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ===== RESPONSIVE CATEGORY LAYOUT ===== */
@media (max-width: 1024px) {
    .category-layout {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .category-sidebar {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .category-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .category-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-sidebar {
        position: static;
        max-height: none;
        order: 2;
    }
    
    .category-main {
        order: 1;
        padding: 1.5rem;
    }
    
    .category-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .category-controls-right {
        justify-content: space-between;
    }
    
    .sort-select {
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .category-header {
        padding: 2rem 0;
    }
    
    .category-title h1 {
        font-size: 2rem;
    }
    
    .category-content {
        padding: 2rem 0;
    }
    
    .category-main {
        padding: 1rem;
    }
    
    .category-sidebar {
        padding: 1rem;
    }
}

/* ===== SHOP PAGE STYLES ===== */
.shop-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    border-bottom: 1px solid #e9ecef;
}

.shop-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.shop-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.shop-title p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

.shop-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #9b6632;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-content {
    padding: 3rem 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ===== SHOP SIDEBAR ===== */
.shop-sidebar {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.clear-filters-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.clear-filters-btn:hover {
    color: #c82333;
}

/* ===== PRICE FILTER ===== */
.price-range {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-inputs input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
}

.price-inputs span {
    color: #7f8c8d;
    font-weight: 500;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.apply-filter-btn {
    background: #9b6632;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-filter-btn:hover {
    background: #5c0414;
    transform: translateY(-1px);
}

/* ===== FILTER OPTIONS ===== */
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
}

.filter-option:hover {
    background: #f8f9fa;
}

.filter-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.filter-option input[type="checkbox"]:checked + .checkmark {
    background: #9b6632;
    border-color: #9b6632;
}

.filter-option input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.filter-option span:not(.checkmark) {
    flex: 1;
    font-size: 0.9rem;
    color: #2c3e50;
}

.count {
    font-size: 0.8rem;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
}

/* ===== SHOP MAIN CONTENT ===== */
.shop-main {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 1rem;
}

.shop-controls-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.results-info {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.shop-controls-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e9ecef;
    background: white;
    color: #7f8c8d;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    border-color: #9b6632;
    color: #9b6632;
}

.view-btn.active {
    background: #9b6632;
    border-color: #9b6632;
    color: white;
}

.sort-select {
    padding: 0.6rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: white;
    color: #2c3e50;
    font-size: 0.9rem;
    cursor: pointer;
    min-width: 180px;
}

.sort-select:focus {
    outline: none;
    border-color: #9b6632;
}

/* ===== PRODUCT BADGES ===== */
.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.new {
    background: #27ae60;
    color: white;
}

.badge.sale {
    background: #e74c3c;
    color: white;
}

.badge.premium {
    background: #f39c12;
    color: white;
}

.badge.bestseller {
    background: #9b6632;
    color: white;
}

/* ===== PRODUCT ACTIONS OVERLAY ===== */
.product-actions-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

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

.product-actions-overlay button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.product-actions-overlay button:hover {
    background: #9b6632;
    color: white;
    transform: scale(1.1);
}

/* ===== LOAD MORE SECTION ===== */
.load-more-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.load-more-btn {
    background: linear-gradient(135deg, #9b6632, #7a4f28);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #5c0414, #4a0310);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 4, 20, 0.3);
}

/* ===== RESPONSIVE SHOP LAYOUT ===== */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .shop-sidebar {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .shop-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .shop-stats {
        justify-content: center;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shop-sidebar {
        position: static;
        max-height: none;
        order: 2;
    }
    
    .shop-main {
        order: 1;
        padding: 1.5rem;
    }
    
    .shop-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .shop-controls-right {
        justify-content: space-between;
    }
    
    .sort-select {
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .shop-header {
        padding: 2rem 0;
    }
    
    .shop-title h1 {
        font-size: 2rem;
    }
    
    .shop-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .shop-content {
        padding: 2rem 0;
    }
    
    .shop-main {
        padding: 1rem;
    }
    
    .shop-sidebar {
        padding: 1rem;
    }
    
    .sidebar-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

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

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.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; }

/* ===== PAGE CONTENT STYLES ===== */
.page-content {
    padding: 6rem 0 4rem;
    min-height: 60vh;
    margin-top: 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(155, 102, 50, 0.2);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #5c0414;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
    font-style: italic;
}

.page-body {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #2c3e50;
}

.page-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5c0414;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(155, 102, 50, 0.15);
}

.page-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #9b6632;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-body p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.page-body ul,
.page-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-body li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.page-body a {
    color: #9b6632;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-body a:hover {
    color: #5c0414;
    text-decoration: underline;
}

.page-body strong {
    color: #5c0414;
    font-weight: 600;
}

.page-body em {
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .page-content {
        padding: 4rem 0 2rem;
        margin-top: 1rem;
    }

    .page-header {
        padding-top: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-body {
        padding: 0 1rem;
    }

    .page-body h2 {
        font-size: 1.5rem;
    }

    .page-body h3 {
        font-size: 1.2rem;
    }
}