/* ========================================
   FEEZEE - Landing Page Styles
   ======================================== */

/* -- Google Fonts Import -- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Inter:wght@300;400;500;600;700&display=swap');

/* -- Custom Local Fonts -- */
@font-face {
    font-family: 'Mazzard Soft M Extra Bold';
    src: url('../font/mazzard-soft-m-extra-bold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* -- 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: 'Mazzard Soft M Extra Bold', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    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);
}

/* ========================================
   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;
}

/* -- 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-track-container {
    max-width: 1340px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 10px 10px 30px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reels-track-container::-webkit-scrollbar {
    height: 6px;
}

.reels-track-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 112, 60, 0.2);
    border-radius: 10px;
}

.reels-track {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.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: 100px;
    width: 100%;
    z-index: 10;
}

.footer-wave-top {
    position: absolute;
    top: -115px;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 10;
    line-height: 0;
}

.footer-wave-top svg {
    width: 100%;
    height: 100%;
    display: block;
}

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

.newsletter-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.newsletter-input-wrap {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    transition: border-color 0.3s ease;
}

.newsletter-input-wrap:focus-within {
    border-bottom-color: #E2E870;
}

.newsletter-input-wrap input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
}

.newsletter-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-wrap button {
    background: transparent;
    border: none;
    color: #E2E870;
    cursor: pointer;
    padding: 4px 8px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.newsletter-input-wrap button:hover {
    transform: translateX(4px);
}

/* 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: 0 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;
}

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

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

.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;
    margin-bottom: 35px;
}

.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;
    margin-bottom: 20px;
}

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

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

@media (max-width: 1024px) {
    .profile-dashboard-container {
        grid-template-columns: 1fr;
    }
    .overview-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .overview-stats-grid, .wishlist-grid, .addresses-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   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;
}

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


