       body {
            box-sizing: border-box;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        body {
            font-family: 'Cormorant Garamond', Georgia, serif;
            background: #141414;
            color: #e8e8e8;
            overflow-x: hidden;
        }

        .page-wrapper {
            width: 100%;
            min-height: 100%;
            position: relative;
            overflow-y: auto;
        }

        /* Navigation Menu */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(139, 116, 91, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(13, 13, 13, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 2rem;
        }

        .nav-logo img {
            width: 120px;
            height: 90px;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .nav-logo:hover img {
            transform: scale(1.05);
        }

        .nav-center {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-center a {
            font-family: 'Cinzel', serif;
            color: #c4b5a0;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #8b745b;
            transition: width 0.3s ease;
        }

        .nav-center a:hover {
            color: #8b745b;
        }

        .nav-center a:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-icon {
            position: relative;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(139, 116, 91, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8b745b;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(139, 116, 91, 0.05);
        }

        .nav-icon:hover {
            background: rgba(139, 116, 91, 0.15);
            border-color: #8b745b;
            transform: translateY(-2px);
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            font-size: 0.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cinzel', serif;
        }

        /* Hamburger Menu 
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }
            */
            .hamburger {
    display: none;
    width: 28px;
    height: 22px;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

/*
        .hamburger span {
            width: 28px;
            height: 2px;
            background: #8b745b;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
*/
.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #8b745b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}


        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: rgba(13, 13, 13, 0.98);
            backdrop-filter: blur(20px);
            transition: right 0.4s ease;
            z-index: 999;
            padding-top: 80px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .mobile-menu a {
            font-family: 'Cinzel', serif;
            color: #c4b5a0;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            display: block;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(139, 116, 91, 0.1);
        }

        .mobile-menu a:hover {
            color: #8b745b;
            padding-left: 1rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 10000;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal-content {
            background: #1a1a1a;
            border: 1px solid rgba(139, 116, 91, 0.3);
            border-radius: 8px;
            max-width: 900px;
            width: 100%;
            max-height: 90%;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s ease;
        }

        .modal-header {
            padding: 2rem;
            border-bottom: 1px solid rgba(139, 116, 91, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #8b745b;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .modal-close {
            width: 35px;
            height: 35px;
            border: 1px solid rgba(139, 116, 91, 0.3);
            background: rgba(139, 116, 91, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #8b745b;
            font-size: 1.5rem;
        }

        .modal-close:hover {
            background: rgba(139, 116, 91, 0.2);
            border-color: #8b745b;
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2rem;
        }

        /* Image Modal */
        .image-modal .modal-content {
            max-width: 90%;
            max-height: 90%;
            background: transparent;
            border: none;
        }

        .image-modal img {
            width: 100%;
            height: auto;
            max-height: 80%;
            object-fit: contain;
            border-radius: 8px;
        }

        /* Cart Modal */
        .cart-empty {
            text-align: center;
            padding: 3rem 2rem;
            color: #a1a1a1;
        }

        .cart-empty-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .cart-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .cart-item {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background: rgba(139, 116, 91, 0.05);
            border: 1px solid rgba(139, 116, 91, 0.2);
            border-radius: 8px;
        }

        .cart-item-image {
            width: 100px;
            height: 100px;
            border-radius: 4px;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .cart-item-image:hover {
            transform: scale(1.05);
        }

        .cart-item-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .cart-item-name {
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #e8e8e8;
        }

        .cart-item-info {
            color: #a1a1a1;
            font-size: 0.9rem;
        }

        .cart-item-price {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #8b745b;
        }

        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 0.5rem;
        }
.cart-badge {
    display: none;
}

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(139, 116, 91, 0.1);
            border: 1px solid rgba(139, 116, 91, 0.3);
            border-radius: 4px;
            padding: 0.25rem;
        }

        .quantity-btn {
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            color: #8b745b;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quantity-btn:hover {
            background: rgba(139, 116, 91, 0.2);
            border-radius: 4px;
        }

        .quantity-value {
            min-width: 35px;
            text-align: center;
            font-family: 'Cinzel', serif;
            font-weight: 600;
            color: #e8e8e8;
        }

        .remove-btn {
            padding: 0.5rem 1rem;
            background: transparent;
            border: 1px solid rgba(220, 38, 38, 0.3);
            color: #dc2626;
            border-radius: 4px;
            font-family: 'Cinzel', serif;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .remove-btn:hover {
            background: rgba(220, 38, 38, 0.1);
            border-color: #dc2626;
        }

        .cart-summary {
            margin-top: 2rem;
            padding: 2rem;
            background: rgba(139, 116, 91, 0.05);
            border: 1px solid rgba(139, 116, 91, 0.2);
            border-radius: 8px;
        }

        .shipping-calculator {
            margin-bottom: 2rem;
        }

        .shipping-calculator label {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 0.95rem;
            color: #c4b5a0;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .cep-input-group {
            display: flex;
            gap: 0.5rem;
        }

        .cep-input {
            flex: 1;
            padding: 0.75rem;
            background: rgba(139, 116, 91, 0.1);
            border: 1px solid rgba(139, 116, 91, 0.3);
            color: #e8e8e8;
            border-radius: 4px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
        }

        .cep-input:focus {
            outline: none;
            border-color: #8b745b;
            background: rgba(139, 116, 91, 0.15);
        }

        .calc-btn {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #8b745b 0%, #6b5943 100%);
            color: #fff;
            border: none;
            border-radius: 4px;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .calc-btn:hover {
            background: linear-gradient(135deg, #a68968 0%, #8b745b 100%);
            transform: translateY(-2px);
        }

        .shipping-info {
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(139, 116, 91, 0.1);
            border: 1px solid rgba(139, 116, 91, 0.2);
            border-radius: 4px;
            color: #a1a1a1;
            font-size: 0.9rem;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            font-size: 1rem;
            color: #a1a1a1;
        }

        .summary-row.total {
            border-top: 1px solid rgba(139, 116, 91, 0.3);
            margin-top: 1rem;
            padding-top: 1rem;
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #8b745b;
        }

        .checkout-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #8b745b 0%, #6b5943 100%);
            color: #fff;
            border: none;
            border-radius: 4px;
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
        }

        .checkout-btn:hover {
            background: linear-gradient(135deg, #a68968 0%, #8b745b 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 116, 91, 0.3);
        }

        /* Login Modal */
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-family: 'Cinzel', serif;
            font-size: 0.95rem;
            color: #c4b5a0;
            font-weight: 600;
        }

        .form-group input {
            padding: 0.9rem;
            background: rgba(139, 116, 91, 0.1);
            border: 1px solid rgba(139, 116, 91, 0.3);
            color: #e8e8e8;
            border-radius: 4px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
        }

        .form-group input:focus {
            outline: none;
            border-color: #8b745b;
            background: rgba(139, 116, 91, 0.15);
        }

        .login-btn {
            padding: 1rem;
            background: linear-gradient(135deg, #8b745b 0%, #6b5943 100%);
            color: #fff;
            border: none;
            border-radius: 4px;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .login-btn:hover {
            background: linear-gradient(135deg, #a68968 0%, #8b745b 100%);
            transform: translateY(-2px);
        }

        .login-links {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        .login-links a {
            color: #8b745b;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .login-links a:hover {
            color: #a68968;
        }

        /* Orders Modal */
        .orders-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .order-card {
            padding: 1.5rem;
            background: rgba(139, 116, 91, 0.05);
            border: 1px solid rgba(139, 116, 91, 0.2);
            border-radius: 8px;
        }

        .order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(139, 116, 91, 0.2);
        }

        .order-number {
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #8b745b;
        }

        .order-status {
            padding: 0.4rem 1rem;
            background: rgba(139, 116, 91, 0.2);
            color: #8b745b;
            border-radius: 20px;
            font-size: 0.85rem;
            font-family: 'Cinzel', serif;
            font-weight: 600;
        }

        .order-status.delivered {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .order-status.shipped {
            background: rgba(59, 130, 246, 0.2);
            color: #3b82f6;
        }

        .order-info {
            color: #a1a1a1;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .order-total {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(139, 116, 91, 0.2);
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #8b745b;
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
            }
        }

        /* Video Banner */
        .video-banner {
            width: 100%;
            height: 100%;
            min-height: 100%;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .video-banner video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(13, 13, 13, 0.3) 0%,
                rgba(13, 13, 13, 0.5) 100%
            );
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }

        .video-content h1 {
            font-family: 'Cinzel', serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
        }

        .video-content p {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            color: #e8e8e8;
            letter-spacing: 0.1em;
            text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
        }
@media (max-width: 768px) {
    .video-banner {
        height: auto;
        min-height: auto;
        background: #0d0d0d;
    }
.video-banner {
    background-image: url('../uploads/camisas/banner.jpeg');
    background-size: cover;
    background-position: center;
}

    .video-banner video {
        display: none;
    }

    .video-overlay {
        position: relative;
        padding: 6rem 1.5rem;
    }
}

        /* Products Section */
        .products-section {
            padding: 6rem 2rem;
            background: #0d0d0d;
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .products-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: #8b745b;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .products-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: #a1a1a1;
            text-align: center;
            margin-bottom: 4rem;
            font-weight: 300;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 3rem;
        }

        .product-card {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid rgba(139, 116, 91, 0.2);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: rgba(139, 116, 91, 0.5);
            box-shadow: 0 10px 30px rgba(139, 116, 91, 0.2);
        }

        .product-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-image:hover img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 2rem;
            position: relative;
        }

        .product-badge {
            display: inline-block;
            background: linear-gradient(135deg, #8b745b 0%, #6b5943 100%);
            color: #fff;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-family: 'Cinzel', serif;
        }

        .product-badge.new {
            background: linear-gradient(135deg, #d69a9a 0%, #695957 100%);
        }

        .product-badge.premium {
            background: linear-gradient(135deg, #d4af37 0%, #c09c2e 100%);
        }

        .product-badge.limited {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-tag {
            background: rgba(139, 116, 91, 0.1);
            border: 1px solid rgba(139, 116, 91, 0.3);
            color: #c4b5a0;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .size-selector {
            margin-bottom: 1.5rem;
        }

        .size-selector label {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            color: #c4b5a0;
            margin-bottom: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .size-options {
            display: flex;
            gap: 0.5rem;
        }

        .size-btn {
            flex: 1;
            padding: 0.75rem;
            background: rgba(139, 116, 91, 0.1);
            border: 1px solid rgba(139, 116, 91, 0.3);
            color: #c4b5a0;
            border-radius: 4px;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .size-btn:hover {
            background: rgba(139, 116, 91, 0.2);
            border-color: #8b745b;
            color: #8b745b;
            transform: translateY(-2px);
        }

        .size-btn.selected {
            background: linear-gradient(135deg, #8b745b 0%, #6b5943 100%);
            border-color: #8b745b;
            color: #fff;
        }

        .quantity-selector {
            margin-bottom: 1.5rem;
        }

        .quantity-selector label {
            display: block;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            color: #c4b5a0;
            margin-bottom: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .quantity-input-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .qty-btn {
            width: 40px;
            height: 40px;
            background: rgba(139, 116, 91, 0.1);
            border: 1px solid rgba(139, 116, 91, 0.3);
            color: #8b745b;
            border-radius: 4px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qty-btn:hover {
            background: rgba(139, 116, 91, 0.2);
            border-color: #8b745b;
        }

        .qty-input {
            flex: 1;
            padding: 0.75rem;
            background: rgba(139, 116, 91, 0.1);
            border: 1px solid rgba(139, 116, 91, 0.3);
            color: #e8e8e8;
            border-radius: 4px;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
        }

        .qty-input:focus {
            outline: none;
            border-color: #8b745b;
        }

        .product-name {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #e8e8e8;
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }

        .product-description {
            font-size: 1rem;
            color: #a1a1a1;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .product-price {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #8b745b;
            margin-bottom: 1.5rem;
        }

        .btn-buy {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #8b745b 0%, #6b5943 100%);
            color: #fff;
            border: none;
            border-radius: 4px;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-buy:hover {
            background: linear-gradient(135deg, #a68968 0%, #8b745b 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 116, 91, 0.3);
        }

        /* Benefits Section */
        .benefits-section {
            background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
            padding: 5rem 2rem;
            border-top: 1px solid rgba(139, 116, 91, 0.2);
            border-bottom: 1px solid rgba(139, 116, 91, 0.2);
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .benefit-item {
            text-align: center;
            padding: 2rem;
            background: rgba(139, 116, 91, 0.03);
            border: 1px solid rgba(139, 116, 91, 0.1);
            border-radius: 8px;
            transition: all 0.4s ease;
        }

        .benefit-item:hover {
            background: rgba(139, 116, 91, 0.08);
            border-color: rgba(139, 116, 91, 0.3);
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            filter: grayscale(20%);
        }

        .benefit-title {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #8b745b;
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }

        .benefit-text {
            color: #a1a1a1;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Manifesto */
        .manifesto {
            max-width: 900px;
            margin: 0 auto;
            padding: 8rem 2rem;
        }

        .manifesto-paragraph {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            line-height: 2;
            color: #d4d4d4;
            margin-bottom: 3rem;
            font-weight: 300;
            text-align: center;
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
        }

        .manifesto-paragraph:nth-child(1) { animation-delay: 0.2s; }
        .manifesto-paragraph:nth-child(2) { animation-delay: 0.4s; }
        .manifesto-paragraph:nth-child(3) { animation-delay: 0.6s; }
        .manifesto-paragraph:nth-child(4) { animation-delay: 0.8s; }
        .manifesto-paragraph:nth-child(5) { animation-delay: 1s; }

        .manifesto-paragraph strong {
            color: #8b745b;
            font-weight: 600;
        }

        .manifesto-highlight {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            line-height: 1.8;
            color: #8b745b;
            margin: 5rem 0;
            font-weight: 500;
            text-align: center;
            font-style: italic;
        }

        /* Values Section */
        .values-section {
            background: linear-gradient(180deg, #0d0d0d 0%, #161616 50%, #0d0d0d 100%);
            padding: 8rem 2rem;
            border-top: 1px solid rgba(139, 116, 91, 0.2);
            border-bottom: 1px solid rgba(139, 116, 91, 0.2);
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #8b745b;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
        }

        .section-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            color: #a1a1a1;
            text-align: center;
            margin-bottom: 5rem;
            font-weight: 300;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .value-item {
            text-align: center;
            padding: 2rem;
            border: 1px solid rgba(139, 116, 91, 0.1);
            background: rgba(139, 116, 91, 0.02);
            border-radius: 2px;
            transition: all 0.4s ease;
        }

        .value-item:hover {
            border-color: rgba(139, 116, 91, 0.4);
            background: rgba(139, 116, 91, 0.05);
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .value-name {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #8b745b;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* Essence Section */
        .essence-section {
            padding: 8rem 2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .essence-list {
            list-style: none;
            text-align: center;
        }

        .essence-item {
            font-family: 'Cinzel', serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 600;
            color: #8b745b;
            margin-bottom: 2rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeInScale 0.8s ease-out forwards;
            position: relative;
            padding-bottom: 2rem;
        }

        .essence-item::after {
            content: '✦';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(139, 116, 91, 0.3);
            font-size: 1rem;
        }

        .essence-item:last-child::after {
            display: none;
        }

        .essence-item:nth-child(1) { animation-delay: 0.1s; }
        .essence-item:nth-child(2) { animation-delay: 0.2s; }
        .essence-item:nth-child(3) { animation-delay: 0.3s; }
        .essence-item:nth-child(4) { animation-delay: 0.4s; }
        .essence-item:nth-child(5) { animation-delay: 0.5s; }

        /* Final Section */
        .final-section {
            min-height: 80%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8rem 2rem;
            background: 
                radial-gradient(circle at 50% 50%, rgba(139, 116, 91, 0.05) 0%, transparent 70%),
                #0d0d0d;
            border-top: 1px solid rgba(139, 116, 91, 0.2);
        }

        .final-brand {
            font-family: 'Cinzel', serif;
            font-size: clamp(4rem, 10vw, 7rem);
            font-weight: 800;
            color: #8b745b;
            margin-bottom: 2rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .final-message {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            color: #c4b5a0;
            font-weight: 300;
            letter-spacing: 0.1em;
        }

        /* Divider */
        .divider {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #8b745b, transparent);
            margin: 4rem auto;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Footer */
        footer {
            background: rgba(13, 13, 13, 0.95);
            border-top: 1px solid rgba(139, 116, 91, 0.2);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #8b745b;
            margin-bottom: 1.5rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .footer-section p {
            color: #a1a1a1;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #c4b5a0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #8b745b;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(139, 116, 91, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8b745b;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: rgba(139, 116, 91, 0.1);
            border-color: #8b745b;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(139, 116, 91, 0.1);
            color: #71717a;
            font-size: 0.9rem;
        }

        .footer-logo {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: #8b745b;
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            top: 90px;
            right: 20px;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 10000;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            animation: slideInRight 0.3s ease;
            max-width: 400px;
        }

        .toast.success {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: white;
        }

        .toast.error {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
        }

        .toast.info {
            background: linear-gradient(135deg, #8b745b 0%, #6b5943 100%);
            color: white;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(400px);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-center {
                display: none;
            }

            .nav-actions {
                gap: 1rem;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float svg {
                width: 30px;
                height: 30px;
            }

            .manifesto {
                padding: 5rem 1.5rem;
            }

            .values-section {
                padding: 5rem 1.5rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0;
            }

            .essence-section {
                padding: 5rem 1.5rem;
            }

            .final-section {
                padding: 5rem 1.5rem;
            }

            .products-section {
                padding: 4rem 1.5rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .modal-content {
                max-width: 95%;
            }

            .cart-item {
                flex-direction: column;
            }

            .cart-item-image {
                width: 100%;
                height: 200px;
            }
        }
        
        .nav-user {
    position: relative;
}

.nav-initial-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-logout-box {
    position: absolute;
    top: 140%;
    right: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    transition-delay: .25s;
}

.nav-logout-box a {
    display: block;
    padding: 10px 14px;
    color: #c62828;
    text-decoration: none;
    white-space: nowrap;
}

.nav-user:hover .nav-logout-box,
.nav-user:focus-within .nav-logout-box {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

#cartModal .modal-content {
    max-width: 1000px;
}
