/* =========================================================
   WAVE — MASTER STYLESHEET
   Luxury Water & Essentials Store
========================================================= */


/* =========================================================
   1. RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;
    background: #f7fbfd;
    color: #102a43;
    line-height: 1.6;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input {
    font: inherit;
}


button {
    cursor: pointer;
    border: none;
}


img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   2. VARIABLES
========================================================= */

:root {

    --blue-dark: #062c49;
    --blue: #087ea4;
    --blue-light: #36bde8;
    --blue-pale: #e9f8fc;

    --white: #ffffff;

    --text: #102a43;
    --muted: #6b8295;

    --border: #dcecf2;

    --background: #f7fbfd;

    --shadow:
        0 20px 60px rgba(6, 44, 73, 0.08);

    --shadow-hover:
        0 30px 80px rgba(6, 44, 73, 0.15);

    --radius: 24px;
}


/* =========================================================
   3. CONTAINER
========================================================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   4. NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 22px 0;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}


.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(20px);

    box-shadow:
        0 10px 40px rgba(6, 44, 73, 0.08);

    padding: 14px 0;
}


.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   5. LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 21px;
    font-weight: 800;

    letter-spacing: 3px;
}


.logo-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-light)
        );

    color: white;

    font-size: 18px;

    box-shadow:
        0 10px 25px rgba(8, 126, 164, 0.25);
}


/* =========================================================
   6. NAV LINKS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}


.nav-links a {
    position: relative;

    color: #547086;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.25s ease;
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background: var(--blue);

    transition:
        width 0.25s ease;
}


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


/* =========================================================
   7. NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.cart-button {
    position: relative;

    width: 44px;
    height: 44px;

    border-radius: 14px;

    background: white;

    color: var(--blue-dark);

    box-shadow:
        0 8px 25px rgba(6, 44, 73, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.cart-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(6, 44, 73, 0.14);
}


.cart-count {
    position: absolute;

    top: -5px;
    right: -5px;

    min-width: 19px;
    height: 19px;

    display: grid;
    place-items: center;

    padding: 2px 5px;

    border-radius: 20px;

    background: var(--blue);

    color: white;

    font-size: 10px;
    font-weight: 800;
}


.mobile-menu {
    display: none;

    width: 44px;
    height: 44px;

    border-radius: 14px;

    background: white;

    font-size: 20px;
}


/* =========================================================
   8. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;

    padding-top: 120px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(54, 189, 232, 0.20),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #edfaff,
            #ffffff 55%,
            #e9f8fc
        );
}


.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -180px;
    left: -180px;

    border-radius: 50%;

    background:
        rgba(54, 189, 232, 0.08);
}


.hero-content {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

    position: relative;
    z-index: 2;
}


/* =========================================================
   9. HERO TEXT
========================================================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(8, 126, 164, 0.12);

    color: var(--blue);

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 25px;
}


.pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #2ecf83;

    box-shadow:
        0 0 0 5px rgba(46, 207, 131, 0.12);
}


.hero h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 6vw, 78px);

    line-height: 0.98;

    letter-spacing: -4px;

    color: var(--blue-dark);

    margin-bottom: 28px;
}


.hero h1 span {
    color: var(--blue);
}


.hero-description {
    max-width: 570px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 34px;
}


/* =========================================================
   10. BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-bottom: 50px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 14px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.btn:hover {
    transform: translateY(-3px);
}


.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--blue),
            #08658b
        );

    color: white;

    box-shadow:
        0 14px 30px rgba(8, 126, 164, 0.22);
}


.btn-primary:hover {
    box-shadow:
        0 20px 40px rgba(8, 126, 164, 0.30);
}


.btn-secondary {
    background: white;

    border: 1px solid var(--border);

    color: var(--blue-dark);
}


/* =========================================================
   11. HERO STATS
========================================================= */

.hero-stats {
    display: flex;
    gap: 35px;
}


.stat {
    display: flex;
    flex-direction: column;
}


.stat strong {
    font-family: "Manrope", sans-serif;

    font-size: 19px;

    color: var(--blue-dark);
}


.stat span {
    color: var(--muted);

    font-size: 11px;

    margin-top: 3px;
}


/* =========================================================
   12. HERO WATER VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.water-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(54, 189, 232, 0.28),
            rgba(54, 189, 232, 0)
        );

    animation:
        glowPulse 5s ease-in-out infinite;
}


@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}


.water-card {
    position: relative;

    width: 270px;
    height: 430px;

    border-radius: 55px 55px 40px 40px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(214,245,253,0.78)
        );

    border: 1px solid rgba(255,255,255,0.9);

    box-shadow:
        0 35px 80px rgba(6, 44, 73, 0.17);

    transform:
        perspective(900px)
        rotateY(-8deg);

    overflow: hidden;

    animation:
        bottleFloat 6s ease-in-out infinite;
}


@keyframes bottleFloat {

    0%,
    100% {
        transform:
            perspective(900px)
            rotateY(-8deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(900px)
            rotateY(-8deg)
            translateY(-15px);
    }
}


.water-card::before {
    content: "";

    position: absolute;

    top: -80px;
    left: 50%;

    transform: translateX(-50%);

    width: 95px;
    height: 120px;

    border-radius: 35px 35px 15px 15px;

    background:
        linear-gradient(
            135deg,
            #dff7ff,
            #a8e2f4
        );

    box-shadow:
        0 10px 25px rgba(6,44,73,0.08);
}


.water-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            105deg,
            rgba(255,255,255,0.75),
            transparent 30%,
            transparent 70%,
            rgba(255,255,255,0.3)
        );
}


.bottle-highlight {
    position: absolute;

    top: 0;
    left: 40px;

    width: 45px;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.5),
            transparent
        );

    transform: skewX(-8deg);
}


.bottle-label {
    position: absolute;

    left: 35px;
    right: 35px;

    top: 175px;

    padding: 30px 15px;

    text-align: center;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.82);

    box-shadow:
        0 15px 40px rgba(6,44,73,0.08);

    z-index: 3;
}


.bottle-label small {
    display: block;

    font-size: 7px;

    letter-spacing: 2px;

    color: var(--blue);
}


.bottle-label strong {
    display: block;

    margin: 7px 0;

    font-family: "Manrope", sans-serif;

    font-size: 28px;

    letter-spacing: 5px;

    color: var(--blue-dark);
}


.bottle-label span {
    font-size: 8px;

    letter-spacing: 2px;

    color: var(--muted);
}


/* =========================================================
   13. FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 16px;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(15px);

    border-radius: 16px;

    box-shadow:
        0 20px 40px rgba(6,44,73,0.10);

    color: var(--blue-dark);

    font-size: 12px;
    font-weight: 700;

    z-index: 5;
}


.floating-icon {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--blue-pale);

    color: var(--blue);
}


.float-one {
    left: 5%;
    top: 20%;

    animation:
        floatingOne 5s ease-in-out infinite;
}


.float-two {
    right: 0;
    bottom: 18%;

    animation:
        floatingTwo 5s ease-in-out infinite;
}


@keyframes floatingOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


@keyframes floatingTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}


/* =========================================================
   14. WAVE DIVIDER
========================================================= */

.wave-divider {
    position: absolute;

    bottom: -1px;
    left: 0;

    width: 100%;

    line-height: 0;
}


.wave-divider svg {
    width: 100%;
    height: 100px;
}


.wave-divider path {
    fill: var(--background);
}


/* =========================================================
   15. SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}


.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.section-title {
    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -2px;

    color: var(--blue-dark);
}


.section-description {
    max-width: 600px;

    margin-top: 18px;

    color: var(--muted);

    font-size: 15px;
}


/* =========================================================
   16. CATEGORIES
========================================================= */

.categories {
    background: var(--background);
}


.category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 45px;
}


.category-card {
    position: relative;

    min-height: 180px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    border-radius: var(--radius);

    background: white;

    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.category-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -45px;
    right: -45px;

    border-radius: 50%;

    background: var(--blue-pale);
}


.category-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-hover);
}


.category-icon {
    position: relative;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: var(--blue-pale);

    font-size: 23px;
}


.category-card h3 {
    margin-top: 20px;

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    color: var(--blue-dark);
}


.category-card p {
    margin-top: 3px;

    color: var(--muted);

    font-size: 12px;
}


.category-arrow {
    position: absolute;

    right: 22px;
    bottom: 22px;

    color: var(--blue);

    font-size: 20px;
}


/* =========================================================
   17. FEATURED PRODUCTS
========================================================= */

.featured {
    background: white;
}


.shop-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;
}


.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 45px;
}


.product-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 22px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.product-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(6,44,73,0.12);
}


/* =========================================================
   18. PRODUCT IMAGE
========================================================= */

.product-image {
    position: relative;

    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #eefaff,
            #dff6fc
        );

    overflow: hidden;
}


.product-image::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.55);
}


.product-emoji {
    position: relative;

    z-index: 2;

    font-size: 80px;

    filter:
        drop-shadow(
            0 15px 20px
            rgba(6,44,73,0.10)
        );

    transition:
        transform 0.3s ease;
}


.product-card:hover
.product-emoji {
    transform:
        scale(1.08)
        rotate(-3deg);
}


.product-tag {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 5;

    padding: 6px 10px;

    border-radius: 30px;

    background: rgba(255,255,255,0.85);

    color: var(--blue);

    font-size: 9px;
    font-weight: 800;
}


.wishlist {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 5;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: rgba(255,255,255,0.9);

    color: var(--blue-dark);

    font-size: 18px;

    transition:
        transform 0.2s ease;
}


.wishlist:hover {
    transform: scale(1.1);
}


/* =========================================================
   19. PRODUCT INFO
========================================================= */

.product-info {
    padding: 20px;
}


.product-category {
    font-size: 9px;

    color: var(--blue);

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.product-name {
    margin-top: 7px;

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    line-height: 1.3;

    color: var(--blue-dark);
}


.product-description {
    margin-top: 7px;

    color: var(--muted);

    font-size: 11px;

    min-height: 34px;
}


.product-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 17px;
}


.price {
    font-family: "Manrope", sans-serif;

    font-size: 16px;

    font-weight: 800;

    color: var(--blue-dark);
}


.add-btn {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--blue);

    color: white;

    font-size: 21px;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.add-btn:hover {
    transform: scale(1.08);

    background: var(--blue-dark);
}


/* =========================================================
   20. WHY WAVE
========================================================= */

.why-wave {
    background:
        linear-gradient(
            135deg,
            #062c49,
            #075d7f
        );

    color: white;

    overflow: hidden;
}


.why-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;
}


.why-wave .section-title {
    color: white;
}


.why-wave .section-description {
    color: rgba(255,255,255,0.7);
}


.benefits {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 28px;

    margin-top: 40px;
}


.benefit {
    display: flex;

    gap: 14px;
}


.benefit-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        rgba(255,255,255,0.10);

    font-size: 18px;
}


.benefit h3 {
    font-family: "Manrope", sans-serif;

    font-size: 14px;
}


.benefit p {
    margin-top: 5px;

    color: rgba(255,255,255,0.62);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   21. WHY WAVE VISUAL
========================================================= */

.why-visual {
    display: flex;

    align-items: center;
    justify-content: center;
}


.why-circle {
    position: relative;

    width: 360px;
    height: 360px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(54,189,232,0.3),
            rgba(54,189,232,0.04)
        );

    border:
        1px solid rgba(255,255,255,0.1);

    box-shadow:
        inset 0 0 80px rgba(255,255,255,0.05);
}


.why-droplet {
    width: 150px;
    height: 150px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.08);

    font-size: 65px;

    box-shadow:
        0 30px 60px rgba(0,0,0,0.12);

    animation:
        bottleFloat 5s ease-in-out infinite;
}


/* =========================================================
   22. FOOTER
========================================================= */

footer {
    background: #041f34;

    color: white;

    padding: 70px 0 25px;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;
}


.footer-brand p {
    max-width: 330px;

    margin-top: 20px;

    color: rgba(255,255,255,0.55);

    font-size: 12px;

    line-height: 1.8;
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 11px;
}


.footer-column h4 {
    margin-bottom: 8px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: white;
}


.footer-column a {
    color: rgba(255,255,255,0.55);

    font-size: 12px;

    transition:
        color 0.2s ease;
}


.footer-column a:hover {
    color: white;
}


.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 60px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255,255,255,0.08);

    color: rgba(255,255,255,0.4);

    font-size: 10px;
}


/* =========================================================
   23. CART OVERLAY
========================================================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 2000;

    background:
        rgba(2, 25, 40, 0.45);

    backdrop-filter: blur(5px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.cart-overlay.active {
    opacity: 1;

    visibility: visible;
}


.cart-drawer {
    position: absolute;

    top: 0;
    right: 0;

    width: min(440px, 94vw);

    height: 100%;

    display: flex;
    flex-direction: column;

    background: white;

    transform:
        translateX(100%);

    transition:
        transform 0.4s
        cubic-bezier(.2,.8,.2,1);
}


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


/* =========================================================
   24. CART HEADER
========================================================= */

.cart-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 28px;

    border-bottom:
        1px solid var(--border);
}


.cart-header h3 {
    font-family: "Manrope", sans-serif;

    font-size: 23px;

    color: var(--blue-dark);
}


.close-cart {
    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: var(--blue-pale);

    color: var(--blue-dark);

    transition:
        transform 0.2s ease;
}


.close-cart:hover {
    transform: rotate(90deg);
}


/* =========================================================
   25. CART ITEMS
========================================================= */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 28px;
}


.cart-item {
    display: grid;

    grid-template-columns:
        55px 1fr auto;

    gap: 13px;

    align-items: center;

    padding: 16px 0;

    border-bottom:
        1px solid var(--border);
}


.cart-item-image {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: var(--blue-pale);

    font-size: 25px;
}


.cart-item-details h4 {
    font-family: "Manrope", sans-serif;

    font-size: 12px;

    line-height: 1.4;

    color: var(--blue-dark);
}


.cart-item-price {
    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
}


.cart-item > strong {
    font-size: 11px;

    color: var(--blue-dark);
}


/* =========================================================
   26. QUANTITY
========================================================= */

.quantity {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 8px;
}


.quantity button {
    width: 24px;
    height: 24px;

    border-radius: 7px;

    background: var(--blue-pale);

    color: var(--blue);

    font-weight: 800;
}


.quantity span {
    min-width: 15px;

    text-align: center;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   27. EMPTY CART
========================================================= */

.empty-cart {
    min-height: 300px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.empty-cart-icon {
    width: 75px;
    height: 75px;

    display: grid;
    place-items: center;

    border-radius: 25px;

    background: var(--blue-pale);

    font-size: 32px;

    margin-bottom: 18px;
}


.empty-cart h4 {
    font-family: "Manrope", sans-serif;

    color: var(--blue-dark);
}


.empty-cart p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   28. CART TOTAL
========================================================= */

.cart-total {
    padding: 25px 28px;

    border-top:
        1px solid var(--border);

    background: #fbfdfe;
}


.total-line {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 10px;

    color: var(--muted);

    font-size: 12px;
}


.total-line.final {
    margin-top: 17px;

    padding-top: 17px;

    border-top:
        1px solid var(--border);

    color: var(--blue-dark);

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    font-weight: 800;
}


.checkout-btn {
    width: 100%;

    min-height: 53px;

    margin-top: 20px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color: white;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 15px 30px rgba(8,126,164,0.20);

    transition:
        transform 0.2s ease;
}


.checkout-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   29. TOAST
========================================================= */

.toast {
    position: fixed;

    left: 50%;
    bottom: 30px;

    z-index: 3000;

    transform:
        translate(-50%, 30px);

    padding: 13px 20px;

    border-radius: 13px;

    background: var(--blue-dark);

    color: white;

    font-size: 12px;
    font-weight: 600;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.18);
}


.toast.show {
    opacity: 1;

    transform:
        translate(-50%, 0);
}


/* =========================================================
   30. SHOP PAGE
========================================================= */

.shop-hero {
    padding: 180px 0 90px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(54,189,232,0.18),
            transparent 35%
        ),
        #eefaff;
}


.shop-page-title {
    font-family: "Manrope", sans-serif;

    font-size: clamp(45px, 6vw, 70px);

    line-height: 1;

    letter-spacing: -3px;

    color: var(--blue-dark);
}


.shop-page-description {
    max-width: 600px;

    margin-top: 18px;

    color: var(--muted);

    font-size: 16px;
}


/* =========================================================
   31. SHOP CONTROLS
========================================================= */

.products-section {
    background: var(--background);
}


.shop-controls {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 20px;
}


.filter-row {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.filter {
    padding: 10px 15px;

    border-radius: 30px;

    background: white;

    border: 1px solid var(--border);

    color: var(--muted);

    font-size: 11px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.filter:hover {
    transform: translateY(-2px);
}


.filter.active {
    background: var(--blue);

    border-color: var(--blue);

    color: white;
}


.shop-search {
    width: 260px;

    height: 45px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 0 14px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 13px;
}


.shop-search span {
    font-size: 13px;
}


.shop-search input {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: var(--blue-dark);

    font-size: 11px;
}


.shop-search input::placeholder {
    color: #9aabb6;
}


.no-products {
    grid-column: 1 / -1;

    padding: 80px 20px;

    text-align: center;
}


.no-products div {
    font-size: 40px;
}


.no-products h3 {
    margin-top: 15px;

    font-family: "Manrope", sans-serif;

    color: var(--blue-dark);
}


.no-products p {
    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   32. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-content {
        gap: 35px;
    }


    .hero h1 {
        font-size: 56px;
    }


    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .why-grid {
        gap: 40px;
    }

}


/* =========================================================
   33. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .navbar {
        padding: 15px 0;
    }


    .navbar.scrolled {
        padding: 12px 0;
    }


    .nav-links {
        position: absolute;

        top: 72px;
        left: 4%;

        width: 92%;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 15px;

        background: rgba(255,255,255,0.97);

        backdrop-filter: blur(20px);

        border-radius: 20px;

        box-shadow:
            0 20px 50px rgba(6,44,73,0.12);
    }


    .nav-links.active {
        display: flex;
    }


    .nav-links a {
        width: 100%;

        padding: 13px 10px;
    }


    .nav-links a::after {
        display: none;
    }


    .mobile-menu {
        display: block;
    }


    .hero {
        min-height: auto;

        padding:
            145px 0
            100px;
    }


    .hero-content {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 50px;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons {
        justify-content: center;
    }


    .hero-stats {
        justify-content: center;

        gap: 25px;
    }


    .hero-visual {
        min-height: 450px;
    }


    .water-card {
        width: 220px;
        height: 350px;
    }


    .water-glow {
        width: 350px;
        height: 350px;
    }


    .bottle-label {
        top: 140px;
    }


    .float-one {
        left: 0;
    }


    .float-two {
        right: 0;
    }


    .section {
        padding: 80px 0;
    }


    .shop-header {
        align-items: flex-start;

        flex-direction: column;
    }


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


    .why-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .why-text .section-description {
        margin-left: auto;
        margin-right: auto;
    }


    .benefits {
        text-align: left;

        grid-template-columns: 1fr;
    }


    .why-circle {
        width: 280px;
        height: 280px;
    }


    .footer-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 35px;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    .shop-hero {
        padding:
            140px 0
            70px;
    }


    .shop-controls {
        align-items: stretch;

        flex-direction: column;
    }


    .shop-search {
        width: 100%;
    }

}


/* =========================================================
   34. SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .container {
        width: 90%;
    }


    .hero h1 {
        font-size: 45px;

        letter-spacing: -2.5px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .btn {
        width: 100%;
    }


    .hero-stats {
        gap: 18px;
    }


    .stat strong {
        font-size: 16px;
    }


    .floating-card {
        font-size: 10px;

        padding: 10px;
    }


    .floating-icon {
        width: 25px;
        height: 25px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .footer-brand {
        grid-column: auto;
    }


    .cart-drawer {
        width: 100%;
    }

}

/* =========================================================
   WAVE SHOP — QUANTITY & ADD TO CART
========================================================= */


/* =========================================================
   PRODUCT PRICE ROW
========================================================= */

.product-price-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 16px;
}


/* =========================================================
   QUANTITY WRAPPER
========================================================= */

.quantity-wrapper {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    margin-top: 16px;

    padding: 9px 10px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: #f8fbfc;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.quantity-wrapper:hover {

    border-color:
        rgba(8, 126, 164, 0.25);

    background: white;

    box-shadow:
        0 8px 20px
        rgba(6, 44, 73, 0.05);

}


/* =========================================================
   QUANTITY LABEL
========================================================= */

.quantity-label {

    color: var(--muted);

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   QUANTITY CONTROL
========================================================= */

.quantity-control {

    display: flex;

    align-items: center;

    gap: 8px;
}


/* =========================================================
   QUANTITY BUTTON
========================================================= */

.quantity-btn {

    width: 30px;

    height: 30px;

    display: grid;

    place-items: center;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: white;

    color: var(--blue-dark);

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}


.quantity-btn:hover {

    transform: translateY(-2px);

    border-color: var(--blue);

    background: var(--blue);

    color: white;

    box-shadow:
        0 6px 14px
        rgba(8, 126, 164, 0.18);

}


.quantity-btn:active {

    transform: scale(0.92);

}


/* =========================================================
   QUANTITY NUMBER
========================================================= */

.quantity-value {

    min-width: 25px;

    text-align: center;

    color: var(--blue-dark);

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;
}


/* =========================================================
   QUANTITY POP ANIMATION
========================================================= */

.quantity-pop {

    animation:
        quantityPop 0.22s ease;

}


@keyframes quantityPop {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.35);

    }

    100% {

        transform: scale(1);

    }

}


/* =========================================================
   FULL ADD TO CART BUTTON
========================================================= */

.add-to-cart-full {

    width: 100%;

    min-height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 12px;

    padding: 11px 15px;

    border: 1px solid transparent;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #075d7f
        );

    color: white;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    cursor: pointer;

    box-shadow:
        0 9px 20px
        rgba(8, 126, 164, 0.16);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.add-to-cart-full:hover {

    transform: translateY(-3px);

    box-shadow:
        0 13px 28px
        rgba(8, 126, 164, 0.24);

}


.add-to-cart-full:active {

    transform: translateY(-1px)
               scale(0.98);

}


.add-to-cart-full:disabled {

    cursor: default;

}


/* =========================================================
   CART ICON
========================================================= */

.add-cart-icon {

    width: 25px;

    height: 25px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background:
        rgba(255,255,255,0.14);

    font-size: 12px;

    transition:
        transform 0.2s ease;

}


.add-to-cart-full:hover
.add-cart-icon {

    transform:
        scale(1.08)
        rotate(-3deg);

}


/* =========================================================
   ADDED STATE
========================================================= */

.add-to-cart-full.added {

    background:
        linear-gradient(
            135deg,
            #15965b,
            #0d7547
        );

    box-shadow:
        0 10px 24px
        rgba(21, 150, 91, 0.22);

    animation:
        addedPulse 0.35s ease;

}


@keyframes addedPulse {

    0% {

        transform: scale(1);

    }

    45% {

        transform: scale(1.035);

    }

    100% {

        transform: scale(1);

    }

}


/* =========================================================
   CART BOUNCE
========================================================= */

.cart-bounce {

    animation:
        cartBounce 0.6s ease;

}


@keyframes cartBounce {

    0% {

        transform: scale(1);

    }

    25% {

        transform: scale(1.15)
                   rotate(-4deg);

    }

    50% {

        transform: scale(0.94)
                   rotate(3deg);

    }

    75% {

        transform: scale(1.08)
                   rotate(-2deg);

    }

    100% {

        transform: scale(1);

    }

}


/* =========================================================
   PRODUCT CARD IMPROVEMENT
========================================================= */

.product-card {

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


.product-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 24px 50px
        rgba(6, 44, 73, 0.10);

}


/* =========================================================
   MOBILE SHOP CONTROLS
========================================================= */

@media (
    max-width: 600px
) {

    .quantity-wrapper {

        padding: 8px;

    }


    .quantity-btn {

        width: 32px;

        height: 32px;

    }


    .add-to-cart-full {

        min-height: 46px;

    }

}

/* =========================================================
   WAVE — PREMIUM CART UPGRADES
========================================================= */


/* =========================================================
   CART ITEM TITLE ROW
========================================================= */

.cart-item-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}


.cart-item-title-row h4 {
    flex: 1;
}


/* =========================================================
   REMOVE ITEM
========================================================= */

.remove-cart-item {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: transparent;

    color: #9aabb6;

    font-size: 18px;

    line-height: 1;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.remove-cart-item:hover {
    background: #fff0f0;

    color: #d64545;

    transform: scale(1.08);
}


/* =========================================================
   CART ITEM HOVER
========================================================= */

.cart-item {
    position: relative;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.cart-item:hover {
    background:
        linear-gradient(
            90deg,
            rgba(233,248,252,0.35),
            transparent
        );
}


/* =========================================================
   CART IMAGE ENHANCEMENT
========================================================= */

.cart-item-image {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.cart-item:hover
.cart-item-image {
    transform: scale(1.04);

    box-shadow:
        0 8px 20px
        rgba(8,126,164,0.10);
}


/* =========================================================
   CART QUANTITY BUTTONS
========================================================= */

.quantity button {
    transition:
        transform 0.15s ease,
        background 0.15s ease,
        color 0.15s ease;
}


.quantity button:hover {
    transform: scale(1.1);

    background: var(--blue);

    color: white;
}


.quantity button:active {
    transform: scale(0.9);
}


/* =========================================================
   EMPTY CART BUTTON
========================================================= */

.empty-cart-btn {
    min-height: 43px;

    margin-top: 22px;

    padding: 0 20px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-dark)
        );

    color: white;

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 10px 25px
        rgba(8,126,164,0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.empty-cart-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px
        rgba(8,126,164,0.25);
}


/* =========================================================
   CART HEADER POLISH
========================================================= */

.cart-header {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f7fcfe
        );
}


.cart-header::after {
    content: "";

    position: absolute;

    left: 28px;
    right: 28px;
    bottom: -1px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            transparent
        );

    opacity: 0.18;
}


/* =========================================================
   CART TOTAL POLISH
========================================================= */

.cart-total {
    box-shadow:
        0 -15px 40px
        rgba(6,44,73,0.04);
}


.checkout-btn {
    position: relative;

    overflow: hidden;
}


.checkout-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.22),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.6s ease;
}


.checkout-btn:hover::before {
    left: 140%;
}


/* =========================================================
   CART BOUNCE
========================================================= */

.cart-button.cart-bounce {

    animation:
        cartBounce 0.6s ease;

}


@keyframes cartBounce {

    0% {
        transform: scale(1);
    }

    25% {
        transform:
            scale(1.16)
            rotate(-4deg);
    }

    50% {
        transform:
            scale(0.94)
            rotate(3deg);
    }

    75% {
        transform:
            scale(1.08)
            rotate(-2deg);
    }

    100% {
        transform: scale(1);
    }

}


/* =========================================================
   CART COUNT POP
========================================================= */

.cart-count {
    transition:
        transform 0.2s ease;
}


.cart-button.cart-bounce
.cart-count {

    transform: scale(1.2);

}


/* =========================================================
   CART SCROLLBAR
========================================================= */

.cart-items::-webkit-scrollbar {
    width: 5px;
}


.cart-items::-webkit-scrollbar-track {
    background: transparent;
}


.cart-items::-webkit-scrollbar-thumb {
    background:
        rgba(8,126,164,0.18);

    border-radius: 20px;
}


.cart-items::-webkit-scrollbar-thumb:hover {
    background:
        rgba(8,126,164,0.35);
}


/* =========================================================
   MOBILE CART
========================================================= */

@media (max-width: 450px) {

    .cart-header {
        padding: 22px;
    }


    .cart-items {
        padding:
            15px 22px;
    }


    .cart-total {
        padding:
            20px 22px;
    }


    .cart-item {
        grid-template-columns:
            50px 1fr auto;

        gap: 10px;
    }


    .cart-item-image {
        width: 50px;
        height: 50px;
    }


    .cart-item > strong {
        font-size: 10px;
    }


    .checkout-btn {
        min-height: 55px;
    }

}

/* =====================================================
   PRODUCT ALREADY IN CART
===================================================== */

.add-to-cart-full.in-cart {

    background:
        linear-gradient(
            135deg,
            #15965b,
            #0d7547
        );

    box-shadow:
        0 10px 24px
        rgba(21, 150, 91, 0.18);

}


.add-to-cart-full.in-cart:hover {

    background:
        linear-gradient(
            135deg,
            #128451,
            #09643d
        );

}


/* Make the checkmark feel more premium */

.add-to-cart-full.in-cart
.add-cart-icon {

    background:
        rgba(255,255,255,0.16);

    font-weight: 900;

}

/* =========================================================
   WAVE — LUXURY HOMEPAGE EXPERIENCE
   ---------------------------------------------------------
   HOMEPAGE ONLY
   Does NOT replace shop/cart/checkout functionality.
========================================================= */


/* =========================================================
   1. LUXURY HOMEPAGE VARIABLES
========================================================= */

:root {

    --luxury-navy: #031b2d;
    --luxury-blue: #087ea4;
    --luxury-cyan: #4ed8f5;
    --luxury-ice: #effcff;

    --glass-white: rgba(255,255,255,0.72);
    --glass-border: rgba(255,255,255,0.75);

    --luxury-shadow:
        0 30px 80px rgba(3, 37, 58, 0.12);

    --luxury-shadow-heavy:
        0 40px 100px rgba(3, 37, 58, 0.18);
}


/* =========================================================
   2. PREMIUM HERO
========================================================= */

.hero {

    min-height: 920px;

    padding-top: 125px;

    background:

        radial-gradient(
            circle at 72% 20%,
            rgba(78,216,245,0.30),
            transparent 28%
        ),

        radial-gradient(
            circle at 90% 75%,
            rgba(8,126,164,0.13),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 15%,
            rgba(255,255,255,0.95),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #e9faff 0%,
            #ffffff 45%,
            #e4f8fc 100%
        );
}


/* giant atmospheric glow */

.hero::before {

    width: 720px;
    height: 720px;

    top: -300px;
    left: -260px;

    background:
        radial-gradient(
            circle,
            rgba(78,216,245,0.13),
            transparent 68%
        );

    animation:
        heroOrb 12s ease-in-out infinite alternate;
}


.hero::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -160px;
    bottom: 50px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(54,189,232,0.13),
            transparent 70%
        );

    pointer-events: none;

    animation:
        heroOrb 9s ease-in-out infinite alternate-reverse;
}


@keyframes heroOrb {

    from {
        transform: translate3d(0,0,0) scale(1);
    }

    to {
        transform: translate3d(25px,20px,0) scale(1.08);
    }
}


/* =========================================================
   3. HERO CONTENT
========================================================= */

.hero-content {

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(500px, 1.08fr);

    gap: 35px;

    max-width: 1260px;
}


/* =========================================================
   4. HERO TEXT
========================================================= */

.hero-text {

    position: relative;

    z-index: 10;
}


/* premium badge */

.hero-badge {

    position: relative;

    padding: 10px 17px;

    border:
        1px solid rgba(8,126,164,0.15);

    background:
        rgba(255,255,255,0.62);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 12px 35px rgba(8,126,164,0.08);

    overflow: hidden;
}


.hero-badge::after {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.7),
            transparent
        );

    transform: skewX(-20deg);

    animation:
        badgeShine 4s ease-in-out infinite;
}


@keyframes badgeShine {

    0%,
    55% {
        left: -100%;
    }

    80%,
    100% {
        left: 150%;
    }
}


/* =========================================================
   5. HERO HEADING
========================================================= */

.hero h1 {

    max-width: 700px;

    font-size:
        clamp(56px, 6.8vw, 92px);

    line-height: 0.92;

    letter-spacing: -5.5px;

    margin-bottom: 30px;

    text-shadow:
        0 10px 35px rgba(6,44,73,0.05);
}


.hero h1 span {

    position: relative;

    display: inline-block;

    background:
        linear-gradient(
            110deg,
            #087ea4,
            #26b9df,
            #075d7f
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero h1 span::after {

    content: "";

    position: absolute;

    left: 3px;
    right: 0;

    bottom: -9px;

    height: 3px;

    border-radius: 50%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(54,189,232,0.7),
            transparent
        );

    filter:
        blur(1px);

    opacity: 0.65;
}


/* =========================================================
   6. HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 525px;

    font-size: 16px;

    line-height: 1.9;

    color: #617b8e;
}


/* =========================================================
   7. HERO BUTTONS
========================================================= */

.hero-buttons {

    gap: 14px;

    margin-top: 5px;

    margin-bottom: 42px;
}


.hero-buttons .btn {

    min-height: 57px;

    padding:
        0 25px;

    border-radius: 16px;

    position: relative;

    overflow: hidden;
}


.btn-primary {

    background:
        linear-gradient(
            135deg,
            #087ea4 0%,
            #075d7f 100%
        );

    box-shadow:
        0 18px 38px rgba(8,126,164,0.25);
}


.btn-primary::after {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 75%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.22),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.7s ease;
}


.btn-primary:hover::after {

    left: 140%;
}


.btn-secondary {

    background:
        rgba(255,255,255,0.68);

    backdrop-filter:
        blur(15px);

    border:
        1px solid rgba(8,126,164,0.12);

    box-shadow:
        0 12px 30px rgba(6,44,73,0.06);
}


/* =========================================================
   8. HERO STATS — FLOATING MINI PANELS
========================================================= */

.hero-stats {

    gap: 12px;

    padding: 9px;

    width: fit-content;

    border-radius: 20px;

    background:
        rgba(255,255,255,0.55);

    backdrop-filter:
        blur(20px);

    border:
        1px solid rgba(255,255,255,0.75);

    box-shadow:
        0 18px 45px rgba(6,44,73,0.07);
}


.stat {

    min-width: 105px;

    padding:
        13px 15px;

    border-radius: 14px;

    background:
        rgba(255,255,255,0.62);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.stat:hover {

    transform:
        translateY(-4px);

    background:
        rgba(255,255,255,0.95);
}


.stat strong {

    font-size: 18px;
}


.stat span {

    font-size: 10px;
}


/* =========================================================
   9. HERO VISUAL — ATMOSPHERE
========================================================= */

.hero-visual {

    min-height: 640px;

    perspective: 1200px;

    position: relative;
}


/* large water aura */

.water-glow {

    width: 590px;
    height: 590px;

    background:

        radial-gradient(
            circle at center,
            rgba(78,216,245,0.34) 0%,
            rgba(54,189,232,0.18) 25%,
            rgba(54,189,232,0.07) 48%,
            transparent 72%
        );

    filter:
        blur(1px);

    animation:
        luxuryGlow 7s ease-in-out infinite;
}


@keyframes luxuryGlow {

    0%,
    100% {
        transform:
            scale(0.96)
            rotate(0deg);
    }

    50% {
        transform:
            scale(1.07)
            rotate(4deg);
    }
}


/* =========================================================
   10. DECORATIVE ORBITS
========================================================= */

.hero-visual::before {

    content: "";

    position: absolute;

    width: 510px;
    height: 510px;

    border:
        1px solid rgba(8,126,164,0.11);

    border-radius: 50%;

    transform:
        rotate(-18deg);

    box-shadow:
        0 0 0 35px rgba(8,126,164,0.018),
        0 0 0 70px rgba(8,126,164,0.012);

    animation:
        orbitRotate 18s linear infinite;
}


.hero-visual::after {

    content: "";

    position: absolute;

    width: 370px;
    height: 370px;

    border:
        1px dashed rgba(8,126,164,0.13);

    border-radius: 50%;

    animation:
        orbitRotateReverse 14s linear infinite;
}


@keyframes orbitRotate {

    from {
        transform:
            rotate(-18deg);
    }

    to {
        transform:
            rotate(342deg);
    }
}


@keyframes orbitRotateReverse {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(-360deg);
    }
}


/* =========================================================
   11. PREMIUM WATER BOTTLE
========================================================= */

.water-card {

    width: 300px;
    height: 485px;

    border-radius:
        70px 70px 48px 48px;

    background:

        linear-gradient(
            125deg,
            rgba(255,255,255,0.96),
            rgba(220,248,255,0.68) 50%,
            rgba(180,232,246,0.52)
        );

    border:
        1px solid rgba(255,255,255,0.95);

    box-shadow:

        0 50px 100px rgba(3,37,58,0.20),

        inset
        15px 0 30px
        rgba(255,255,255,0.38),

        inset
        -10px 0 25px
        rgba(8,126,164,0.05);

    transform:
        perspective(1000px)
        rotateY(-12deg)
        rotateX(2deg);

    animation:
        premiumBottle 7s ease-in-out infinite;

    z-index: 3;
}


@keyframes premiumBottle {

    0%,
    100% {

        transform:
            perspective(1000px)
            rotateY(-12deg)
            rotateX(2deg)
            translateY(0);
    }

    50% {

        transform:
            perspective(1000px)
            rotateY(-5deg)
            rotateX(2deg)
            translateY(-18px);
    }
}


/* bottle neck */

.water-card::before {

    top: -105px;

    width: 108px;
    height: 145px;

    border-radius:
        40px 40px 18px 18px;

    background:

        linear-gradient(
            110deg,
            rgba(255,255,255,0.95),
            rgba(164,224,242,0.85)
        );

    box-shadow:

        0 -8px 25px
        rgba(8,126,164,0.08),

        inset
        7px 0 15px
        rgba(255,255,255,0.55);
}


/* =========================================================
   12. BOTTLE HIGHLIGHTS
========================================================= */

.bottle-highlight {

    left: 35px;

    width: 62px;

    opacity: 0.7;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.7),
            transparent
        );

    filter:
        blur(2px);
}


.water-card::after {

    background:

        linear-gradient(
            105deg,
            rgba(255,255,255,0.80),
            transparent 25%,
            transparent 62%,
            rgba(255,255,255,0.25)
        );
}


/* =========================================================
   13. PREMIUM BOTTLE LABEL
========================================================= */

.bottle-label {

    left: 28px;
    right: 28px;

    top: 195px;

    padding:
        34px 16px;

    border-radius: 25px;

    background:
        rgba(255,255,255,0.76);

    backdrop-filter:
        blur(20px);

    border:
        1px solid rgba(255,255,255,0.95);

    box-shadow:
        0 20px 45px rgba(6,44,73,0.10);
}


.bottle-label small {

    letter-spacing: 3px;
}


.bottle-label strong {

    font-size: 34px;

    letter-spacing: 7px;

    background:
        linear-gradient(
            135deg,
            #062c49,
            #087ea4
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================================
   14. FLOATING GLASS CARDS
========================================================= */

.floating-card {

    padding:
        14px 18px;

    border:
        1px solid rgba(255,255,255,0.85);

    background:
        rgba(255,255,255,0.70);

    backdrop-filter:
        blur(22px);

    box-shadow:

        0 25px 55px rgba(3,37,58,0.12),

        inset
        0 1px 0
        rgba(255,255,255,0.8);

    border-radius: 18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.floating-card:hover {

    transform:
        translateY(-8px)
        scale(1.03);

    box-shadow:
        0 30px 65px rgba(3,37,58,0.16);
}


.floating-icon {

    width: 34px;
    height: 34px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #e6faff,
            #c7f2fb
        );

    box-shadow:
        inset 0 1px 0 white;
}


.float-one {

    left: -2%;
    top: 17%;
}


.float-two {

    right: -4%;
    bottom: 16%;
}


/* =========================================================
   15. EXTRA FLOATING DECORATIONS
========================================================= */

.hero-visual .float-one::before {

    content: "✦";

    position: absolute;

    left: -35px;
    top: -25px;

    color:
        rgba(8,126,164,0.35);

    font-size: 20px;

    animation:
        sparkle 3s ease-in-out infinite;
}


.hero-visual .float-two::after {

    content: "•";

    position: absolute;

    right: -35px;
    bottom: -28px;

    color:
        rgba(54,189,232,0.5);

    font-size: 35px;

    animation:
        sparkle 4s ease-in-out infinite reverse;
}


@keyframes sparkle {

    0%,
    100% {
        transform:
            scale(0.8)
            rotate(0deg);

        opacity: 0.35;
    }

    50% {
        transform:
            scale(1.25)
            rotate(20deg);

        opacity: 1;
    }
}


/* =========================================================
   16. WAVE DIVIDER — MORE ORGANIC
========================================================= */

.wave-divider svg {

    height: 125px;
}


.wave-divider path {

    fill:
        #f7fbfd;
}


/* =========================================================
   17. CATEGORIES — PREMIUM FLOATING CARDS
========================================================= */

.categories {

    position: relative;

    overflow: hidden;

    padding-top: 125px;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(54,189,232,0.08),
            transparent 25%
        ),

        #f7fbfd;
}


.categories::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -130px;
    top: 80px;

    border-radius: 50%;

    border:
        1px solid rgba(8,126,164,0.07);
}


.categories .container {

    position: relative;

    z-index: 2;
}


.categories .section-title {

    max-width: 600px;
}


/* category grid */

.category-grid {

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 50px;
}


/* category cards */

.category-card {

    min-height: 215px;

    padding: 27px;

    border:
        1px solid rgba(255,255,255,0.9);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.95),
            rgba(244,252,254,0.80)
        );

    box-shadow:
        0 18px 50px rgba(6,44,73,0.06);

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
}


.category-card:hover {

    transform:
        translateY(-13px)
        rotate(-1deg);

    box-shadow:
        0 35px 70px rgba(6,44,73,0.13);

    border-color:
        rgba(54,189,232,0.35);
}


.category-card:nth-child(2):hover {

    transform:
        translateY(-13px)
        rotate(1deg);
}


.category-card:nth-child(3):hover {

    transform:
        translateY(-13px)
        rotate(-1deg);
}


.category-card:nth-child(4):hover {

    transform:
        translateY(-13px)
        rotate(1deg);
}


/* category decoration */

.category-card::before {

    width: 180px;
    height: 180px;

    top: -80px;
    right: -70px;

    background:
        radial-gradient(
            circle,
            rgba(54,189,232,0.16),
            transparent 70%
        );

    transition:
        transform 0.5s ease;
}


.category-card:hover::before {

    transform:
        scale(1.3);
}


/* icon */

.category-icon {

    width: 58px;
    height: 58px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #e8faff,
            #c9f1fa
        );

    box-shadow:
        0 12px 25px rgba(8,126,164,0.09);

    font-size: 26px;

    transition:
        transform 0.3s ease;
}


.category-card:hover
.category-icon {

    transform:
        scale(1.12)
        rotate(-5deg);
}


.category-card h3 {

    font-size: 19px;

    margin-top: 22px;
}


.category-card p {

    font-size: 11px;
}


/* arrow */

.category-arrow {

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    right: 20px;
    bottom: 20px;

    border-radius: 50%;

    background:
        rgba(8,126,164,0.07);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.category-card:hover
.category-arrow {

    transform:
        translateX(5px);

    background:
        var(--blue);

    color: white;
}


/* =========================================================
   18. FEATURED PRODUCTS — LUXURY SECTION
========================================================= */

.featured {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fcfe
        );
}


.featured::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -260px;
    top: 100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(54,189,232,0.09),
            transparent 70%
        );
}


.featured .container {

    position: relative;

    z-index: 2;
}


.featured .section-label {

    letter-spacing: 3px;
}


.featured .section-title {

    font-size:
        clamp(38px, 4.5vw, 55px);
}


/* product grid */

.product-grid {

    gap: 23px;

    margin-top: 55px;
}


/* product cards */

.featured .product-card {

    position: relative;

    border:
        1px solid rgba(8,126,164,0.08);

    border-radius: 27px;

    box-shadow:
        0 15px 45px rgba(6,44,73,0.06);

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.4s ease;
}


.featured .product-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 35px 70px rgba(6,44,73,0.13);
}


/* product image */

.featured .product-image {

    height: 245px;

    background:

        radial-gradient(
            circle at center,
            rgba(255,255,255,0.95),
            transparent 45%
        ),

        linear-gradient(
            145deg,
            #eafaff,
            #d8f5fc
        );
}


.featured .product-image::before {

    width: 210px;
    height: 210px;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.85),
            rgba(255,255,255,0)
        );

    transition:
        transform 0.5s ease;
}


.featured .product-card:hover
.product-image::before {

    transform:
        scale(1.15);
}


.featured .product-emoji {

    font-size: 88px;

    transition:
        transform 0.5s
        cubic-bezier(.2,.8,.2,1);
}


.featured .product-card:hover
.product-emoji {

    transform:
        scale(1.16)
        translateY(-6px)
        rotate(-4deg);
}


/* product tag */

.featured .product-tag {

    top: 15px;
    left: 15px;

    padding:
        7px 11px;

    background:
        rgba(255,255,255,0.78);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 8px 20px rgba(6,44,73,0.07);
}


/* product info */

.featured .product-info {

    padding:
        22px;
}


.featured .product-name {

    font-size: 17px;
}


.featured .product-description {

    font-size: 11px;
}


/* =========================================================
   19. WHY WAVE — DRAMATIC LUXURY SECTION
========================================================= */

.why-wave {

    position: relative;

    padding:
        135px 0;

    background:

        radial-gradient(
            circle at 75% 45%,
            rgba(54,189,232,0.20),
            transparent 28%
        ),

        radial-gradient(
            circle at 15% 80%,
            rgba(54,189,232,0.08),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #021b2d,
            #043b58 55%,
            #052d45
        );
}


.why-wave::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 0 0 50px rgba(255,255,255,0.015),
        0 0 0 100px rgba(255,255,255,0.01);

    animation:
        orbitRotate 30s linear infinite;
}


.why-wave::after {

    content: "W";

    position: absolute;

    right: 4%;

    bottom: -100px;

    font-family: "Manrope", sans-serif;

    font-size: 360px;

    font-weight: 800;

    color:
        rgba(255,255,255,0.018);

    line-height: 1;
}


.why-grid {

    position: relative;

    z-index: 2;
}


/* =========================================================
   20. WHY WAVE BENEFIT BOXES
========================================================= */

.benefits {

    gap: 14px;

    margin-top: 42px;
}


.benefit {

    padding:
        17px;

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.045);

    backdrop-filter:
        blur(12px);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.benefit:hover {

    transform:
        translateY(-5px);

    background:
        rgba(255,255,255,0.08);

    border-color:
        rgba(78,216,245,0.20);
}


.benefit-icon {

    width: 46px;
    height: 46px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(78,216,245,0.18),
            rgba(255,255,255,0.06)
        );

    border:
        1px solid rgba(255,255,255,0.08);
}


/* =========================================================
   21. WHY WAVE VISUAL — LIQUID ORB
========================================================= */

.why-visual {

    min-height: 500px;

    position: relative;
}


.why-visual::before {

    content: "";

    position: absolute;

    width: 470px;
    height: 470px;

    border-radius: 50%;

    border:
        1px solid rgba(78,216,245,0.15);

    box-shadow:
        0 0 0 35px rgba(78,216,245,0.025),
        0 0 0 75px rgba(78,216,245,0.015);

    animation:
        orbitRotateReverse 25s linear infinite;
}


.why-circle {

    width: 380px;
    height: 380px;

    background:

        radial-gradient(
            circle at 35% 30%,
            rgba(255,255,255,0.16),
            transparent 28%
        ),

        radial-gradient(
            circle,
            rgba(54,189,232,0.38),
            rgba(54,189,232,0.04) 68%
        );

    border:
        1px solid rgba(255,255,255,0.13);

    box-shadow:

        0 40px 100px rgba(0,0,0,0.22),

        inset
        0 0 80px
        rgba(255,255,255,0.05);

    animation:
        liquidOrb 7s ease-in-out infinite;
}


@keyframes liquidOrb {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-14px)
            scale(1.035);
    }
}


.why-droplet {

    width: 170px;
    height: 170px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.18),
            rgba(255,255,255,0.04)
        );

    border:
        1px solid rgba(255,255,255,0.14);

    backdrop-filter:
        blur(20px);

    box-shadow:
        0 35px 70px rgba(0,0,0,0.20);

    font-size: 70px;
}


/* =========================================================
   22. SECTION TRANSITION
========================================================= */

.categories,
.featured,
.why-wave {

    isolation: isolate;
}


/* =========================================================
   23. SCROLL REVEAL FEEL
========================================================= */

.category-card,
.featured .product-card,
.benefit {

    will-change:
        transform;
}


/* =========================================================
   24. DESKTOP EXTRA DECORATION
========================================================= */

@media (min-width: 1001px) {

    .hero-content::before {

        content: "";

        position: absolute;

        left: -70px;
        top: 125px;

        width: 7px;
        height: 7px;

        border-radius: 50%;

        background:
            #4ed8f5;

        box-shadow:

            120px 80px 0
            rgba(78,216,245,0.35),

            30px 190px 0
            rgba(8,126,164,0.25);

        animation:
            sparkle 5s ease-in-out infinite;
    }


    .category-grid::before {

        content: "WAVE / PURE ESSENTIALS";

        position: absolute;

        right: 5%;

        margin-top: -30px;

        color:
            rgba(8,126,164,0.22);

        font-size: 8px;

        font-weight: 800;

        letter-spacing: 3px;
    }

}


/* =========================================================
   25. TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero {

        min-height: 850px;
    }


    .hero-content {

        grid-template-columns:
            1fr 1fr;

        gap: 20px;
    }


    .hero h1 {

        font-size:
            clamp(50px, 6vw, 68px);

        letter-spacing:
            -4px;
    }


    .hero-visual {

        min-height: 580px;
    }


    .water-card {

        width: 260px;
        height: 425px;
    }


    .water-glow {

        width: 480px;
        height: 480px;
    }


    .category-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .product-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   26. MOBILE — BEAUTIFUL FALLBACK
========================================================= */

@media (max-width: 760px) {

    .hero {

        min-height: auto;

        padding:
            135px 0
            80px;
    }


    .hero-content {

        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;
    }


    .hero h1 {

        font-size:
            clamp(47px, 14vw, 68px);

        letter-spacing:
            -3.5px;

        line-height:
            0.94;
    }


    .hero-description {

        margin-left: auto;
        margin-right: auto;

        font-size: 14px;
    }


    .hero-buttons {

        justify-content: center;

        margin-bottom: 32px;
    }


    .hero-buttons .btn {

        width: auto;
    }


    .hero-stats {

        width: 100%;

        justify-content: center;

        gap: 6px;

        padding: 7px;
    }


    .stat {

        min-width: 0;

        flex: 1;

        padding:
            11px 7px;
    }


    .stat strong {

        font-size: 15px;
    }


    .stat span {

        font-size: 9px;
    }


    /* mobile visual */

    .hero-visual {

        min-height: 480px;

        margin-top: 10px;
    }


    .hero-visual::before {

        width: 360px;
        height: 360px;
    }


    .hero-visual::after {

        width: 280px;
        height: 280px;
    }


    .water-glow {

        width: 380px;
        height: 380px;
    }


    .water-card {

        width: 225px;
        height: 365px;

        border-radius:
            55px 55px 35px 35px;
    }


    .water-card::before {

        width: 82px;
        height: 110px;

        top: -75px;
    }


    .bottle-label {

        top: 145px;

        left: 22px;
        right: 22px;

        padding:
            26px 12px;
    }


    .bottle-label strong {

        font-size: 27px;
    }


    .float-one {

        left: 0;

        top: 14%;
    }


    .float-two {

        right: 0;

        bottom: 14%;
    }


    .floating-card {

        font-size: 10px;

        padding:
            10px 12px;
    }


    .floating-icon {

        width: 28px;
        height: 28px;
    }


    /* categories */

    .categories {

        padding-top: 85px;
    }


    .category-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 12px;

        margin-top: 35px;
    }


    .category-card {

        min-height: 190px;

        padding: 20px;
    }


    .category-icon {

        width: 48px;
        height: 48px;

        font-size: 21px;
    }


    .category-card h3 {

        font-size: 16px;

        margin-top: 17px;
    }


    .category-card p {

        font-size: 10px;

        padding-right: 20px;
    }


    /* products */

    .featured {

        padding-top: 85px;
    }


    .featured .product-grid {

        gap: 15px;
    }


    .featured .product-image {

        height: 210px;
    }


    /* why */

    .why-wave {

        padding:
            90px 0;
    }


    .why-wave::after {

        font-size: 220px;

        bottom: -60px;
    }


    .why-grid {

        gap: 60px;
    }


    .benefits {

        gap: 12px;
    }


    .benefit {

        padding: 15px;
    }


    .why-visual {

        min-height: 380px;
    }


    .why-circle {

        width: 280px;
        height: 280px;
    }


    .why-visual::before {

        width: 350px;
        height: 350px;
    }


    .why-droplet {

        width: 125px;
        height: 125px;

        font-size: 55px;
    }

}


/* =========================================================
   27. SMALL PHONES
========================================================= */

@media (max-width: 450px) {

    .hero {

        padding:
            125px 0
            65px;
    }


    .hero h1 {

        font-size: 45px;

        letter-spacing:
            -2.5px;
    }


    .hero-buttons {

        flex-direction: row;

        flex-wrap: wrap;
    }


    .hero-buttons .btn {

        width: auto;

        flex: 1;

        min-width: 145px;
    }


    .hero-visual {

        min-height: 430px;
    }


    .water-card {

        width: 205px;
        height: 335px;
    }


    .water-glow {

        width: 330px;
        height: 330px;
    }


    .bottle-label {

        top: 130px;
    }


    .bottle-label strong {

        font-size: 24px;
    }


    .floating-card {

        padding:
            9px 10px;

        max-width: 145px;
    }


    .float-one {

        left: -5px;
    }


    .float-two {

        right: -5px;
    }


    .category-grid {

        grid-template-columns:
            1fr;
    }


    .category-card {

        min-height: 165px;
    }


    .category-card:hover,
    .category-card:nth-child(2):hover,
    .category-card:nth-child(3):hover,
    .category-card:nth-child(4):hover {

        transform:
            translateY(-7px);
    }


    .featured .product-grid {

        grid-template-columns:
            1fr;
    }


    .featured .product-image {

        height: 230px;
    }

}


/* =========================================================
   28. REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }

}

/* =========================================================
   INVENTORY / STOCK
========================================================= */

.stock-status {
    min-height: 18px;

    margin-top: 8px;

    font-size: 9px;

    font-weight: 700;
}

.in-stock {
    color: #15965b;
}

.out-of-stock {
    color: #c74646;

    font-weight: 800;

    letter-spacing: 0.2px;
}

.add-to-cart-full:disabled {
    opacity: 0.55;

    cursor: not-allowed;

    transform: none !important;

    box-shadow: none;
}

.quantity-btn:disabled {
    opacity: 0.45;

    cursor: not-allowed;
}

/* =========================================================
   WAVE LUXURY VISUAL ENHANCEMENTS
   Added for premium image-led presentation
========================================================= */

/* ---------- Premium page texture ---------- */

body {
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(54, 189, 232, 0.035),
            transparent 28%
        ),
        var(--background);
}

.navbar {
    background: rgba(247, 251, 253, 0.34);
    backdrop-filter: blur(16px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.88);
}


/* ---------- Homepage hero image ---------- */

.hero-visual {
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(54, 189, 232, 0.18),
            rgba(54, 189, 232, 0) 68%
        );
    filter: blur(4px);
    z-index: 0;
}

.water-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    z-index: 2;
}

.water-card::before,
.water-card::after {
    display: none;
}

.hero-bottle-img {
    position: absolute;
    width: 420px;
    height: 560px;
    max-width: none;
    object-fit: contain;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -49%);
    filter:
        drop-shadow(
            0 35px 50px
            rgba(6, 44, 73, 0.18)
        );
    z-index: 2;
    animation:
        heroBottleFloat 6s ease-in-out infinite;
}

@keyframes heroBottleFloat {
    0%,
    100% {
        transform:
            translate(-50%, -49%)
            rotate(-1deg);
    }

    50% {
        transform:
            translate(-50%, -53%)
            rotate(1deg);
    }
}

.water-card .bottle-highlight,
.water-card .bottle-label {
    z-index: 4;
}

.water-card .bottle-label {
    top: 175px;
    left: 10px;
    right: 10px;
    max-width: 250px;
    margin: 0 auto;
}

.water-card .bottle-highlight {
    display: none;
}

.float-one,
.float-two {
    z-index: 6;
    border:
        1px solid
        rgba(255, 255, 255, 0.75);
}


/* ---------- Luxury intro visual ---------- */

.luxury-intro-visual {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-water-photo {
    width: min(100%, 540px);
    border-radius: 34px;
    box-shadow:
        0 30px 70px
        rgba(6, 44, 73, 0.14);
    border:
        1px solid
        rgba(8, 126, 164, 0.08);
    transform:
        rotate(2deg);
}

.luxury-intro-visual .luxury-drop {
    z-index: 3;
    box-shadow:
        0 20px 50px
        rgba(8, 126, 164, 0.18);
}


/* ---------- Category cards ---------- */

.category-card {
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(239, 250, 253, 0.92)
        );
}

.category-card::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -36px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(54, 189, 232, 0.16),
            rgba(54, 189, 232, 0)
        );
}

.category-water .category-icon {
    background: #e8f9fd;
}

.category-grocery .category-icon {
    background: #f8f1df;
}

.category-dairy .category-icon {
    background: #eef4ff;
}

.category-essentials .category-icon {
    background: #eef1f3;
}


/* ---------- Product cards ---------- */

.product-card {
    box-shadow:
        0 15px 45px
        rgba(6, 44, 73, 0.05);
}

.product-card:hover {
    box-shadow:
        0 30px 70px
        rgba(6, 44, 73, 0.13);
}

.product-image {
    background:
        linear-gradient(
            145deg,
            #f8fdff 0%,
            #dff6fc 55%,
            #c4eaf5 100%
        );
}

.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.62),
            transparent 38%,
            transparent 72%,
            rgba(8, 126, 164, 0.06)
        );
    pointer-events: none;
}

.product-category {
    letter-spacing: 1.8px;
}

.stock-status {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.stock-status .in-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eefaf4;
    color: #21845b;
    font-size: 9px;
    font-weight: 800;
}

.stock-status .in-stock::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2fbd80;
}


/* ---------- Footer premium finish ---------- */

footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -230px;
    border-radius: 50%;
    border:
        1px solid
        rgba(54, 189, 232, 0.13);
}

footer::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    left: -120px;
    bottom: -160px;
    border-radius: 50%;
    background:
        rgba(54, 189, 232, 0.06);
}

.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 2;
}


/* ---------- Responsive ---------- */

@media (max-width: 760px) {

    .hero-bottle-img {
        width: 340px;
        height: 480px;
    }

    .water-card .bottle-label {
        top: 145px;
    }

    .luxury-intro-visual {
        min-height: 300px;
    }
}


/* =========================================================
   PREMIUM SHOP HERO
========================================================= */

.shop-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 95px;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(54, 189, 232, .22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #eaf9fd 0%,
            #ffffff 58%,
            #edfaff 100%
        );
}

.shop-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -190px;
    top: -240px;
    border-radius: 50%;
    border:
        1px solid
        rgba(8, 126, 164, .10);
}

.shop-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr);
    align-items: center;
    gap: 45px;
}

.shop-hero-copy {
    position: relative;
    z-index: 3;
}

.shop-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.shop-hero-visual img {
    width: min(100%, 550px);
    border-radius: 34px;
    box-shadow:
        0 30px 70px
        rgba(6, 44, 73, .14);
    border:
        1px solid
        rgba(8, 126, 164, .08);
    animation:
        shopHeroFloat 6s ease-in-out infinite;
}

.shop-hero-badge {
    position: absolute;
    right: 4%;
    bottom: 5%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    border-radius: 16px;
    background:
        rgba(255,255,255,.84);
    backdrop-filter: blur(18px);
    box-shadow:
        0 18px 40px
        rgba(6, 44, 73, .10);
    border:
        1px solid
        rgba(255,255,255,.9);
}

.shop-hero-badge span {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: var(--blue);
}

.shop-hero-badge strong {
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    letter-spacing: 3px;
    color: var(--blue-dark);
}

@keyframes shopHeroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 900px) {

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

    .shop-hero-visual {
        max-width: 650px;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {

    .shop-hero {
        padding: 130px 0 70px;
    }

    .shop-hero-badge {
        right: 1%;
        bottom: 2%;
    }
}


/* =========================================================
   PREMIUM PRODUCT ARTWORK
========================================================= */

.product-image {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(255, 255, 255, 0.95),
            rgba(235, 249, 253, 0.92) 45%,
            rgba(207, 238, 247, 0.95) 100%
        );
}

.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(125deg,
            rgba(255,255,255,.5) 0%,
            transparent 34%,
            transparent 66%,
            rgba(8,126,164,.08) 100%
        );
}

.product-art-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 12px 18px 4px;
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.product-art {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(6,44,73,.14));
    transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}

.product-card:hover .product-art-wrap {
    transform: translateY(-5px) scale(1.025);
}

.product-card:hover .product-art {
    transform: scale(1.045);
    filter: drop-shadow(0 22px 30px rgba(6,44,73,.18));
}

.featured .product-art-wrap {
    padding: 8px 12px 0;
}

.featured .product-card:hover .product-art-wrap {
    transform: translateY(-7px) scale(1.035);
}

@media (max-width: 650px) {
    .product-art-wrap {
        padding: 8px 10px 0;
    }
}


/* =========================================================
   WAVE 2026 — LUXURY BRAND POLISH
========================================================= */
:root {
    --ink: #061521;
    --ink-soft: #122633;
    --sea: #087ea4;
    --sea-2: #32c5e7;
    --mist: #eef8fb;
    --silver: #b8c7cf;
    --line: rgba(6, 35, 49, .10);
    --lux-shadow: 0 28px 90px rgba(5, 30, 43, .12);
}

body {
    background:
        radial-gradient(circle at 10% 0%, rgba(50,197,231,.06), transparent 28%),
        #f6fafc;
}

.navbar {
    padding: 18px 0;
}

.navbar:not(.scrolled) .logo,
.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .cart-button {
    color: #0a2535;
}

.logo {
    letter-spacing: 4px;
}

.logo-mark {
    border-radius: 13px;
    background: linear-gradient(145deg, #063652, #0b8fb8 62%, #7fe9ff);
    box-shadow: 0 14px 34px rgba(8,126,164,.28);
}

.nav-links a {
    font-size: 13px;
    letter-spacing: .01em;
}

.nav-account {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(8,126,164,.12);
    border-radius: 13px;
    background: rgba(255,255,255,.82);
    color: var(--ink) !important;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(5,30,43,.06);
}

.nav-account:hover {
    border-color: rgba(8,126,164,.25);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: center;
    padding-top: 130px;
    background:
        radial-gradient(circle at 82% 28%, rgba(65,212,243,.20), transparent 27%),
        radial-gradient(circle at 68% 76%, rgba(8,126,164,.10), transparent 26%),
        linear-gradient(135deg, #f3fbfd 0%, #ffffff 45%, #eef8fb 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 820px;
    height: 820px;
    right: -390px;
    top: -310px;
    border: 1px solid rgba(8,126,164,.07);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(to top, rgba(255,255,255,.95), transparent);
    pointer-events: none;
}

.hero-text h1 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: clamp(58px, 8vw, 108px);
    line-height: .92;
    letter-spacing: -6px;
    color: var(--ink);
}

.hero-text h1 span {
    background: linear-gradient(90deg, #063652, #087ea4 54%, #52d6ef);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-badge {
    border: 1px solid rgba(8,126,164,.12);
    background: rgba(255,255,255,.75);
    box-shadow: 0 12px 28px rgba(5,30,43,.05);
    backdrop-filter: blur(14px);
}

.water-card {
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 35px 120px rgba(5, 46, 67, .18);
    background:
        radial-gradient(circle at 50% 25%, rgba(255,255,255,.96), rgba(223,247,252,.92) 44%, rgba(185,231,241,.78));
}

.hero-bottle-img {
    filter: drop-shadow(0 28px 28px rgba(7,71,95,.22));
}

.floating-card {
    border: 1px solid rgba(255,255,255,.88);
    box-shadow: 0 20px 55px rgba(5,30,43,.11);
    backdrop-filter: blur(18px);
}

.btn-primary {
    background: linear-gradient(135deg, #063652, #087ea4 65%, #34c8e9);
    box-shadow: 0 16px 36px rgba(8,126,164,.22);
}

.btn-primary:hover {
    box-shadow: 0 20px 45px rgba(8,126,164,.30);
}

.btn-secondary {
    border-color: rgba(6,44,73,.12);
    background: rgba(255,255,255,.78);
}

.collection-section,
.products-section,
.luxury-intro,
.contact-section,
.checkout-section {
    position: relative;
}

.collection-card,
.product-card,
.checkout-card,
.summary-card,
.contact-card {
    box-shadow: var(--lux-shadow);
}

.collection-card {
    border-color: rgba(6,44,73,.08);
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 52%, transparent 72%);
    transform: translateX(-130%);
    transition: transform .9s ease;
    pointer-events: none;
}

.collection-card:hover::after {
    transform: translateX(130%);
}

.product-card {
    border: 1px solid rgba(6,44,73,.07);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8,126,164,.18);
    box-shadow: 0 34px 90px rgba(5,30,43,.14);
}

.product-image {
    background:
        radial-gradient(circle at 50% 26%, rgba(255,255,255,.98), rgba(232,248,252,.90) 48%, rgba(218,242,248,.72));
}

.product-art-wrap {
    width: 76%;
    height: 76%;
    display: grid;
    place-items: center;
}

.product-art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 22px 24px rgba(5,56,78,.15));
    transition: transform .45s ease;
}

.product-card:hover .product-art {
    transform: translateY(-5px) scale(1.035);
}

.stock-status {
    margin-top: 10px;
}

.in-stock {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #edf9f4;
    color: #16754c;
    font-size: 10px;
    font-weight: 800;
}

.shop-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 30%, rgba(53,198,233,.22), transparent 30%),
        linear-gradient(135deg, #effafd, #ffffff 60%, #edf8fb);
}

.shop-hero::before,
.contact-hero::before,
.checkout-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -260px;
    border: 1px solid rgba(8,126,164,.08);
    border-radius: 50%;
}

.shop-hero-visual img,
.contact-hero-visual img {
    filter: drop-shadow(0 26px 40px rgba(6,44,73,.16));
}

.checkout-hero {
    background:
        radial-gradient(circle at 78% 15%, rgba(50,197,231,.18), transparent 26%),
        linear-gradient(135deg, #edf9fc, #ffffff 68%);
}

.checkout-title {
    font-size: clamp(50px, 6.6vw, 84px);
}

.checkout-card,
.summary-card {
    border-color: rgba(6,44,73,.08);
}

.payment-option.active,
.mpesa-choice.active {
    box-shadow: 0 18px 38px rgba(8,126,164,.11);
}

footer {
    background:
        linear-gradient(145deg, #041923, #082f43 58%, #07536b);
    color: rgba(255,255,255,.82);
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-brand p,
.footer-column a,
.footer-bottom {
    color: rgba(255,255,255,.62);
}

.footer-column h4 {
    color: #fff;
}

.footer-column a:hover {
    color: #8fe9fa;
}

.account-section {
    min-height: 100vh;
    padding: 140px 0 80px;
    background:
        radial-gradient(circle at 18% 20%, rgba(50,197,231,.14), transparent 28%),
        radial-gradient(circle at 82% 70%, rgba(8,126,164,.10), transparent 30%),
        linear-gradient(135deg, #effafd, #ffffff 56%, #edf7fa);
}

.account-shell {
    width: min(980px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(6,44,73,.08);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 110px rgba(5,30,43,.14);
    backdrop-filter: blur(18px);
}

.account-brand {
    position: relative;
    min-height: 620px;
    padding: 50px;
    color: #fff;
    background:
        radial-gradient(circle at 70% 25%, rgba(72,215,242,.24), transparent 30%),
        linear-gradient(145deg, #062335, #073f55 58%, #0a809f);
}

.account-brand::after {
    content: "";
    position: absolute;
    inset: auto -60px -130px auto;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.account-brand h1 {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -3px;
}

.account-brand p {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin-top: 22px;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
}

.account-drop {
    position: absolute;
    right: 48px;
    bottom: 48px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, #fff, #d6f4fb 48%, #65cae2);
    box-shadow: 0 25px 60px rgba(0,0,0,.20), inset 0 0 30px rgba(255,255,255,.75);
}

.account-form-panel {
    padding: 48px;
}

.auth-tabs {
    display: flex;
    gap: 7px;
    padding: 5px;
    border-radius: 14px;
    background: #eef7fa;
    margin-bottom: 30px;
}

.auth-tab {
    flex: 1;
    min-height: 42px;
    border-radius: 10px;
    background: transparent;
    color: #708594;
    font-weight: 800;
    font-size: 12px;
}

.auth-tab.active {
    background: #fff;
    color: var(--blue-dark);
    box-shadow: 0 8px 20px rgba(5,30,43,.06);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    color: var(--blue-dark);
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    letter-spacing: -1.5px;
}

.auth-form p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 12px;
}

.auth-field {
    margin-top: 18px;
}

.auth-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 800;
}

.auth-field input {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 13px;
    outline: none;
    background: #fbfdfe;
}

.auth-field input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(8,126,164,.08);
}

.auth-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    border-radius: 13px;
    background: linear-gradient(135deg, #063652, #087ea4);
    color: white;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.auth-note {
    margin-top: 16px;
    padding: 12px 13px;
    border-radius: 12px;
    background: #f3f8fa;
    color: #788d99;
    font-size: 9px;
    line-height: 1.6;
}

.account-status {
    display: none;
    padding: 20px;
    border: 1px solid rgba(8,126,164,.10);
    border-radius: 18px;
    background: #f5fbfd;
}

.account-status.active {
    display: block;
}

.account-status h3 {
    color: var(--blue-dark);
    font-family: "Manrope", sans-serif;
}

.account-status p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
}

.account-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.account-actions a,
.account-actions button {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 11px;
    font-size: 10px;
    font-weight: 800;
}

.account-actions a {
    display: inline-flex;
    align-items: center;
    background: #063652;
    color: #fff;
}

.account-actions button {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--blue-dark);
}

@media (max-width: 850px) {
    .account-shell {
        grid-template-columns: 1fr;
    }

    .account-brand {
        min-height: 330px;
        padding: 34px;
    }

    .account-brand h1 {
        margin-top: 35px;
    }

    .account-drop {
        width: 110px;
        height: 110px;
        right: 28px;
        bottom: 28px;
    }
}

@media (max-width: 650px) {
    .nav-account span {
        display: none;
    }

    .nav-account {
        width: 42px;
        justify-content: center;
        padding: 0;
    }

    .account-form-panel {
        padding: 28px;
    }
}


.wave-premium-bar {
    position: relative;
    z-index: 950;
    margin-top: 86px;
    border-top: 1px solid rgba(6,44,73,.06);
    border-bottom: 1px solid rgba(6,44,73,.06);
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(12px);
}
.wave-premium-bar .container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 10px;
}
.wave-premium-bar span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}
.wave-premium-bar p {
    color: #748b98;
}
.wave-premium-bar a {
    color: var(--blue-dark);
    font-weight: 800;
}


/* =========================================================
   WAVE MASTERPIECE — TASTE, PRODUCT STORY & CART IMAGES
========================================================= */

.taste-experience {
    padding: 120px 0;
    background: #f7fbfd;
}

.taste-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.taste-card {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid #dcecf2;
    isolation: isolate;
    box-shadow: 0 24px 70px rgba(6,44,73,.08);
}

.taste-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
}

.taste-rice::before {
    background: linear-gradient(135deg, #fffaf2 0%, #f4e7d7 65%, #ddc7a9 100%);
}

.taste-water::before {
    background: linear-gradient(135deg, #eefcff 0%, #bfeef8 58%, #6ac6df 100%);
}

.taste-copy {
    position: relative;
    z-index: 3;
    max-width: 570px;
    padding: 42px 42px 0;
}

.taste-copy h2 {
    margin-top: 10px;
    color: #062c49;
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: .96;
    letter-spacing: -3px;
}

.taste-copy h2 span {
    color: #087ea4;
}

.taste-copy p {
    max-width: 430px;
    margin: 18px 0 24px;
    color: #5f7382;
    font-size: 13px;
    line-height: 1.85;
}

.taste-art {
    position: absolute;
    right: -26px;
    left: 110px;
    bottom: -55px;
    z-index: 1;
}

.taste-art img {
    width: 100%;
    filter: drop-shadow(0 28px 32px rgba(6,44,73,.12));
    transform: rotate(-2deg);
    transition: transform .6s ease;
}

.taste-card:hover .taste-art img {
    transform: rotate(0deg) translateY(-8px) scale(1.02);
}

.product-story {
    margin-top: 8px;
    color: #557182;
    font-size: 10px;
    font-style: italic;
    line-height: 1.55;
}

.cart-item-image {
    overflow: hidden;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: linear-gradient(145deg, #effaff, #d9f2f7);
}

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

.cart-item-image.image-missing::after {
    content: "W";
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    color: #087ea4;
}

@media (max-width: 850px) {
    .taste-grid {
        grid-template-columns: 1fr;
    }

    .taste-card {
        min-height: 590px;
    }
}

@media (max-width: 560px) {
    .taste-experience {
        padding: 75px 0;
    }

    .taste-copy {
        padding: 28px 24px 0;
    }

    .taste-art {
        left: 45px;
        right: -40px;
        bottom: -25px;
    }
}

/* =========================================================
   WAVE REAL-LIFE LUXURY IMAGE SYSTEM
========================================================= */

.hero-visual {
    min-height: 560px;
    overflow: visible;
}

.water-card {
    width: min(100%, 520px);
    height: 520px;
    border-radius: 34px;
    background: #071d2e;
    box-shadow: 0 35px 90px rgba(3, 28, 44, 0.28);
    transform: none;
    animation: none;
}

.water-card::before,
.water-card::after,
.bottle-highlight {
    display: none;
}

.hero-bottle-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    border-radius: inherit;
}

.bottle-label {
    left: 28px;
    right: 28px;
    top: auto;
    bottom: 28px;
    padding: 18px 18px;
    border-radius: 18px;
    background: rgba(4, 24, 38, 0.70);
    backdrop-filter: blur(12px);
    box-shadow: none;
}

.bottle-label small,
.bottle-label strong,
.bottle-label span {
    color: #ffffff;
}

.bottle-label strong {
    font-size: 22px;
}

.taste-art {
    overflow: hidden;
    border-radius: 28px;
}

.taste-art img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    display: block;
    filter: none;
    transform: none;
}

.taste-card:hover .taste-art img {
    transform: scale(1.035);
}

.product-image img,
.product-image .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-image {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 14px;
}

.cart-item-image img {
    position: relative;
    z-index: 2;
    object-fit: cover;
    border-radius: inherit;
}

.cart-fallback-icon {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    color: #087ea4;
    font-size: 22px;
}

.cart-item-image.image-missing .cart-fallback-icon {
    display: grid;
}

.empty-cart-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 18px;
    background: linear-gradient(145deg, #e7f8fc, #d7eef5);
    color: #087ea4;
    font-size: 24px;
}

.stock-status .in-stock {
    color: #147c5b;
    font-weight: 800;
}

@media (max-width: 850px) {
    .water-card {
        height: 430px;
    }
}

@media (max-width: 560px) {
    .water-card {
        height: 390px;
    }

    .hero-bottle-img {
        object-position: center;
    }
}


/* =========================================================
   WAVE — FINAL PREMIUM INTERACTION LAYER
========================================================= */

body::selection { background: #0b8fb8; color: #fff; }

.page-transition {
    animation: pageReveal .6s ease both;
}

/*
   Keep the page-transition effect without using transform on the
   page root. Transform on a parent can change the containing block
   for position: fixed elements such as the navbar and cart drawer.
*/
@keyframes pageReveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Account / contact / checkout polish */
.account-shell,
.contact-card,
.contact-form-wrapper,
.checkout-card,
.summary-card {
    border: 1px solid rgba(6, 44, 73, .07);
    box-shadow: 0 26px 80px rgba(5, 30, 43, .10);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.account-shell:hover,
.contact-card:hover,
.contact-form-wrapper:hover,
.checkout-card:hover,
.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 100px rgba(5, 30, 43, .14);
    border-color: rgba(8,126,164,.14);
}

.auth-field input,
.contact-input,
.textarea-input,
.form-group input,
.form-group textarea,
.form-group select {
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.auth-field input:focus,
.contact-input:focus,
.textarea-input:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(8,126,164,.42) !important;
    box-shadow: 0 0 0 4px rgba(8,126,164,.08), 0 14px 30px rgba(5,30,43,.06);
    background: #fff;
    outline: none;
}

.auth-label-row label,
.auth-label-row span,
.auth-label,
.contact-form-group label,
.form-group label {
    color: #0a2e48;
    font-weight: 700;
}

.auth-tab.active,
.auth-submit,
.contact-submit,
.place-order-btn {
    box-shadow: 0 16px 38px rgba(8,126,164,.20);
}

/* Product visual fallback */
.product-art-fallback {
    display: none;
    width: 120px;
    height: 120px;
    place-items: center;
    border-radius: 32px;
    background: linear-gradient(145deg,#f8feff,#dff4fa);
    color: #087ea4;
    font-size: 44px;
    box-shadow: 0 20px 45px rgba(5,56,78,.12);
}

.product-art-fallback i { font-size: inherit; }

/* Shop cards */
.shop-tools {
    position: relative;
    z-index: 3;
}

.filter {
    position: relative;
    overflow: hidden;
}

.filter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform .6s ease;
}

.filter:hover::before,
.filter.active::before { transform: translateX(120%); }

.shop-search {
    border: 1px solid rgba(8,126,164,.13) !important;
    box-shadow: 0 12px 40px rgba(5,30,43,.06), inset 0 1px 0 #fff;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.shop-search:focus-within {
    transform: translateY(-2px);
    border-color: rgba(8,126,164,.28) !important;
    box-shadow: 0 18px 50px rgba(8,126,164,.12), 0 0 0 4px rgba(8,126,164,.05);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 24%, rgba(255,255,255,.62) 46%, transparent 68%);
    transform: translateX(-130%);
    transition: transform .9s ease;
    z-index: 8;
}

.product-card:hover::before { transform: translateX(130%); }

.add-to-cart-full {
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.add-to-cart-full:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(8,126,164,.18);
}

.quantity-btn {
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.quantity-btn:hover {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 8px 18px rgba(8,126,164,.12);
}

/* Cart drawer */
.cart-drawer {
    box-shadow: -30px 0 90px rgba(5,30,43,.24);
}

.cart-item {
    transition: background .2s ease, transform .2s ease;
}

.cart-item:hover {
    background: rgba(8,126,164,.035);
    transform: translateX(-2px);
}

.cart-item-image {
    background: linear-gradient(145deg,#f5fcfe,#e3f4f8);
}

.cart-fallback-icon { color: #087ea4 !important; }

/* Reduced-motion friendly */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================================
   SHOP — IMMERSIVE NO-HERO-IMAGE MODE
========================================================= */

.shop-hero {
    min-height: 420px;
    padding: 150px 0 95px;
    isolation: isolate;
}

.shop-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -180px;
    height: 380px;
    background:
        radial-gradient(circle at 20% 40%, rgba(54,189,232,.20), transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(8,126,164,.14), transparent 28%);
    filter: blur(10px);
    pointer-events: none;
    z-index: -1;
}

.shop-hero-inner {
    grid-template-columns: 1fr;
    max-width: 920px;
}

.shop-hero-copy {
    max-width: 760px;
}

.shop-page-title {
    position: relative;
    display: inline-block;
}

.shop-page-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 110px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #087ea4, #52d6ef);
}

.shop-hero .shop-page-description {
    max-width: 690px;
    margin-top: 30px;
}

.shop-hero-visual { display: none !important; }

/* Ambient category glow under the hero */
.product-grid {
    position: relative;
}

.product-grid::before,
.product-grid::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

.product-grid::before {
    top: 6%;
    left: -90px;
    background: rgba(54,189,232,.12);
}

.product-grid::after {
    right: -90px;
    bottom: 10%;
    background: rgba(8,126,164,.08);
}


/* =========================================================
   WAVE BRAND, WISHLIST, NOTIFICATIONS & PREMIUM CONTROLS
========================================================= */
.wave-logo-image{width:124px!important;height:auto!important;display:block!important;filter:drop-shadow(0 6px 18px rgba(0,0,0,.12))}
.logo{display:inline-flex!important;align-items:center!important;gap:6px!important}
.logo span{display:none!important}
.nav-heart-button{position:relative;width:42px;height:42px;border:1px solid rgba(6,44,73,.08);border-radius:13px;background:rgba(255,255,255,.78);color:#062c49;display:grid;place-items:center;transition:transform .2s ease,background .2s ease,color .2s ease}
.nav-heart-button:hover{transform:translateY(-2px);background:#062c49;color:#fff}
.nav-heart-button span{position:absolute;top:-4px;right:-4px;min-width:16px;height:16px;padding:0 4px;border-radius:999px;background:#087ea4;color:#fff;font-size:8px;font-weight:900;display:grid;place-items:center}
.wishlist{transition:transform .2s ease,background .2s ease,color .2s ease!important;color:#062c49!important}
.wishlist:hover,.wishlist.active{color:#c33e58!important;background:#fff!important;transform:scale(1.06)}
.wave-notification-wrapper{position:relative;display:flex;align-items:center}
.wave-notification-button{position:relative;width:42px;height:42px;border:1px solid rgba(6,44,73,.08);border-radius:13px;background:rgba(255,255,255,.78);color:#062c49;display:grid;place-items:center;transition:transform .2s ease,background .2s ease,color .2s ease}
.wave-notification-button:hover{transform:translateY(-2px);background:#062c49;color:#fff}
.wave-notification-count{position:absolute;top:-4px;right:-4px;min-width:16px;height:16px;padding:0 4px;border-radius:999px;background:#c89b3c;color:#fff;font-size:8px;font-weight:900;display:grid;place-items:center}
.wave-notification-panel{position:absolute;right:0;top:54px;width:min(370px,92vw);background:#fff;border:1px solid rgba(6,44,73,.08);border-radius:20px;box-shadow:0 28px 70px rgba(2,20,31,.18);overflow:hidden;z-index:2500}
.wave-notification-head{display:flex;justify-content:space-between;align-items:flex-start;padding:20px 20px 16px;border-bottom:1px solid #e8f0f3}
.wave-notification-head span{font-size:8px;font-weight:900;letter-spacing:2px;color:#087ea4}
.wave-notification-head h3{margin-top:4px;color:#062c49;font-family:Manrope,sans-serif}
.wave-notification-head button{font-size:9px;font-weight:800;color:#087ea4;background:transparent}
.wave-notification-list{max-height:340px;overflow:auto}
.wave-notification-item{display:grid;grid-template-columns:36px 1fr;gap:11px;padding:15px 20px;border-bottom:1px solid #eef3f5}
.wave-notification-item.unread{background:#f8fcfe}
.wave-notification-icon{width:36px;height:36px;border-radius:11px;background:#e7f7fb;color:#087ea4;display:grid;place-items:center}
.wave-notification-item strong{display:block;color:#062c49;font-size:11px}
.wave-notification-item p{margin-top:4px;color:#607784;font-size:10px;line-height:1.5}
.wave-notification-item small{display:block;margin-top:4px;color:#99a9b2;font-size:8px}
.wave-notification-empty{text-align:center;padding:35px 20px;color:#92a2ab}
.wave-notification-empty i{font-size:24px}
.nav-actions{display:flex!important;align-items:center!important;gap:9px!important}
.checkout-btn{display:flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;width:100%!important;min-height:56px!important;border-radius:16px!important;background:linear-gradient(135deg,#0a7fa5,#063654)!important;color:#fff!important;font-family:Manrope,sans-serif!important;font-weight:900!important;letter-spacing:.2px!important;box-shadow:0 18px 40px rgba(6,54,84,.20)!important;cursor:pointer!important}
.checkout-btn:hover{transform:translateY(-2px)!important;box-shadow:0 22px 46px rgba(6,54,84,.25)!important}
.cart-total{position:relative!important;background:#fff!important;border-top:1px solid #e8f0f3!important;box-shadow:0 -12px 28px rgba(6,44,73,.06)!important}
.cart-items{padding-bottom:20px!important}
.empty-cart-btn{border-radius:13px!important}
@media(max-width:900px){.wave-notification-panel{right:-120px}.nav-links a:nth-child(3){display:none}}
@media(max-width:700px){.wave-logo-image{width:112px!important}.nav-heart-button,.wave-notification-button{width:38px;height:38px}.wave-notification-panel{right:-85px}}


/* =========================================================
   WAVE — FINAL PREMIUM UI ENHANCEMENTS
========================================================= */

.wave-logo-image {
    width: 138px;
    height: auto;
    display: block;
}

.account-menu {
    position: relative;
}

.account-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(6,44,73,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.82);
    color: var(--blue-dark);
    box-shadow: 0 10px 28px rgba(6,44,73,.06);
}

.account-menu-trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(6,44,73,.10);
}

.account-chevron {
    font-size: 9px;
    opacity: .62;
    transition: transform .2s ease;
}

.account-menu-trigger[aria-expanded="true"] .account-chevron {
    transform: rotate(180deg);
}

.account-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 270px;
    padding: 10px;
    border: 1px solid rgba(6,44,73,.09);
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 28px 80px rgba(4,29,46,.20);
    backdrop-filter: blur(20px);
    z-index: 2000;
}

.account-dropdown[hidden] { display: none !important; }

.account-dropdown-head {
    padding: 10px 12px 14px;
}

.account-dropdown-kicker {
    display: block;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--blue);
}

.account-dropdown-name {
    display: block;
    margin-top: 5px;
    color: var(--blue-dark);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
}

.account-dropdown > a,
.account-dropdown > button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border-radius: 12px;
    background: transparent;
    color: #25445b;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
}

.account-dropdown > a:hover,
.account-dropdown > button:hover {
    background: #eef9fc;
    color: var(--blue);
}

.account-dropdown i {
    width: 18px;
    text-align: center;
}

.account-dropdown-notifications b {
    margin-left: auto;
    min-width: 20px;
    padding: 2px 6px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 9px;
    text-align: center;
}

.account-dropdown-divider {
    height: 1px;
    margin: 8px 4px;
    background: #e6eff3;
}

.account-dropdown-signout {
    color: #a23b45 !important;
}

.cart-total .checkout-btn {
    width: 100%;
}

.cart-total .continue-shopping {
    width: 100%;
    margin-top: 9px;
    min-height: 44px;
    border-radius: 12px;
    background: #edf6f9;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 800;
}

.shop-checkout-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 38px;
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(120deg, #062c49, #087ea4);
    color: #fff;
    box-shadow: 0 20px 55px rgba(6,44,73,.18);
}

.shop-checkout-strip span {
    display: block;
    color: #8ed8ed;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.shop-checkout-strip strong {
    display: block;
    margin-top: 4px;
    font-size: 14px;
}

.shop-checkout-btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.wave-notification-wrapper {
    position: relative;
    order: -1;
}

.wave-notification-button {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff;
    color: var(--blue-dark);
    border: 1px solid rgba(6,44,73,.08);
}

.wave-notification-count {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e45454;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
}

.wave-notification-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 360px;
    max-width: min(360px, 90vw);
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(6,44,73,.08);
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(4,29,46,.18);
    overflow: hidden;
    z-index: 2000;
}

.wave-notification-panel[hidden] { display: none; }

.wave-notification-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px;
    border-bottom: 1px solid #e8f0f3;
}

.wave-notification-head span {
    display: block;
    font-size: 9px;
    color: var(--blue);
    font-weight: 900;
    letter-spacing: 2px;
}

.wave-notification-head h3 {
    margin-top: 4px;
    color: var(--blue-dark);
    font-family: "Manrope", sans-serif;
}

.wave-notification-head button {
    color: var(--blue);
    background: transparent;
    font-size: 10px;
    font-weight: 800;
}

.wave-notification-list {
    max-height: 420px;
    overflow: auto;
}

.wave-notification-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 15px 18px;
    border-bottom: 1px solid #eef3f5;
}

.wave-notification-item.unread {
    background: #f5fbfd;
}

.wave-notification-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #e7f7fb;
    color: var(--blue);
}

.wave-notification-item strong { color: var(--blue-dark); font-size: 12px; }
.wave-notification-item p { margin-top: 3px; color: #6c8291; font-size: 11px; line-height: 1.5; }
.wave-notification-item small { display: block; margin-top: 4px; color: #9aaab3; font-size: 9px; }
.wave-notification-empty { padding: 36px 20px; text-align: center; color: #728792; }
.wave-notification-empty i { font-size: 24px; color: var(--blue); }

@media (max-width: 900px) {
    .nav-links { gap: 18px; }
    .account-menu-trigger span { display: none; }
    .account-menu-trigger { width: 44px; padding: 0; justify-content: center; }
    .account-chevron { display: none; }
}

@media (max-width: 760px) {
    .shop-checkout-strip { flex-direction: column; align-items: flex-start; }
    .shop-checkout-btn { width: 100%; }
    .wave-notification-wrapper { order: initial; }
}


/* Product image polish */
.product-image img,
.product-image .product-emoji {
    transition: transform .45s ease, filter .45s ease;
}
.product-card:hover .product-image img { transform: scale(1.04); }
.product-image { overflow: hidden; }
.cart-item-image { overflow: hidden; border-radius: 14px; }
.cart-item-image img { width:100%; height:100%; object-fit:cover; object-position:center; }
.cart-item-image.image-missing img { display:none; }
.cart-item-image .cart-fallback-icon { display:none; }
.cart-item-image.image-missing .cart-fallback-icon { display:grid; place-items:center; width:100%; height:100%; font-size:22px; color:var(--blue); }


/* =========================================================
   CART IMAGE + SHOP CHECKOUT
========================================================= */

.cart-item-image {
    position: relative;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.cart-fallback-icon {
    display: none;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--blue);
    font-size: 22px;
}

.cart-item-image.image-missing .cart-fallback-icon {
    display: grid;
}

.shop-checkout-bar {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(11, 82, 122, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 55px rgba(4, 40, 64, 0.08);
}

.shop-checkout-copy {
    display: flex;
    align-items: center;
    gap: 14px;
}

.shop-checkout-copy span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--muted);
}

.shop-checkout-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    color: var(--blue-dark);
}

.shop-checkout-button {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.shop-checkout-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(7, 104, 147, .22);
}

.shop-checkout-button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

@media (max-width: 700px) {
    .shop-checkout-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-checkout-button {
        width: 100%;
    }
}


/* =========================================================
   DELIVERY TRACKING
========================================================= */

.tracking-driver-row {
    margin-top: 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 0 0;
}

.tracking-driver-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(120, 216, 239, .12);
    color: #78d8ef;
}

.tracking-driver-row > div:nth-child(2) span {
    display: block;
    font-size: 8px;
    letter-spacing: 1.6px;
    font-weight: 900;
    color: rgba(255, 255, 255, .42);
}

.tracking-driver-row > div:nth-child(2) strong {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

.tracking-driver-meta {
    text-align: right;
}

.tracking-driver-meta span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
}

.tracking-driver-meta small {
    display: block;
    margin-top: 3px;
    font-size: 8px;
    color: rgba(255,255,255,.48);
}

.order-status.arriving-now {
    background: #fff2dc;
    color: #9d6414;
}

.order-status.delivered {
    background: #e9f8f2;
    color: #167b59;
}

@media (max-width: 700px) {
    .tracking-driver-row {
        grid-template-columns: auto 1fr;
    }

    .tracking-driver-meta {
        grid-column: 2;
        text-align: left;
    }
}


/* =========================================================
   WAVE CART — RESTORED ORIGINAL TOTALS + CHECKOUT
========================================================= */

.cart-drawer {
    display: flex !important;
    flex-direction: column !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
}

.cart-items {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
}

.cart-total {
    flex: 0 0 auto !important;
    position: relative !important;
    z-index: 5 !important;
    display: block !important;
    padding: 22px 28px 28px !important;
    background: #ffffff !important;
    border-top: 1px solid #dfeaf0 !important;
    box-shadow: 0 -14px 34px rgba(6, 44, 73, 0.08) !important;
}

.cart-total .total-line {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-total .total-line.final {
    display: flex !important;
    margin-top: 14px !important;
    padding-top: 14px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-total #subtotal,
.cart-total #cartDelivery,
.cart-total #cartTotal {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-total .checkout-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    min-height: 54px !important;
    margin-top: 18px !important;
    visibility: visible !important;
    opacity: 1 !important;
    cursor: pointer !important;
}

.cart-total .checkout-btn:disabled {
    opacity: 0.55 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

@media (max-width: 600px) {
    .cart-total {
        padding: 18px 20px 22px !important;
    }
}

/* =====================================================
   WAVE PRODUCT CATALOGUE — NEW CATEGORY / VARIANT UI
===================================================== */
.filter-row { flex-wrap: wrap; gap: 10px; }
.product-option-label { display:block; margin: 12px 0 7px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; opacity: .72; }
.product-option { width:100%; border:1px solid rgba(15, 23, 42, .12); border-radius:12px; background:#fff; padding:11px 12px; font:inherit; color:inherit; outline:none; }
.product-option:focus { border-color: rgba(0, 122, 255, .45); box-shadow:0 0 0 3px rgba(0,122,255,.08); }
.product-category { text-transform:none; }

/* =========================================================
   SHOP — LIVE QUANTITY PRICING & CLEAR CART STATES
========================================================= */
.product-price-enhanced {
    align-items: center;
    gap: 12px;
}

.product-price-enhanced > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-unit {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.product-line-total {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    padding-left: 10px;
    border-left: 1px solid var(--border);
}

.product-line-total span {
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-line-total strong {
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 800;
}

.add-to-cart-full.in-cart {
    background: linear-gradient(135deg, #eef9f3, #f7fcf9);
    color: #17633f;
    border-color: #bfe3cf;
    box-shadow: none;
}

.add-to-cart-full.in-cart:hover {
    background: #eef9f3;
    border-color: #8fc9aa;
    color: #125637;
}

.add-to-cart-full.in-cart .add-cart-action {
    margin-left: auto;
    padding-left: 10px;
    border-left: 1px solid rgba(23, 99, 63, 0.18);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.add-to-cart-full.in-cart .add-cart-text {
    font-weight: 800;
}

/* WAVE V17.1 — reliable order cache state */
.orders-cache-note{display:flex;align-items:center;gap:10px;margin:0 0 18px;padding:12px 15px;border:1px solid #dcecf2;border-radius:14px;background:#f4fbfd;color:#537080;font-size:12px}.orders-cache-note i{color:#087ea4}
.customer-account-note{display:flex;align-items:center;gap:10px;margin:0 0 16px;padding:11px 14px;border:1px solid rgba(8,126,164,.16);border-radius:12px;background:rgba(233,248,252,.72);color:#31566b;font-size:.9rem}.customer-account-note i{font-size:.9rem}

.category-filter-card{text-align:left;border:1px solid var(--border);cursor:pointer}.category-count{position:relative;color:var(--blue);font-size:12px;font-weight:800;margin-top:12px}.filter small{opacity:.7;margin-left:4px}.category-admin-card{border-left:4px solid var(--accent2)}


/* WAVE LOGO FLEXIBLE FILE SUPPORT */
.wave-logo-image{width:124px!important;height:auto!important;max-height:46px;object-fit:contain;display:block!important;filter:drop-shadow(0 6px 18px rgba(0,0,0,.12))}
@media(max-width:700px){.wave-logo-image{width:112px!important;max-height:40px}}
