/* ========================================
   PURE ERA - Landing Page & Web App Styles
   ======================================== */

/* -- Google Fonts Import (Nunito & Plus Jakarta Sans) -- */


/* -- CSS Reset & Base -- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-cream: #F8F6F0;
    --text-dark: #1A241E;
    --accent-green: #00703C;
    --accent-gold: #D49A26;
    --accent-red: #C41E3A;
    --nav-text: #2B3A30;
    --font-heading: 'Nunito', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(240, 238, 226, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu li a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--nav-text);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu li a:hover {
    color: var(--accent-green);
}

.nav-menu li a .dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-menu li a:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-icons a {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-icons a:hover {
    color: var(--accent-green);
    transform: scale(1.1);
}

/* ========================================
   HERO SLIDER SECTION
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background-color: var(--bg-cream);
}

/* -- Individual Slide -- */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* -- Background Title Text -- */
.slide-title-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Mazzard Soft M Extra Bold', sans-serif;
    font-size: clamp(90px, 14vw, 220px);
    font-weight: 800;
    font-style: normal;
    line-height: 0.9;
    text-align: center;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease 0.2s;
}

.slide.active .slide-title-bg {
    opacity: 1;
}

.slide-title-bg .title-line {
    display: block;
}

/* -- Can Image -- */
.slide-can-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 520px;
    height: auto;
}

.slide-can-container img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        opacity 0.6s ease 0.1s;
}

.slide.active .slide-can-container img {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* -- Fruit Decorations -- */
.fruit-decoration {
    position: absolute;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .fruit-decoration {
    opacity: 1;
}

/* Decoration positions */
.fruit-deco-1 {
    top: 8%;
    left: 5%;
    width: 120px;
    height: 120px;
    transform: translate(-30px, -20px) rotate(-10deg);
}

.slide.active .fruit-deco-1 {
    transform: translate(0, 0) rotate(0deg);
    transition-delay: 0.3s;
}

.fruit-deco-2 {
    top: 5%;
    left: 36%;
    width: 50px;
    height: 50px;
    transform: translate(0, -30px) rotate(15deg);
}

.slide.active .fruit-deco-2 {
    transform: translate(0, 0) rotate(0deg);
    transition-delay: 0.4s;
}

.fruit-deco-3 {
    top: 10%;
    right: 5%;
    width: 110px;
    height: 110px;
    transform: translate(30px, -20px) rotate(20deg);
}

.slide.active .fruit-deco-3 {
    transform: translate(0, 0) rotate(5deg);
    transition-delay: 0.35s;
}

.fruit-deco-4 {
    bottom: 18%;
    left: 4%;
    width: 140px;
    height: 140px;
    transform: translate(-40px, 20px) rotate(-15deg);
}

.slide.active .fruit-deco-4 {
    transform: translate(0, 0) rotate(-5deg);
    transition-delay: 0.45s;
}

.fruit-deco-5 {
    bottom: 10%;
    right: 3%;
    width: 160px;
    height: 160px;
    transform: translate(40px, 20px) rotate(10deg);
}

.slide.active .fruit-deco-5 {
    transform: translate(0, 0) rotate(0deg);
    transition-delay: 0.5s;
}

.fruit-deco-6 {
    top: 22%;
    right: 12%;
    width: 60px;
    height: 60px;
    transform: translate(20px, -15px) rotate(-20deg);
}

.slide.active .fruit-deco-6 {
    transform: translate(0, 0) rotate(-10deg);
    transition-delay: 0.55s;
}

.fruit-decoration svg,
.fruit-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.14));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.fruit-decoration img:hover {
    transform: scale(1.1) rotate(4deg);
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}

/* -- Floating Animation for fruit -- */
@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

@keyframes floatMedium {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

.slide.active .fruit-deco-1 {
    animation: floatSlow 5s ease-in-out 1s infinite;
}

.slide.active .fruit-deco-2 {
    animation: floatMedium 4s ease-in-out 1.2s infinite;
}

.slide.active .fruit-deco-3 {
    animation: floatSlow 5.5s ease-in-out 0.8s infinite;
}

.slide.active .fruit-deco-4 {
    animation: floatMedium 4.5s ease-in-out 1.5s infinite;
}

.slide.active .fruit-deco-5 {
    animation: floatSlow 6s ease-in-out 0.5s infinite;
}

.slide.active .fruit-deco-6 {
    animation: floatMedium 4s ease-in-out 1.8s infinite;
}

/* ========================================
   SLIDER PAGINATION DOTS
   ======================================== */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    border: 2px solid var(--accent-green);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.slider-dot:hover {
    transform: scale(1.2);
}

.slider-dot.active {
    width: 30px;
    background-color: var(--accent-green);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .slide-can-container {
        width: 320px;
    }

    .slide-title-bg {
        font-size: clamp(70px, 11vw, 160px);
    }

    .fruit-deco-1,
    .fruit-deco-4 {
        width: 110px;
        height: 110px;
    }

    .fruit-deco-3 {
        width: 100px;
        height: 100px;
    }

    .fruit-deco-5 {
        width: 140px;
        height: 140px;
    }

    .fruit-deco-2,
    .fruit-deco-6 {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
    }

    .nav-menu {
        display: none;
    }

    .nav-logo {
        font-size: 24px;
    }

    .slide-can-container {
        width: 240px;
    }

    .slide-title-bg {
        font-size: clamp(50px, 10vw, 110px);
    }

    .fruit-deco-1,
    .fruit-deco-4 {
        width: 80px;
        height: 80px;
    }

    .fruit-deco-3 {
        width: 75px;
        height: 75px;
    }

    .fruit-deco-5 {
        width: 100px;
        height: 100px;
    }

    .fruit-deco-2,
    .fruit-deco-6 {
        width: 40px;
        height: 40px;
    }

    .slider-dots {
        bottom: 25px;
    }
}

@media (max-width: 480px) {
    .slide-can-container {
        width: 180px;
    }

    .slide-title-bg {
        font-size: clamp(40px, 9vw, 80px);
    }

    .fruit-deco-1,
    .fruit-deco-4 {
        width: 60px;
        height: 60px;
    }

    .fruit-deco-3 {
        width: 55px;
        height: 55px;
    }

    .fruit-deco-5 {
        width: 75px;
        height: 75px;
    }

    .fruit-deco-2,
    .fruit-deco-6 {
        width: 30px;
        height: 30px;
    }
}

/* ========================================
   FEATURE SHOWCASE SECTION (3-JAR FAN SHOWCASE)
   ======================================== */
.feature-showcase-section {
    position: relative;
    width: 100%;
    padding: 100px 0 0 0;
    background-color: var(--bg-cream);
    overflow: hidden;
}

.showcase-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 440px 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.showcase-col {
    display: flex;
    flex-direction: column;
}

.showcase-left {
    align-items: flex-start;
}

.showcase-right {
    align-items: flex-end;
}

.showcase-giant-title {
    font-family: var(--font-heading);
    font-size: clamp(70px, 8.5vw, 130px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 50px;
    line-height: 0.95;
    letter-spacing: -2px;
}

.showcase-left .showcase-giant-title {
    text-align: left;
}

.showcase-right .showcase-giant-title {
    text-align: right;
}

.feature-block {
    margin-bottom: 44px;
    max-width: 320px;
}

.showcase-left .feature-block {
    text-align: left;
}

.showcase-right .feature-block {
    text-align: right;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4A5568;
    font-weight: 400;
}

/* -- Center 3-Jars Fan Container -- */
.showcase-center-jars {
    position: relative;
    width: 100%;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.jar-wrapper {
    position: absolute;
    top: 50%;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
    cursor: pointer;
}

.jar-wrapper img {
    width: 350px;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.15));
}

.jar-left {
    left: 20px;
    transform: translateY(-50%) rotate(-10deg) scale(0.88);
    z-index: 1;
}

.jar-main {
    transform: translateY(-55%) scale(1.04);
    z-index: 3;
}

.jar-right {
    right: 20px;
    transform: translateY(-50%) rotate(10deg) scale(0.88);
    z-index: 1;
}

/* Micro-interaction on Jar Container Hover */
.showcase-center-jars:hover .jar-left {
    transform: translateY(-60%) rotate(-22deg) translateX(-55px) scale(0.9);
}

.showcase-center-jars:hover .jar-right {
    transform: translateY(-60%) rotate(22deg) translateX(55px) scale(0.9);
}

.showcase-center-jars:hover .jar-main {
    transform: translateY(-62%) scale(1.08);
}

/* -- Animated Multi-Layer Wave Landscape -- */
.animated-wave-container {
    position: relative;
    width: 100%;
    height: 280px;
    margin-top: 20px;
    overflow: hidden;
    line-height: 0;
}

.wave-layer {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: 0 bottom;
    background-size: 1600px 100%;
    pointer-events: none;
}

/* Layer 1 (Back) - Light Yellow-Green (3.png) */
.wave-layer-back {
    bottom: -10px;
    background-image: url('../images/animation/3.png');
    z-index: 1;
    opacity: 0.95;
    animation: moveWaveRight 35s linear infinite;
}

/* Layer 2 (Middle) - Medium Green (2.webp) */
.wave-layer-middle {
    bottom: -25px;
    background-image: url('../images/animation/2.webp');
    z-index: 2;
    opacity: 0.98;
    animation: moveWaveLeft 25s linear infinite;
}

/* Layer 3 (Front) - Dark Forest Green (1.webp) */
.wave-layer-front {
    bottom: -50px;
    background-image: url('../images/animation/1.webp');
    z-index: 3;
    animation: moveWaveRight 18s linear infinite;
}

@keyframes moveWaveRight {
    0% {
        background-position: 0 bottom;
    }

    100% {
        background-position: 1600px bottom;
    }
}

@keyframes moveWaveLeft {
    0% {
        background-position: 0 bottom;
    }

    100% {
        background-position: -1600px bottom;
    }
}

/* ========================================
   TRENDING COLLECTIONS SECTION
   ======================================== */
.trending-collections-section {
    background-color: var(--accent-green);
    color: #FFFFFF;
    padding: 60px 40px 120px;
    text-align: center;
    position: relative;
    z-index: 5;
    margin-top: -2px;
}

.collections-container {
    max-width: 1280px;
    margin: 0 auto;
}

.collections-header {
    margin-bottom: 50px;
}

.collections-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: 12px;
}

.collections-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
}

/* ========================================
   PRODUCTS GRID & CARDS
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover {
    transform: translateY(-8px);
}

.card-image-box {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 50px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.card-image-box img {
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .card-image-box img {
    transform: scale(1.08);
}

/* Discount Badge */
.badge-discount {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    border: 2px solid var(--accent-green);
    z-index: 2;
}

/* Deal Timer Bar */
.deal-timer-bar {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background-color: #E2E870;
    color: #1A241E;
    border-radius: 14px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.timer-unit strong {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.timer-unit span {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.8;
}

.deal-timer-bar .colon {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.6;
}

/* Card Info Below Image Box */
.card-info {
    padding: 18px 4px 0;
}

.star-rating {
    color: #FFB800;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.original-price {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

/* -- Responsive Layout -- */
@media (max-width: 1100px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .showcase-left,
    .showcase-right {
        align-items: center;
    }

    .showcase-left .showcase-giant-title,
    .showcase-right .showcase-giant-title,
    .showcase-left .feature-block,
    .showcase-right .feature-block {
        text-align: center;
    }

    .feature-block {
        max-width: 450px;
    }

    .showcase-center-jars {
        height: 440px;
        order: 2;
    }

    .showcase-left {
        order: 1;
    }

    .showcase-right {
        order: 3;
    }

    .jar-wrapper img {
        width: 200px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .showcase-center-jars {
        height: 340px;
    }

    .jar-wrapper img {
        width: 150px;
    }

    .jar-left {
        left: 0;
        transform: translateY(-50%) rotate(-12deg) scale(0.85);
    }

    .jar-right {
        right: 0;
        transform: translateY(-50%) rotate(12deg) scale(0.85);
    }

    .feature-title {
        font-size: 24px;
    }

    .showcase-giant-title {
        font-size: clamp(48px, 12vw, 80px);
        margin-bottom: 30px;
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #FFFFFF;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--accent-green);
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 112, 60, 0.25);
}

/* ========================================
   BRAND FEATURES BAR
   ======================================== */
.brand-features-section {
    background-color: var(--bg-cream);
    padding: 60px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #FFFFFF;
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background-color: rgba(0, 112, 60, 0.08);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}

/* ========================================
   CUSTOMER REELS SECTION
   ======================================== */
.customer-reels-section {
    background-color: var(--bg-cream);
    padding: 100px 40px 140px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reels-header {
    margin-bottom: 55px;
}

.reels-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.reels-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
}

.reels-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.reels-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: var(--accent-green, #00703C);
    border: 2px solid var(--accent-green, #00703C);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.reels-nav-btn:hover {
    background-color: var(--accent-green, #00703C);
    color: #E2E870;
    border-color: var(--accent-green, #00703C);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 112, 60, 0.3);
}

.reels-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.reels-nav-prev {
    left: -10px;
}

.reels-nav-next {
    right: -10px;
}

.reels-track-container {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reels-track-container::-webkit-scrollbar {
    display: none;
}

.reels-track {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
}

.reel-card {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reel-card:hover {
    transform: translateY(-8px);
}

.reel-media {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.reel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reel-card:hover .reel-media img {
    transform: scale(1.06);
}

/* Circular Pause Button Top Right */
.reel-pause-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #A4D64D;
    color: #1A241E;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 3;
}

.reel-pause-btn:hover {
    transform: scale(1.15);
    background-color: #BBE85E;
}

.reel-info {
    padding: 16px 4px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.reel-author h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 2px;
}

.reel-author span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-style: italic;
    color: #777777;
}

.reel-stars {
    color: var(--accent-green);
    font-size: 13px;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-top: 2px;
}

/* ========================================
   SITE FOOTER SECTION
   ======================================== */
.site-footer {
    position: relative;
    background-color: var(--accent-green);
    color: #FFFFFF;
    margin-top: 160px;
    width: 100%;
    z-index: 10;
}

.footer-wave-top {
    position: absolute;
    bottom: calc(100% - 2px);
    left: 0;
    width: 100%;
    height: 160px;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
    line-height: 0;
}

.footer-wave-top svg {
    width: 100%;
    height: 120px;
    display: block;
}

.footer-wave-top img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    position: relative;
    z-index: 3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #E2E870;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #E2E870;
    transform: translateX(4px);
}

.footer-contact-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #E2E870;
}

/* Distributor Highlighted Footer Section & Modal */
.footer-distributor-col {
    display: flex;
    flex-direction: column;
}

.distributor-card-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(226, 232, 112, 0.08) 100%);
    border: 1px solid rgba(226, 232, 112, 0.35);
    border-radius: 20px;
    padding: 24px 22px;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.distributor-card-highlight:hover {
    border-color: #E2E870;
    box-shadow: 0 16px 36px rgba(226, 232, 112, 0.2);
    transform: translateY(-3px);
}

.distributor-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(226, 232, 112, 0.2);
    color: #E2E870;
    border: 1px solid rgba(226, 232, 112, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.distributor-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.distributor-text {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
}

.btn-distributor-apply {
    width: 100%;
    background: #E2E870;
    color: #00703C;
    border: none;
    padding: 13px 20px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.btn-distributor-apply:hover {
    background: #FFFFFF;
    color: #004D28;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* Modal Window */
.distributor-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.distributor-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.distributor-modal-card {
    background: #FFFFFF;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.distributor-modal-overlay.active .distributor-modal-card {
    transform: scale(1) translateY(0);
}

.distributor-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: #F1F5F9;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.distributor-modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
    transform: rotate(90deg);
}

.distributor-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.distributor-icon-wrap {
    width: 56px;
    height: 56px;
    background: #F0FDF4;
    color: #00703C;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid #BBF7D0;
}

.distributor-modal-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.distributor-modal-header p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
}

.distributor-alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 13.5px;
    margin-bottom: 24px;
}

.distributor-alert.alert-success {
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.distributor-alert.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.distributor-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
}

@media (max-width: 640px) {
    .distributor-form-grid {
        grid-template-columns: 1fr;
    }

    .distributor-modal-card {
        padding: 24px 20px;
    }
}

.distributor-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.distributor-form .form-group.full-width {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.distributor-form label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.distributor-form label .req {
    color: #EF4444;
}

.distributor-form input,
.distributor-form select,
.distributor-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0F172A;
    background: #F8FAFC;
    transition: all 0.2s ease;
}

.distributor-form input:focus,
.distributor-form select:focus,
.distributor-form textarea:focus {
    outline: none;
    border-color: #00703C;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(0, 112, 60, 0.1);
}

.distributor-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.btn-distributor-cancel {
    padding: 12px 20px;
    border-radius: 10px;
    background: #F1F5F9;
    color: #475569;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-distributor-cancel:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.btn-distributor-submit {
    padding: 12px 24px;
    border-radius: 10px;
    background: #00703C;
    color: #FFFFFF;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-distributor-submit:hover {
    background: #00562e;
    box-shadow: 0 6px 16px rgba(0, 112, 60, 0.3);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-badge {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pay-visa {
    background-color: #1A1F71;
}

.pay-mc {
    background-color: #EB001B;
}

.pay-amex {
    background-color: #006FCF;
}

.pay-paypal {
    background-color: #003087;
}

.pay-diners {
    background-color: #004A97;
}

.pay-discover {
    background-color: #F9A01B;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #E2E870;
    transform: scale(1.15);
}

/* Footer Responsive Layout */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* ========================================
   INTERACTIVE FLAVOR SHOWCASE SYSTEM (STANDALONE CARD)
   ======================================== */
.flavor-showcase-wrapper {
    width: 100%;
    padding: 80px 30px;
    background-color: var(--bg-cream);
    display: flex;
    justify-content: center;
}

.flavor-showcase-section {
    width: 100%;
    max-width: 1380px;
    padding: 80px 60px;
    background-color: #F9E0DF;
    border-radius: 36px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.flavor-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.jar-glow-aura {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    pointer-events: none;
    z-index: 1;
}

.flavor-showcase-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Column */
.flavor-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.flavor-tagline {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.flavor-main-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.08;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-flavor-cta {
    display: inline-block;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 112, 60, 0.2);
    transition: all 0.3s ease;
}

.btn-flavor-cta:hover {
    background-color: #005A30;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 112, 60, 0.3);
}

/* Center Column */
.flavor-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flavor-jar-display {
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    perspective: 1000px;
}

.flavor-jar-display img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.flavor-nav-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--text-dark);
    background-color: transparent;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.flavor-prev-btn {
    left: -10px;
}

.flavor-next-btn {
    right: -10px;
}

.flavor-nav-btn:hover {
    background-color: var(--text-dark);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.flavor-center-meta {
    text-align: center;
    margin-top: 10px;
}

.flavor-counter {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.7;
    display: block;
    margin-bottom: 6px;
}

.flavor-subtitle {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    color: var(--text-dark);
}

/* Right Column (Specs Grid) */
.flavor-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
    text-align: right;
}

.flavor-spec-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.spec-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 4px;
}

.spec-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Responsive */
@media (max-width: 1100px) {
    .flavor-showcase-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .flavor-left,
    .flavor-right {
        align-items: center;
        text-align: center;
    }

    .flavor-spec-item {
        align-items: center;
    }

    .flavor-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        align-items: center;
    }

    .flavor-prev-btn {
        left: 0;
    }

    .flavor-next-btn {
        right: 0;
    }
}

/* ========================================
   SHOP PAGE STYLES
   ======================================== */
.shop-page .navbar .nav-menu a.active {
    color: var(--accent-green);
    font-weight: 800;
}

.shop-page .product-name {
    color: var(--text-dark);
}

.shop-page .current-price {
    color: var(--text-dark);
}

.shop-page .original-price {
    color: #888888;
}

/* -- Shop Hero Split Banner -- */
.shop-hero-banner {
    padding: 120px 40px 40px;
    background-color: var(--bg-cream);
}

.shop-banner-container {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.shop-banner-left {
    background-color: #FDF9F0;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.banner-grid-collage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.collage-img {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.collage-img.img-2 {
    transform: scale(1.15);
    z-index: 2;
}

.shop-banner-right {
    background-color: var(--accent-green);
    border-radius: 24px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    box-shadow: 0 12px 35px rgba(0, 112, 60, 0.2);
}

.shop-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 20px;
}

.shop-banner-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

/* -- Shop Page Layout & Breadcrumbs -- */
.shop-page-wrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding: 20px 40px 80px;
}

.shop-breadcrumb-bar {
    margin-bottom: 30px;
}

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #777777;
}

.breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb .sep {
    margin: 0 8px;
    color: #AAAAAA;
}

.breadcrumb .current {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 800;
}

.shop-catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 45px;
    align-items: start;
}

/* -- Left Sidebar Accordion Filters -- */
.shop-sidebar {
    background-color: transparent;
}

.filters-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.filter-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px 0;
}

.filter-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
}

.filter-group.collapsed .filter-group-body {
    display: none;
}

.filter-group-body {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4A5568;
    cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-green);
    cursor: pointer;
}

.price-inputs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-field {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 8px 14px;
    width: 100px;
}

.price-field .currency {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #718096;
    margin-right: 4px;
}

.price-field input {
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
}

.price-hint {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #718096;
    margin-top: 8px;
}

/* -- Catalog Toolbar -- */
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.item-count {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4A5568;
}

.toolbar-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-dropdown-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4A5568;
}

.sort-select {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid #E2E8F0;
    background-color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 12px;
    outline: none;
    cursor: pointer;
}

.view-switchers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    background-color: #FFFFFF;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-btn.active,
.view-btn:hover {
    background-color: var(--text-dark);
    color: #FFFFFF;
    border-color: var(--text-dark);
}

.catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
}

/* -- Bottom Purchase CTA Card -- */
.shop-cta-section {
    max-width: 1340px;
    margin: 40px auto 80px;
    padding: 80px 40px;
}

.shop-cta-card {
    position: relative;
    background-color: var(--accent-green);
    color: #FFFFFF;
    border-radius: 32px;
    padding: 80px 50px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 112, 60, 0.25);
}

.cta-subtitle {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #E2E870;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 680px;
    margin: 0 auto 36px;
}

.btn-cta-action {
    display: inline-block;
    background-color: #E2E870;
    color: #1A241E;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-cta-action:hover {
    background-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.cta-floating-svg {
    position: absolute;
    pointer-events: none;
}

.cta-floating-svg.svg-1 {
    top: 25px;
    left: 35px;
}

.cta-floating-svg.svg-2 {
    bottom: 25px;
    right: 35px;
}

@media (max-width: 600px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRODUCT DETAILS PAGE STYLES
   ======================================== */
.product-details-wrapper {
    max-width: 1340px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.product-breadcrumb-bar {
    margin-bottom: 35px;
}

.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Gallery Column */
.product-gallery-col {
    position: sticky;
    top: 100px;
}

.product-gallery-card {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 28px;
    padding: 40px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.main-image-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-display img {
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background-color: #FFFFFF;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    z-index: 5;
}

.prev-img-btn {
    left: 16px;
}

.next-img-btn {
    right: 16px;
}

.gallery-nav-btn:hover {
    background-color: var(--accent-green);
    color: #FFFFFF;
    border-color: var(--accent-green);
}

.gallery-spec-badge {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.badge-top-left {
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.badge-dot {
    color: #25D366;
    margin-right: 4px;
}

.badge-bottom-right {
    bottom: 20px;
    right: 20px;
    background-color: #E2E870;
    color: #1A241E;
}

.gallery-thumbnails-strip {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.thumb-btn {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    border: 2px solid transparent;
    background-color: #FFFFFF;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-btn.active,
.thumb-btn:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

/* Info Column */
.product-info-col {
    display: flex;
    flex-direction: column;
}

.pdetail-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 12px;
}

.pdetail-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.star-stars {
    color: #FFB800;
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.pdetail-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.pdetail-current-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
}

.pdetail-original-price {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #888888;
    text-decoration: line-through;
}

.pdetail-save-badge {
    background-color: #E2E870;
    color: #1A241E;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
}

.pdetail-short-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #4A5568;
    margin-bottom: 24px;
}

.pdetail-option-group {
    margin-bottom: 20px;
}

.option-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: block;
}

.option-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.unit-pill {
    border: 2px solid #D2E3AA;
    background-color: #F4F8EC;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unit-pill.active,
.unit-pill:hover {
    background-color: var(--accent-green);
    color: #FFFFFF;
    border-color: var(--accent-green);
}

.pdetail-stock-status {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2E7D32;
    display: inline-block;
}

.pdetail-actions-row {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.qty-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #E2E8F0;
    border-radius: 30px;
    background-color: #FFFFFF;
    padding: 4px 12px;
    width: 130px;
}

.qty-btn {
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px 8px;
}

.qty-stepper input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    background: transparent;
}

.btn-add-to-cart {
    flex: 1;
    background-color: #E2E870;
    border: 2px solid #D4DD55;
    color: #1A241E;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(226, 232, 112, 0.4);
}

.btn-add-to-cart:hover {
    background-color: #FFFFFF;
    border-color: #1A241E;
    transform: translateY(-2px);
}

.btn-buy-now {
    width: 100%;
    background-color: var(--accent-green);
    border: none;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    padding: 16px 28px;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 112, 60, 0.25);
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background-color: #005A30;
    transform: translateY(-2px);
}

.pdetail-pickup-box {
    background-color: #F4F8EE;
    border: 1px solid #D2E3AA;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.pickup-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--accent-green);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.pickup-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    display: block;
}

.pickup-text p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666666;
    margin-top: 2px;
}

.pickup-text a {
    color: var(--accent-green);
    text-decoration: underline;
}

.btn-whatsapp-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: #25D366;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
}

.btn-whatsapp-order:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
}

.pdetail-meta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
}

.meta-action-btn {
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.2s ease;
}

.meta-action-btn:hover {
    color: var(--accent-green);
}

/* Shipping Tracker Box */
.pdetail-shipping-tracker {
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 24px 20px;
    background-color: #FFFFFF;
    margin-bottom: 35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.tracker-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tracker-step {
    text-align: center;
    flex: 1;
}

.step-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.step-date {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-green);
    display: block;
}

.step-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #4A5568;
}

.tracker-line {
    flex: 1;
    height: 3px;
    background-color: #E2E8F0;
    margin: 0 8px;
    border-radius: 2px;
}

.tracker-line.line-active {
    background-color: var(--accent-green);
}

.tracker-notice {
    background-color: #F8F9FA;
    border-left: 4px solid var(--accent-green);
    padding: 12px 16px;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #4A5568;
    border-radius: 0 10px 10px 0;
}

/* Bulk Offers Stack */
.pdetail-bulk-offers {
    margin-bottom: 35px;
}

.offers-title,
.cross-sell-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.bulk-pills-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bulk-pill {
    width: 100%;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 30px;
    border: none;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 112, 60, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.bulk-pill:hover {
    background-color: #005A30;
    transform: translateY(-2px);
}

/* Cross-Sell Grid */
.pdetail-cross-sell {
    margin-bottom: 35px;
}

.cross-sell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cross-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    border: 1px solid #E2E8F0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.cross-card:hover {
    transform: translateY(-4px);
}

.cross-img-wrap img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.cross-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 10px 0 4px;
}

.cross-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--accent-green);
}

/* Accordions */
.pdetail-accordions-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.paccordion-item {
    border: 2px solid #C2DF6D;
    background-color: #E2E870;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.paccordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    color: #1A241E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.paccordion-body {
    padding: 0 24px 24px;
    display: none;
}

.paccordion-item.open .paccordion-body {
    display: block;
}

.paccordion-list {
    list-style: disc inside;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #2B3A30;
}

.paccordion-list li {
    margin-bottom: 8px;
}

/* -- Product Story & Spotlight Banners -- */
.product-story-section {
    padding: 80px 40px;
    background-color: var(--bg-cream);
}

.story-container {
    max-width: 1280px;
    margin: 0 auto;
}

.story-intro-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    max-width: 960px;
    margin: 0 auto 60px;
    text-align: center;
}

.spotlight-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background-color: #FDF8EE;
    border-radius: 32px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.media-inner-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 360px;
}

.spotlight-main-img {
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
}

.circle-tag {
    position: absolute;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 12px;
    line-height: 1.1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tag-weight {
    top: 20px;
    right: 40px;
    background-color: #F7CF53;
    color: #1A241E;
}

.tag-purity {
    top: 110px;
    right: 10px;
    background-color: #78B745;
    color: #FFFFFF;
}

.tag-price {
    bottom: 30px;
    right: 60px;
    background-color: #E9BA3B;
    color: #1A241E;
}

.multi-jar-display {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.multi-jar-display img {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

.multi-jar-display .jar-2 {
    transform: scale(1.15) translateY(-10px);
    z-index: 2;
}

.spotlight-heading {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}

.spotlight-body-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
}

/* -- 6-Tile Color Spec Grid -- */
.color-spec-tiles-section {
    max-width: 1280px;
    margin: 40px auto 80px;
    padding: 0 40px;
}

.tiles-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spec-tile {
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.tile-lime {
    background-color: #E2E870;
    color: #1A241E;
}

.tile-green-medium {
    background-color: #62B852;
    color: #FFFFFF;
}

.tile-green-dark {
    background-color: var(--accent-green);
    color: #FFFFFF;
}

.tile-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}

.tile-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

/* -- Customer Reviews Section -- */
.pdetail-reviews-section {
    background-color: #FFFFFF;
    padding: 90px 40px;
}

.pdetail-reviews-container {
    max-width: 1140px;
    margin: 0 auto;
}

.pdetail-reviews-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 45px;
    color: var(--text-dark);
}

.reviews-summary-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: center;
    background-color: #FAFBF8;
    border-radius: 28px;
    padding: 36px 40px;
    border: 1px solid #EAEFE3;
    margin-bottom: 40px;
}

.summary-score-box {
    text-align: center;
}

.big-score {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.big-score .max-score {
    font-size: 16px;
    font-weight: 500;
    color: #777777;
}

.star-rating-lg {
    color: #FFB800;
    font-size: 20px;
    letter-spacing: 2px;
    margin: 8px 0;
}

.count-note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--accent-green);
    font-weight: 700;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    margin-bottom: 8px;
}

.bar-stars {
    color: #FFB800;
    width: 65px;
}

.bar-track {
    flex: 1;
    height: 8px;
    background-color: #EAEFE3;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: var(--accent-green);
    border-radius: 4px;
}

.summary-cta-box {
    text-align: center;
}

.btn-write-review {
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 112, 60, 0.2);
    transition: all 0.3s ease;
}

.btn-write-review:hover {
    background-color: #005A30;
    transform: translateY(-2px);
}

.reviews-filter-toolbar {
    margin-bottom: 30px;
}

.review-sort-select {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid #E2E8F0;
    padding: 8px 16px;
    border-radius: 12px;
    outline: none;
    cursor: pointer;
    background-color: #FFFFFF;
}

.reviews-list {
    display: flex;
    flex-direction: column;
}

.review-item-card {
    border-top: 1px solid #EAEFE3;
    padding: 28px 0;
}

.review-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.rev-stars {
    color: #FFB800;
    font-size: 15px;
    letter-spacing: 2px;
}

.rev-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888888;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.author-icon {
    font-size: 18px;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

.verified-badge {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-green);
}

.rev-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #4A5568;
}

/* Responsive Details Layout */
@media (max-width: 1024px) {
    .product-main-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery-col {
        position: static;
    }

    .spotlight-feature-card,
    .spotlight-feature-card.reverse-layout {
        grid-template-columns: 1fr;
    }

    .tiles-container {
        grid-template-columns: 1fr;
    }

    .reviews-summary-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .discover-grid,
    .recent-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {

    .discover-grid,
    .recent-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   DISCOVER MORE FLAVORS SECTION
   ======================================== */
.discover-more-section {
    background-color: var(--accent-green);
    color: #FFFFFF;
    padding: 100px 40px 140px;
    position: relative;
}

.discover-header {
    text-align: center;
    margin-bottom: 50px;
}

.discover-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 12px;
    display: block;
}

.discover-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
}

.discover-grid {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.discover-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.disc-image-box {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 50px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.disc-image-box img {
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

.disc-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    border: 2px solid var(--accent-green);
    z-index: 2;
}

.disc-info {
    padding-top: 16px;
}

.disc-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.disc-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
}

.curr-p {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.orig-p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.disc-swatches,
.recent-swatches {
    display: flex;
    gap: 8px;
}

.swatch {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 3px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.swatch:hover {
    transform: scale(1.15);
}

.swatch img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.discover-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 0;
    pointer-events: none;
}

.discover-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========================================
   RECENTLY VIEWED SECTION
   ======================================== */
.recently-viewed-section {
    padding: 100px 40px;
    background-color: var(--bg-cream);
}

.recent-container {
    max-width: 1340px;
    margin: 0 auto;
}

.recent-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.recent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.recent-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.recent-image-box {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 18px;
    background-color: #FBF8F3;
}

.recent-image-box img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.1));
}

.recent-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.recent-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 14px;
}

.r-curr {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}

.r-orig {
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    text-decoration: line-through;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-hero-section {
    padding: 120px 40px 60px;
    background-color: var(--bg-cream);
}

.about-hero-container {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.about-hero-left {
    background-color: #FDF9F0;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.about-collage-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.acollage-img {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.acollage-img.img-center {
    transform: scale(1.18);
    z-index: 2;
}

.about-hero-right {
    background-color: var(--accent-green);
    border-radius: 24px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    box-shadow: 0 12px 35px rgba(0, 112, 60, 0.2);
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
}

.btn-about-hero-cta {
    display: inline-block;
    background-color: #E2E870;
    color: #1A241E;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-about-hero-cta:hover {
    background-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Our Story & Our Mission Sections */
.about-story-section,
.about-mission-section {
    padding: 90px 40px;
    background-color: var(--bg-cream);
}

.about-story-container,
.about-mission-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.astory-subtitle,
.amission-subtitle,
.makers-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.astory-title,
.amission-title,
.makers-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.12;
    margin-bottom: 24px;
}

.astory-paragraph,
.amission-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 20px;
}

.btn-story-action,
.btn-mission-action {
    display: inline-block;
    background-color: #E2E870;
    border: 2px solid #1A241E;
    color: #1A241E;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-story-action:hover,
.btn-mission-action:hover {
    background-color: #1A241E;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.astory-image-card,
.amission-image-card {
    border-radius: 28px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.astory-image-card img,
.amission-image-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
}

/* Meet the Makers Section */
.about-makers-section {
    padding: 90px 40px;
    background-color: #FFFFFF;
}

.makers-container {
    max-width: 1340px;
    margin: 0 auto;
}

.makers-header {
    text-align: center;
    margin-bottom: 50px;
}

.makers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.maker-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    background-color: #FFFFFF;
    transition: transform 0.3s ease;
}

.maker-card:hover {
    transform: translateY(-6px);
}

.maker-image-box {
    position: relative;
    height: 380px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.maker-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maker-social-icons {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.social-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #A4D64D;
    color: #1A241E;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
}

.social-bubble:hover {
    transform: scale(1.15);
    background-color: #BBE85E;
}

.maker-info-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background-color: #FFFFFF;
    padding: 14px 16px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    z-index: 5;
}

.maker-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.maker-role {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #777777;
    font-weight: 500;
}

/* Responsive Layout for About Page */
@media (max-width: 1100px) {

    .about-hero-container,
    .about-story-container,
    .about-mission-container {
        grid-template-columns: 1fr;
    }

    .makers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .makers-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */
.blog-hero-section {
    padding: 120px 40px 60px;
    background-color: var(--bg-cream);
}

.blog-hero-container {
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
}

.blog-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.blog-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 16px;
}

.blog-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #4A5568;
    max-width: 720px;
    margin: 0 auto 50px;
}

/* Featured Article Card */
.featured-blog-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.fblog-image-box {
    position: relative;
    border-radius: 24px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fblog-image-box img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.featured-blog-card:hover .fblog-image-box img {
    transform: scale(1.06);
}

.fblog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.fblog-content {
    display: flex;
    flex-direction: column;
}

.fblog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #777777;
    margin-bottom: 14px;
    font-weight: 600;
}

.category-tag {
    color: var(--accent-green);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}

.fblog-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.fblog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fblog-title a:hover {
    color: var(--accent-green);
}

.fblog-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 24px;
}

.fblog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #E2E870;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.author-info strong {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
}

.author-info span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #777777;
}

/* Blog Catalog & Category Tabs */
.blog-catalog-section {
    padding: 60px 40px 90px;
    background-color: var(--bg-cream);
}

.blog-catalog-container {
    max-width: 1340px;
    margin: 0 auto;
}

.blog-category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tab-btn {
    border: 2px solid #E2E8F0;
    background-color: #FFFFFF;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--accent-green);
    color: #FFFFFF;
    border-color: var(--accent-green);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.article-card {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.article-img-box {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

.article-img-box img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.article-card:hover .article-img-box img {
    transform: scale(1.08);
}

.art-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.article-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.art-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #888888;
    margin-bottom: 12px;
}

.art-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.art-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.art-title a:hover {
    color: var(--accent-green);
}

.art-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 20px;
    flex: 1;
}

.read-more-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-green);
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

.read-more-link:hover {
    transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background-color: #FFFFFF;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-link.next-page {
    width: auto;
    padding: 0 20px;
}

.page-link.active,
.page-link:hover {
    background-color: var(--accent-green);
    color: #FFFFFF;
    border-color: var(--accent-green);
}

/* Responsive Blog Layout */
@media (max-width: 1024px) {
    .featured-blog-card {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   COMING SOON PAGE STYLES
   ======================================== */
.coming-soon-page {
    min-height: 100vh;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cs-background-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 112, 60, 0.15) 0%, rgba(226, 232, 112, 0.1) 50%, rgba(248, 246, 240, 0) 70%);
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}

.cs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.cs-logo img {
    height: 48px;
    object-fit: contain;
}

.cs-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #25D366;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.cs-hero-container {
    max-width: 900px;
    margin: 20px auto 40px;
    padding: 0 30px;
    text-align: center;
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-hero-content {
    width: 100%;
}

.cs-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.cs-main-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.cs-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
    max-width: 680px;
    margin: 0 auto 40px;
}

/* Live Countdown Timer */
.cs-countdown-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.cs-timer-box {
    background-color: #FFFFFF;
    border: 2px solid rgba(0, 112, 60, 0.12);
    border-radius: 24px;
    padding: 18px 26px;
    min-width: 105px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.timer-num {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
    display: block;
}

.timer-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777777;
    margin-top: 6px;
    display: block;
}

.timer-colon {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-green);
    opacity: 0.4;
    margin-top: -12px;
}

/* Subscribe Card */
.cs-subscribe-card {
    background-color: var(--accent-green);
    color: #FFFFFF;
    border-radius: 32px;
    padding: 40px 45px;
    box-shadow: 0 20px 50px rgba(0, 112, 60, 0.25);
    margin-bottom: 50px;
}

.subscribe-heading {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.subscribe-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.input-pill-wrapper {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 6px 6px 6px 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 560px;
    margin: 0 auto;
}

.input-pill-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: transparent;
}

.btn-cs-subscribe {
    background-color: #E2E870;
    color: #1A241E;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-cs-subscribe:hover {
    background-color: #1A241E;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.cs-success-msg {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #E2E870;
    margin-top: 16px;
}

/* 3-Jar Teaser Fan Showcase */
.cs-jars-teaser {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    position: relative;
    margin-top: 10px;
}

.teaser-jar {
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.teaser-jar img {
    width: 170px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.teaser-jar.jar-left {
    transform: translateX(-120px) rotate(-14deg) scale(0.88);
    z-index: 1;
}

.teaser-jar.jar-center {
    transform: translateY(-10px) scale(1.08);
    z-index: 3;
}

.teaser-jar.jar-right {
    transform: translateX(120px) rotate(14deg) scale(0.88);
    z-index: 1;
}

.cs-jars-teaser:hover .teaser-jar.jar-left {
    transform: translateX(-150px) rotate(-20deg) scale(0.92);
}

.cs-jars-teaser:hover .teaser-jar.jar-right {
    transform: translateX(150px) rotate(20deg) scale(0.92);
}

.cs-jars-teaser:hover .teaser-jar.jar-center {
    transform: translateY(-20px) scale(1.15);
}

/* Footer */
.cs-footer {
    padding: 24px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background-color: var(--bg-cream);
    text-align: center;
    position: relative;
    z-index: 10;
}

.cs-footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #777777;
}

.cs-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-social-links a {
    color: var(--accent-green);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cs-social-links a:hover {
    color: var(--text-dark);
}

.cs-social-links .sep {
    opacity: 0.4;
}

@media (max-width: 768px) {
    .cs-footer-content {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   CART PAGE STYLES
   ======================================== */
.cart-hero-section {
    padding: 120px 40px 30px;
    background-color: var(--bg-cream);
}

.cart-hero-container {
    max-width: 1340px;
    margin: 0 auto;
}

.cart-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #777777;
    margin-bottom: 12px;
}

.cart-breadcrumb a {
    color: var(--accent-green);
    text-decoration: none;
}

.cart-page-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 900;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-count-badge {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    background-color: #E2E870;
    color: #1A241E;
    padding: 4px 14px;
    border-radius: 20px;
}

.cart-main-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 30px 40px 100px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.free-shipping-card {
    background-color: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 20px;
    padding: 18px 24px;
    margin-bottom: 30px;
}

.fs-text {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #166534;
    margin-bottom: 8px;
}

.fs-bar-track {
    height: 8px;
    background-color: #DCFCE7;
    border-radius: 10px;
    overflow: hidden;
}

.fs-bar-fill {
    height: 100%;
    background-color: var(--accent-green);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.cart-table-wrapper {
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 24px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.cart-table th {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    padding: 18px 24px;
    background-color: #FAF9F6;
    border-bottom: 1px solid #E2E8F0;
}

.cart-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #F1F5F9;
    vertical-align: middle;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cprod-img-box {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.cprod-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cprod-name a {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
}

.cprod-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #777777;
    display: block;
    margin-top: 2px;
}

.price-cell,
.subtotal-cell {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 2px 8px;
    background-color: #FFFFFF;
}

.cart-step-btn {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 26px;
    height: 26px;
    color: var(--text-dark);
}

.cart-qty-input {
    width: 32px;
    text-align: center;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.cart-remove-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.cart-remove-btn:hover {
    opacity: 1;
}

.cart-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.cart-coupon-box {
    display: flex;
    gap: 10px;
}

.cart-coupon-box input {
    border: 1px solid #CBD5E1;
    border-radius: 24px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    width: 220px;
}

.btn-apply-coupon {
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    border: none;
    padding: 10px 22px;
    border-radius: 24px;
    cursor: pointer;
}

.cart-action-btns {
    display: flex;
    gap: 12px;
}

.btn-clear-cart {
    background: #F1F5F9;
    color: #475569;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    cursor: pointer;
}

.btn-continue-shop {
    background-color: #E2E870;
    color: #1A241E;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    border: 2px solid #1A241E;
    padding: 8px 20px;
    border-radius: 24px;
    text-decoration: none;
}

/* Order Summary Card */
.order-summary-card {
    background-color: #FFFFFF;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4A5568;
    margin-bottom: 14px;
}

.summary-line.discount-line .disc-amt {
    color: #166534;
}

.summary-divider {
    height: 1px;
    background-color: #E2E8F0;
    margin: 18px 0;
}

.summary-line.total-line {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.order-note-wrap {
    margin-top: 20px;
}

.order-note-wrap label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.order-note-wrap textarea {
    width: 100%;
    border: 1px solid #CBD5E1;
    border-radius: 14px;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    resize: vertical;
}

.btn-proceed-checkout {
    display: block;
    text-align: center;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    padding: 16px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 24px;
    box-shadow: 0 8px 20px rgba(0, 112, 60, 0.25);
    transition: transform 0.2s;
}

.btn-proceed-checkout:hover {
    transform: translateY(-2px);
}

.cart-trust-badges {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========================================
   CHECKOUT PAGE STYLES
   ======================================== */
.checkout-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 20px 40px;
}

.checkout-header-container {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chk-logo img {
    height: 42px;
    object-fit: contain;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 14px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94A3B8;
}

.step-item.active {
    color: var(--accent-green);
    font-weight: 800;
}

.step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #E2E8F0;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.step-item.active .step-num {
    background-color: var(--accent-green);
    color: #FFFFFF;
}

.step-item.completed .step-num {
    background-color: #DCFCE7;
    color: var(--accent-green);
}

.step-line {
    width: 30px;
    height: 2px;
    background-color: #E2E8F0;
}

.chk-secure-badge {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-green);
    background-color: #F0FDF4;
    padding: 6px 14px;
    border-radius: 20px;
}

.checkout-main-section {
    padding: 40px 40px 100px;
    background-color: var(--bg-cream);
}

.checkout-main-container {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 40px;
    align-items: start;
}

/* Express Checkout */
.express-checkout-box {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.express-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.express-btns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.btn-express {
    border: 2px solid #E2E8F0;
    background-color: #FAF9F6;
    padding: 12px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-express:hover {
    border-color: var(--accent-green);
    background-color: #FFFFFF;
}

.form-section-divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.form-section-divider span {
    background-color: var(--bg-cream);
    padding: 0 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
    position: relative;
    z-index: 2;
}

.form-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #CBD5E1;
    z-index: 1;
}

/* Form Blocks */
.form-block {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-block-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    /* margin-bottom: 16px; */
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.form-group input,
.form-group select {
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-green);
}

/* Delivery Options */
.delivery-options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.delivery-option-card.active {
    border-color: var(--accent-green);
    background-color: #F0FDF4;
}

.delivery-info strong {
    font-family: var(--font-heading);
    font-size: 15px;
    display: block;
    color: var(--text-dark);
}

.delivery-info span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #64748B;
}

.delivery-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent-green);
}

/* Payment Methods */
.payment-methods-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-item {
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method-item.active {
    border-color: var(--accent-green);
    background-color: #FAF9F6;
}

.pm-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pm-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    flex: 1;
}

.badge-recommended {
    background-color: #E2E870;
    color: #1A241E;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
}

.pm-body {
    padding-top: 14px;
    margin-top: 12px;
    border-top: 1px solid #E2E8F0;
}

.pm-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
    margin-bottom: 12px;
}

.upi-id-input {
    display: flex;
    gap: 10px;
}

.upi-id-input input {
    flex: 1;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.btn-verify-upi {
    background-color: var(--accent-green);
    color: #FFFFFF;
    border: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
}

.btn-place-order {
    width: 100%;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    border: none;
    padding: 18px;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(0, 112, 60, 0.3);
    transition: transform 0.2s;
}

.btn-place-order:hover {
    transform: translateY(-2px);
}

.btn-whatsapp-order {
    display: block;
    text-align: center;
    background-color: #25D366;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    padding: 14px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 12px;
}

/* Order Review Card */
.chk-summary-card {
    background-color: #FFFFFF;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.chk-summary-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.chk-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chk-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.chk-item-img {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chk-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chk-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chk-item-info {
    flex: 1;
}

.chk-item-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
}

.chk-item-info span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #64748B;
}

.chk-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.chk-divider {
    height: 1px;
    background-color: #E2E8F0;
    margin: 20px 0;
}

.chk-cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
}

.cost-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    padding-top: 14px;
    border-top: 1px solid #E2E8F0;
    margin-top: 6px;
}

.grand-total {
    color: var(--accent-green);
}

.chk-guarantee-box {
    margin-top: 24px;
    padding: 16px;
    background-color: #F8FAFC;
    border-radius: 16px;
    display: flex;
    gap: 14px;
    border: 1px solid #E2E8F0;
}

.g-icon {
    font-size: 24px;
}

.g-text strong {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-dark);
    display: block;
    margin-bottom: 2px;
}

.g-text p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
}

@media (max-width: 1024px) {

    .cart-main-container,
    .checkout-main-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cs-header {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
    }

    .input-pill-wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
        border-radius: 20px;
    }

    .input-pill-wrapper input {
        width: 100%;
        text-align: center;
    }

    .btn-cs-subscribe {
        width: 100%;
    }
}

/* ========================================
   AUTH PAGES (LOGIN & REGISTER) STYLES
   ======================================== */
.auth-page {
    min-height: 100vh;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-header {
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.auth-logo img {
    height: 48px;
    object-fit: contain;
}

.auth-back-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-green);
    text-decoration: none;
    border: 1px solid rgba(0, 112, 60, 0.2);
    padding: 8px 18px;
    border-radius: 24px;
    transition: all 0.2s ease;
}

.auth-back-link:hover {
    background-color: var(--accent-green);
    color: #FFFFFF;
}

.auth-main-container {
    max-width: 1140px;
    margin: 10px auto 60px;
    padding: 0 30px;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-split-card {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    background-color: #FFFFFF;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
}

.auth-visual-col {
    background-color: var(--accent-green);
    color: #FFFFFF;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-badge {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    background-color: #E2E870;
    color: #1A241E;
    padding: 6px 14px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 16px;
    margin-top: 26px;
}

.auth-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.auth-jar-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    position: relative;
}

.ajar-left,
.ajar-center,
.ajar-right {
    position: absolute;
    width: 110px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.ajar-left {
    transform: translateX(-60px) rotate(-12deg) scale(0.85);
    z-index: 1;
}

.ajar-center {
    transform: scale(1.08);
    z-index: 3;
}

.ajar-right {
    transform: translateX(60px) rotate(12deg) scale(0.85);
    z-index: 1;
}

.auth-perks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    list-style: none;
    padding: 0;
}

.auth-perks-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.perk-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.auth-form-col {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.auth-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
    margin-bottom: 24px;
}

.auth-subtitle a {
    color: var(--accent-green);
    font-weight: 700;
    text-decoration: none;
}

.auth-social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-social-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #E2E8F0;
    background-color: #FFFFFF;
    border-radius: 14px;
    padding: 12px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-social-auth:hover {
    border-color: var(--accent-green);
    background-color: #FAF9F6;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 24px 0;
    margin-bottom: 14px;
}

.form-row-remember {
    margin-top: 12px;
}

.auth-divider span {
    background-color: #FFFFFF;
    padding: 0 14px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #94A3B8;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #E2E8F0;
    z-index: 1;
}

.password-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrap input {
    width: 100%;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    padding: 12px 45px 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.btn-toggle-pw {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.6;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.forgot-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--accent-green);
    font-weight: 700;
    text-decoration: none;
}

.btn-auth-submit {
    width: 100%;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    border: none;
    padding: 16px;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(0, 112, 60, 0.25);
    transition: transform 0.2s;
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
}

.pw-strength-bar {
    height: 4px;
    background-color: #E2E8F0;
    border-radius: 10px;
    margin-top: 8px;
    overflow: hidden;
}

.pw-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.pw-strength-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #64748B;
    margin-top: 4px;
    display: block;
}

.auth-terms-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.auth-terms-group a {
    color: var(--accent-green);
    font-weight: 700;
}

.auth-footer-help {
    text-align: center;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
}

.auth-footer-help a {
    color: #25D366;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .auth-split-card {
        grid-template-columns: 1fr;
    }

    .auth-visual-col {
        padding: 40px 30px;
    }

    .auth-form-col {
        padding: 40px 30px;
    }
}

/* ========================================
   PROFILE & ORDERS PAGE STYLES
   ======================================== */
.profile-page {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    min-height: 100vh;
}

.profile-hero-section {
    padding: 130px 40px 40px;
    background-color: var(--accent-green, #00703C);
    color: #FFFFFF;
}

.profile-hero-container {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-user-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-avatar-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #E2E870;
    color: #1A241E;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.user-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #25D366;
    border: 2px solid var(--accent-green);
}

.user-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.vip-member-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #E2E870;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.member-since {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.user-name {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
}

.user-email {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.profile-header-actions {
    display: flex;
    gap: 12px;
}

.btn-prof-shop {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #E2E870;
    color: #1A241E;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 24px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-prof-shop:hover {
    transform: translateY(-2px);
}

.btn-prof-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-prof-logout:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Main Dashboard Section */
.profile-dashboard-section {
    padding: 30px 40px 100px;
    background-color: var(--bg-cream, #F8F6F0);
}

.profile-dashboard-container {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
}

.profile-sidebar {
    position: sticky;
    top: 110px;
    width: 100%;
}

.profile-content-area {
    min-width: 0;
    width: 100%;
}

.prof-nav-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 16px;
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-item.active,
.tab-item:hover {
    background-color: #F0FDF4;
    color: var(--accent-green);
}

.badge-count {
    margin-left: auto;
    background-color: #E2E870;
    color: #1A241E;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
}

.prof-tab-panel {
    display: none;
    background-color: #FFFFFF;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.prof-tab-panel.active {
    display: block;
}

.panel-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F1F5F9;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.panel-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
    display: block;
}

/* Overview Stats Grid */
.overview-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    background-color: #FAF9F6;
}

.stat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    display: block;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #64748B;
}

.recent-order-spotlight {
    border: 2px solid #E2E8F0;
    border-radius: 24px;
    padding: 26px;
    background-color: #FFFFFF;
}

.ro-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ro-badge {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
}

.ro-badge.active-shipment {
    background-color: #FEF3C7;
    color: #92400E;
}

.ro-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
}

.ro-meta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
    margin-top: 4px;
}

.btn-ro-track {
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-ro-track:hover {
    transform: translateY(-2px);
}

/* Tracking Bar */
.tracking-steps-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    position: relative;
    padding: 0 10px;
}

.t-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.t-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E2E8F0;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-step.done .t-icon {
    background-color: var(--accent-green);
    color: #FFFFFF;
}

.t-step.current .t-icon {
    background-color: #E2E870;
    color: #1A241E;
    border: 2px solid var(--accent-green);
}

.t-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--text-dark);
}

.t-date {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #94A3B8;
}

.t-line {
    flex: 1;
    height: 3px;
    background-color: #E2E8F0;
    margin: 0 -10px;
    position: relative;
    top: -16px;
    z-index: 1;
}

.t-line.active {
    background-color: var(--accent-green);
}

/* Orders List */
.orders-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.order-history-card {
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 24px;
    background-color: #FFFFFF;
}

.oh-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 20px;
}

.oh-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oh-id {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
}

.oh-status-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 14px;
}

.oh-status-badge.status-in-transit {
    background-color: #FEF3C7;
    color: #92400E;
}

.oh-status-badge.status-delivered {
    background-color: #DCFCE7;
    color: #166534;
}

.oh-date-cost {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 12px;
}

.oh-amount {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-dark);
}

.oh-items-thumb-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.oh-item-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #FAF9F6;
    border: 1px solid #E2E8F0;
    padding: 10px 14px;
    border-radius: 16px;
}

.oh-item-preview img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.oh-item-details h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark);
}

.oh-item-details span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #64748B;
}

.oh-footer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}

.btn-oh-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    padding: 9px 18px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-oh-secondary {
    background-color: #F1F5F9;
    color: #475569;
}

.btn-oh-primary {
    background-color: var(--accent-green);
    color: #FFFFFF;
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wishlist-card {
    position: relative;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 18px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.wishlist-card:hover {
    transform: translateY(-4px);
}

.btn-remove-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #F1F5F9;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748B;
    z-index: 2;
}

.w-img-box {
    height: 180px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-bottom: 14px;
}

.w-img-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.w-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.w-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.w-price {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.w-stock-status {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.w-stock-status.in-stock {
    color: #166534;
}

.btn-w-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    padding: 10px;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-w-add-cart:hover {
    transform: translateY(-2px);
}

/* Addresses */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.address-card {
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    padding: 24px;
    position: relative;
}

.address-card.default-addr {
    border-color: var(--accent-green);
    background-color: #F0FDF4;
}

.addr-badge {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    background-color: var(--accent-green);
    color: #FFFFFF;
    padding: 3px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.addr-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.addr-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 12px;
}

.addr-phone {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
    display: block;
    margin-bottom: 16px;
}

.addr-actions {
    display: flex;
    gap: 10px;
}

.btn-addr-edit,
.btn-addr-delete {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 12px;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    cursor: pointer;
}

.btn-add-new-addr {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

/* Settings */
.prof-settings-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 650px;
}

.settings-divider {
    height: 1px;
    background-color: #E2E8F0;
    margin: 16px 0;
}

.sub-section-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
}

.btn-save-settings {
    background-color: var(--accent-green);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
    padding: 14px 28px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 10px;
}

/* ========================================
   USER PROFILE PAGE MOBILE RESPONSIVE STYLES
   ======================================== */
.profile-page .navbar {
    background-color: #F8F6F0 !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .profile-hero-section {
        padding: 95px 20px 24px;
    }

    .profile-hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .profile-user-card {
        gap: 14px;
    }

    .user-avatar-wrap {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .profile-header-actions {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .btn-prof-shop,
    .btn-prof-logout,
    .btn-prof-admin {
        flex: 1;
        min-width: 130px;
        justify-content: center;
        text-align: center;
        padding: 9px 16px;
        font-size: 13px;
    }

    .profile-dashboard-section {
        padding: 16px 16px 60px;
    }

    .profile-dashboard-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Sticky Horizontal Navigation Tabs for Mobile */
    .profile-sidebar {
        position: sticky;
        top: 72px;
        z-index: 800;
        background-color: #F8F6F0;
        margin: 0 -16px;
        padding: 10px 16px;
        border-bottom: 1px solid #E2E8F0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    }

    .prof-nav-tabs {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding-bottom: 4px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .prof-nav-tabs::-webkit-scrollbar {
        display: none;
    }

    .prof-nav-tabs .tab-item {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        padding: 10px 16px !important;
        font-size: 13px !important;
        border-radius: 18px !important;
        margin-bottom: 0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .prof-nav-tabs .tab-item.active {
        background-color: var(--accent-green, #00703C) !important;
        color: #FFFFFF !important;
        font-weight: 800 !important;
    }

    .prof-nav-tabs .tab-item.active svg {
        stroke: #FFFFFF !important;
    }

    .prof-nav-tabs .tab-item.active .badge-count {
        background-color: #E2E870 !important;
        color: #1A241E !important;
    }
}

@media (max-width: 768px) {
    .panel-header {
        margin-bottom: 18px;
    }

    .panel-title {
        font-size: 22px;
    }

    .panel-subtitle {
        font-size: 13px;
    }

    .order-history-card {
        padding: 16px;
        border-radius: 18px;
    }

    .oh-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .oh-date-cost {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px dashed #E2E8F0;
        padding-top: 8px;
    }

    .oh-items-thumb-row {
        flex-direction: column;
        gap: 10px;
    }

    .oh-item-preview {
        width: 100%;
    }

    .oh-footer-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .btn-oh-action {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 10px 14px;
        font-size: 13px;
    }

    .form-grid-2col {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

@media (max-width: 650px) {
    .overview-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .stat-card {
        padding: 12px;
        border-radius: 16px;
        gap: 10px;
    }

    .stat-icon-wrap {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .stat-value {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .addresses-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .recent-order-spotlight {
        padding: 16px;
        border-radius: 18px;
    }

    .ro-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Tracking Bar Mobile Clean Non-wrapping */
    .tracking-steps-bar {
        padding: 6px 0;
        gap: 0;
    }

    .t-icon {
        width: 28px;
        height: 28px;
    }

    .t-label {
        font-size: 10px;
        white-space: nowrap;
    }

    .t-date {
        font-size: 9px;
        white-space: nowrap;
    }
}

/* ========================================
   GLOBAL MOBILE NAVBAR & DRAWER STYLES (BASE)
   ======================================== */
.nav-hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--nav-text, #2B3A30);
    cursor: pointer;
    padding: 4px;
    align-items: center;
    justify-content: center;
}

.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #FFFFFF;
    z-index: 3000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #F1F5F9;
}

.mobile-drawer-logo img {
    height: 38px;
    width: auto;
}

.btn-close-drawer {
    background: #F1F5F9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-drawer-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.mobile-drawer-menu li a svg {
    flex-shrink: 0;
    stroke: currentColor;
}

.mobile-drawer-menu li a:hover,
.mobile-drawer-menu li a.active {
    background: #F0FDF4;
    color: var(--accent-green, #00703C);
    font-weight: 700;
}

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.mobile-drawer-perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 16px;
}

.mobile-drawer-perks span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-mobile-shop-cta {
    display: block;
    text-align: center;
    background: var(--accent-green, #00703C);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    border-radius: 24px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }

    .nav-hamburger-btn {
        display: flex !important;
    }
}

/* ========================================
   CART PAGE STYLES (BASE + RESPONSIVE)
   ======================================== */
.cart-page .navbar {
    background-color: #F8F6F0 !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.cart-rec-box {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    margin-top: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.cart-rec-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    color: #1A241E;
    margin-bottom: 16px;
}

.cart-rec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cart-rec-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FAF9F6;
    border: 1px solid #E2E8F0;
    padding: 12px;
    border-radius: 16px;
}

.cart-rec-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cart-rec-info {
    flex: 1;
    min-width: 0;
}

.cart-rec-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: #1A241E;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-rec-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-green, #00703C);
}

.btn-cart-rec-add {
    background: var(--accent-green, #00703C);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-cart-rec-add:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .cart-hero-section {
        padding: 95px 20px 24px;
    }

    .cart-main-section {
        padding: 16px 12px 60px;
    }

    .cart-main-container {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .cart-page-title {
        font-size: clamp(22px, 5.5vw, 32px);
        flex-wrap: wrap;
        gap: 8px;
    }

    .free-shipping-card {
        padding: 14px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .fs-text {
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 10px;
    }

    .fs-info-wrap {
        display: flex;
        align-items: center;
        gap: 6px;
        flex: 1;
        min-width: 0;
    }

    .fs-info-wrap svg {
        flex-shrink: 0;
    }

    .fs-info-wrap span {
        line-height: 1.35;
        font-size: 12px;
        word-break: break-word;
    }

    .fs-percent {
        flex-shrink: 0;
        font-size: 11px;
    }

    .cart-actions-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .cart-coupon-box {
        width: 100%;
        display: flex;
        gap: 8px;
    }

    .cart-coupon-box input {
        flex: 1;
        min-width: 0;
        padding: 10px 14px;
        font-size: 13px;
    }

    .btn-apply-coupon {
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .cart-action-btns {
        width: 100%;
    }

    .btn-continue-shop {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }

    .order-summary-card {
        padding: 20px 16px;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .summary-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .btn-checkout-proceed {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 24px;
    }

    .cart-table-wrapper {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .cart-table,
    .cart-table tbody {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .cart-table thead {
        display: none !important;
    }

    .cart-item-row {
        display: block !important;
        position: relative !important;
        background: #FFFFFF !important;
        border: 1px solid #E2E8F0 !important;
        border-radius: 20px !important;
        padding: 14px 12px !important;
        margin-bottom: 14px !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03) !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Product cell (Image + Title + Size) */
    .cart-table td.product-cell {
        display: block !important;
        width: 100% !important;
        padding: 0 32px 10px 0 !important;
        border: none !important;
        border-bottom: 1px dashed #E2E8F0 !important;
        box-sizing: border-box !important;
    }

    .cart-product-info {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .cprod-img-box {
        width: 52px !important;
        height: 52px !important;
        flex-shrink: 0 !important;
        border-radius: 12px !important;
        background: #FAF2E8 !important;
        border: 1px solid #F1F5F9 !important;
        padding: 4px !important;
    }

    .cprod-details {
        flex: 1 !important;
        min-width: 0 !important;
        word-break: break-word !important;
    }

    .cprod-name a {
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #1A241E !important;
        line-height: 1.3 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .cprod-meta {
        font-size: 11px !important;
        color: #64748B !important;
        margin-top: 2px !important;
    }

    .cart-table td.price-cell {
        display: none !important;
    }

    .cart-table td.action-cell {
        position: absolute !important;
        top: 14px !important;
        right: 14px !important;
        display: block !important;
        width: auto !important;
        padding: 0 !important;
        border: none !important;
    }

    .cart-remove-btn {
        background: #FEF2F2 !important;
        color: #EF4444 !important;
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .cart-table td.qty-cell {
        display: inline-block !important;
        width: auto !important;
        padding: 0 !important;
        border: none !important;
        margin-top: 12px !important;
        float: left !important;
    }

    .cart-table td.subtotal-cell {
        display: inline-block !important;
        width: auto !important;
        padding: 0 !important;
        border: none !important;
        margin-top: 12px !important;
        float: right !important;
        font-family: var(--font-heading) !important;
        font-size: 18px !important;
        font-weight: 900 !important;
        color: var(--accent-green, #00703C) !important;
        line-height: 34px !important;
    }

    .cart-item-row::after {
        content: "" !important;
        display: table !important;
        clear: both !important;
    }

    .cart-rec-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .cart-rec-card {
        padding: 10px 12px !important;
    }
}

/* ========================================
   FLAVOR SHOWCASE SECTION MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .flavor-showcase-wrapper {
        padding: 40px 16px;
    }

    .flavor-showcase-section {
        border-radius: 28px;
        padding: 40px 24px;
    }

    .flavor-showcase-container {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .flavor-col.flavor-left,
    .flavor-col.flavor-right {
        align-items: center !important;
        text-align: center !important;
    }

    .flavor-main-title {
        font-size: clamp(30px, 7vw, 44px);
    }

    .flavor-jar-display {
        height: 280px;
    }

    .flavor-jar-display img {
        max-height: 260px;
    }

    .flavor-col.flavor-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .flavor-spec-item {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(8px);
        padding: 16px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.6);
        align-items: center !important;
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .flavor-showcase-wrapper {
        padding: 24px 10px;
    }

    .flavor-showcase-section {
        border-radius: 20px;
        padding: 30px 16px;
    }

    .flavor-badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .flavor-tagline {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .flavor-main-title {
        font-size: clamp(24px, 6.5vw, 34px);
        margin-bottom: 24px;
    }

    .btn-flavor-cta {
        padding: 12px 28px;
        font-size: 14px;
    }

    .flavor-center {
        width: 100%;
    }

    .flavor-jar-display {
        width: 100%;
        max-width: 240px;
        height: 240px;
        margin-bottom: 12px;
    }

    .flavor-jar-display img {
        max-height: 220px;
    }

    .flavor-nav-btn {
        width: 40px;
        height: 40px;
        top: 40%;
    }

    .flavor-prev-btn {
        left: 0;
    }

    .flavor-next-btn {
        right: 0;
    }

    .flavor-subtitle {
        font-size: 22px;
    }

    .spec-value {
        font-size: 18px;
    }

    .spec-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .flavor-col.flavor-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .flavor-spec-item {
        padding: 12px 8px;
    }

    .spec-value {
        font-size: 15px;
    }
}

/* ========================================
   CUSTOMER REELS SECTION MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .customer-reels-section {
        padding: 70px 20px 90px;
    }

    .reels-header {
        margin-bottom: 35px;
    }

    .reels-title {
        font-size: clamp(28px, 6vw, 42px);
    }
}

@media (max-width: 768px) {
    .customer-reels-section {
        padding: 50px 10px 70px;
    }

    .reels-subtitle {
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .reels-title {
        font-size: clamp(22px, 6vw, 32px);
    }

    .reels-slider-wrapper {
        padding: 0 35px;
    }

    .reels-nav-btn {
        width: 38px;
        height: 38px;
    }

    .reels-nav-prev {
        left: 0;
    }

    .reels-nav-next {
        right: 0;
    }

    .reels-track {
        gap: 16px;
    }

    .reel-card {
        flex: 0 0 200px;
    }

    .reel-media {
        height: 330px;
        border-radius: 18px;
    }

    .reel-author h4 {
        font-size: 14px;
    }

    .reel-author span {
        font-size: 12px;
    }

    .reel-stars {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .reels-slider-wrapper {
        padding: 0 28px;
    }

    .reels-nav-btn {
        width: 34px;
        height: 34px;
    }

    .reel-card {
        flex: 0 0 175px;
    }

    .reel-media {
        height: 290px;
        border-radius: 16px;
    }

    .reel-author h4 {
        font-size: 13px;
    }

    .reel-author span {
        font-size: 11px;
    }
}

/* ========================================
   CART PAGE & CHECKOUT PAGE STYLES
   ======================================== */

/* --- CART HERO & CHECKOUT HERO --- */
.cart-hero-section,
.checkout-hero-section {
    padding: 130px 40px 30px;
    background-color: var(--bg-cream, #F8F6F0);
}

.cart-hero-container,
.checkout-hero-container {
    max-width: 1340px;
    margin: 0 auto;
}

.cart-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
    margin-bottom: 8px;
}

.cart-breadcrumb a {
    color: #64748B;
    text-decoration: none;
}

.cart-breadcrumb .sep {
    margin: 0 6px;
}

.cart-breadcrumb .current {
    color: var(--text-dark, #1A241E);
    font-weight: 600;
}

.cart-page-title,
.checkout-page-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--text-dark, #1A241E);
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-count-badge {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    background-color: var(--accent-lime, #E2E870);
    color: #1A241E;
    padding: 4px 14px;
    border-radius: 16px;
}

/* --- MAIN LAYOUT CONTAINERS --- */
.cart-main-section,
.checkout-main-section {
    padding: 30px 40px 80px;
    background-color: var(--bg-cream, #F8F6F0);
}

.cart-main-container {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 36px;
    align-items: start;
}

.checkout-main-container {
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
    align-items: start;
}

/* --- FREE SHIPPING CARD --- */
.free-shipping-card {
    background-color: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 20px;
    padding: 18px 24px;
    margin-bottom: 24px;
}

.fs-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #166534;
    margin-bottom: 10px;
}

.fs-percent {
    font-weight: 800;
    background-color: #DCFCE7;
    padding: 2px 10px;
    border-radius: 10px;
}

.fs-bar-track {
    height: 8px;
    background-color: #DCFCE7;
    border-radius: 10px;
    overflow: hidden;
}

.fs-bar-fill {
    height: 100%;
    background-color: var(--accent-green, #00703C);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* --- CART TABLE --- */
.cart-table-wrapper {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748B;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

.cart-table td {
    padding: 18px 16px;
    border-bottom: 1px solid #F1F5F9;
    vertical-align: middle;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cprod-img-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 1px solid #E2E8F0;
}

.cprod-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cprod-name a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark, #1A241E);
    text-decoration: none;
}

.cprod-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #64748B;
    display: block;
    margin-top: 2px;
}

.price-cell,
.subtotal-cell {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark, #1A241E);
}

.subtotal-cell {
    color: var(--accent-green, #00703C);
}

.cart-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid #CBD5E1;
    border-radius: 20px;
    overflow: hidden;
    background-color: #FAF9F6;
}

.cart-step-btn {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    color: var(--text-dark, #1A241E);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-step-btn:hover {
    background-color: #E2E8F0;
}

.cart-qty-input {
    width: 36px;
    border: none;
    background: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    outline: none;
}

/* --- CART ACTIONS & COUPON BAR --- */
.cart-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.cart-coupon-box {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 420px;
}

.cart-coupon-box input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 24px;
    border: 1px solid #CBD5E1;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    background-color: #FFFFFF;
}

.btn-apply-coupon {
    background-color: var(--accent-green, #00703C);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-continue-shop {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark, #1A241E);
    background-color: var(--accent-lime, #E2E870);
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
}

/* --- ORDER SUMMARY CARD --- */
.order-summary-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark, #1A241E);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E2E8F0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
    margin-bottom: 12px;
}

.summary-line strong {
    color: var(--text-dark, #1A241E);
}

.summary-line.discount-line strong {
    color: #DC2626;
}

.summary-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 2px dashed #E2E8F0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark, #1A241E);
}

.summary-total-line .total-price {
    font-size: 24px;
    color: var(--accent-green, #00703C);
}

.btn-checkout-proceed {
    background-color: var(--accent-green, #00703C);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    padding: 16px;
    border-radius: 28px;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(0, 112, 60, 0.25);
    transition: transform 0.2s ease;
}

.btn-checkout-proceed:hover {
    transform: translateY(-2px);
}

.checkout-trust-badges {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #64748B;
}

/* --- CHECKOUT FORM CARDS --- */
.chk-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
}

.chk-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F1F5F9;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-green, #00703C);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chk-card-header h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark, #1A241E);
}

.checkout-form .form-group {
    margin-bottom: 16px;
}

.checkout-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark, #1A241E);
    margin-bottom: 6px;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #CBD5E1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    background-color: #FFFFFF;
    transition: border-color 0.2s;
}

.checkout-form input:focus {
    border-color: var(--accent-green, #00703C);
}

/* --- PAYMENT METHODS RADIOS --- */
.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    background-color: #FAF9F6;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.payment-method-item:hover,
.payment-method-item.active,
.payment-method-item:has(input:checked) {
    border-color: var(--accent-green, #00703C);
    background-color: #F0FDF4;
}

.payment-method-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-green, #00703C);
}

.pm-text {
    flex: 1;
    margin: 5px;
}

.pm-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark, #1A241E);
}

.pm-text span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #64748B;
}

.pm-badge {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    background-color: var(--accent-lime, #E2E870);
    color: #1A241E;
    padding: 4px 10px;
    border-radius: 10px;
}

.btn-place-order {
    width: 100%;
    background-color: var(--accent-green, #00703C);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    padding: 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0, 112, 60, 0.25);
    transition: transform 0.2s ease;
}

.btn-place-order:hover {
    transform: translateY(-2px);
}

/* --- CHECKOUT ORDER REVIEW ITEMS --- */
.chk-items-scroll {
    max-height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    padding-right: 4px;
}

.chk-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.chk-item-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background-color: #FAF2E8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.chk-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.chk-qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-green, #00703C);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chk-item-info {
    flex: 1;
}

.chk-item-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark, #1A241E);
}

.chk-item-info span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #64748B;
}

.chk-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark, #1A241E);
}

@media (max-width: 1024px) {

    .cart-main-container,
    .checkout-main-container {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LEGAL POLICY PAGES STYLING
   ======================================== */
.policy-hero-section {
    padding: 140px 20px 50px;
    background: linear-gradient(135deg, #004D28 0%, #00703C 50%, #00381D 100%);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 10px 30px rgba(0, 77, 40, 0.15);
}

.policy-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.policy-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #E2E870;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.policy-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #FFFFFF;
}

.policy-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Policy Switcher Tabs in Hero */
.policy-tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.policy-tab-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.policy-tab-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.policy-tab-link.active {
    background: #E2E870;
    color: #1A241E;
    font-weight: 800;
    border-color: #E2E870;
    box-shadow: 0 4px 15px rgba(226, 232, 112, 0.3);
}

/* Main Layout Grid */
.policy-main-section {
    padding: 50px 20px 80px;
    max-width: 1240px;
    margin: 0 auto;
}

.policy-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.policy-sidebar {
    position: sticky;
    top: 100px;
}

.policy-sidebar-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.policy-sidebar-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F1F5F9;
}

.policy-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.policy-menu-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    text-decoration: none;
    transition: all 0.2s ease;
}

.policy-menu-list li a:hover {
    background: #F8FAFC;
    color: var(--accent-green);
}

.policy-menu-list li a.active {
    background: #F0FDF4;
    color: #00703C;
    font-weight: 700;
    border-left: 3px solid #00703C;
}

.policy-quick-help {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

.policy-quick-help h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.policy-quick-help p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #64748B;
    margin-bottom: 12px;
    line-height: 1.4;
}

.btn-policy-contact {
    display: inline-block;
    background: var(--accent-green);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-policy-contact:hover {
    background: #00562e;
}

/* Content Area */
.policy-content-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.policy-section-block {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid #F1F5F9;
}

.policy-section-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-sec-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #F0FDF4;
    color: var(--accent-green);
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    margin-right: 8px;
}

.policy-sec-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.policy-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 14px;
}

.policy-bullets {
    list-style: none;
    padding: 0;
    margin: 12px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-bullets li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.policy-bullets li::before {
    content: "•";
    color: var(--accent-green);
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

/* Callout Box */
.policy-callout {
    background: #F0FDF4;
    border-left: 4px solid var(--accent-green);
    border-radius: 0 16px 16px 0;
    padding: 18px 22px;
    margin: 18px 0;
}

.policy-callout.warning {
    background: #FFFBEB;
    border-left-color: #F59E0B;
}

.policy-callout.info {
    background: #EFF6FF;
    border-left-color: #3B82F6;
}

.policy-callout-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.policy-callout-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Footer & Acknowledgement Card */
.policy-ack-box {
    background: linear-gradient(135deg, #1A241E 0%, #2B3A30 100%);
    color: #FFFFFF;
    border-radius: 20px;
    padding: 28px;
    margin-top: 30px;
    text-align: center;
}

.policy-ack-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #E2E870;
    margin-bottom: 10px;
}

.policy-ack-box p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* ========================================
   SHOP PAGE MOBILE RESPONSIVE STYLING
   ======================================== */
.mobile-filter-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    padding: 12px 18px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.btn-mobile-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green, #00703C);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 112, 60, 0.25);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-mobile-filter:active {
    transform: scale(0.97);
}

.mobile-filter-badge {
    background: #E2E870;
    color: #1A241E;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-item-count {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #64748B;
}

.sidebar-mobile-header {
    display: none;
}

.sidebar-mobile-footer {
    display: none;
}

.shop-filter-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.shop-filter-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Grid View Switcher Modes */
.products-grid.grid-3-col {
    grid-template-columns: repeat(3, 1fr) !important;
}

.products-grid.grid-2-col {
    grid-template-columns: repeat(2, 1fr) !important;
}

.products-grid.grid-1-col {
    grid-template-columns: 1fr !important;
}

/* Sidebar Drawer on Mobile (< 900px) */
@media (max-width: 900px) {
    .shop-hero-banner {
        padding: 120px 20px 40px;
    }

    .shop-banner-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .banner-grid-collage {
        max-width: 320px;
        margin: 0 auto;

    }

    .shop-banner-title {
        font-size: 28px;
    }

    .shop-page-wrapper {
        padding: 30px 16px 60px;
    }

    .mobile-filter-bar {
        display: flex;
    }

    .shop-catalog-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Transform Sidebar into Off-Canvas Slide Drawer */
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: #FFFFFF;
        z-index: 2000;
        padding: 24px 20px;
        overflow-y: auto;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
    }

    .shop-sidebar.active {
        left: 0;
    }

    .sidebar-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 2px solid #F1F5F9;
    }

    .sidebar-mobile-header h3 {
        font-family: var(--font-heading, sans-serif);
        font-size: 20px;
        font-weight: 800;
        color: var(--text-dark, #1A241E);
        margin: 0;
    }

    .btn-close-sidebar {
        background: #F1F5F9;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 18px;
        color: #475569;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s;
    }

    .btn-close-sidebar:hover {
        background: #E2E8F0;
        color: #0F172A;
    }

    .sidebar-mobile-footer {
        display: flex;
        gap: 12px;
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid #E2E8F0;
        position: sticky;
        bottom: 0;
        background: #FFFFFF;
    }

    .btn-reset-filters {
        flex: 1;
        background: #F1F5F9;
        color: #475569;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 700;
        padding: 12px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
    }

    .btn-apply-filters {
        flex: 2;
        background: var(--accent-green, #00703C);
        color: #FFFFFF;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 700;
        padding: 12px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
    }

    /* Catalog Toolbar Responsive */
    .catalog-toolbar {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 20px;
    }

    .catalog-toolbar .item-count {
        display: none;
        /* Shown in mobile filter bar */
    }

    .toolbar-controls {
        width: 100%;
        justify-content: space-between;
    }

    .sort-select {
        padding: 8px 12px;
        font-size: 13px;
    }

    .shop-cta-card {
        padding: 50px 24px;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

/* Product Cards Mobile Grid (< 650px) */
@media (max-width: 650px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-card .card-image-box {
        height: 160px;
        padding: 10px;
    }

    .product-card .card-info {
        padding: 12px 10px;
    }

    .product-card .product-name {
        font-size: 13px;
        line-height: 1.35;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card .product-price .current-price {
        font-size: 14px;
    }

    .product-card .product-price .original-price {
        font-size: 11px;
    }

    .badge-discount {
        font-size: 9px;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }
}

/* ========================================
   GLOBAL MOBILE NAVBAR & DRAWER STYLES
   ======================================== */
.nav-hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--nav-text, #2B3A30);
    cursor: pointer;
    padding: 4px;
    align-items: center;
    justify-content: center;
}

.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #FFFFFF;
    z-index: 3000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #F1F5F9;
}

.mobile-drawer-logo img {
    height: 38px;
    width: auto;
}

.btn-close-drawer {
    background: #F1F5F9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-drawer-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.mobile-drawer-menu li a svg {
    flex-shrink: 0;
    stroke: currentColor;
}

.mobile-drawer-menu li a:hover,
.mobile-drawer-menu li a.active {
    background: #F0FDF4;
    color: var(--accent-green, #00703C);
    font-weight: 700;
}

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
}

.mobile-drawer-perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 16px;
}

.mobile-drawer-perks span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-mobile-shop-cta {
    display: block;
    text-align: center;
    background: var(--accent-green, #00703C);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px;
    border-radius: 24px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }

    .nav-hamburger-btn {
        display: flex !important;
    }
}

/* ========================================
   HOMEPAGE (INDEX.PHP) RESPONSIVE STYLING
   ======================================== */

/* 1. Feature Showcase Section (3-Jars Fan Layout) */
@media (max-width: 992px) {
    .feature-showcase-section {
        padding: 60px 0 0 0;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 20px;
    }

    .showcase-col {
        align-items: center !important;
        text-align: center !important;
    }

    .showcase-giant-title {
        font-size: clamp(48px, 12vw, 80px);
        margin-bottom: 24px;
        text-align: center !important;
    }

    .showcase-left .feature-block,
    .showcase-right .feature-block {
        text-align: center !important;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .feature-title {
        font-size: 22px;
    }

    .showcase-center-jars {
        height: 360px;
        margin: 20px 0;
    }

    .jar-wrapper img {
        width: 220px;
        max-height: 320px;
    }

    .jar-left {
        left: 0;
        transform: translateY(-50%) rotate(-8deg) scale(0.85);
    }

    .jar-right {
        right: 0;
        transform: translateY(-50%) rotate(8deg) scale(0.85);
    }

    .animated-wave-container {
        height: 180px;
        margin-top: 10px;
    }
}

/* 2. Trending Collections & Product Cards */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Deal Timer Bar Responsive inside Product Cards */
.deal-timer-bar {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(26, 36, 30, 0.9);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    padding: 6px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 5;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-unit strong {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #E2E870;
    line-height: 1;
}

.timer-unit span {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.deal-timer-bar .colon {
    font-size: 11px;
    font-weight: 800;
    color: #E2E870;
    margin-top: -6px;
}

/* 3. Interactive Flavor Showcase System */
@media (max-width: 1100px) {
    .flavor-showcase-wrapper {
        padding: 40px 16px;
    }

    .flavor-showcase-section {
        border-radius: 28px;
        padding: 40px 24px;
    }

    .flavor-showcase-container {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .flavor-col.flavor-left,
    .flavor-col.flavor-right {
        align-items: center !important;
        text-align: center !important;
    }

    .flavor-main-title {
        font-size: clamp(30px, 7vw, 44px);
    }

    .flavor-jar-display {
        height: 280px;
    }

    .flavor-jar-display img {
        max-height: 260px;
    }

    .flavor-col.flavor-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .flavor-spec-item {
        background: rgba(255, 255, 255, 0.05);
        padding: 16px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* 4. Brand Features Bar */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-item-card {
        padding: 18px;
    }
}

/* ========================================
   FLAVOR SHOWCASE SECTION MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .flavor-showcase-wrapper {
        padding: 40px 16px;
    }

    .flavor-showcase-section {
        border-radius: 28px;
        padding: 40px 24px;
    }

    .flavor-showcase-container {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .flavor-col.flavor-left,
    .flavor-col.flavor-right {
        align-items: center !important;
        text-align: center !important;
    }

    .flavor-main-title {
        font-size: clamp(30px, 7vw, 44px);
    }

    .flavor-jar-display {
        height: 280px;
    }

    .flavor-jar-display img {
        max-height: 260px;
    }

    .flavor-col.flavor-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .flavor-spec-item {
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(8px);
        padding: 16px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.6);
        align-items: center !important;
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .flavor-showcase-wrapper {
        padding: 24px 10px;
    }

    .flavor-showcase-section {
        border-radius: 20px;
        padding: 30px 16px;
    }

    .flavor-badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .flavor-tagline {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .flavor-main-title {
        font-size: clamp(24px, 6.5vw, 34px);
        margin-bottom: 24px;
    }

    .btn-flavor-cta {
        padding: 12px 28px;
        font-size: 14px;
    }

    .flavor-center {
        width: 100%;
    }

    .flavor-jar-display {
        width: 100%;
        max-width: 240px;
        height: 240px;
        margin-bottom: 12px;
    }

    .flavor-jar-display img {
        max-height: 220px;
    }

    .flavor-nav-btn {
        width: 40px;
        height: 40px;
        top: 40%;
    }

    .flavor-prev-btn {
        left: 0;
    }

    .flavor-next-btn {
        right: 0;
    }

    .flavor-subtitle {
        font-size: 22px;
    }

    .spec-value {
        font-size: 18px;
    }

    .spec-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .flavor-col.flavor-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .flavor-spec-item {
        padding: 12px 8px;
    }

    .spec-value {
        font-size: 15px;
    }
}

/* ========================================
   CUSTOMER REELS SECTION MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .customer-reels-section {
        padding: 70px 20px 90px;
    }

    .reels-header {
        margin-bottom: 35px;
    }

    .reels-title {
        font-size: clamp(28px, 6vw, 42px);
    }
}

@media (max-width: 768px) {
    .customer-reels-section {
        padding: 50px 10px 70px;
    }

    .reels-subtitle {
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .reels-title {
        font-size: clamp(22px, 6vw, 32px);
    }

    .reels-slider-wrapper {
        padding: 0 35px;
    }

    .reels-nav-btn {
        width: 38px;
        height: 38px;
    }

    .reels-nav-prev {
        left: 0;
    }

    .reels-nav-next {
        right: 0;
    }

    .reels-track {
        gap: 16px;
    }

    .reel-card {
        flex: 0 0 200px;
    }

    .reel-media {
        height: 330px;
        border-radius: 18px;
    }

    .reel-author h4 {
        font-size: 14px;
    }

    .reel-author span {
        font-size: 12px;
    }

    .reel-stars {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .reels-slider-wrapper {
        padding: 0 28px;
    }

    .reels-nav-btn {
        width: 34px;
        height: 34px;
    }

    .reel-card {
        flex: 0 0 175px;
    }

    .reel-media {
        height: 290px;
        border-radius: 16px;
    }

    .reel-author h4 {
        font-size: 13px;
    }

    .reel-author span {
        font-size: 11px;
    }
}


/* ========================================
   CHECKOUT PAGE STYLING & MOBILE RESPONSIVE FIXES
   ======================================== */
.checkout-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.checkout-main-container {
    width: 100%;
    max-width: 1340px;
    box-sizing: border-box;
}

.chk-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    width: 100%;
    box-sizing: border-box;
}

.chk-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.chk-card-header .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-green, #00703C);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chk-card-header h2 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 900;
    color: var(--text-dark, #1A241E);
    margin: 0;
}

@media (max-width: 992px) {
    .checkout-hero-section {
        padding: 110px 20px 24px;
    }

    .checkout-main-section {
        padding: 20px 16px 60px;
    }

    .checkout-main-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .checkout-review-col,
    .checkout-form-col {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .chk-card {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .payment-method-item {
        padding: 14px;
        gap: 12px;
    }

    .pm-badge {
        font-size: 9px;
        padding: 3px 8px;
        flex-shrink: 0;
    }

    .btn-place-order {
        font-size: 16px;
        padding: 16px;
        border-radius: 24px;
    }

    .saved-addr-radio-label {
        padding: 12px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .checkout-hero-section {
        padding: 100px 14px 20px;
    }

    .checkout-page-title {
        font-size: 24px;
    }

    .chk-card-header h2 {
        font-size: 17px;
    }

    .payment-method-item {
        flex-wrap: wrap;
    }

    .pm-text strong {
        font-size: 13px;
    }

    .pm-text span {
        font-size: 11px;
    }

    .checkout-trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ========================================
   REGISTER PAGE & CART PAGE MOBILE RESPONSIVE STYLES
   ======================================== */

/* --- REGISTER PAGE RESPONSIVE FIXES --- */
@media (max-width: 992px) {
    .auth-header {
        padding: 20px 24px;
    }

    .auth-main-container {
        padding: 0 20px;
        margin: 10px auto 40px;
    }

    .auth-split-card {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .auth-visual-col {
        padding: 36px 28px;
    }

    .auth-form-col {
        padding: 36px 28px;
    }

    .auth-hero-title {
        font-size: clamp(24px, 5vw, 34px);
    }
}

@media (max-width: 640px) {
    .auth-header {
        padding: 16px;
    }

    .auth-logo img {
        height: 38px;
    }

    .auth-back-link {
        padding: 6px 14px;
        font-size: 12px;
    }

    .auth-main-container {
        padding: 0 12px;
        margin: 10px auto 30px;
    }

    .auth-split-card {
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .auth-visual-col {
        padding: 28px 18px;
    }

    .auth-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .auth-hero-title {
        font-size: 22px;
        margin-top: 16px;
        margin-bottom: 12px;
    }

    .auth-hero-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .welcome-offer-box {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .wo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .wo-code,
    .wo-value {
        font-size: 12px;
    }

    .wo-subtext {
        font-size: 11px;
    }

    .auth-perks-list {
        font-size: 13px;
        gap: 10px;
    }

    .perk-check {
        width: 20px;
        height: 20px;
        font-size: 10px;
        flex-shrink: 0;
    }

    .auth-form-col {
        padding: 28px 18px;
    }

    .auth-title {
        font-size: 24px;
    }

    .auth-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .auth-social-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn-social-auth {
        padding: 12px;
        font-size: 13px;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
    }

    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin: 8px 0;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .password-input-wrap input {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 12px;
    }

    .btn-auth-submit {
        padding: 15px;
        font-size: 15px;
        border-radius: 25px;
        margin-top: 16px;
    }

    .auth-terms-group {
        font-size: 12px;
        gap: 8px;
    }

    .chk-checkbox .label-text {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* --- CART PAGE RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
    .cart-hero-section {
        padding: 110px 24px 28px;
    }

    .cart-main-section {
        padding: 30px 20px 80px;
    }

    .cart-main-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cart-hero-section {
        padding: 95px 16px 20px;

    }

    .cart-page-title {
        font-size: clamp(22px, 5vw, 30px);
    }

    .cart-count-badge {
        font-size: 12px;
        padding: 4px 10px;
    }

    .cart-main-section {
        padding: 20px 14px 60px;
    }

    .free-shipping-card {
        padding: 14px 16px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .fs-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        font-size: 13px;
    }

    .fs-info-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .fs-percent {
        align-self: flex-end;
        font-size: 12px;
        font-weight: 800;
    }

    /* Cart Table Mobile Cards Transformation */
    .cart-table-wrapper {
        border-radius: 18px;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-bottom: 20px;
    }

    .cart-table {
        display: block;
        width: 100%;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .cart-item-row {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "prod prod"
            "price subtotal"
            "qty action";
        gap: 12px;
        align-items: center;
        background-color: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 18px;
        padding: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .cart-table td {
        display: block;
        padding: 0;
        border: none;
    }

    .product-cell {
        grid-area: prod;
    }

    .cart-product-info {
        gap: 14px;
    }

    .cprod-img-box {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .cprod-name a {
        font-size: 15px;
    }

    .cprod-meta {
        font-size: 12px;
    }

    .price-cell {
        grid-area: price;
        font-size: 14px;
        color: #64748B;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .price-cell::before {
        content: "Unit Price:";
        font-size: 12px;
        font-weight: 500;
        color: #94A3B8;
    }

    .qty-cell {
        grid-area: qty;
    }

    .cart-stepper {
        padding: 2px 6px;
        border-radius: 16px;
    }

    .cart-step-btn {
        width: 24px;
        height: 24px;
        font-size: 15px;
    }

    .cart-qty-input {
        width: 28px;
        font-size: 13px;
    }

    .subtotal-cell {
        grid-area: subtotal;
        font-size: 16px;
        font-weight: 800;
        color: var(--accent-green);
        text-align: right;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
    }

    .subtotal-cell::before {
        content: "Subtotal:";
        font-size: 12px;
        font-weight: 500;
        color: #64748B;
    }

    .action-cell {
        grid-area: action;
        text-align: right;
        display: flex;
        justify-content: flex-end;
    }

    .cart-remove-btn {
        background-color: #FEF2F2;
        padding: 6px 10px;
        border-radius: 10px;
    }

    /* Coupon Box & Actions Bar */
    .cart-actions-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 16px;
    }

    .cart-coupon-box {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .cart-coupon-box input {
        width: 100%;
        border-radius: 20px;
        padding: 12px 16px;
        font-size: 13px;
        text-align: center;
    }

    .btn-apply-coupon {
        width: 100%;
        padding: 12px;
        border-radius: 20px;
        font-size: 13px;
    }

    .cart-action-btns {
        width: 100%;
    }

    .btn-continue-shop {
        width: 100%;
        text-align: center;
        display: block;
        padding: 12px;
        border-radius: 20px;
        font-size: 13px;
    }

    /* Recommendation Section */
    .cart-rec-box {
        margin-top: 24px;
        padding: 16px;
        border-radius: 20px;
        background-color: #FFFFFF;
        border: 1px solid #E2E8F0;
    }

    .cart-rec-title {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .cart-rec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cart-rec-card {
        padding: 10px;
        border-radius: 14px;
        border: 1px solid #F1F5F9;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .cart-rec-img {
        height: 80px;
        object-fit: contain;
        margin-bottom: 8px;
    }

    .cart-rec-name {
        font-size: 13px;
        line-height: 1.3;
    }

    .cart-rec-price {
        font-size: 13px;
        margin-top: 4px;
    }

    .btn-cart-rec-add {
        width: 100%;
        margin-top: 8px;
        padding: 8px;
        font-size: 12px;
        border-radius: 12px;
    }

    /* Order Summary Card Mobile */
    .order-summary-card {
        padding: 22px 18px;
        border-radius: 22px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    }

    .summary-title {
        font-size: 19px;
        margin-bottom: 18px;
    }

    .summary-line {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .summary-total-line {
        font-size: 18px;
    }

    .btn-checkout-proceed {
        padding: 15px;
        font-size: 15px;
        border-radius: 25px;
        margin-top: 18px;
    }

    /* Shop CTA Banner */
    .shop-cta-section {
        padding: 40px 16px;
    }

    .shop-cta-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-desc {
        font-size: 13px;
    }

    .btn-cta-action {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .cart-rec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cart-item-row {
        padding: 14px 12px;
        border-radius: 16px;
    }

    .cprod-img-box {
        width: 50px;
        height: 50px;
    }

    .cprod-name a {
        font-size: 14px;
    }
}