* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            background-color: #F5F9FF;
            overflow-x: hidden;
            color: #1A2C3E;
        }

        body.menu-open {
            overflow: hidden;
        }

        body.modal-open {
            overflow: hidden;
        }

        img {
            -webkit-user-drag: none;
            user-select: none;
            -webkit-user-select: none;
            -webkit-touch-callout: none;
            pointer-events: none;
        }

        .glass-nav {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(16px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
            border-bottom: 1px solid rgba(0, 102, 204, 0.12);
            transition: all 0.3s ease;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.9rem;
        }

        .nav-item {
            position: relative;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            color: #1e3a5f;
            padding: 0.5rem 0;
            cursor: pointer;
            transition: color 0.25s ease;
            white-space: nowrap;
        }

        .nav-item a {
            color: inherit;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-item i.fa-chevron-down, .nav-item i.fa-chevron-right {
            font-size: 0.7rem;
            color: #0099FF;
            transition: transform 0.2s;
        }

        .nav-item:hover {
            color: #0099FF;
        }

        .nav-item.dropdown:hover i.fa-chevron-down {
            transform: rotate(180deg);
        }

        .nav-item.active a {
            color: #0099FF;
        }
        
        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #0099FF, #0066CC);
            border-radius: 2px;
        }

        .nav-separator {
            color: #cbd5e1;
            font-size: 0.7rem;
            font-weight: 300;
            display: inline-flex;
            align-items: center;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            padding: 0.75rem 0;
            border-radius: 16px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 102, 204, 0.08);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            z-index: 100;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(4px);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(8px);
        }

        .dropdown-menu a {
            display: block;
            padding: 0.6rem 1.5rem;
            color: #2c3e50;
            font-weight: 500;
            font-size: 0.85rem;
            transition: all 0.2s;
            text-decoration: none;
        }

        .dropdown-menu a:hover {
            background: #F0F7FF;
            color: #0099FF;
            padding-left: 1.8rem;
        }

        .btn-order {
            background: linear-gradient(105deg, #0066CC, #0099FF);
            box-shadow: 0 6px 14px rgba(0, 102, 204, 0.25);
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.85rem;
            color: white;
            cursor: pointer;
            position: relative;
        }

        .btn-order:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(0, 102, 204, 0.35);
            background: linear-gradient(105deg, #0077EE, #00AAFF);
        }

        .cart-count-badge {
            position: absolute;
            top: -0.45rem;
            right: -0.35rem;
            min-width: 22px;
            height: 22px;
            padding: 0 0.38rem;
            border-radius: 999px;
            background: #081C2E;
            color: white;
            font-size: 0.72rem;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 18px rgba(8, 28, 46, 0.22);
            border: 2px solid rgba(255, 255, 255, 0.96);
        }

        .cart-count-badge.is-empty {
            display: none;
        }

        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(8, 28, 46, 0.38);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
            z-index: 95;
        }

        .mobile-menu-panel {
            position: fixed;
            top: 0;
            right: 0;
            width: min(92vw, 380px);
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(18px);
            box-shadow: -20px 0 45px rgba(8, 28, 46, 0.12);
            padding: max(1rem, env(safe-area-inset-top)) 1rem max(1.1rem, env(safe-area-inset-bottom));
            transform: translateX(105%);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
            z-index: 110;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu-overlay.open,
        .mobile-menu-panel.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .mobile-menu-panel.open {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        }

        .mobile-menu-close,
        .mobile-menu-btn {
            width: 46px;
            height: 46px;
            border: 1px solid rgba(0, 102, 204, 0.12);
            border-radius: 15px;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #0066CC;
            cursor: pointer;
            background: linear-gradient(180deg, #F8FBFF, #EAF4FF);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .mobile-menu-close {
            display: inline-flex;
        }

        .mobile-menu-btn:hover,
        .mobile-menu-close:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 18px rgba(0, 102, 204, 0.12);
        }

        .mobile-menu-links {
            display: grid;
            gap: 0.65rem;
            padding: 1.15rem 0;
            overflow-y: auto;
        }

        .mobile-menu-links a {
            padding: 0.95rem 1rem;
            border-radius: 16px;
            color: #1e3a5f;
            background: #F5F9FF;
            border: 1px solid rgba(0, 102, 204, 0.08);
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
        }

        .mobile-menu-links a:hover {
            background: #EAF6FF;
            color: #0099FF;
        }

        .mobile-menu-cta {
            margin-top: auto;
            background: linear-gradient(105deg, #0066CC, #0099FF);
            color: white;
            border-radius: 999px;
            padding: 1rem 1.25rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            font-weight: 800;
            box-shadow: 0 12px 22px rgba(0, 102, 204, 0.24);
            position: relative;
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .mobile-menu-cta .cart-count-badge {
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            border-color: rgba(0, 102, 204, 0.4);
        }

        .hero-premium {
            background: linear-gradient(107deg, rgba(0, 20, 40, 0.7) 0%, rgba(0, 50, 80, 0.5) 100%), 
                        url('../images/background2agua.jpg') center/cover no-repeat;
            background-attachment: fixed;
            position: relative;
        }

        .hero-premium::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to top, #F5F9FF, transparent);
            pointer-events: none;
        }

        .hero-text {
            position: relative;
            z-index: 2;
        }

        .hero-media-shift {
            position: relative;
            z-index: 1;
        }

        .hero-media {
            align-self: end;
        }

        .hero-bottle {
            width: min(100%, clamp(22rem, 46vw, 42rem));
            height: auto;
        }

        .hero-actions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            align-items: stretch;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            width: min(100%, 34rem);
        }

        .hero-stats > div {
            min-width: 0;
        }

        @media (min-width: 1024px) {
            .hero-media-shift {
                margin-right: -3.5rem;
            }
        }

        @media (min-width: 1280px) {
            .hero-media-shift {
                margin-right: -6.5rem;
            }
        }

        @media (min-width: 1536px) {
            .hero-media-shift {
                margin-right: -8rem;
            }
        }

        .btn-primary {
            background: linear-gradient(105deg, #0066CC, #0099FF);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
            transition: all 0.35s;
            border: none;
            color: white;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 102, 204, 0.35);
        }

        .btn-outline-premium {
            background: transparent;
            border: 2px solid #0099FF;
            color: #0066CC;
            transition: all 0.3s;
            cursor: pointer;
        }
        .btn-outline-premium:hover {
            background: #0099FF10;
            transform: translateY(-3px);
        }

        .brand-logo-wrap {
            position: relative;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            line-height: 0;
            width: clamp(7.2rem, 9vw, 8.625rem);
            height: clamp(3rem, 4vw, 3.375rem);
            flex: 0 0 clamp(7.2rem, 9vw, 8.625rem);
            overflow: visible;
        }

        .brand-logo-image {
            position: absolute;
            left: 0;
            top: 50%;
            height: clamp(7.9rem, 10.5vw, 9.625rem);
            width: auto;
            display: block;
            max-width: none;
            object-fit: contain;
            transform: translateY(-50%);
            transform-origin: left center;
            filter: drop-shadow(0 12px 24px rgba(10, 43, 68, 0.18));
        }

        .brand-logo-image-footer {
            height: clamp(6.5rem, 10vw, 8.625rem);
            width: auto;
            display: block;
            object-fit: contain;
            transform: translateY(6px);
            filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.18));
        }

        .footer-offset-column {
            transform: translateY(clamp(1.15rem, 3vw, 2.625rem));
        }

        .brand-icon-badge {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            background: linear-gradient(145deg, #EAF6FF, #D9EEFF);
            color: #0099FF;
            box-shadow: 0 10px 24px rgba(0, 102, 204, 0.16);
            font-size: 1.3rem;
        }

        .brand-text {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            color: #0A2B44;
            line-height: 1;
        }

        .brand-text-accent {
            color: #0099FF;
        }

        .brand-icon-badge-footer {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            background: rgba(125, 211, 252, 0.12);
            color: #7DD3FC;
            border: 1px solid rgba(125, 211, 252, 0.2);
            font-size: 1.45rem;
        }

        .brand-text-footer {
            font-size: 1.85rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            color: white;
            line-height: 1;
        }

        .brand-text-footer .brand-text-accent {
            color: #7DD3FC;
        }

        .product-card {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            height: 100%;
            width: 100%;
            max-width: 240px;
            padding: 1.25rem;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            border-radius: 24px;
            border: 1px solid #d8e8f6;
            background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
            box-shadow: 0 22px 38px -28px rgba(18, 69, 129, 0.32);
            overflow: hidden;
            isolation: isolate;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 240px));
            gap: clamp(1rem, 2vw, 1.35rem);
            align-items: stretch;
            justify-content: center;
            width: min(100%, 1320px);
            margin-left: auto;
            margin-right: auto;
        }
        .product-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(150deg, rgba(11, 100, 197, 0.08) 0%, rgba(11, 100, 197, 0) 48%);
            pointer-events: none;
        }
        .product-card > * {
            position: relative;
            z-index: 1;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 42px -26px rgba(18, 69, 129, 0.34);
        }
        .whatsapp-float {
            position: fixed;
            right: clamp(0.9rem, 2vw, 1.5rem);
            bottom: clamp(0.9rem, 2vw, 1.5rem);
            width: clamp(3.55rem, 5vw, 4rem);
            height: clamp(3.55rem, 5vw, 4rem);
            border-radius: 999px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, #25D366, #128C4A);
            color: white;
            box-shadow: 0 18px 35px rgba(18, 140, 74, 0.35);
            z-index: 120;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            animation: whatsappPulse 2.2s infinite;
        }
        .whatsapp-float:hover {
            transform: translateY(-4px) scale(1.04);
            box-shadow: 0 22px 40px rgba(18, 140, 74, 0.45);
        }
        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 18px 35px rgba(18, 140, 74, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.35); }
            50% { box-shadow: 0 18px 35px rgba(18, 140, 74, 0.35), 0 0 0 14px rgba(37, 211, 102, 0); }
        }
        @media (max-width: 768px) {
            .whatsapp-float {
                right: 1rem;
                bottom: 1rem;
                width: 58px;
                height: 58px;
            }
        }
        .product-image-box {
            border: 1px solid #dfe9f6;
            border-radius: 16px;
            padding: 1rem;
            min-height: clamp(170px, 22vw, 180px);
            background: radial-gradient(circle at top, #ffffff 0%, #edf5fd 78%);
            display: grid;
            place-items: center;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }
        .product-image-box img {
            max-height: clamp(138px, 18vw, 148px);
            width: auto;
            object-fit: contain;
        }
        .price-chip {
            border: 1px solid #d2e4f6;
            border-radius: 999px;
            padding: 0.42rem 0.85rem;
            text-align: center;
            color: #0b6bdc;
            font-weight: 800;
            font-size: 0.82rem;
            width: fit-content;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 10px 20px rgba(15, 138, 228, 0.08);
        }
        .product-title {
            font-size: 0.95rem;
            font-weight: 800;
            color: #1e2a3c;
            text-align: center;
            min-height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1.3;
        }
        .product-format {
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #5c7896;
            text-align: center;
            min-height: 1rem;
        }
        .delivery-info {
            font-size: 0.8rem;
            color: #6b7d94;
            text-align: center;
            min-height: 2.85rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-card-actions {
            margin-top: auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.65rem;
            padding-top: 0.9rem;
            align-items: stretch;
            border-top: 1px solid #e7eff7;
        }
        .product-actions {
            margin-top: auto;
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
            gap: 0.75rem;
            padding-top: 1rem;
            align-items: stretch;
        }
        .product-add-group {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.55rem;
            align-items: stretch;
        }
        .product-qty-control {
            display: inline-flex;
            align-items: center;
            gap: 0.2rem;
            padding: 0.22rem 0.3rem;
            border-radius: 999px;
            background: #f5f9ff;
            border: 1px solid #dce9f5;
            min-height: 42px;
            justify-content: space-between;
            width: 100%;
        }
        .product-qty-btn {
            width: 30px;
            height: 30px;
            border: none;
            border-radius: 999px;
            background: white;
            color: #0b64c5;
            font-size: 0.92rem;
            font-weight: 900;
            cursor: pointer;
            box-shadow: 0 8px 16px rgba(15, 138, 228, 0.08);
            transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
        }
        .product-qty-btn:hover:not(:disabled) {
            transform: translateY(-1px);
            box-shadow: 0 10px 18px rgba(15, 138, 228, 0.14);
        }
        .product-qty-btn:disabled {
            opacity: 0.42;
            cursor: not-allowed;
            box-shadow: none;
        }
        .product-qty-value {
            min-width: 1.7rem;
            flex: 1;
            text-align: center;
            color: #0A2B44;
            font-size: 0.9rem;
            font-weight: 900;
            line-height: 1;
        }
        .product-qty-note {
            font-size: 0.62rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #8aa0b6;
            text-align: center;
            margin-top: 0.28rem;
            font-weight: 800;
        }
        .btn-details,
        .btn-cart {
            background: linear-gradient(120deg, #0b64c5 0%, #0f8ae4 100%);
            border: none;
            color: white;
            font-weight: 800;
            font-size: 0.82rem;
            letter-spacing: 0.01em;
            padding: 0.82rem 0.75rem;
            border-radius: 999px;
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.2s ease;
            box-shadow: 0 10px 18px rgba(15, 138, 228, 0.25);
            width: 100%;
            min-height: 46px;
        }
        .product-card .btn-details,
        .product-card .btn-cart {
            font-size: 0.74rem;
            min-height: 40px;
            padding: 0.58rem 0.62rem;
        }
        .product-card .btn-cart {
            letter-spacing: 0;
        }
        .btn-details {
            background: #f8fbff;
            color: #0b64c5;
            border: 1px solid #d3e4f5;
            box-shadow: 0 10px 18px rgba(15, 138, 228, 0.08);
        }
        .btn-details:hover,
        .btn-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 24px rgba(15, 138, 228, 0.18);
        }
        .btn-cart:hover {
            box-shadow: 0 14px 24px rgba(15, 138, 228, 0.28);
        }

        .product-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(7, 23, 40, 0.48);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
            z-index: 125;
        }

        .product-modal {
            position: fixed;
            inset: 0;
            display: grid;
            place-items: center;
            padding: 1.25rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
            z-index: 130;
        }

        .product-modal.open,
        .product-modal-overlay.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .product-modal-card {
            width: min(1120px, calc(100vw - 1.5rem));
            max-height: min(92vh, 900px);
            overflow: auto;
            background: white;
            border-radius: clamp(1.35rem, 2.8vw, 1.75rem);
            box-shadow: 0 28px 60px rgba(10, 43, 68, 0.22);
            border: 1px solid rgba(0, 102, 204, 0.08);
        }

        .product-modal-grid {
            display: grid;
            grid-template-columns: minmax(280px, 340px) 1fr;
            gap: 0;
        }

        .product-modal-media {
            background: linear-gradient(160deg, #f7fbff 0%, #eef4fb 100%);
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100%;
        }

        .product-modal-media img {
            width: 100%;
            max-width: 300px;
            max-height: 320px;
            object-fit: contain;
        }

        .product-modal-content {
            padding: 1.35rem 1.45rem 1.45rem;
        }

        .product-modal-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
        }

        .product-modal-close {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            border: 1px solid rgba(0, 102, 204, 0.12);
            background: #f5f9ff;
            color: #0b64c5;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
        }

        .product-modal-label {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #0b64c5;
            background: #eaf6ff;
            border-radius: 999px;
            padding: 0.45rem 0.75rem;
        }

        .product-modal-title {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            line-height: 1;
            color: #0A2B44;
            font-weight: 900;
            margin-top: 1rem;
        }

        .product-modal-price {
            font-size: 1.25rem;
            font-weight: 900;
            color: #0099FF;
            margin-top: 0.55rem;
        }

        .product-modal-format {
            margin-top: 0.7rem;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #5f7b98;
        }

        .product-modal-copy {
            color: #5e738d;
            line-height: 1.5;
            margin-top: 0.8rem;
        }

        .product-modal-meta {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0.7rem;
            margin-top: 1rem;
        }

        .product-meta-card {
            background: #f8fbff;
            border: 1px solid #e0ebf6;
            border-radius: 18px;
            padding: 0.8rem 0.9rem;
        }

        .product-meta-card span {
            display: block;
            font-size: 0.78rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #7b90a8;
            margin-bottom: 0.35rem;
        }

        .product-meta-card strong {
            color: #0A2B44;
            font-size: 0.93rem;
            line-height: 1.38;
        }

        .product-modal-body {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: 1rem;
            margin-top: 1.1rem;
            align-items: start;
        }

        .product-modal-column {
            min-width: 0;
        }

        .product-section-title {
            margin-top: 0;
            font-size: 1rem;
            font-weight: 900;
            color: #0A2B44;
        }

        .product-highlights {
            display: grid;
            gap: 0.6rem;
            margin-top: 0.75rem;
        }

        .product-highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            color: #4f6680;
            line-height: 1.45;
        }

        .product-highlight-item i {
            color: #0099FF;
            margin-top: 0.2rem;
        }

        .nutrition-note {
            font-size: 0.82rem;
            color: #7b90a8;
            margin-top: 0.55rem;
        }

        .nutrition-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.65rem;
            margin-top: 0.8rem;
        }

        .nutrition-card {
            border: 1px solid #dce9f5;
            border-radius: 16px;
            padding: 0.75rem 0.85rem;
            background: #fcfeff;
        }

        .nutrition-card span {
            display: block;
            color: #7c8fa4;
            font-size: 0.82rem;
            margin-bottom: 0.25rem;
        }

        .nutrition-card strong {
            color: #10304b;
            font-size: 1rem;
        }

        .cart-drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(7, 23, 40, 0.48);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
            z-index: 128;
        }

        .cart-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: min(100vw, 460px);
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(18px);
            box-shadow: -20px 0 45px rgba(8, 28, 46, 0.14);
            border-left: 1px solid rgba(0, 102, 204, 0.1);
            transform: translateX(104%);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
            z-index: 132;
            display: grid;
            grid-template-rows: auto 1fr auto;
        }

        .cart-drawer.open,
        .cart-drawer-overlay.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .cart-drawer.open {
            transform: translateX(0);
        }

        .cart-drawer-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.2rem 1.15rem 1rem;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
            background: linear-gradient(180deg, rgba(240, 247, 255, 0.9), rgba(255, 255, 255, 0.98));
        }

        .cart-drawer-label {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.78rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #0b64c5;
            background: #eaf6ff;
            border-radius: 999px;
            padding: 0.45rem 0.7rem;
        }

        .cart-drawer-header h3 {
            font-size: 1.45rem;
            line-height: 1.1;
            color: #0A2B44;
            font-weight: 900;
            margin-top: 0.8rem;
        }

        .cart-drawer-header p {
            color: #6b7d94;
            margin-top: 0.35rem;
            line-height: 1.45;
            font-size: 0.92rem;
        }

        .cart-drawer-close {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            border: 1px solid rgba(0, 102, 204, 0.12);
            background: #f5f9ff;
            color: #0b64c5;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
        }

        .cart-drawer-body {
            padding: 1rem;
            overflow-y: auto;
        }

        .cart-items {
            display: grid;
            gap: 0.95rem;
        }

        .cart-empty {
            background: linear-gradient(180deg, #f8fbff 0%, #f1f7fd 100%);
            border: 1px solid #dce9f5;
            border-radius: 28px;
            padding: 2rem 1.35rem;
            text-align: center;
            color: #60758d;
        }

        .cart-empty i {
            font-size: 2rem;
            color: #0099FF;
            margin-bottom: 0.85rem;
        }

        .cart-empty h4 {
            font-size: 1.2rem;
            color: #0A2B44;
            font-weight: 900;
        }

        .cart-empty p {
            margin-top: 0.55rem;
            line-height: 1.55;
        }

        .cart-line {
            display: grid;
            grid-template-columns: 84px 1fr;
            gap: 0.95rem;
            background: white;
            border: 1px solid #dce9f5;
            border-radius: 24px;
            padding: 0.85rem;
            box-shadow: 0 18px 40px -34px rgba(10, 43, 68, 0.38);
        }

        .cart-line-media {
            border-radius: 20px;
            background: linear-gradient(160deg, #f7fbff 0%, #eef4fb 100%);
            border: 1px solid #e2ecf6;
            display: grid;
            place-items: center;
            padding: 0.75rem;
        }

        .cart-line-media img {
            width: 100%;
            height: 72px;
            object-fit: contain;
        }

        .cart-line-main {
            min-width: 0;
        }

        .cart-line-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.75rem;
        }

        .cart-line-title {
            font-size: 1rem;
            line-height: 1.25;
            color: #0A2B44;
            font-weight: 900;
        }

        .cart-line-meta {
            font-size: 0.84rem;
            color: #6b7d94;
            line-height: 1.5;
            margin-top: 0.28rem;
        }

        .cart-line-bottom {
            margin-top: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .cart-line-price {
            color: #0b64c5;
            font-weight: 900;
            font-size: 0.98rem;
        }

        .cart-remove {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            border: 1px solid #dbe8f5;
            background: #f8fbff;
            color: #6f859d;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
        }

        .cart-remove:hover {
            color: #e25555;
            border-color: #f1c6c6;
            background: #fff7f7;
        }

        .cart-quantity {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.28rem;
            background: #f5f9ff;
            border: 1px solid #dce9f5;
            border-radius: 999px;
        }

        .cart-quantity button {
            width: 34px;
            height: 34px;
            border: none;
            border-radius: 999px;
            background: white;
            color: #0b64c5;
            font-size: 1rem;
            font-weight: 900;
            cursor: pointer;
            box-shadow: 0 8px 16px rgba(15, 138, 228, 0.08);
        }

        .cart-quantity button:disabled {
            opacity: 0.42;
            cursor: not-allowed;
            box-shadow: none;
        }

        .cart-quantity span {
            min-width: 1.55rem;
            text-align: center;
            color: #0A2B44;
            font-weight: 900;
            font-size: 0.95rem;
        }

        .cart-drawer-footer {
            padding: 1rem 1.1rem 1.2rem;
            border-top: 1px solid rgba(0, 102, 204, 0.1);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.96));
        }

        .cart-summary-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            color: #5e738d;
            font-size: 0.94rem;
        }

        .cart-summary-row + .cart-summary-row {
            margin-top: 0.25rem;
        }

        .cart-summary-row strong {
            color: #0A2B44;
            font-size: 1rem;
            font-weight: 900;
        }

        .cart-summary-note {
            color: #6f859d;
            font-size: 0.88rem;
            line-height: 1.5;
            margin-top: 0.55rem;
        }

        .cart-order-btn {
            margin-top: 0.9rem;
            width: 100%;
            border: none;
            border-radius: 999px;
            padding: 1rem 1.2rem;
            font-weight: 800;
            color: white;
            cursor: pointer;
            background: linear-gradient(105deg, #0066CC, #0099FF);
            box-shadow: 0 16px 30px rgba(0, 102, 204, 0.24);
            transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
        }

        .cart-order-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 18px 34px rgba(0, 102, 204, 0.3);
        }

        .cart-order-btn:disabled {
            background: #c6d6e6;
            box-shadow: none;
            cursor: not-allowed;
            opacity: 0.92;
        }

        .cart-toast {
            position: fixed;
            left: 50%;
            bottom: 1.25rem;
            width: min(430px, calc(100vw - 2rem));
            transform: translateX(-50%) translateY(18px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
            z-index: 140;
        }

        .cart-toast-ticket {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.98));
            border: 1px solid #dce9f5;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 26px 48px -28px rgba(10, 43, 68, 0.4);
        }

        .cart-toast-top {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            padding: 1rem 1.1rem 0.95rem;
        }

        .cart-toast-icon {
            width: 50px;
            height: 50px;
            border-radius: 18px;
            flex-shrink: 0;
            display: grid;
            place-items: center;
            color: white;
            font-size: 1.1rem;
            background: linear-gradient(140deg, #0b64c5, #00a1ff);
            box-shadow: 0 14px 28px rgba(0, 102, 204, 0.22);
        }

        .cart-toast-copy {
            min-width: 0;
            flex: 1;
        }

        .cart-toast-copy strong {
            display: block;
            color: #0A2B44;
            font-size: 0.98rem;
            line-height: 1.2;
            font-weight: 900;
        }

        .cart-toast-copy span {
            display: block;
            color: #5e738d;
            font-size: 0.85rem;
            line-height: 1.45;
            margin-top: 0.18rem;
        }

        .cart-toast-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.35rem 0.6rem;
            border-radius: 999px;
            background: #e8f7ed;
            color: #1f8f48;
            font-size: 0.72rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            align-self: flex-start;
        }

        .cart-toast-divider {
            position: relative;
            border-top: 1px dashed #cfe0f0;
        }

        .cart-toast-divider::before,
        .cart-toast-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #f5f9ff;
            border: 1px solid #dce9f5;
            transform: translateY(-50%);
        }

        .cart-toast-divider::before {
            left: -8px;
        }

        .cart-toast-divider::after {
            right: -8px;
        }

        .cart-toast-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            flex-wrap: wrap;
            padding: 0.8rem 1.1rem 1rem;
            color: #61758d;
            font-size: 0.82rem;
            font-weight: 700;
        }

        .cart-toast-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .bubble-luxury {
            position: fixed;
            background: radial-gradient(circle at 30% 30%, rgba(0, 180, 255, 0.3), rgba(0, 120, 210, 0.08));
            border-radius: 50%;
            pointer-events: none;
            z-index: 999;
            animation: floatUp linear infinite;
        }

        @keyframes floatUp {
            0% { transform: translateY(0) scale(0.6); opacity: 0.5; }
            100% { transform: translateY(-120vh) scale(1.1); opacity: 0; }
        }

        .reveal-scroll {
            opacity: 0;
            transform: translateY(18px);
            transition: all 0.08s ease;
        }

        .stat-elegant {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0066CC, #0099FF);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .floating-drop {
            animation: gentleFloat 5s ease-in-out infinite;
        }

        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
        }

        .benefit-icon {
            background: linear-gradient(135deg, #EFF9FF, #E0F0FE);
            box-shadow: 0 8px 18px rgba(0, 102, 204, 0.08);
            width: 80px;
            height: 80px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .about-buy-section {
            isolation: isolate;
            padding-top: clamp(4.5rem, 8vw, 7rem);
            padding-bottom: clamp(4.5rem, 8vw, 7rem);
            background:
                radial-gradient(circle at left bottom, rgba(0, 153, 255, 0.08), transparent 32%),
                linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
        }

        .about-buy-content {
            position: relative;
            z-index: 2;
        }

        .about-buy-visual {
            position: absolute;
            left: max(calc(-6rem - 15px), calc(50% - 42rem - 15px));
            bottom: -1.75rem;
            width: 18rem;
            display: none;
            pointer-events: none;
            z-index: 0;
            filter: drop-shadow(0 20px 34px rgba(10, 43, 68, 0.18));
        }

        .about-buy-visual::before {
            content: '';
            position: absolute;
            inset: 18% 12% 8% 8%;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(0, 153, 255, 0.22), rgba(0, 153, 255, 0));
            filter: blur(18px);
            z-index: -1;
        }

        .about-buy-visual img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .about-buy-grid {
            position: relative;
            z-index: 2;
            gap: clamp(1rem, 2vw, 2rem);
        }

        .about-buy-step {
            position: relative;
            padding: clamp(1.45rem, 3vw, 2rem) clamp(1.1rem, 2.5vw, 1.5rem);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 102, 204, 0.08);
            box-shadow: 0 18px 42px -34px rgba(10, 43, 68, 0.55);
            backdrop-filter: blur(10px);
            overflow: hidden;
            height: 100%;
        }

        .about-buy-step h3 {
            font-size: 1.05rem;
            line-height: 1.35;
        }

        .about-buy-step p {
            font-size: 0.92rem;
            line-height: 1.55;
        }

        .about-buy-step::after {
            content: attr(data-step);
            position: absolute;
            top: 0.9rem;
            right: 1rem;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            color: rgba(0, 153, 255, 0.09);
            pointer-events: none;
        }

        .parallax-water-real {
            padding-top: clamp(4.75rem, 9vw, 8rem);
            padding-bottom: clamp(4.75rem, 9vw, 8rem);
            background: linear-gradient(0deg, rgba(120, 155, 185, 0.26), rgba(80, 120, 150, 0.2)), 
                        url('../images/backgrpund2.png') center/cover fixed;
            background-attachment: fixed;
        }

        #productos,
        #blog,
        #distribution {
            padding-top: clamp(4.5rem, 8vw, 7rem);
            padding-bottom: clamp(4.5rem, 8vw, 7rem);
        }

        footer {
            padding-top: clamp(2.85rem, 6vw, 3.75rem);
            padding-bottom: clamp(1.25rem, 3vw, 1.75rem);
        }

        .hero-actions > button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }

            .btn-order {
                display: none;
            }

            .mobile-menu-btn {
                display: inline-flex;
            }

            .glass-nav {
                padding: 0.85rem 1rem;
            }

            .hero-premium,
            .parallax-water-real {
                background-attachment: scroll;
            }
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid #dce9f5;
            border-radius: 24px;
            box-shadow: 0 18px 38px -30px rgba(10, 43, 68, 0.28);
            overflow: hidden;
        }

        .faq-item + .faq-item {
            margin-top: 1rem;
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.2rem 1.35rem;
            font-weight: 800;
            color: #0A2B44;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary i {
            color: #0099FF;
            transition: transform 0.25s ease;
            flex-shrink: 0;
        }

        .faq-item[open] summary i {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.35rem 1.25rem;
            color: #5e738d;
            line-height: 1.65;
        }

        .faq-cta-stack {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.95rem;
            margin-top: 2rem;
        }

        .faq-popup-btn {
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.14);
            color: white;
            border-radius: 999px;
            padding: 0.95rem 1.6rem;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 16px 34px rgba(6, 22, 40, 0.18);
        }

        .faq-popup-btn:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.22);
        }

        .faq-modal-card {
            width: min(980px, calc(100vw - 1.5rem));
            max-height: min(90vh, 860px);
            overflow: auto;
            background: linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
            border-radius: clamp(1.4rem, 3vw, 1.875rem);
            box-shadow: 0 30px 70px rgba(10, 43, 68, 0.24);
            border: 1px solid rgba(0, 102, 204, 0.08);
        }

        .faq-modal-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
            gap: 1.2rem;
            padding: 1.2rem;
        }

        .faq-modal-support-card {
            background: linear-gradient(160deg, #0B64C5 0%, #0099FF 55%, #8DDCFF 100%);
            color: white;
            border-radius: 28px;
            padding: 1.7rem;
            box-shadow: 0 24px 55px -26px rgba(0, 102, 204, 0.5);
        }

        .faq-modal-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.22);
            padding: 0.7rem 1rem;
            border-radius: 999px;
            font-size: 0.84rem;
            font-weight: 800;
        }

        .faq-modal-support-card h3 {
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            line-height: 1.02;
            margin-top: 1.35rem;
            font-weight: 900;
        }

        .faq-modal-support-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.65;
            margin-top: 0.9rem;
        }

        .faq-modal-support-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.85rem;
            margin-top: 1.4rem;
        }

        .faq-modal-support-grid > div {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 20px;
            padding: 1rem;
        }

        .faq-modal-support-grid strong {
            display: block;
            font-size: 1.45rem;
            font-weight: 900;
        }

        .faq-modal-support-grid span {
            display: block;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.92rem;
            margin-top: 0.4rem;
            line-height: 1.4;
        }

        .faq-modal-content {
            padding: 0.3rem 0.15rem 0.25rem;
        }

        .faq-modal-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.1rem;
        }

        .faq-modal-label {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #0b64c5;
            background: #eaf6ff;
            border-radius: 999px;
            padding: 0.45rem 0.75rem;
        }

        .faq-modal-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            line-height: 1;
            color: #0A2B44;
            font-weight: 900;
            margin-top: 0.95rem;
        }

        .faq-modal-copy {
            color: #5e738d;
            line-height: 1.6;
            margin-top: 0.85rem;
            max-width: 42rem;
        }

        @media (max-width: 920px) {
            .faq-modal-layout {
                grid-template-columns: 1fr;
            }

            .faq-modal-support-card {
                order: 2;
            }
        }

        .distribution-card {
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(0, 102, 204, 0.1);
            border-radius: 28px;
            padding: 1.6rem;
            box-shadow: 0 20px 42px -32px rgba(10, 43, 68, 0.3);
        }

        .distribution-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.7rem 1rem;
            border-radius: 999px;
            background: #ffffff;
            border: 1px solid #dbe9f6;
            color: #1e3a5f;
            font-weight: 700;
            box-shadow: 0 10px 25px -22px rgba(10, 43, 68, 0.35);
        }

        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
        }
        
        button {
            cursor: pointer;
        }
        
        a {
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .brand-icon-badge {
                width: 42px;
                height: 42px;
                font-size: 1.05rem;
            }

            .brand-text {
                font-size: 1.35rem;
            }

            .brand-logo-wrap {
                width: 6.45rem;
                height: 2.85rem;
                flex-basis: 6.45rem;
            }

            .brand-logo-image {
                height: 6.95rem;
            }

            .brand-logo-image-footer {
                height: 5.95rem;
            }

            .footer-offset-column {
                transform: translateY(0.85rem);
            }

            .hero-premium {
                min-height: auto;
                background-position: center;
            }

            .hero-text {
                text-align: center;
                max-width: 100%;
            }

            .hero-text h1 {
                font-size: clamp(2.75rem, 13vw, 4.35rem);
                line-height: 0.94;
            }

            .hero-text p {
                font-size: 1rem;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                grid-template-columns: 1fr;
            }

            .hero-actions > button {
                width: 100%;
            }

            .hero-stats {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                align-items: stretch;
                gap: 1rem;
                width: 100%;
            }

            .hero-stats .border-l {
                border-left: none;
                padding-left: 0;
            }

            .hero-media {
                justify-content: center;
                padding-right: 0;
            }

            .hero-bottle {
                width: min(88vw, 24rem);
                transform: none !important;
            }

            .product-card {
                padding: 1.05rem;
            }

            .product-image-box {
                padding: 0.92rem;
            }

            .product-image-box img {
                max-height: 150px;
            }

            .benefit-icon {
                width: 72px;
                height: 72px;
            }

            .about-buy-step {
                padding: 1.7rem 1.25rem;
            }

            .about-buy-step::after {
                font-size: 3rem;
            }

            .brand-text-footer {
                font-size: 1.55rem;
            }

            .product-modal-grid {
                grid-template-columns: 1fr;
            }

            .product-modal-body {
                grid-template-columns: 1fr;
            }

            .cart-drawer {
                width: 100vw;
            }

            .product-modal-media {
                padding: 1.25rem 1.25rem 0.75rem;
            }

            .product-modal-content {
                padding: 1.25rem;
            }

            .product-modal-meta,
            .nutrition-grid {
                grid-template-columns: 1fr;
            }

            .faq-modal-layout {
                padding: 1rem;
                gap: 1rem;
            }

            .faq-modal-support-card {
                padding: 1.35rem;
            }

            .faq-item summary {
                padding: 1rem 1.05rem;
            }

            .faq-answer {
                padding: 0 1.05rem 1rem;
            }
        }

        @media (max-width: 1280px) {
            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(235px, 235px));
                width: 100%;
            }
        }

        @media (max-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 220px));
                width: 100%;
            }
        }

        @media (max-width: 640px) {
            .glass-nav {
                padding: 0.8rem 1rem;
            }

            .mobile-menu-panel {
                width: min(100vw, 360px);
            }

            .hero-premium {
                padding-top: 6rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            #productos,
            #about,
            #blog,
            footer {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .parallax-water-real {
                padding-top: 4.8rem;
                padding-bottom: 4.8rem;
            }

            .parallax-water-real .max-w-3xl {
                padding: 1.75rem;
            }

            .cart-toast {
                width: calc(100vw - 2rem);
                text-align: center;
            }

            .products-grid {
                grid-template-columns: 1fr;
                justify-content: stretch;
            }

            .product-card {
                max-width: none;
            }
        }

        @media (max-width: 1100px) {
            .hero-media-shift {
                margin-right: 0;
            }

            .hero-premium .max-w-7xl {
                padding-top: clamp(2.5rem, 6vw, 4rem);
                padding-bottom: clamp(4rem, 8vw, 5.5rem);
            }

            .hero-premium .grid {
                gap: clamp(2rem, 5vw, 3.25rem);
            }

            .hero-media {
                justify-content: center;
                padding-right: 0 !important;
            }

            .hero-bottle {
                width: min(100%, clamp(22rem, 70vw, 34rem));
            }
        }

        @media (max-width: 920px) {
            .product-modal,
            #faqModal {
                padding: 0.85rem;
            }

            .product-modal-card,
            .faq-modal-card {
                max-height: calc(100vh - 1.7rem);
            }
        }

        @media (max-width: 560px) {
            .product-modal,
            #faqModal {
                padding: 0.55rem;
            }

            .product-modal-card,
            .faq-modal-card {
                width: calc(100vw - 1rem);
                max-height: calc(100vh - 1rem);
            }

            .product-modal-content {
                padding: 1rem;
            }

            .product-modal-head,
            .faq-modal-head {
                gap: 0.75rem;
            }

            .product-modal-close,
            .cart-drawer-close {
                width: 40px;
                height: 40px;
            }

            .cart-drawer-header,
            .cart-drawer-footer,
            .cart-drawer-body {
                padding-left: 0.9rem;
                padding-right: 0.9rem;
            }
        }

        @media (min-width: 1024px) {
            .about-buy-grid {
                padding-left: 8rem;
            }

            .about-buy-visual {
                display: block;
                left: max(calc(-8rem - 15px), calc(50% - 44rem - 15px));
            }
        }

        @media (min-width: 1280px) {
            .about-buy-section {
                min-height: 42rem;
            }

            .about-buy-grid {
                padding-left: 12rem;
            }

            .about-buy-visual {
                width: 25rem;
                left: max(calc(-12rem - 15px), calc(50% - 49rem - 15px));
                bottom: -2.2rem;
            }
        }

        @media (min-width: 1536px) {
            .about-buy-grid {
                padding-left: 14rem;
            }

            .about-buy-visual {
                width: 30rem;
                left: max(calc(-16rem - 15px), calc(50% - 54rem - 15px));
                bottom: -2.4rem;
            }
        }

        @media (max-width: 420px) {
            .product-add-group {
                grid-template-columns: 1fr;
            }

            .product-qty-control {
                justify-content: center;
            }

            .cart-line {
                grid-template-columns: 1fr;
            }

            .cart-line-media img {
                height: 112px;
            }
        }
