@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Yellowtail&family=Montserrat:wght@400;500;600;700&display=block');

/* ===================================================================
    WEBSITE  PREMIUM REDESIGN
   =================================================================== */

:root {
    --deep-green: #1B3A2D;
    --leaf-green: #4D7C5B;
    --fresh-green: #7FB069;
    --pale-sage: #D5E3D0;
    --oat-milk: #FAF7EE;
    --tanned-linen: #F0E8D8;
    --honey-cream: #E8DCC4;
    --cranberry-pop: #D23647;
    --peach-pop: #F28C5E;
    --jamun-pop: #7B439A;
    --ginger-pop: #F0A830;
    --ink: #1A1A1A;
    --charcoal: #3D3D3D;
    --stone: #787878;
    --chalk: #F5F1EA;
    --card-white: #FFFFFF;
    --border-soft: rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 16px 40px rgba(27, 58, 45, 0.15);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
    --radius: 20px;
    --heading: 'Bebas Neue', cursive;
    --body: 'Montserrat', sans-serif;
    --handwrite: 'Yellowtail', cursive;
    --max-w: 1440px;
    --nav-h: 200px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   â”â”â” RESET â”â”â”
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink);
    background: var(--oat-milk);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading);
    color: var(--ink);
    letter-spacing: 0.05em;
}

/* ========================================
   â”â”â” ANNOUNCEMENT BAR â”â”â”
   ======================================== */
.announcement-bar {
    background: var(--jamun-pop);
    color: #FFFFFF;
    padding: 12px 0;
    text-align: center;
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 1001;
}

.announcement-bar p {
    margin: 0;
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   HEADER
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 142px;
    background: var(--oat-milk);
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s var(--ease);
}

.header-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 40px;
}

.header.scrolled {
    height: 72px;
    background: var(--oat-milk);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.header.scrolled .header-center {
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.nav-link {
    font-family: var(--heading);
    font-size: 24px;
    font-weight: 500;
    color: #2D2D2D;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 8px;
    transition: all 0.25s ease;
    text-decoration: none !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header.scrolled .nav-link {
    font-size: 18px;
}

.nav-link svg {
    margin-top: 3px;
    /* Pushes the dropdown arrow down slightly */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 8px;
    right: 8px;
    height: 1px;
    background: #F28C5E;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #F28C5E;
    background: transparent;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link-accent {
    color: var(--ink) !important;
    /* ========================================
   Black (#1A1A2A)
   ======================================== */
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-link-accent::after {
    background: var(--leaf-green);
}

.nav-link-accent svg {
    width: 14px;
    height: 14px;
}

.nav-link-accent:hover {
    background: transparent !important;
    color: #F28C5E !important;
}

.nav-link-accent:hover::after {
    background: #F28C5E;
}

.logo-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 140px;
    height: 140px;
    position: relative;
    top: 0;
    transition: all 0.45s var(--ease);
}

.logo-reset img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-reset:hover {
    transform: scale(1.04);
}

.header.scrolled .logo-reset {
    font-size: 20px;
    width: 70px;
    height: 70px;
    top: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    letter-spacing: 0.05em;
}

.logo-lets {
    font-family: var(--body);
    font-size: 6.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fresh-green);
    margin-bottom: 2px;
    transition: all 0.45s var(--ease);
}

.header.scrolled .logo-lets {
    font-size: 4.5px;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.header-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--charcoal);
    transition: all 0.25s ease;
}

.header.scrolled .header-icon {
    width: 40px;
    height: 40px;
}

.header-icon:hover {
    background: #F5EAE4;
    color: #F28C5E;
}

.header-icon svg {
    width: 26px;
    height: 26px;
    transition: all 0.25s ease;
}

.header.scrolled .header-icon svg {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #F28C5E;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(123, 67, 154, 0.4);
    transition: all 0.25s ease;
}

.header.scrolled .cart-count {
    width: 20px;
    height: 20px;
    font-size: 11px;
    top: 0;
    right: 0;
}

.nav-item.has-dropdown {
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    /* Relative to nav-item.has-dropdown */
    top: 100%;
    /* Sits exactly below the header border */
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    /* Full viewport width to mimic fixed width */
    max-width: 1520px;
    background: var(--card-white);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: none;
    display: flex;
    justify-content: center;
    z-index: 999;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-inner {
    display: grid;
    grid-template-columns: 240px 1fr 340px;
    width: 100%;
}

.testimonials-highlight {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    /* Base fallback in case image fails */
    background-color: #410660;
    /* Gradient overlay + image */
    background-image: linear-gradient(to right, rgba(112, 66, 124, 0.7), rgba(65, 6, 96, 0.7)), url('../images/banner/Mid%20banner%20image/webp/image.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.dropdown-col {
    background: var(--card-white);
    padding: 60px 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-inner:has(.kombucha-item:hover) .dropdown-col,
.dropdown-col:hover {
    opacity: 1;
    visibility: visible;
}

.dropdown-sidebar {
    background: var(--card-white);
    padding: 60px 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dropdown-category-list a {
    font-family: var(--heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.dropdown-category-list a i,
.dropdown-category-list a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 1;
    transition: all 0.2s ease;
}

.dropdown-category-list a:hover i,
.dropdown-category-list a.active i {
    transform: translateX(4px);
}

.dropdown-category-list a.active {
    color: var(--charcoal);
    font-weight: 700;
}

.dropdown-category-list a:hover {
    color: var(--peach-pop);
}

.dropdown-category-list a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.dropdown-title {
    font-family: var(--body);
    font-size: 16px;
    font-weight: 500;
    color: var(--stone, #787878);
    text-transform: none;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-all-link {
    font-size: 11px;
    font-weight: 600;
    text-decoration: underline;
    color: var(--stone);
    text-transform: capitalize;
    letter-spacing: 0.05em;
}

.shop-all-link:hover {
    color: var(--peach-pop);
}

.dropdown-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    list-style: none;
}

.dropdown-links li a {
    font-family: var(--body);
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    transition: all 0.2s ease;
}

.dropdown-links a:hover {
    color: var(--peach-pop);
    transform: translateX(4px);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Product card grid in Shop dropdown */
.dropdown-product-cards {
    display: flex;
    gap: 16px;
    list-style: none;
    margin-top: 8px;
}

.dropdown-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 12px 12px;
    border-radius: 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    background: var(--oat-milk, #FAF7EE);
    transition: all 0.25s ease;
    min-width: 110px;
}

.dropdown-product-card:hover {
    border-color: #f28c5e;
    background: rgba(242, 140, 94, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(242, 140, 94, 0.12);
}

.dpc-img-wrap {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dpc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.dropdown-product-card:hover .dpc-img-wrap img {
    transform: scale(1.08);
}

.dpc-name {
    font-family: var(--heading, 'Montserrat', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal, #1a1a1a);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
}

.dropdown-product-card:hover .dpc-name {
    color: #f28c5e;
}

.dropdown-image-col {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--pale-sage);
    overflow: hidden;
}

.dropdown-image-col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   HERO
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
.hero-reference {
    width: 100%;
    position: relative;
    margin-top: 0;
}

.hero-ref-container {
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 600;
    /* Reduced from 700px for a significantly better aspect ratio */
}

.hero-banner-fullbleed {
    width: 100%;
    height: 100%;
    /* Single full-bleed unified banner image */
    background-color: var(--oat-milk);
    background-size: cover;
    background-position: center auto;
    /* changed from right to auto */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 80px;
}



/* .shop-banner-bg-style-2 background-images removed to load dynamically via PHP inline styles */


@keyframes heroZoom {
    0% {
        background-size: 100% auto;
    }

    100% {
        background-size: 110% auto;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 45%;
    max-width: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding-bottom: 20px;
}

.hero-content.hero-left {
    text-align: left;
    align-items: flex-start;
    max-width: 560px;
}

.hero-accent {
    font-family: var(--handwrite);
    font-size: 28px;
    color: var(--fresh-green);
    display: block;
}

/* Hero reveal animation */
@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-headline {
    font-family: var(--heading);
    font-size: clamp(56px, 8vw, 100px);
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-headline>span {
    display: inline-block;
    opacity: 0;
    animation: heroSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Line 1: TASTES AMAZING — slides in first */
.hero-headline>span:first-of-type {
    animation-delay: 0.2s;
}

/* Line 2: FEELS EVEN BETTER — follows after */
.hero-headline>span:last-of-type {
    animation-delay: 0.5s;
}

.text-accent {
    color: var(--peach-pop);
}

.hero-subheadline {
    font-family: var(--body);
    font-size: 24px;
    font-weight: 500;
    /* slightly bolder for readability */
    font-style: normal !important;
    /* user requested normal instead of italic */
    color: var(--charcoal);
    max-width: 500px;
    line-height: 1.6;
    margin-top: 12px;
    opacity: 0;
    animation: heroSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    opacity: 0;
    animation: heroSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--heading);
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    background: #F28C5E;
    padding: 18px 42px;
    border-radius: 100px;
    transition: all 0.35s var(--ease);
    letter-spacing: 0.05em;
}

.btn-hero-primary i {
    transform: translateY(1px);
    /* Pushes the arrow down slightly */
}

.btn-hero-primary:hover {
    background: #7B439A;
    color: #FFF;
    transform: translateY(-3px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--heading);
    font-weight: 600;
    font-size: 15px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: 100px;
    transition: all 0.35s var(--ease);
    backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background: #7B439A;
    border-color: #7B439A;
    color: #FFF;
    transform: translateY(-3px);
}

.hero-trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.05em;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    z-index: 3;
    animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-family: var(--body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero-scroll-indicator svg {
    width: 18px;
    height: 18px;
}

@keyframes float {

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

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

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   PRODUCT SHOWCASE
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
.product-showcase {
    background: var(--oat-milk);
    padding: 48px 0 16px 0;
}

.product-showcase .container,
.product-showcase .container-fluid {
    max-width: none !important;
    width: 100%;
    padding: 0;
    margin: 0;
}

.product-showcase .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-showcase .header-accent {
    font-family: var(--handwrite);
    display: block;
    font-size: 28px;
    color: var(--leaf-green);
    margin-bottom: 8px;
}

.product-showcase .header-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.shop-tabs {
    display: inline-flex;
    background: var(--card-white);
    border-radius: 13px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.shop-tab {
    font-family: var(--heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--stone);
    background: transparent;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}

.shop-tab.active {
    background: #F28C5E;
    color: #FFFFFF;
}

.shop-tab:hover:not(.active) {
    color: var(--ink);
}

.product-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    justify-content: flex-start;
    scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
    display: none;
    /* ========================================
   Hide scrollbar Chrome/Safari
   ======================================== */
}

/* ========================================
   Slider Wrapper and Arrows
   ======================================== */
.product-slider-wrapper {
    position: relative;
    width: 100%;
}

.grid-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-white, #FFFFFF);
    color: var(--deep-green, #1B3B36);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.grid-arrow:hover {
    background: var(--peach-pop, #F28C5E);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.grid-arrow.prev-arrow {
    left: 20px;
    opacity: 0;
    pointer-events: none;
    /* Hidden at start */
}

.grid-arrow.next-arrow {
    right: 20px;
}

/* ========================================
   Scrolling Marquee Banner
   ======================================== */
.marquee-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: var(--jamun-pop);
    color: #FFFFFF;
    overflow: hidden;
    padding: 18px 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    /* isko center mai krde */
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    /* same gap */
    padding-right: 40px;
    /* must exactly match gap */
    font-family: var(--heading);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* letter spacing increase kr */
    flex: 0 0 auto;
    animation: scrollMarquee 45s linear infinite;
    /* smooth, slower speed */
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ========================================
   Shop Archive Wrap Override
   ======================================== */
.shop-archive-grid {
    flex-wrap: wrap !important;
    overflow-x: visible !important;
    justify-content: flex-start !important;
    padding-bottom: 40px;
}

.product-card {
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s ease-out;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0;
    min-width: 336px;
    max-width: 336px;
    flex: 0 0 auto;
    height: auto;
    align-self: stretch;
}

/* Make product cards scale down smoothly on smaller laptops/tablets */
@media (max-width: 1440px) {
    .product-card {
        min-width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 1200px) {
    .product-card {
        min-width: 280px;
        max-width: 280px;
    }
}

@media (max-width: 991px) {
    .product-card {
        min-width: 260px;
        max-width: 260px;
    }
}

@media (max-width: 576px) {
    .product-card {
        min-width: 240px;
        max-width: 240px;
    }
}

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

.product-card:hover .image-stack {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.image-stack {
    position: relative;
    width: 100%;
    margin: 0 auto 12px auto;
    aspect-ratio: 4 / 5;
    background: #F5F1EA;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* ========================================
   Quenzy-Style Flavor Backgrounds
   ======================================== */
.product-card[data-flavor="cranberry"] .image-stack {
    background: #FFE0E0 !important;
}

.product-card[data-flavor="peach"] .image-stack {
    background: #FFF0DD !important;
}

.product-card[data-flavor="jamun"] .image-stack {
    background: #F0E0FF !important;
}

.product-card[data-flavor="mixed"] .image-stack {
    background: #FFF5E6 !important;
}

.product-card[data-flavor="orange"] .image-stack {
    background: #FFF3CD !important;
}

.product-card[data-flavor="blueberry"] .image-stack {
    background: #FCE4EC !important;
}

.product-card[data-flavor="cucumber"] .image-stack {
    background: #E8F5E9 !important;
}

/* ========================================
   Sale Badge (Quenzy Style)
   ======================================== */
.sale-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(242, 140, 94, 0.15);
    color: #F28C5E;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    z-index: 5;
    text-transform: capitalize;
    letter-spacing: 0.05em;
}

.image-stack img.img-default {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.image-stack img.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    /* Scale and translate down to compensate for the higher can position in the original PNG, while preventing top gap */
    transform-origin: center center;
    transform: scale(1.08) translateY(3.5%);
    transition: all 0.4s ease;
    z-index: 2;
}

/* Fix fit for custom uploaded hover images (disables hardcoded offsets) */
.image-stack.has-custom-hover img.img-hover {
    transform: none !important;
}

.product-card:hover .img-default {
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
}

.card-info {
    padding: 0 8px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
}

/* Add to Cart button below price */
.loop-add-to-cart-wrap {
    padding-top: 8px;
    width: 100%;
}

.loop-add-to-cart-wrap a,
.loop-add-to-cart-wrap button {
    display: inline-block;
    padding: 6px 18px;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    color: #3D3D3D;
    background: transparent;
    border: 1.5px solid #3D3D3D;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
}

.loop-add-to-cart-wrap a:hover,
.loop-add-to-cart-wrap button:hover {
    background: var(--peach-pop, #F28C5E);
    border-color: var(--peach-pop, #F28C5E);
    color: #FFF;
}

.product-name {
    font-family: var(--body);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--peach-pop, #F28C5E);
    letter-spacing: 0.05em;
    text-transform: none;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
}

.pack-size-label {
    color: inherit;
    opacity: 0.9;
}

/* ========================================
   Rating Stars
   ======================================== */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #F0A830;
    /* ========================================
   Ginger Pop / Gold
   ======================================== */
}

.stars i {
    width: 14px;
    height: 14px;
}

.review-count {
    font-size: 13px;
    color: var(--stone);
    font-family: var(--body);
}

/* ========================================
   Twin Stack Layout
   ======================================== */
.twin-stack {
    position: absolute;
    /* Fix normal-flow blowout */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.twin-stack .can {
    position: relative;
    height: 100% !important;
    /* EXACT match with single cans */
    max-width: none;
    /* Let height dictate size entirely */
    width: auto !important;
    object-fit: contain;
    transition: transform 0.4s var(--ease);
    flex-shrink: 0;
    margin: 0 -15px;
    /* Pull them close together like Remedy */
    filter: drop-shadow(0 20px 15px rgba(0, 0, 0, 0.12));
}

.product-card:hover .twin-stack .can {
    transform: translateY(-8px);
}

/* ========================================
   Triple Stack Layout for Ultimate Pack
   ======================================== */
.triple-stack {
    position: absolute;
    /* Fix normal-flow blowout */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.triple-stack .can {
    position: relative;
    height: 100% !important;
    /* EXACT match with single & twin cans */
    max-width: none;
    width: auto !important;
    object-fit: contain;
    transition: transform 0.4s var(--ease);
    z-index: 1;
    flex-shrink: 0;
    /* Let width expand to 480px parent without shrinking */
    margin: 0 -35px;
    /* Heavy overlap to fit 3 full size cans in a 320px box */
    filter: drop-shadow(0 20px 15px rgba(0, 0, 0, 0.12));
}

/* Ensuring correct visual order regardless of HTML structural order */
.triple-stack .can-left {
    order: 1;
}

.triple-stack .can-center {
    order: 2;
}

.triple-stack .can-right {
    order: 3;
}

.product-card:hover .triple-stack .can {
    transform: translateY(-8px);
}

/* Pack of 6 label */
.product-pack-label {
    display: block;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 500;
    color: var(--stone, #787878);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0px;
    gap: 6px;
}

.price-row del {
    color: var(--stone, #787878);
    font-family: var(--body);
    font-size: 15px;
    font-weight: 400;
    opacity: 0.7;
}

.price-row ins {
    text-decoration: none;
    color: var(--peach-pop, #F28C5E);
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
}

.product-price {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    color: var(--peach-pop, #F28C5E);
}

.old-price {
    display: inline-block;
    color: var(--peach-pop, #F28C5E);
    opacity: 0.5;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 15px;
}

.product-size {
    font-family: var(--body);
    font-size: 18px;
    color: var(--stone);
    margin-bottom: 12px;
}

/* ========================================
   Add to Cart Button (Quenzy Style)
   ======================================== */
.loop-add-to-cart-wrap {
    padding: 0 4px;
    margin-top: 6px;
}

.loop-add-to-cart-wrap a,
.loop-add-to-cart-wrap button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--card-white, #FFFFFF);
    background: var(--peach-pop, #F28C5E);
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.35s var(--ease);
    letter-spacing: 0.05em;
}

.loop-add-to-cart-wrap a:hover,
.loop-add-to-cart-wrap button:hover {
    background: var(--jamun-pop, #7B439A);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-add-basket {
    background: #F28C5E;
    color: #FFFFFF;
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(123, 67, 154, 0.3);
    transition: all 0.3s ease;
}

.btn-add-basket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(123, 67, 154, 0.4);
    background: #7B439A;
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   BRAND PHILOSOPHY
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
.brand-philosophy {
    padding: 60px 0 120px 0;
    background: var(--oat-milk);
    text-align: center;
    color: var(--charcoal);
}

.philosophy-header {
    margin-bottom: 80px;
}

.phil-title {
    font-family: var(--heading);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    color: var(--charcoal);
    text-transform: uppercase;
}

.phil-subtitle p {
    font-family: var(--body);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 5px;
    font-weight: 500;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px 60px;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.phil-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phil-icon-container {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.4s var(--ease);
    position: relative;
}

.phil-item:hover .phil-icon-container {
    transform: scale(1.05);
}

.phil-icon-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* ========================================
   All icons same size (matching Gut Friendly / Low Calorie)
   ======================================== */
.philosophy-grid .phil-item img {
    transform: scale(1.35);
}

.philosophy-footer {
    margin-top: 50px;
    text-align: center;
}

.phil-footer-tagline {
    font-family: var(--body);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--charcoal);
    letter-spacing: 0.05em;
}

.btn-phil-link {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--charcoal);
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 8px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-phil-link:hover {
    color: #7B439A;
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   TESTIMONIALS
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
.testimonials-highlight {
    padding: 60px 0;
    color: #FFF;
}

.testimonials-highlight .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-highlight .header-accent {
    color: var(--pale-sage);
}

.testimonials-highlight .header-title {
    color: #FFF;
    font-size: 56px;
    font-family: var(--heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 240px;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    pointer-events: none;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.8s var(--ease);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.testimonial-content-wrap {
    z-index: 10;
    padding: 0 40px;
}

.testimonial-content-wrap .stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 30px;
    color: var(--ginger-pop);
}

.testimonial-content-wrap .stars i,
.testimonial-content-wrap .stars svg {
    width: 20px;
    height: 20px;
}

/* Filled star — solid gold */
.testimonial-content-wrap .stars i.fill svg,
.testimonial-content-wrap .stars svg.fill {
    fill: var(--ginger-pop);
    stroke: var(--ginger-pop);
}

/* Half-filled star */
.testimonial-content-wrap .stars .star-half-wrap {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.testimonial-content-wrap .stars .star-half-wrap svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
}

.testimonial-content-wrap .stars .star-half-wrap svg.star-bg {
    fill: none;
    stroke: var(--ginger-pop);
}

.testimonial-content-wrap .stars .star-half-wrap svg.star-fg {
    fill: var(--ginger-pop);
    stroke: var(--ginger-pop);
    clip-path: inset(0 50% 0 0);
}

.testimonial-text {
    font-family: var(--body);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.3;
    font-weight: 400;
    color: #FFF;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.user-name {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pale-sage);
}

.user-meta {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body);
    text-transform: uppercase;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--peach-pop);
    transform: scale(1.4);
}

/* ========================================
   â” â” â”  REMEDY STYLE BLOGS SECTION â” â” â”
   ======================================== */
.blogs-section {
    background: var(--warm-beige);
    /* Match main website background instead of pink */
    /* ========================================
   Light Peach/Pink removed based on user feedback
   ======================================== */
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.blogs-flex-container {
    max-width: none;
    /* Let container stretch to screen edge */
    margin: 0;
    padding-left: 5%;
    /* Very small padding, practically flush left */
    padding-right: 0;
    /* Bleeding right edge */
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* ========================================
   Left Header Styles
   ======================================== */
.blogs-header-left {
    flex: 0 0 320px;
    /* Compress the column slightly so text breaks nicely */
    text-align: center;
    /* Center-align text relative to the column like Remedy */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blogs-label {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the ornaments and text */
    gap: 16px;
    margin-bottom: 24px;
}

.blogs-label .ornament {
    width: 25px;
    height: 20px;
    background: repeating-linear-gradient(110deg, var(--charcoal), var(--charcoal) 2px, transparent 2px, transparent 6px);
    opacity: 0.8;
}

.blogs-label .label-text {
    font-family: var(--heading);
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--charcoal);
    text-transform: uppercase;
}

.blogs-sub-intro {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 32px;
    opacity: 0.9;
}

.blogs-explore-btn {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 6px;
    color: var(--charcoal);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.blogs-explore-btn:hover {
    color: #7B439A;
}

/* ========================================
   Right Slider Styles
   ======================================== */
.blogs-slider-right {
    flex: 1;
    min-width: 0;
    /* ========================================
   Important for flex child slider
   ======================================== */
    position: relative;
}

.blogs-slider-container {
    position: relative;
    padding-bottom: 40px;
}

.blogs-slider {
    display: flex;
    gap: 40px;
    /* Matched the new flex container gap */
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    scroll-behavior: smooth;
}

.blogs-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.blog-entry-card {
    flex: 0 0 450px;
    /* Much larger card, matches Remedy */
    background: #FFF;
    border-radius: 20px;
    /* Sharper corners like Remedy */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 550px;
}

.blog-card-image {
    width: 100%;
    height: 420px;
    /* Huge flush image matching Remedy ratio */
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.blog-entry-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.blog-entry-title {
    font-family: var(--heading);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.blog-entry-desc {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--stone);
    margin-bottom: 24px;
    flex: 1;
}

.blog-card-footer {
    margin-top: auto;
}

.blog-entry-link {
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--charcoal);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.blog-entry-link:hover {
    color: #7B439A;
}

/* ========================================
   Navigation & Progress
   ======================================== */
.blog-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #FFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.blog-nav-arrow:hover {
    background: #7B439A;
    color: #FFF;
}

.blog-nav-arrow.prev {
    left: -20px;
}

.blog-nav-arrow.next {
    right: 20px;
    /* INSET arrow so it's visible ON TOP of the bleeding edge cards */
}

.blog-slider-progress {
    width: 100%;
    max-width: 940px;
    /* Constrain it to roughly the width of two cards + gap (450+40+450) */
    height: 3px;
    /* Slightly thicker */
    background: rgba(0, 0, 0, 0.1);
    /* Darker track */
    margin: 40px auto 0;
    /* Centering the bar horizontally inside the slide container area */
    position: relative;
    border-radius: 4px;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--charcoal);
    border-radius: 4px;
    transition: left 0.6s var(--ease), width 0.6s var(--ease);
}

@media (max-width: 1024px) {
    .blogs-flex-container {
        flex-direction: column;
        gap: 50px;
    }

    .blogs-header-left {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .blogs-label {
        justify-content: center;
    }

    .blog-entry-card {
        flex: 0 0 320px;
    }
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   BLOG BANNERS â€” CSS Placeholder Tiles
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */

/* ========================================
   Shared banner base
   ======================================== */
.blog-banner-featured,
.blog-banner-jamun,
.blog-banner-health {
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.8s var(--ease);
}

.blog-card:hover .blog-banner-featured,
.blog-card:hover .blog-banner-jamun,
.blog-card:hover .blog-banner-health {
    transform: scale(1.04);
}

/* ========================================
   Featured â€” warm morning tea mood
   ======================================== */
.blog-banner-featured {
    background:
        radial-gradient(ellipse at 30% 60%, rgba(240, 168, 48, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(27, 58, 45, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #1B3A2D 0%, #2E5C44 40%, #3A7057 70%, #4D7C5B 100%);
}

/* ========================================
   Jamun â€” bold desi berry purple
   ======================================== */
.blog-banner-jamun {
    background:
        radial-gradient(ellipse at 20% 70%, rgba(123, 67, 154, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 25%, rgba(210, 54, 71, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #2D1B3D 0%, #4A2260 40%, #F28C5E 75%, #9B65BA 100%);
}

/* ========================================
   Health â€” fresh sage & life
   ======================================== */
.blog-banner-health {
    background:
        radial-gradient(ellipse at 40% 30%, rgba(127, 176, 105, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(27, 58, 45, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #1B3A2D 0%, #2D6A4F 45%, #52B788 75%, #74C69D 100%);
}

/* ========================================
   Noise overlay for texture
   ======================================== */
.blog-banner-featured::before,
.blog-banner-jamun::before,
.blog-banner-health::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
}

/* ========================================
   Decorative ring behind icon
   ======================================== */
.blog-banner-featured::after,
.blog-banner-jamun::after,
.blog-banner-health::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

/* ========================================
   Inner content
   ======================================== */
.banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.banner-icon {
    font-size: 48px;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: bannerFloat 3.5s ease-in-out infinite;
}

.banner-label {
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@keyframes bannerFloat {

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

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

/* ========================================
   btnreadmore
   ======================================== */
.btn-read-more {
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--deep-green);
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 5px;
    margin-top: auto;
    transition: color 0.25s ease;
    display: inline-block;
}

.btn-read-more:hover {
    color: #7B439A;
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   âœ… REMEDY-STYLE WAVE TRANSITION
   Peach (blogs) â†’ Cream (social) exact match
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
.wave-transition-bottom {
    width: 100%;
    height: 80px !important;
    line-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    top: -2px;
    /* ========================================
   pixel perfect
   ======================================== */
    pointer-events: none;
    overflow: hidden;
}

.wave-transition-bottom svg {
    width: 100%;
    height: 100% !important;
    display: block;
    position: absolute;
    bottom: 0;
}

/* ========================================
   Disable old wave code (no longer used)
   ======================================== */
.wave-separator {
    display: none;
}

.social-section .wave-separator.remedy-design {
    display: none;
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   SOCIAL SECTION
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
/* ========================================
   SOCIAL  Zero top space
   ======================================== */
.social-section {
    padding: 40px 0 80px;
    background: var(--oat-milk);
    text-align: center;
    position: relative;
}



.social-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--charcoal) !important;
    /* ========================================
   Shop title jaisa
   ======================================== */
    letter-spacing: 0.05em;
    text-transform: uppercase;
}



.social-handle {
    font-family: var(--body);
    font-weight: 600;
    font-size: 15px;
    color: #F28C5E;
    letter-spacing: 0.05em;
}

.social-header {
    margin-bottom: 40px;
    padding-top: 0;
    /* ========================================
   0 rakho kyunki socialsection me already top padding hai
   ======================================== */
}


.social-header .header-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-header .ornament {
    display: none;
}

.social-slider-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-white);
    border: none;
    color: var(--deep-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

.slider-arrow:hover {
    background: #7B439A;
    color: #FFF;
    transform: translateY(-50%) scale(1.1);
}

.social-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.social-slider.single-video-center {
    justify-content: center;
}

.social-slider::-webkit-scrollbar {
    display: none;
}

.social-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 200px;
    aspect-ratio: 9/16;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--deep-green);
    position: relative;
    transition: all 0.4s var(--ease);
}

.social-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.social-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.social-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-demo-banner {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    z-index: 5;
    pointer-events: none;
}

.social-chip {
    background: #FFF;
    color: var(--charcoal);
    font-family: var(--heading);
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-meta {
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-family: var(--body);
}

.fallback-thumb {
    background: linear-gradient(135deg, #1C362A 0%, #0F1D16 100%);
    /* Premium brand dark green gradient */
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-thumb img {
    width: 60% !important;
    height: auto !important;
    opacity: 0.9;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-green);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.social-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.15);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
    background: linear-gradient(to right, #70427c, #410660);
    padding: 0 0 20px;
    color: #FFF;
}

.footer .container {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 2.2fr;
    gap: 40px;
    align-items: start;
}

.footer-logo-img {
    max-width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-circle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-circle .logo-reset {
    color: #FFF;
    font-size: 26px;
}

.footer-logo-circle .logo-lets {
    color: #FFF;
}

.footer-col h4 {
    font-family: var(--heading);
    font-size: 20px;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer-col ul li a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.25s ease;
}

.footer-col ul li a:hover {
    color: var(--peach-pop);
    transform: translateX(4px);
}

/* Newsletter */
.newsletter-box h4 {
    font-family: var(--heading);
    font-size: 24px;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.newsletter-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: 1.45;
}

.newsletter-form {
    display: flex;
    align-items: center;
    border-radius: 100px;
    overflow: hidden;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #FFF;
    font-size: 14px;
    padding: 12px 20px;
    font-family: var(--body);
}

.newsletter-form input:focus {
    outline: none;
}

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

/* Fix browser autofill white background */
.newsletter-form input:-webkit-autofill,
.newsletter-form input:-webkit-autofill:hover,
.newsletter-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #FFF !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
    background: transparent !important;
}

.btn-newsletter-submit {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #FFF !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    margin: 3px;
}

.btn-newsletter-submit i,
.btn-newsletter-submit svg {
    color: var(--jamun-pop) !important;
    width: 18px;
    height: 18px;
}

.btn-newsletter-submit:hover {
    background: var(--peach-pop) !important;
    transform: translateY(-2px);
}

.btn-newsletter-submit:hover i,
.btn-newsletter-submit:hover svg {
    color: #FFF !important;
}

/* Footer Bottom — social + contact */
.footer-bottom {
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #FFF;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--peach-pop);
    color: #FFF !important;
    border-color: var(--peach-pop);
    transform: translateY(-2px);
}

/* Contact Section */
.footer-contact {
    text-align: right;
    max-width: 800px;
}

.footer-contact .contact-line-1 {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 800;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.footer-contact .contact-line-1 strong {
    font-weight: 800;
}

.footer-contact .contact-line-2 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: none;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 4px;
}

.footer-contact .contact-line-3 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: none;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 2px;
}

.footer-contact .contact-line-4 {
    font-size: 15px;
    color: #FFF;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.footer-contact a.footer-email {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    color: #FFF;
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.footer-contact a.footer-email:hover {
    color: var(--peach-pop);
}

.footer-contact .contact-line-4 strong {
    font-family: var(--heading);
    font-weight: 800;
    color: #FFF;
    font-size: 15px;
}

/* Legal Bar */
.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--peach-pop);
}

/* ========================================
   â”â”â” Mobile Nav â”â”â”
   ======================================== */
/* ========================================
   VIDEO LIGHTBOX (SLIDE-IN)
   ======================================== */
.video-lightbox {
    position: fixed;
    bottom: -100%;
    right: 40px;
    width: 400px;
    aspect-ratio: 9/16;
    max-height: 80vh;
    z-index: 2000;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-lightbox.active {
    bottom: 40px;
    pointer-events: auto;
}

.lightbox-content {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.close-lightbox {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.close-lightbox:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

@media (max-width: 768px) {
    .video-lightbox {
        width: 100%;
        max-height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
        transform: translateY(100%);
    }

    .video-lightbox.active {
        bottom: 0;
        transform: translateY(0);
    }
}

/* ========================================
   CUSTOM VIDEO LIGHTBOX (Bottom Right Popup)
   ======================================== */
.custom-video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    /* Remove flex centering so we can place it bottom-right freely */
    pointer-events: none;
    /* Let clicks pass through the invisible background */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-video-lightbox.active {
    opacity: 1;
}

/* Remove the dark overlay completely so user can scroll the site */
.lightbox-overlay {
    display: none;
}

.lightbox-content {
    position: absolute;
    /* Absolute within the fixed 100vw container */
    bottom: 30px;
    right: 30px;
    z-index: 2;
    width: 320px;
    /* Smaller, PIP-like width */
    height: 500px;
    /* Smaller height */
    background: #000;
    border-radius: 16px;
    /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    /* Softer floating shadow */
    transform: translateY(120%);
    /* Start hidden below the screen */
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    /* Enable clicks inside the video box */
    border: 3px solid #fff;
    /* White border for premium feel */
}

.custom-video-lightbox.active .lightbox-content {
    transform: translateY(0);
    /* Slide up into view */
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly darker for contrast */
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.lightbox-iframe-container {
    flex-grow: 1;
    width: 100%;
}

.lightbox-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Ensure JS cursor pointer works on triggers */
.js-video-modal-trigger {
    cursor: pointer;
}


.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    /* Start off-screen */
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: linear-gradient(135deg, #FAF7EE 0%, #F5EAE0 100%);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 1;
    /* Always opaque, controlled by left pos */
    visibility: visible;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
    /* Slide in */
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 10px;
}

.close-mobile-nav {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--charcoal, #3D3D3D);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-right: -8px;
    transition: transform 0.2s;
}

.close-mobile-nav:hover {
    transform: scale(1.1);
    color: #F28C5E;
}

.close-mobile-nav svg {
    width: 28px;
    height: 28px;
}

.mobile-nav-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    /* Left align for drawer */
    padding: 24px;
    width: 100%;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-link {
    font-family: var(--heading);
    font-size: 26px !important;
    font-weight: 700;
    color: var(--charcoal, #3D3D3D);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    padding: 8px 0;
    display: block;
    /* Ensure it doesn't wrap inline */
    width: 100%;
}

.mobile-link:hover {
    color: #F28C5E;
}

/* Find Your Reset Accordion in Mobile Nav */
.mobile-nav-accordion {
    width: 100%;
    border-bottom: 0;
}

.mobile-accordion-btn {
    font-family: var(--heading);
    font-size: 26px !important;
    font-weight: 700;
    color: var(--charcoal, #3D3D3D);
    background: transparent;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.mobile-accordion-btn i,
.mobile-accordion-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s var(--ease);
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transition: all 0.3s var(--ease);
}

.mobile-nav-accordion.accordion-open .mobile-accordion-btn {
    color: #F28C5E;
}

.mobile-nav-accordion.accordion-open .mobile-accordion-btn svg,
.mobile-nav-accordion.accordion-open .mobile-accordion-btn i {
    transform: rotate(180deg);
}

.mobile-nav-accordion.accordion-open .mobile-accordion-content {
    max-height: 500px;
    padding: 10px 0;
    opacity: 1;
}

.mobile-nav-footer {
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
}

.mobile-nav-footer p {
    font-family: var(--body);
    font-size: 12px;
    color: var(--stone, #787878);
    margin-top: 16px;
}

.mobile-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.mobile-socials a {
    color: var(--charcoal, #3D3D3D);
    transition: color 0.25s ease;
}

.mobile-socials a:hover {
    color: #F28C5E;
}

/* ========================================
   SLIDE-OUT CART
   ======================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    width: 90%;
    max-width: 440px;
    height: 100vh;
    background: #FFF;
    z-index: 2100;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
    right: 0;
    /* Slide in */
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--oat-milk);
}

.cart-drawer-header h3 {
    font-family: var(--heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--charcoal);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: transform 0.2s, color 0.2s;
}

.cart-close svg,
.cart-close i {
    width: 28px;
    height: 28px;
}

.cart-close:hover {
    transform: scale(1.1);
    color: #F28C5E;
}

.cart-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0;
    background: #FFF;
}

/* ========================================
   â”â”â” Misc â”â”â”
   ======================================== */
.tab-link.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    position: relative;
}

.tab-link.disabled::after {
    content: 'SOON';
    position: absolute;
    top: -8px;
    right: -4px;
    font-size: 8px;
    font-weight: 700;
    color: var(--peach-pop);
    letter-spacing: 0.05em;
}

.testimonial-card .stars svg {
    fill: var(--ginger-pop);
    stroke: var(--ginger-pop);
    width: 18px;
    height: 18px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    background: var(--pale-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.usp-icon-wrap svg {
    width: 32px;
    height: 32px;
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   RESPONSIVE
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
/* ===================================================================
   CONSOLIDATED RESPONSIVE DESIGN
   =================================================================== */

/* ========================================
   ━━━ LARGE DESKTOPS (1200px and below) ━━━
   ======================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
    }

    .header-inner {
        padding: 0 32px;
    }

    .hero-content {
        width: 50%;
    }

    .product-grid {
        gap: 30px;
    }

    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }

    .blogs-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .blogs-editorial-bg {
        display: none;
    }

    .blog-card.featured {
        grid-column: 1;
        grid-template-columns: 1fr;
    }

    .blog-card.compact {
        grid-column: 1 !important;
    }
}

/* ========================================
   ━━━ TABLETS & SMALL LAPTOPS (991px and below) ━━━
   ======================================== */
@media (max-width: 991px) {
    .header-left {
        display: none;
    }

    .header {
        height: 72px;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .logo-reset {
        width: 100px;
        height: 100px;
    }

    .header-right {
        margin-left: auto;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
        order: -1;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--charcoal);
        transition: 0.3s;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-ref-container {
        height: auto;
        aspect-ratio: 1024 / 600;
    }

    .hero-banner-fullbleed {
        padding: 0 40px;
        background-position: center bottom;
    }

    .hero-content {
        width: 70%;
        max-width: none;
    }

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

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

/* ========================================
   ━━━ MOBILE PORTRAIT & TABLET MINI (768px and below) ━━━
   ======================================== */
@media (max-width: 768px) {
    :root {
        --nav-h: 120px;
    }

    .container {
        padding: 0 20px;
    }

    /* ───── MOBILE HEADER ───── */
    .header {
        height: 60px;
    }

    .header-inner {
        padding: 0 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .logo-reset {
        width: auto;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-reset img {
        height: 36px;
        width: auto;
        object-fit: contain;
        transition: height 0.3s ease;
    }

    .header.scrolled {
        height: 56px;
    }

    .header.scrolled .logo-reset {
        height: 56px;
        top: auto;
    }

    .header.scrolled .logo-reset img {
        height: 30px;
    }

    .header-right {
        margin-left: auto;
    }

    .header-actions {
        gap: 4px;
    }

    /* Move hamburger visually to the left */
    .hamburger {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    /* ───── MOBILE HERO ───── */
    .hero-reference {
        margin-top: 60px;
    }

    .hero-ref-container {
        height: auto;
        aspect-ratio: 768 / 500;
    }

    .hero-banner-fullbleed {
        padding: 60px 20px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, 0.4);
    }

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

    .hero-headline {
        font-size: 52px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .product-showcase .header-title {
        font-size: 36px;
        letter-spacing: 0.05em;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    /* ───── MOBILE FOOTER ───── */
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .footer-brand {
        margin-bottom: 24px;
    }

    .footer-brand,
    .footer-logo-circle {
        justify-content: center;
        margin: 0 auto 24px;
    }

    .footer-logo-img {
        max-width: 120px;
    }

    /* Accordion Footer Columns */
    .footer-col {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 0;
    }

    .footer-col h4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 18px 0;
        margin-bottom: 0;
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    .footer-col h4::after {
        content: '+';
        font-size: 22px;
        font-weight: 400;
        color: var(--stone, #787878);
        transition: transform 0.3s ease;
    }

    .footer-col.accordion-open h4::after {
        content: '−';
    }

    .footer-col ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding: 0;
    }

    .footer-col.accordion-open ul {
        max-height: 300px;
        padding-bottom: 16px;
    }

    .footer-col ul li a {
        font-size: 14px;
    }

    /* Newsletter on Mobile */
    .newsletter-box {
        text-align: center;
        padding-top: 24px;
    }

    .newsletter-box h4 {
        font-size: 18px;
        letter-spacing: 0.05em;
    }

    .newsletter-form {
        max-width: 100%;
        margin: 0 auto;
    }

    .newsletter-form input {
        font-size: 14px;
        padding: 14px 18px;
    }

    /* Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding-top: 24px;
    }

    .footer-contact .contact-line-4 {
        font-size: 13px;
    }

    /* Footer Legal */
    .footer-legal {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }

    .legal-links a {
        font-size: 12px;
    }
}

/* ========================================
   ━━━ SMALL PHONES (480px and below) ━━━
   ======================================== */
@media (max-width: 480px) {
    .header-actions {
        gap: 8px;
    }

    .header-icon {
        width: 32px;
        height: 32px;
    }

    .hero-headline {
        font-size: 40px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .product-showcase .header-title {
        font-size: 32px;
        letter-spacing: 0.05em;
    }

    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .phil-item {
        padding: 15px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .social-title {
        font-size: 32px;
        letter-spacing: 0.05em;
    }

    .footer-col h4 {
        font-size: 14px;
    }

    .footer-legal p,
    .legal-links a {
        font-size: 12px;
    }
}

/* ========================================
   SINGLE BLOG POST PAGE
   ======================================== */
.single-post-page {
    background: var(--oat-milk);
}

.single-post-hero {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.single-post-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-hero-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2D1B3D 0%, #7B439A 100%);
}

.single-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}

.single-post-container {
    max-width: 800px;
    margin: -60px auto 80px;
    padding: 60px 48px;
    background: var(--card-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: var(--body);
    font-size: 13px;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.post-divider {
    color: var(--stone);
}

.single-post-title {
    font-family: var(--heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.single-post-body {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.85;
    color: var(--charcoal);
}

.single-post-body p {
    margin-bottom: 20px;
}

.single-post-body h2,
.single-post-body h3 {
    font-family: var(--heading);
    color: var(--ink);
    margin: 40px 0 16px;
    text-transform: uppercase;
}

.single-post-body h2 {
    font-size: 28px;
}

.single-post-body h3 {
    font-size: 22px;
}

.single-post-body ul,
.single-post-body ol {
    margin: 16px 0 24px 24px;
}

.single-post-body li {
    margin-bottom: 8px;
}

.single-post-body blockquote {
    border-left: 4px solid #7B439A;
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(123, 67, 154, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--charcoal);
}

.single-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.single-post-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-back-blog {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-back-blog:hover {
    color: #7B439A;
}

@media (max-width: 768px) {
    .single-post-hero {
        height: 250px;
    }

    .single-post-container {
        margin: -40px 16px 40px;
        padding: 30px 20px;
        width: auto;
    }

    .single-post-title {
        font-size: 28px;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .single-post-body {
        font-size: 15px;
        line-height: 1.6;
    }

    .single-post-meta {
        flex-wrap: wrap;
        font-size: 12px;
    }
}

/* ========================================
   RESET JOURNAL (REMEDY STYLE ARCHIVE)
   ======================================== */
.journal-main-content {
    background: var(--oat-milk);
}

/* Hero Section */
.remedy-style-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align Content to the right like Remedy */
    overflow: hidden;
    background: var(--warm-beige);
    padding: 60px 5%;
}

.journal-hero-banner {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.journal-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    /* Push image focus appropriately */
}

.journal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(245, 239, 237, 0) 0%, rgba(221, 192, 168, 0.7) 100%);
    /* Subtle fade so text is readable */
}

.journal-hero-content-right {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 450px;
    margin-right: 10%;
    /* Spacing from right edge */
}

.remedy-blog-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.remedy-blog-title {
    font-family: var(--heading-condensed), var(--heading);
    /* If condensed exists, use it */
    font-size: clamp(50px, 8vw, 84px);
    /* Much larger, like Remedy */
    font-weight: 900;
    color: var(--charcoal);
    line-height: 0.85;
    /* Very tight line height */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: scaleY(1.1);
    /* Slight vertical stretch if true condensed not available */
}

.remedy-blog-subtitle {
    font-family: var(--body);
    font-size: 16px;
    /* Larger subtitle */
    color: var(--charcoal);
    font-weight: 500;
    line-height: 1.5;
    margin-top: 15px;
}

/* ============================
   Remedy-Style Split Hero Banner
   ============================ */
.journal-hero-split {
    display: flex;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #d9c4a8;
}

.journal-hero-image-side {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
}

.journal-hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.journal-hero-text-side {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 50px;
    background: linear-gradient(135deg, #d9c4a8 0%, #c9b49a 100%);
}

.journal-hero-text-inner {
    text-align: center;
    max-width: 380px;
}

.journal-ornaments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0;
}

.ornament-dot {
    color: var(--peach-pop, #F28C5E);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.journal-hero-title {
    font-family: var(--heading), 'Bebas Neue', cursive;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 900;
    color: var(--charcoal, #3D3D3D);
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.journal-hero-desc {
    font-family: var(--body), 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--charcoal, #3D3D3D);
    font-weight: 400;
    line-height: 1.65;
    margin-top: 18px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .journal-hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .journal-hero-image-side {
        flex: none;
        height: 280px;
    }

    .journal-hero-text-side {
        flex: none;
        padding: 30px 20px;
    }

    .journal-hero-title {
        font-size: 32px;
    }

    .journal-hero-desc {
        font-size: 13px;
    }
}

/* Categories Bar */
.journal-categories-bar {
    background: var(--card-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0 5%;
}

.journal-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 60px;
}

.journal-category-list a {
    text-decoration: none;
    font-family: var(--heading-condensed), var(--heading);
    font-size: 14px;
    /* Slightly increased size based on feedback */
    font-weight: 900;
    color: var(--charcoal);
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
    transform: scaleY(1.1);
}

.journal-category-list a:hover {
    color: #7B439A;
}

.journal-category-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--charcoal);
}

/* Toolbar / Sort Bar */
.journal-toolbar-bar {
    padding: 30px 5%;
}

.journal-sort {
    display: flex;
    align-items: center;
}

.sort-dropdown-box {
    position: relative;
    user-select: none;
    z-index: 10;
}

.sort-dropdown-current {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: var(--card-white);
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    /* Smooth rounded corners */
    padding: 12px 20px;
    cursor: pointer;
    min-width: 250px;
    transition: border-radius 0.2s ease;
}

.sort-dropdown-box.active .sort-dropdown-current {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}

.sort-label {
    font-family: var(--heading-condensed), var(--heading);
    font-size: 13px;
    font-weight: 900;
    color: var(--charcoal);
    transform: scaleY(1.1);
}

.current-sort {
    font-family: var(--heading-condensed), var(--heading);
    font-size: 13px;
    font-weight: 900;
    color: var(--charcoal);
    transform: scaleY(1.1);
    margin-left: auto;
}

.sort-pipe {
    font-family: var(--body);
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.5;
}

.sort-dropdown-current svg {
    transition: transform 0.3s ease;
}

.sort-dropdown-box.active .sort-dropdown-current svg {
    transform: scaleY(-1);
}

.sort-dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--card-white);
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
}

.sort-dropdown-box.active .sort-dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-dropdown-options a {
    text-decoration: none;
    font-family: var(--heading-condensed), var(--heading);
    font-size: 13px;
    font-weight: 900;
    color: var(--charcoal);
    padding: 12px 20px;
    transform: scaleY(1.1);
    transition: background 0.2s ease;
}

.sort-dropdown-options a:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* Grid & Cards */
.journal-grid-section {
    padding: 60px 5% 100px;
}

.remedy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    /* More vertical breathing room */
}

.remedy-article-card {
    background: var(--card-white);
    border-radius: 8px;
    /* Sharper corners */
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    /* Extremely subtle shadow, flat look */
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.remedy-article-card:hover {
    transform: translateY(-5px);
}

.remedy-article-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.remedy-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.remedy-article-card:hover .remedy-article-image img {
    transform: scale(1.05);
}

.remedy-article-content {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.remedy-article-title {
    font-family: var(--heading-condensed), var(--heading);
    font-size: 18px;
    font-weight: 900;
    color: var(--charcoal);
    text-transform: uppercase;
    margin-bottom: 8px;
    /* Tighter spacing */
    line-height: 1.1;
    transform: scaleY(1.1);
    /* Compressed look */
    letter-spacing: 0.05em;
}

.remedy-article-title a {
    color: inherit;
    text-decoration: none;
}

.remedy-article-title a:hover {
    color: #7B439A;
}

.remedy-article-desc {
    font-family: var(--body);
    font-size: 14px;
    /* Slightly larger description */
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1;
}

.remedy-read-more {
    font-family: var(--heading-condensed), var(--heading);
    font-size: 10px;
    /* Smaller, like toolbar */
    font-weight: 900;
    color: var(--charcoal);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--charcoal);
    padding-bottom: 2px;
    align-self: center;
    transition: color 0.3s ease, border-color 0.3s ease;
    transform: scaleY(1.1);
}

.remedy-read-more:hover {
    color: #7B439A;
    border-color: #7B439A;
}

/* Pagination */
.journal-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.journal-pagination .page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    color: var(--charcoal);
    font-family: var(--heading);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.journal-pagination .page-numbers:hover {
    background: rgba(0, 0, 0, 0.05);
}

.journal-pagination .page-numbers.current {
    background: var(--charcoal);
    color: var(--card-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .remedy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .remedy-style-hero {
        justify-content: center;
        padding: 80px 5%;
    }

    .journal-hero-content-right {
        margin-right: 0;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.85);
        /* Readability on mobile */
        padding: 30px 20px;
        border-radius: 12px;
    }

    .remedy-blog-title {
        font-size: 32px;
    }

    .journal-category-list {
        gap: 20px;
    }

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

    .sort-label {
        display: none;
        /* Hide on small screens for space */
    }
}

/* ===================================================================
   POLICY / INFO PAGES — Premium Layout
   =================================================================== */

/* Hero Section */
.policy-hero {
    background: linear-gradient(135deg, #FAF7EE 0%, #F5EAE0 100%);
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 140, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.policy-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 78, 51, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.policy-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.policy-hero-title {
    font-family: var(--heading, 'Montserrat', sans-serif);
    font-size: 48px;
    font-weight: 900;
    color: var(--charcoal, #1a1a1a);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px;
    line-height: 1.1;
}

.policy-hero-subtitle {
    font-family: var(--body, 'Montserrat', sans-serif);
    font-size: 17px;
    color: var(--stone, #666);
    line-height: 1.7;
    margin: 0;
    max-width: 550px;
    margin: 0 auto;
}

/* Content Section */
.policy-content-section {
    padding: 60px 24px 80px;
    background: var(--oat-milk, #FAF7EE);
}

.policy-container {
    max-width: 780px;
    margin: 0 auto;
}

.policy-content {
    font-family: var(--body, 'Montserrat', sans-serif);
    font-size: 16px;
    line-height: 1.85;
    color: var(--charcoal, #1a1a1a);
}

/* Headings */
.policy-content h2 {
    font-family: var(--heading, 'Montserrat', sans-serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--charcoal, #1a1a1a);
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 3px solid #F28C5E;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-family: var(--heading, 'Montserrat', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal, #1a1a1a);
    margin: 32px 0 12px;
    letter-spacing: 0.05em;
}

/* Paragraphs */
.policy-content p {
    margin: 0 0 18px;
    color: #444;
}

/* Styled Lists */
.policy-content ul,
.policy-content ol {
    margin: 16px 0 24px;
    padding-left: 0;
    list-style: none;
}

.policy-content ul li,
.policy-content ol li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #444;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F28C5E;
}

.policy-content ol {
    counter-reset: policy-counter;
}

.policy-content ol li {
    counter-increment: policy-counter;
}

.policy-content ol li::before {
    content: counter(policy-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #F28C5E;
    font-size: 16px;
}

/* Links */
.policy-content a {
    color: #F28C5E;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.policy-content a:hover {
    color: #ED4E33;
}

/* Blockquote / Highlight Box */
.policy-content blockquote {
    background: rgba(242, 140, 94, 0.08);
    border-left: 4px solid #F28C5E;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-style: normal;
}

.policy-content blockquote p {
    margin: 0;
    color: var(--charcoal, #1a1a1a);
    font-weight: 500;
}

/* Strong text */
.policy-content strong {
    color: var(--charcoal, #1a1a1a);
    font-weight: 700;
}

/* Contact Callout */
.policy-contact-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #FFF5ED 0%, #FDF0E6 100%);
    border: 1px solid rgba(242, 140, 94, 0.2);
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 48px;
}

.callout-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F28C5E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.callout-icon svg {
    width: 24px;
    height: 24px;
}

.callout-label {
    font-family: var(--body, 'Montserrat', sans-serif);
    font-size: 14px;
    color: var(--stone, #888);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.callout-email {
    font-family: var(--body);
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal, #1a1a1a);
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.callout-email:hover {
    color: #F28C5E;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 20px 40px;
    }

    .policy-hero-title {
        font-size: 32px;
    }

    .policy-content-section {
        padding: 40px 20px 60px;
    }

    .policy-content h2 {
        font-size: 22px;
        margin-top: 36px;
    }

    .policy-content h3 {
        font-size: 18px;
    }

    .policy-contact-callout {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    @media (max-width: 480px) {
        .policy-hero-title {
            font-size: 28px;
        }

        .policy-hero-subtitle {
            font-size: 15px;
        }

        .policy-content {
            font-size: 15px;
        }
    }
}


/* ===================================================================
   CERTIFICATIONS PAGE — Matches Policy/About Us Design
   =================================================================== */

/* ----- Hero Section (handles both old cert-hero and new policy-hero) ----- */
.cert-hero {
    background: linear-gradient(135deg, #FAF7EE 0%, #F5EAE0 100%);
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cert-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 140, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cert-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 78, 51, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cert-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hide the badge — keep it clean like policy pages */
.cert-hero-badge {
    display: none;
}

.cert-hero-title {
    font-family: var(--heading, 'Montserrat', sans-serif);
    font-size: 48px;
    font-weight: 900;
    color: var(--charcoal, #1a1a1a);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.1;
}

/* Hide subtitle — keep it clean like policy pages */
.cert-hero-subtitle {
    display: none;
}

/* Hide glow elements from old template */
.cert-hero-glow,
.cert-hero-glow-1,
.cert-hero-glow-2 {
    display: none;
}

/* ----- Certifications Grid ----- */
.cert-section {
    background: var(--oat-milk, #FAF7EE);
    padding: 60px 24px 80px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card */
.cert-card {
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.cert-card-inner {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 44px 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Icon */
.cert-icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cert-icon-ring {
    display: none;
}

@keyframes certRingSpin {
    from {
        transform: rotate(0deg);
    }

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

.cert-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(242, 140, 94, 0.1);
    color: #F28C5E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cert-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(242, 140, 94, 0.25);
    animation: certRingSpin 20s linear infinite;
}

.cert-icon svg {
    width: 28px;
    height: 28px;
}

/* Card Content */
.cert-card-content {
    flex: 1;
}

.cert-card-title {
    font-family: var(--heading, 'Montserrat', sans-serif);
    font-size: 20px;
    font-weight: 800;
    color: var(--charcoal, #3D3D3D);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    line-height: 1.2;
}

.cert-card-org {
    font-family: var(--body, 'Montserrat', sans-serif);
    font-size: 12px;
    font-weight: 600;
    color: var(--stone, #787878);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    line-height: 1.4;
}

.cert-card-desc {
    font-family: var(--body, 'Montserrat', sans-serif);
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
}

/* View Certificate Link */
.cert-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--body, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: #F28C5E;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
    margin-top: auto;
}

.cert-btn:hover {
    color: #d9714a;
}

.cert-btn svg {
    width: 15px;
    height: 15px;
}

/* ----- Trust Banner (bottom section, centered layout) ----- */
.cert-trust-banner {
    background: linear-gradient(135deg, #F5EAE0 0%, #FAF7EE 100%);
    padding: 70px 24px;
    position: relative;
    overflow: hidden;
}

.cert-trust-banner::before {
    display: none;
}

.cert-trust-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.cert-trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(242, 140, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F28C5E;
    border: none;
}

.cert-trust-icon svg {
    width: 28px;
    height: 28px;
}

.cert-trust-content {
    flex: 1;
}

.cert-trust-title {
    font-family: var(--heading, 'Montserrat', sans-serif);
    font-weight: 800;
    font-size: 26px;
    color: var(--charcoal, #3D3D3D);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.cert-trust-text {
    font-family: var(--body, 'Montserrat', sans-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--stone, #787878);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.cert-trust-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--heading, 'Montserrat', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background: #F28C5E;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 40px;
    border-radius: 100px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.cert-trust-btn:hover {
    background: #e07848;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 140, 94, 0.3);
}

.cert-trust-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.cert-trust-btn:hover svg {
    transform: translateX(4px);
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .cert-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        gap: 20px;
    }

    .cert-trust-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cert-hero {
        padding: 60px 24px 40px;
    }

    .cert-hero-title {
        font-size: 36px;
    }

    .cert-section {
        padding: 40px 20px 60px;
    }

    .cert-card-inner {
        padding: 32px 24px 28px;
    }

    .cert-card-title {
        font-size: 18px;
    }

    .cert-trust-banner {
        padding: 36px 20px;
    }

    .cert-trust-title {
        font-size: 18px;
    }
}

/* ========================================
   SINGLE PRODUCT PAGE — REMEDY STYLE
   ======================================== */

/* Wrapper */
.reset-sp-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 60px;
}

/* Breadcrumbs */
.reset-sp-breadcrumbs {
    font-family: var(--body);
    font-size: 13px;
    color: var(--stone, #787878);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reset-sp-breadcrumbs a {
    color: var(--stone, #787878);
    text-decoration: none;
    transition: color 0.2s ease;
}

.reset-sp-breadcrumbs a:hover {
    color: var(--peach-pop, #F28C5E);
}

.reset-sp-breadcrumbs .bc-sep {
    margin: 0 8px;
    color: var(--stone, #787878);
    opacity: 0.5;
}

.reset-sp-breadcrumbs .bc-current {
    color: var(--charcoal, #3D3D3D);
}

/* 2-Column Layout */
.reset-sp-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Gallery Column */
.reset-sp-gallery {
    flex: 1;
    max-width: 50%;
    position: sticky;
    top: 20px;
}

.reset-sp-main-image {
    border-radius: 12px;
    overflow: hidden;
    background: var(--chalk, #F5F1EA);
    margin-bottom: 16px;
}

.reset-sp-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 1/1;
}

/* Thumbnails */
.reset-sp-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.reset-sp-thumb {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
    background: var(--chalk, #F5F1EA);
}

.reset-sp-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.reset-sp-thumb:hover {
    border-color: var(--peach-pop, #F28C5E);
    transform: scale(1.03);
}

.reset-sp-thumb.active {
    border-color: var(--peach-pop, #F28C5E);
}

/* Info Column */
.reset-sp-info {
    flex: 1;
    max-width: 50%;
}

/* Summary Card */
.reset-sp-summary-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Product Title */
.reset-sp-title {
    font-family: var(--heading);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--charcoal, #3D3D3D);
    margin-bottom: 16px;
    line-height: 1.1;
}

/* Description */
.reset-sp-description {
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--stone, #787878);
    margin-bottom: 20px;
}

.reset-sp-description p {
    margin-bottom: 10px;
}

/* Price */
.reset-sp-price {
    font-family: var(--body);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink, #1A1A1A);
    margin-bottom: 8px;
}

.reset-sp-price del {
    color: var(--stone, #787878);
    font-weight: 400;
    font-size: 16px;
    margin-right: 8px;
}

.reset-sp-price ins {
    text-decoration: none;
    color: var(--peach-pop, #F28C5E);
    font-weight: 700;
}

/* ===== REMEDY-STYLE PACK SIZE SELECTOR ===== */
.reset-sp-pack-label {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal, #3D3D3D);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.reset-sp-pack-options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.reset-sp-pack-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 120px;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 10px;
}

.reset-sp-pack-card .reset-sp-pack-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--charcoal, #3D3D3D);
    opacity: 0.8;
    transition: all 0.4s var(--ease);
    min-height: 60px;
}

.reset-sp-pack-card .reset-sp-pack-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.4s var(--ease);
    min-height: 100px;
}

.remedy-style-svg {
    transition: all 0.5s var(--ease);
    overflow: visible;
}

/* 1. Base remedy elements - Ghost Fill for inactive */
.remedy-can {
    fill: var(--jamun-pop);
    /* Brand purple base */
    opacity: 0.15;
    /* Light ghost appearance */
    stroke: none;
    /* Remove messy outlines */
    transition: all 0.4s var(--ease);
}

.remedy-shadow {
    fill: rgba(0, 0, 0, 0.06);
    opacity: 0;
    transition: all 0.4s var(--ease);
    transform-origin: center;
    transform: scale(0.5);
}

.remedy-sparkles {
    opacity: 0;
    stroke: var(--jamun-pop);
    /* Spiced Jamun Purple */
    stroke-width: 4px;
    /* Slightly thicker for visibility */
    stroke-linecap: round;
    transition: all 0.4s var(--ease);
    transform: translate(-10px, 10px);
}

/* Hover effects */
.reset-sp-pack-card:hover .reset-sp-pack-icon {
    transform: translateY(-5px);
}

/* 2. Selection State - Purple Fill */
.reset-sp-pack-card.active {
    border-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
}

.reset-sp-pack-card.active .remedy-can {
    fill: var(--jamun-pop);
    /* Fill solid purple on selection */
    opacity: 1;
    /* Full opacity when active */
    stroke: none;
}

.reset-sp-pack-card.active .remedy-shadow {
    opacity: 1;
    transform: scale(1.1);
}

.reset-sp-pack-card.active .remedy-sparkles {
    opacity: 1;
    transform: translate(0, 0);
}

.reset-sp-pack-card .reset-sp-pack-text {
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.1em;
}

.reset-sp-pack-card.active .reset-sp-pack-text {
    color: var(--jamun-pop);
    /* Purple Text */
    transform: scale(1.05);
}

/* Separator */
.reset-sp-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 24px 0;
}

/* Quantity + Add to Cart Row */
.reset-sp-qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Pill Quantity Selector */
.reset-sp-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #e2e2e2;
    border-radius: 100px;
    overflow: hidden;
    background: #FFFFFF;
    flex-shrink: 0;
}

.reset-sp-qty-btn {
    width: 40px;
    height: 46px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal, #3D3D3D);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    font-family: var(--body);
}

.reset-sp-qty-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

.reset-sp-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal, #3D3D3D);
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
}

.reset-sp-qty-input::-webkit-outer-spin-button,
.reset-sp-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart Button */
.reset-sp-add-btn {
    flex: 1;
    height: 46px;
    border: none;
    border-radius: 100px;
    background: var(--peach-pop, #F28C5E);
    color: #FFFFFF;
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-sp-add-btn:hover {
    background: var(--jamun-pop, #7B439A);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 67, 154, 0.3);
}

/* Out of Stock */
.reset-sp-out-of-stock {
    font-family: var(--heading);
    font-size: 18px;
    color: var(--peach-pop);
    text-transform: uppercase;
    margin-top: 20px;
}

/* Tasting Notes Accordion */
.reset-sp-accordions {
    margin-top: 32px;
}

.reset-sp-accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.reset-sp-accordion[open] {
    padding-bottom: 16px;
}

.reset-sp-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal, #3D3D3D);
    list-style: none;
}

.reset-sp-accordion-header::-webkit-details-marker {
    display: none;
}

.reset-sp-accordion-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--stone, #787878);
    transition: transform 0.2s ease;
}

.reset-sp-accordion-body {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--stone, #787878);
    padding-bottom: 4px;
}

.reset-sp-accordion-body p {
    margin-bottom: 8px;
}

/* ========================================
   RELATED PRODUCTS — REMEDY STYLE
   ======================================== */
.reset-sp-related {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.reset-sp-related-title {
    font-family: var(--heading);
    font-size: 34px;
    /* Synchronized premium size */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* Unified letter spacing match with home page */
    color: var(--charcoal, #3D3D3D);
    margin-bottom: 32px;
    text-align: center;
}

.reset-sp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.reset-sp-related-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.reset-sp-related-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Pushes the button to the bottom */
}

.reset-sp-related-card .loop-add-to-cart-wrap {
    margin-top: auto;
    width: 100%;
}

.reset-sp-related-card a.button.add_to_cart_button,
.reset-sp-related-card .add_to_cart_button {
    display: block;
    width: 100%;
    padding: 12px 10px;
    background-color: var(--peach-pop, #F28C5E) !important;
    color: #FFFFFF !important;
    font-family: var(--heading, sans-serif);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.reset-sp-related-card a.button.add_to_cart_button:hover,
.reset-sp-related-card .add_to_cart_button:hover {
    background-color: var(--remedy-purple, #7B2D8E) !important;
    color: #FFFFFF !important;
}

.reset-sp-related-img {
    background: var(--chalk, #F5F1EA);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-sp-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s var(--ease);
}

.reset-sp-related-card:hover .reset-sp-related-img img {
    transform: scale(1.05);
}

.reset-sp-related-name {
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--charcoal, #3D3D3D);
    margin-bottom: 4px;
}

.reset-sp-related-price {
    font-family: var(--body);
    font-size: 14px;
    color: var(--stone, #787878);
    margin-bottom: 10px;
}

/* ========================================
   SINGLE PRODUCT — RESPONSIVE
   ======================================== */




/* Hide default WooCommerce single product elements when our custom template is active */
.single-product-container .woocommerce-product-gallery,
.single-product-container .summary.entry-summary,
.single-product-container .woocommerce-tabs,
.single-product-container .related.products,
.single-product-container .product_meta {
    /* These are hidden because our custom template renders everything */
    display: none !important;
}

/* ========================================
   FREE SHIPPING NOTICE
   ======================================== */
.reset-sp-shipping-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 0;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--charcoal, #3D3D3D);
}

.reset-sp-truck-icon {
    color: var(--peach-pop, #F28C5E);
    flex-shrink: 0;
}

/* ========================================
   PRODUCT BENEFIT ICONS ROW
   ======================================== */
.reset-sp-benefits {
    background: var(--oat-milk, #FAF7EE);
    padding: 50px 40px 60px;
}

.reset-sp-benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.reset-sp-benefit-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(100px, 15vw, 160px);
    /* Responsive sizing */
    transition: transform 0.3s var(--ease);
}

.reset-sp-benefit-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.reset-sp-benefit-item:hover {
    transform: translateY(-5px);
}

/* ========================================
   STICKY BOTTOM ADD TO CART BAR
   ======================================== */
.reset-sp-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 0;
}

.reset-sp-sticky-bar.visible {
    transform: translateY(0);
}

.reset-sp-sticky-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.reset-sp-sticky-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reset-sp-sticky-name {
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--charcoal, #3D3D3D);
}

.reset-sp-sticky-price {
    font-family: var(--body);
    font-size: 14px;
    color: var(--stone, #787878);
}

.reset-sp-sticky-price ins {
    text-decoration: none;
    color: var(--peach-pop, #F28C5E);
    font-weight: 600;
}

.reset-sp-sticky-price del {
    color: var(--stone, #787878);
    font-size: 12px;
}

.reset-sp-sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 46px;
    border: none;
    border-radius: 100px;
    background: var(--peach-pop, #F28C5E) !important;
    color: #FFFFFF !important;
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s var(--ease);
}

.reset-sp-sticky-btn:hover {
    background: var(--jamun-pop, #7B439A) !important;
    transform: translateY(-2px);
}




/* ========================================================================
   ███████ ABOUT US PAGE ███████
   ======================================================================== */

/* ── Shared Section Helpers ── */
.about-us-page .section-label {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--peach-pop);
    display: inline-block;
    margin-bottom: 12px;
}

.about-us-page .section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.about-us-page .section-title-large {
    font-family: var(--heading);
    font-size: clamp(42px, 6vw, 72px);
    color: var(--charcoal);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin: 0;
}

/* ── Scroll Reveal Animations ── */
.anim-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.anim-reveal.anim-left {
    transform: translateX(-60px);
}

.anim-reveal.anim-right {
    transform: translateX(60px);
}

.anim-reveal.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0);
}


/* ========================================
   SECTION 1: ABOUT HERO
   ======================================== */
.about-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 180px);
    /* Account for ~140px header + ~40px promo bar */
    height: calc(100dvh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #7B439A 0%, #B030B0 30%, #FF6B6B 70%, #F28C5E 100%);
    --parallax-y: 0px;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(123, 67, 154, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(242, 140, 94, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.about-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.about-hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle.p1 {
    width: 300px;
    height: 300px;
    background: var(--peach-pop);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.particle.p2 {
    width: 200px;
    height: 200px;
    background: var(--jamun-pop);
    bottom: -8%;
    right: 10%;
    animation-delay: 2s;
}

.particle.p3 {
    width: 150px;
    height: 150px;
    background: #F28C5E;
    top: 20%;
    right: -5%;
    animation-delay: 4s;
}

.particle.p4 {
    width: 100px;
    height: 100px;
    background: var(--fresh-green);
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

.particle.p5 {
    width: 80px;
    height: 80px;
    background: #D23647;
    top: 60%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes floatParticle {

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

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 28px;
    transform: translateY(var(--parallax-y));
}

.about-hero-label {
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.about-hero-headline {
    font-family: var(--heading);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.about-hero-headline .hero-highlight {
    background: linear-gradient(90deg, #F28C5E, #FFD166);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-sub {
    font-family: var(--body);
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-hero-scroll {
    transition: opacity 0.3s ease;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--heading);
    font-size: 11px;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--peach-pop);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}


/* ========================================
   SECTION 2: FOUNDER SPOTLIGHT
   ======================================== */
.about-founder {
    padding: 100px 0;
    background: var(--oat-milk);
    position: relative;
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 120px 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 991px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.founder-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image-ring {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 3px solid var(--peach-pop);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.15;
    }
}

.founder-image-box {
    width: 340px;
    height: 420px;
    border-radius: 200px 200px 30px 30px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(123, 67, 154, 0.2);
    position: relative;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.founder-image-box:hover .founder-photo {
    transform: scale(1.05);
}

.founder-badge {
    position: absolute;
    bottom: 25px;
    right: 15px;
    z-index: 3;
    background: linear-gradient(135deg, rgba(123, 67, 154, 0.9), rgba(155, 89, 182, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 12px 36px rgba(123, 67, 154, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-badge:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(123, 67, 154, 0.45);
    background: linear-gradient(135deg, rgba(123, 67, 154, 0.95), rgba(155, 89, 182, 0.95));
    border-color: rgba(255, 255, 255, 0.4);
}

.cofounder-badge {
    right: -10px;
    /* Offset to the right to prevent overlapping the image too much */
    padding: 10px 20px;
    /* Thinner padding so it matches the size bulk of Founder's shorter text */
    font-size: 13px;
}

.badge-icon {
    font-size: 19px;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.founder-badge:hover .badge-icon {
    transform: rotate(5deg) scale(1.1);
}

.founder-story .section-label {
    margin-bottom: 16px;
}

.founder-name {
    font-family: var(--heading);
    font-size: clamp(48px, 5vw, 72px);
    color: var(--ink);
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0 0 8px;
}

.founder-role {
    font-family: var(--body);
    font-size: 16px;
    font-weight: 500;
    color: var(--stone);
    margin: 0 0 24px;
    letter-spacing: 0.02em;
}

.founder-quote {
    font-family: inherit;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--jamun-pop);
    line-height: 1.6;
    margin: 0 0 28px;
    padding-left: 20px;
    border-left: 4px solid var(--peach-pop);
}

.founder-bio p {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
    margin: 0 0 16px;
}

.founder-social {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.founder-social .social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(123, 67, 154, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jamun-pop);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.founder-social .social-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.founder-social .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, var(--jamun-pop), var(--peach-pop));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(242, 140, 94, 0.3);
}

.founder-social .social-link:hover svg {
    transform: rotate(4deg);
}

/* ── Team Toggle (Founder / Co-Founder) ── */
.team-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
}

.team-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone, #787878);
    padding: 10px 24px;
    position: relative;
    transition: color 0.35s ease;
}

.team-toggle-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2.5px;
    background: linear-gradient(90deg, var(--peach-pop), var(--jamun-pop));
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-toggle-btn.active {
    color: var(--charcoal, #3D3D3D);
}

.team-toggle-btn.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ── Vertical Toggle styles ── */
@media (min-width: 992px) {
    .team-toggle.is-vertical {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: 0;
        gap: 15px;
        position: sticky;
        top: 150px;
    }

    .team-toggle.is-vertical .team-toggle-btn {
        padding: 10px 0;
        text-align: left;
        width: 100%;
        font-size: 14px;
        letter-spacing: 0.1em;
    }

    .team-toggle.is-vertical .team-toggle-btn::after {
        left: 0;
        transform: scaleX(0);
        transform-origin: left;
        width: 30px;
    }

    .team-toggle.is-vertical .team-toggle-btn.active::after {
        transform: scaleX(1);
    }

    .team-toggle.is-vertical .team-toggle-divider {
        display: none;
    }
}

/* ── Orange Bullet Points ── */
.bio-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.bio-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
    font-size: 15.5px;
    line-height: 1.5;
}

.bio-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(242, 140, 94, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
}

.bio-bullet-inner {
    width: 6px;
    height: 6px;
    background: #F28C5E;
    border-radius: 50%;
}

.team-toggle-btn:hover {
    color: var(--charcoal, #3D3D3D);
}

.team-toggle-divider {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

/* ── Panels ── */
.team-panel {
    display: none;
    animation: panelFadeIn 0.5s ease forwards;
}

.team-panel.active {
    display: block;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================
   SECTION 3: CREATIVE STORY BLOCKS
   ======================================== */
.about-story {
    padding: 100px 0;
    background: linear-gradient(180deg, #F5F1EA 0%, var(--oat-milk) 100%);
    position: relative;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.story-grid:last-child {
    margin-bottom: 0;
}

.story-grid.reverse {
    direction: rtl;
}

.story-grid.reverse>* {
    direction: ltr;
}

.story-image-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(123, 67, 154, 0.15);
}

.story-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 0.8s var(--ease);
}

.story-image-wrap:hover img {
    transform: scale(1.05);
}

.story-content {
    padding: 0 20px;
}

.story-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--peach-pop);
    color: #fff;
    border-radius: 50px;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.story-content h3 {
    font-family: var(--heading);
    font-size: clamp(36px, 4vw, 56px);
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 24px;
}

.story-content p {
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.story-content p strong {
    color: var(--jamun-pop);
    font-size: 20px;
}

@media (max-width: 991px) {

    .story-grid,
    .story-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
        margin-bottom: 60px;
    }

    .story-grid.reverse .story-image-wrap {
        order: -1;
    }
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--peach-pop), var(--jamun-pop), var(--fresh-green));
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease);
}

.timeline-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item[data-side="left"] {
    padding-right: 60px;
    text-align: right;
}

.timeline-item[data-side="right"] {
    margin-left: 50%;
    padding-left: 60px;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--peach-pop);
    border: 4px solid var(--oat-milk);
    top: 30px;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(242, 140, 94, 0.3);
}

.timeline-item[data-side="left"] .timeline-dot {
    right: -9px;
}

.timeline-item[data-side="right"] .timeline-dot {
    left: -9px;
}

.timeline-card {
    background: var(--card-white);
    border-radius: var(--radius);
    padding: 28px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
    background: linear-gradient(135deg, var(--jamun-pop), var(--peach-pop));
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.timeline-card h3 {
    font-family: var(--heading);
    font-size: 24px;
    color: var(--ink);
    letter-spacing: 0.04em;
    margin: 0 0 10px;
}

.timeline-card p {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
}


/* ========================================
   SECTION 4: VALUES
   ======================================== */
.about-values {
    padding: 100px 0;
    background: var(--oat-milk);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--peach-pop), var(--jamun-pop));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
    transform-origin: left;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(123, 67, 154, 0.12);
    border-color: rgba(242, 140, 94, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: translateY(-5px) scale(1.05);
}

.value-card:hover .value-icon svg {
    transform: rotate(3deg);
}

.value-card h3 {
    font-family: var(--heading);
    font-size: 24px;
    color: var(--charcoal);
    letter-spacing: 0.04em;
    margin: 0 0 14px;
}

.value-card p {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
}


/* ========================================
   SECTION 5: BREWING PROCESS
   ======================================== */
.about-process {
    padding: 100px 0;
    background: linear-gradient(180deg, #F5F1EA 0%, var(--oat-milk) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    font-family: var(--heading);
    font-size: 60px;
    color: rgba(123, 67, 154, 0.08);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.step-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(242, 140, 94, 0.1), rgba(123, 67, 154, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(242, 140, 94, 0.3);
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

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

.process-step:hover .step-icon-wrap {
    background: linear-gradient(135deg, rgba(242, 140, 94, 0.2), rgba(123, 67, 154, 0.2));
    transform: scale(1.08);
}

.step-icon {
    font-size: 40px;
}

.process-step h3 {
    font-family: var(--heading);
    font-size: 28px;
    color: var(--charcoal);
    margin: 0 0 12px;
}

.process-step p {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
    max-width: 240px;
    margin: 0 auto;
}

.step-connector {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--peach-pop), var(--jamun-pop));
    transform: translateY(-50%);
    z-index: 2;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -3px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--jamun-pop);
}


/* ========================================
   SECTION 6: IMPACT STATS
   ======================================== */
.about-stats {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1B1028 0%, #3A1252 40%, #5C2D82 70%, #7B439A 100%);
}

.about-stats-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(242, 140, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 67, 154, 0.2) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px 10px;
}

.cta-btn {
    padding: 14px 40px;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s var(--ease);
}

.cta-btn-primary {
    background: linear-gradient(180deg, #f5a27d 0%, #f28c5e 100%);
    color: #fff;
    border: none;
    box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.5), inset 0px -3px 4px rgba(0, 0, 0, 0.15), 0px 8px 16px rgba(242, 140, 94, 0.4);
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
    background: linear-gradient(180deg, #9b6cba 0%, #7B439A 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.4), inset 0px -3px 4px rgba(0, 0, 0, 0.15), 0px 10px 24px rgba(123, 67, 154, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: var(--peach-pop);
    border-color: var(--peach-pop);
    color: #fff;
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--heading);
    font-size: clamp(48px, 6vw, 72px);
    color: #FFFFFF;
    letter-spacing: 0.02em;
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: var(--heading);
    font-size: clamp(30px, 4vw, 48px);
    color: var(--peach-pop);
    line-height: 1;
}

.stat-label {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    margin: 12px 0 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* ========================================
   SECTION 7: PHOTO GALLERY
   ======================================== */
.about-gallery {
    padding: 100px 0;
    background: var(--oat-milk);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(27, 16, 40, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--heading);
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.06em;
}

.gallery-item.gi-tall {
    grid-row: span 2;
}

.gallery-item.gi-wide {
    grid-column: span 2;
}


/* ========================================
   SECTION 8: CTA
   ======================================== */
.about-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--jamun-pop) 0%, #9B59B6 40%, var(--peach-pop) 100%);
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-circle.c1 {
    width: 500px;
    height: 500px;
    background: #fff;
    top: -200px;
    right: -100px;
}

.cta-circle.c2 {
    width: 300px;
    height: 300px;
    background: #fff;
    bottom: -100px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-headline {
    font-family: var(--heading);
    font-size: clamp(48px, 7vw, 84px);
    color: #FFFFFF;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin: 0 0 16px;
}

.cta-sub {
    font-family: var(--body);
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s var(--ease);
    display: inline-block;
}

.cta-btn-primary {
    background: linear-gradient(180deg, #f5a27d 0%, #f28c5e 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.5), inset 0px -3px 4px rgba(0, 0, 0, 0.15), 0px 8px 16px rgba(242, 140, 94, 0.4);
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
    background: linear-gradient(180deg, #9b6cba 0%, #7B439A 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.4), inset 0px -3px 4px rgba(0, 0, 0, 0.15), 0px 10px 24px rgba(123, 67, 154, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    transform: translateY(-3px);
}


/* ========================================
   ABOUT US — RESPONSIVE
   ======================================== */

/* ── Tablets (991px) ── */
@media (max-width: 991px) {
    .about-hero {
        min-height: 70vh;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .founder-image-wrap {
        order: -1;
    }

    .founder-story {
        text-align: center;
    }

    .founder-quote {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--peach-pop);
        padding-top: 20px;
    }

    .founder-social {
        justify-content: center;
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .step-connector {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item.gi-wide {
        grid-column: span 2;
    }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
    .about-hero {
        min-height: 65vh;
        padding: 80px 0;
    }

    .about-hero-headline {
        font-size: clamp(32px, 8vw, 50px);
    }

    .about-founder {
        padding: 70px 0;
    }

    .founder-image-box {
        width: 260px;
        height: 340px;
    }

    .founder-image-ring {
        width: 290px;
        height: 290px;
    }

    .founder-name {
        font-size: 48px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item,
    .timeline-item[data-side="left"],
    .timeline-item[data-side="right"] {
        width: 100%;
        margin-left: 0;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left;
    }

    .timeline-item[data-side="left"] .timeline-dot,
    .timeline-item[data-side="right"] .timeline-dot {
        left: 11px;
        right: auto;
    }

    .about-values {
        padding: 70px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-process {
        padding: 70px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-gallery {
        padding: 70px 0;
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-item.gi-tall {
        grid-row: span 2;
    }

    .gallery-item.gi-wide {
        grid-column: span 2;
    }

    .about-cta {
        padding: 70px 0;
    }
}

/* ── Small Phones (480px) ── */
@media (max-width: 480px) {
    .about-hero {
        min-height: 60vh;
    }

    .about-hero-headline {
        font-size: clamp(28px, 8vw, 38px);
    }

    .about-hero-sub {
        font-size: 15px;
    }

    .founder-image-box {
        width: 220px;
        height: 280px;
    }

    .founder-image-ring {
        width: 250px;
        height: 250px;
    }

    .founder-name {
        font-size: 40px;
    }

    .founder-quote {
        font-size: 20px;
    }

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

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item.gi-tall,
    .gallery-item.gi-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================================
   NEW SHOP PAGE BANNER STYLES (Option 4 Design)
   ========================================================================= */
.remedy-shop-hero .hero-text-content.shop-banner-new-style {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 650px;
    padding-left: 2rem;
    gap: 1.25rem;
}

.shop-banner-headline-group {
    display: flex;
    flex-direction: column;
}

/* Add Bangers font for the new Shop banner style */
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

.shop-banner-title.banner-3-style {
    font-family: 'Bangers', cursive, 'Bebas Neue', sans-serif;
    color: #ffffff;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.shop-banner-title.banner-3-style .banner-line-1,
.shop-banner-title.banner-3-style .banner-line-2 {
    display: flex;
    align-items: center;
    gap: 0.3em;
    font-size: clamp(4rem, 7vw, 6.5rem);
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.shop-banner-title.banner-3-style .highlight-purple {
    background-color: #7B439A;
    /* Deep purplish matched to banner 3 */
    color: #ffffff;
    padding: 0.1em 0.25em 0.05em 0.25em;
    display: inline-block;
    line-height: 1;
    border-radius: 0px;
    /* Sharp blocky background like the image */
}

.shop-banner-title.banner-3-style .banner-line-2 {
    margin-top: 0.1em;
}

.shop-banner-title {
    font-family: var(--heading), 'Bebas Neue', sans-serif;
    color: #ffffff;
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.shop-banner-title .banner-line-1,
.shop-banner-title .banner-line-2 {
    display: inline-block;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    letter-spacing: 0.02em;
}

.shop-banner-title .highlight-purple {
    background-color: #6a1b9a;
    /* Deep purple background for highlighted text */
    color: #ffffff;
    padding: 0 0.2em;
    border-radius: 4px;
    /* Slight rounding based on reference */
    display: inline-block;
    line-height: 1;
}

.shop-banner-subtitle {
    font-family: var(--body), 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--ink, #2C2C2C);
    line-height: 1.4;
    font-weight: 500;
    margin: 0.5rem 0 1.5rem 0;
}

.shop-banner-btn {
    display: inline-block;
    font-family: var(--body), 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink, #2C2C2C);
    background-color: rgba(255, 255, 255, 0.4);
    /* Glass/translucent white */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.shop-banner-btn:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Ensure background image covers nicely */
.remedy-shop-hero .remedy-hero-bg {
    position: relative;
    width: 100%;
    min-height: 500px;
    /* Adjust based on banner ratio */
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 0;
}

.remedy-shop-hero .hero-image-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.remedy-shop-hero .hero-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center right;
    /* Keep cans in view */
    transform: none !important;
}

/* Ensure text sits above the image */
.remedy-shop-hero .hero-text-content.shop-banner-new-style {
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .remedy-shop-hero .hero-text-content.shop-banner-new-style {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .remedy-shop-hero .remedy-hero-bg {
        flex-direction: column-reverse;
        /* Text below or over center depending on img */
        align-items: center;
        text-align: center;
        padding-top: 2rem;
    }

    .remedy-shop-hero .hero-text-content.shop-banner-new-style {
        align-items: center;
        padding-left: 0;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.7);
        /* Slightly opaque bg on mobile for readability */
        backdrop-filter: blur(10px);
        margin: 1rem;
        border-radius: 12px;
        width: calc(100% - 2rem);
    }

    .shop-banner-title {
        align-items: center;
    }

    .shop-banner-subtitle {
        text-align: center;
    }
}

.remedy-shop-hero {
    background: none !important;
}

/* ===================================================================
   REMEDY-STYLE CUSTOMER REVIEWS (Detailed Visual Match 4.0 - Compact)
   =================================================================== */
:root {
    --charcoal: #3D3D3D;
}

.reset-reviews-section {
    padding: 10px 4% 30px;
    /* Reduced vertical padding */
    background-color: var(--oat-milk, #FAF7EE);
}

.reset-reviews-container {
    max-width: 1100px;
    /* Increased from 1000px */
    margin: 0 auto;
}

.reset-reviews-title {
    font-family: var(--heading, 'Montserrat', sans-serif);
    font-size: 34px;
    /* Premium prominent size */
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 15px;
    /* Reduced from 25px */
    letter-spacing: 0.05em;
}

/* Summary Block */
.reset-reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr 240px;
    /* Balanced layout */
    gap: 30px;
    align-items: center;
    padding: 20px 0;
    /* Slightly increased padding */
    margin-bottom: 25px;
    /* Increased margin */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.review-summary-avg {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avg-rating-value {
    width: 70px;
    height: 70px;
    background: var(--charcoal);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    /* Robust size */
    font-weight: 800;
    font-family: var(--heading);
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.avg-rating-stars {
    display: flex;
    gap: 4px;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.review-summary-avg .soft-star {
    width: 18px !important;
    height: 18px !important;
}

.avg-rating-count {
    font-size: 9px;
    color: #AAA;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Soft Star Styling */
.soft-star {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.soft-star.filled {
    fill: currentColor;
}

/* Bars Column */
.review-summary-bars {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

.bar-stars {
    min-width: 65px;
    display: flex;
    gap: 2px;
    color: var(--charcoal);
}

.bar-track {
    flex: 1;
    height: 6px;
    /* Thicker premium bars */
    background: #EAEAEA;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--charcoal);
    border-radius: 10px;
}

.bar-pct {
    min-width: 30px;
    font-size: 9px;
    color: #BBB;
    font-weight: 700;
    text-align: right;
}

/* Right Column: Actions */
.review-actions-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.review-sort-btn {
    cursor: pointer;
    flex-shrink: 0;
}

.review-actions-wrap .pd-btn-outline {
    background: var(--peach-pop) !important;
    border: none !important;
    color: #FFF !important;
    font-size: 12px !important;
    padding: 10px 24px !important;
    border-radius: 100px !important;
    font-family: var(--heading) !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

.review-actions-wrap .pd-btn-outline:hover {
    background: var(--jamun-pop) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(123, 67, 154, 0.3) !important;
}

/* Review List */
.reset-reviews-list {
    margin-top: 40px;
    /* Added gap before reviews */
}

.review-card {
    padding: 20px 0;
    /* Slightly more padding for breathability */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Lighter, more subtle line */
}

.review-card:first-child {
    border-top: none;
    /* No line between summary and first review */
    padding-top: 0;
}

.review-card:last-child {
    border-bottom: none;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.review-author {
    font-family: var(--heading);
    font-size: 15px;
    /* More readable */
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.review-date {
    font-size: 10px;
    color: #AAA;
    font-weight: 700;
}

.review-stars {
    color: var(--charcoal);
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
}

.review-content {
    font-family: var(--body);
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    /* Better readability */
}

.reset-reviews-list .soft-star {
    width: 16px !important;
    height: 16px !important;
}

.review-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    /* Reduced from 40px */
}

.review-pagination .page-numbers {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EEE;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.2s ease;
}

.review-pagination .page-numbers.active {
    background: var(--charcoal);
    color: #FFF;
    border-color: var(--charcoal);
}

/* Form Styling - Clean Remedy Look */
#reset-review-form-wrapper {
    background: transparent;
    border-top: 1px solid #EEE;
    padding: 60px 0;
    margin-bottom: 40px;
}

#reset-review-form-wrapper .pd-section-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.review-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.comment-form-rating select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #DDD;
    border-radius: 0;
    font-family: var(--body);
    font-size: 14px;
    background: #FFF;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--charcoal);
    outline: none;
}

.comment-form-rating {
    margin-bottom: 20px;
}

.pd-btn-outline {
    background-color: var(--peach-pop) !important;
    color: #FFF !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 10px 24px !important;
    font-family: var(--heading) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.pd-btn-outline:hover {
    background-color: var(--jamun-pop) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(123, 67, 154, 0.3) !important;
    color: #FFF !important;
}

.pd-btn-primary {
    background: var(--peach-pop) !important;
    color: #FFF !important;
    padding: 12px 30px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 100px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pd-btn-primary:hover {
    background: var(--jamun-pop) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(123, 67, 154, 0.2);
}

/* Verified Purchase Notice */
.verified-purchase-notice {
    text-align: center;
    padding: 60px;
    background: #FFF;
    border: 1px solid #EEE;
    border-radius: 12px;
}

.verified-purchase-notice p {
    font-size: 16px;
    color: var(--stone);
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .review-form-fields {
        grid-template-columns: 1fr;
    }
}



/* Order Details Enhancements */
.pd-write-review-btn {
    display: inline-block;
    font-size: 12px;
    color: var(--peach-pop) !important;
    background: transparent !important;
    padding: 0 !important;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.pd-write-review-btn:hover {
    color: var(--jamun-pop) !important;
    transform: none !important;
}

/* Fix Order Again Button UI and Alignment */
.pd-details-grid .order-again {
    margin: 40px 0 0 !important;
    padding: 0 !important;
    text-align: left !important;
}


.pd-details-grid .order-again .button {
    background-color: var(--peach-pop) !important;
    color: #FFF !important;
    border-radius: 100px !important;
    padding: 14px 40px !important;
    font-family: var(--heading) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    border: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.pd-details-grid .order-again .button:hover {
    background-color: var(--jamun-pop) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(123, 67, 154, 0.3) !important;
    color: #FFF !important;
}

/* ===================================================================
   HOMEPAGE MOBILE RESPONSIVENESS FIXES (CLEAN & PERFECTED)
   =================================================================== */
@media (max-width: 768px) {

    /* 1. Hero Banner Fix - Attach to Header */
    .hero-reference {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .hero-ref-container {
        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        margin-top: 0 !important;
        padding: 0 !important;
    }

    .hero-banner-fullbleed {
        background-position: top center !important;
        background-size: cover !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero-headline {
        font-size: clamp(30px, 8vw, 36px) !important;
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
    }

    .hero-subheadline {
        font-size: 14px !important;
        margin-top: 5px !important;
        margin-bottom: 20px !important;
    }

    .hero-content.hero-left {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-top: 15px !important;
    }

    .btn-hero-primary {
        margin-bottom: 10px;
    }

    /* Tabs Fix - EXACT DESKTOP PILL STYLE */
    .shop-tabs {
        display: inline-flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: auto !important;
        max-width: 95% !important;
        margin: 0 auto 30px !important;
        background: #FFFFFF !important;
        padding: 0 !important;
        border-radius: 13px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
        overflow: hidden !important;
        border: 1px solid #E0E0E0 !important;
    }

    .shop-tab {
        flex: 1 !important;
        min-width: auto !important;
        padding: 10px 15px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
        text-align: center !important;
        line-height: 1.2 !important;
        border-radius: 0 !important;
        margin: 0 !important;
        font-family: var(--heading) !important;
    }

    .shop-tab.active {
        background: #F28C5E !important;
        color: #FFFFFF !important;
    }

    /* 2. Product Showcase - Desktop Identity on Mobile */
    .product-grid {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 12px !important;
        padding: 0 10px 20px 10px !important;
        scrollbar-width: none !important;
        justify-content: flex-start !important;
    }

    .product-grid::-webkit-scrollbar {
        display: none !important;
    }

    .product-card {
        flex: 0 0 180px !important;
        scroll-snap-align: center !important;
        margin-bottom: 0 !important;
        padding: 10px !important;
        background: transparent !important;
        position: relative !important;
    }

    .image-stack {
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        border-radius: 12px !important;
        margin-bottom: 12px !important;
        position: relative !important;
        overflow: hidden !important;
        display: block !important;
        background: #F5F1EA !important;
    }

    .image-stack img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        /* Fill square box like desktop */
        padding: 0 !important;
        margin: 0 !important;
        transition: opacity 0.4s ease !important;
    }

    .image-stack .img-hover {
        opacity: 0 !important;
        z-index: 2 !important;
    }

    .product-card:active .img-hover,
    .product-card:hover .img-hover {
        opacity: 1 !important;
    }

    .product-card:active .img-default,
    .product-card:hover .img-default {
        opacity: 0 !important;
    }

    .image-stack .twin-stack,
    .image-stack .triple-stack {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .product-name .product-title-text {
        font-size: 13px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
    }

    .price-row {
        font-size: 14px !important;
        margin-top: 5px !important;
    }

    .loop-add-to-cart-wrap .button {
        padding: 8px 10px !important;
        font-size: 11px !important;
        border-radius: 10px !important;
        width: 100% !important;
        margin-top: 10px !important;
    }

    .grid-arrow {
        width: 32px !important;
        height: 32px !important;
        top: 30% !important;
        display: flex !important;
    }

    /* 3. Brand Philosophy */
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px 10px !important;
        padding: 0 10px !important;
        margin-bottom: 50px !important;
    }

    .phil-icon-container {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 10px !important;
    }

    .phil-icon-container img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    /* 4. TestimonialsCarousel */
    .testimonial-slide {
        padding: 20px !important;
        width: 100% !important;
    }

    .testimonial-text {
        font-size: 16px !important;
    }

    /* 5. Blogs/Journal Section - Resized for Mobile */
    /* 5. Blogs/Journal Section - Take 2 */
    section#blogs .blogs-flex-container {
        flex-direction: column !important;
        padding: 40px 0 20px 0 !important;
        /* Slightly more vertical breathing room */
        gap: 15px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    section#blogs .blogs-header-left {
        width: 100% !important;
        padding: 0 20px !important;
        /* Move horizontal padding here */
        text-align: center !important;
    }

    section#blogs .blogs-label .label-text {
        font-family: var(--heading) !important;
    }

    section#blogs .blogs-slider-container {
        position: relative !important;
        width: 100% !important;
        padding: 0 !important;
        margin-top: 10px !important;
    }

    section#blogs .blogs-slider {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 0 20px 20px 20px !important;
        /* Fixed 20px horizontal padding */
        scroll-padding: 0 20px !important;
        scrollbar-width: none !important;
    }

    section#blogs .blogs-slider::-webkit-scrollbar {
        display: none !important;
    }

    section#blogs .blog-entry-card {
        flex: 0 0 clamp(280px, 82vw, 340px) !important;
        /* Slightly narrower to show next card */
        scroll-snap-align: start !important;
        /* Changed from center to fix "tucked in" look */
        min-height: auto !important;
        border-radius: 16px !important;
        margin: 0 !important;
        background: #FFF !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
    }

    /* Spacer for bleeding edge */
    section#blogs .blogs-slider::after {
        content: '';
        flex: 0 0 20px;
        width: 20px;
        display: block;
    }

    section#blogs .blog-slider-progress {
        display: block !important;
        height: 6px !important;
        /* Slightly thicker bar */
        margin: 10px auto 30px !important;
        max-width: 80% !important;
        background: rgba(0, 0, 0, 0.08) !important;
        position: relative !important;
        z-index: 5 !important;
        border-radius: 10px !important;
    }

    section#blogs .progress-bar-fill {
        background-color: var(--charcoal) !important;
        height: 100% !important;
        border-radius: 10px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 30% !important;
        /* Initial width handled by JS */
        transition: left 0.3s ease, width 0.3s ease !important;
    }

    section#blogs .blog-card-image {
        height: 220px !important;
    }

    section#blogs .blog-card-content {
        padding: 16px !important;
    }

    section#blogs .blog-entry-title {
        font-family: var(--heading) !important;
        font-size: 16px !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    section#blogs .blog-entry-desc {
        font-size: 13px !important;
        line-height: 1.5 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        margin-bottom: 16px !important;
    }

    section#blogs .blog-nav-arrow {
        display: flex !important;
        /* Force flex on mobile */
        width: 44px !important;
        height: 44px !important;
        z-index: 100 !important;
        background: #FFF !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        position: absolute !important;
        top: 35% !important;
        /* Centered relative to card image area */
        transform: translateY(-50%) !important;
        justify-content: center !important;
        align-items: center !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        border-radius: 50% !important;
        opacity: 1 !important;
        /* Ensure they are visible if conditions met */
        visibility: visible !important;
        pointer-events: auto !important;
        color: var(--charcoal) !important;
    }

    section#blogs .blog-nav-arrow.prev {
        left: 10px !important;
    }

    section#blogs .blog-nav-arrow.next {
        right: 10px !important;
    }

    /* 6. Social / Instagram Section - Resized for Mobile */
    .social-section {
        padding: 50px 0 60px 0 !important;
        overflow: hidden !important;
    }

    .social-title {
        font-size: 26px !important;
        line-height: 1 !important;
        margin-bottom: 12px !important;
    }

    .social-handle {
        font-size: 16px !important;
        margin-bottom: 30px !important;
        color: var(--peach-pop) !important;
        text-transform: uppercase !important;
        font-weight: 700 !important;
    }

    .social-slider-wrap {
        padding: 0 !important;
    }

    .social-slider {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 0 40px !important;
        /* Large padding to center snapping */
        scroll-padding: 0 40px !important;
        scrollbar-width: none !important;
    }

    .social-slider::-webkit-scrollbar {
        display: none !important;
    }

    .social-card {
        flex: 0 0 240px !important;
        /* Larger cards */
        min-width: 240px !important;
        max-width: 240px !important;
        aspect-ratio: 9/16 !important;
        scroll-snap-align: center !important;
        /* Center snapping for "peek" effect */
        border-radius: 20px !important;
        overflow: hidden !important;
    }
}



/* ========================================================================
   ██████ SINGLE PRODUCT PAGE — MOBILE & TABLET RESPONSIVE (V2) ██████
   Breakpoints: 900px (Tablet) | 768px (Portrait Tab) | 480px (Mobile)
   ======================================================================== */

/* ============================================================
   SINGLE PRODUCT PAGE — MOBILE & TABLET RESPONSIVE (V2)
   Classes: .reset-sp-* (from paste.txt PHP template)
   Breakpoints: 900px (Tablet) | 768px (Portrait Tab) | 480px (Mobile)
   ============================================================ */

/* ══════════════════════════════════════════════════
   900px — Tablet  (stacks layout, horizontal thumbs)
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {

    /* Wrapper */
    .reset-sp-wrapper {
        padding: 16px 20px 40px !important;
    }

    /* Breadcrumbs */
    .reset-sp-breadcrumbs {
        font-size: 11px !important;
        margin-bottom: 14px !important;
    }

    /* ── Two-column → single column ── */
    .reset-sp-layout {
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* Gallery: full width, de-sticky */
    .reset-sp-gallery {
        max-width: 100% !important;
        width: 100% !important;
        position: static !important;
    }

    .reset-sp-main-image {
        border-radius: 16px !important;
        margin-bottom: 12px !important;
    }

    .reset-sp-main-image img {
        aspect-ratio: 1 / 1 !important;
        object-fit: contain !important;
        width: 100% !important;
    }

    /* Thumbnails → horizontal scroll strip */
    .reset-sp-thumbnails {
        display: flex !important;
        flex-direction: row !important;
        gap: 10px !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        margin-top: 10px !important;
        margin-bottom: 20px !important;
        padding-bottom: 4px !important;
    }

    .reset-sp-thumbnails::-webkit-scrollbar { display: none !important; }

    .reset-sp-thumb {
        flex: 0 0 72px !important;
        width: 72px !important;
        height: 72px !important;
    }

    /* Info column: full width */
    .reset-sp-info {
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Summary Card */
    .reset-sp-summary-card {
        padding: 28px 24px !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    }

    .reset-sp-title {
        font-size: 26px !important;
        margin-bottom: 12px !important;
    }

    .reset-sp-description {
        font-size: 14px !important;
        margin-bottom: 14px !important;
    }

    .cb-hook-main { font-size: 16px !important; }
    .cb-hook-sub  { font-size: 14px !important; }

    /* Key Benefits */
    .reset-sp-key-benefits {
        margin-top: 12px !important;
        margin-bottom: 16px !important;
    }
    .reset-sp-key-benefits ul li { font-size: 13px !important; }

    /* Pack Selector */
    .reset-sp-pack-label {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }

    .reset-sp-pack-options {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        gap: 10px !important;
        padding-bottom: 6px !important;
        margin-bottom: 16px !important;
    }
    .reset-sp-pack-options::-webkit-scrollbar { display: none !important; }

    .reset-sp-pack-card {
        flex: 0 0 88px !important;
        width: 88px !important;
        height: 110px !important;
        padding: 8px 6px !important;
    }

    .reset-sp-pack-card .reset-sp-pack-icon {
        min-height: 70px !important;
        margin-bottom: 6px !important;
    }

    .remedy-style-svg {
        width: 44px !important;
        height: 72px !important;
    }

    .reset-sp-pack-card .reset-sp-pack-text {
        font-size: 11px !important;
        letter-spacing: 0.02em !important;
    }

    /* Price */
    .reset-sp-price {
        font-size: 18px !important;
        margin-bottom: 6px !important;
    }

    .reset-sp-separator { margin: 16px 0 !important; }

    /* Qty + Add to Cart row */
    .reset-sp-qty-row {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
    }

    .reset-sp-quantity { flex-shrink: 0 !important; }

    .reset-sp-qty-btn {
        width: 36px !important;
        height: 42px !important;
        font-size: 16px !important;
    }

    .reset-sp-qty-input {
        width: 32px !important;
        font-size: 14px !important;
    }

    .reset-sp-add-btn {
        flex: 1 !important;
        height: 42px !important;
        font-size: 14px !important;
        letter-spacing: 0.08em !important;
    }

    /* Shipping notice */
    .reset-sp-shipping-notice {
        font-size: 11px !important;
        padding: 10px 0 !important;
        margin-top: 14px !important;
        gap: 6px !important;
    }

    /* Accordions */
    .reset-sp-accordions { margin-top: 20px !important; }

    .reset-sp-accordion-header {
        font-size: 14px !important;
        padding: 14px 0 !important;
    }

    .reset-sp-accordion-body { font-size: 13px !important; }

    /* Benefits strip */
    .reset-sp-benefits        { padding: 30px 16px 40px !important; }
    .reset-sp-benefits-grid   { gap: 16px !important; }
    .reset-sp-benefit-item    { width: clamp(72px, 12vw, 110px) !important; }

    /* Sticky bar */
    .reset-sp-sticky-inner {
        padding: 0 16px !important;
        gap: 12px !important;
    }
    .reset-sp-sticky-name  { font-size: 14px !important; }
    .reset-sp-sticky-price { font-size: 12px !important; }
    .reset-sp-sticky-btn {
        min-width: 150px !important;
        height: 40px !important;
        font-size: 13px !important;
    }

    /* Related Products */
    .reset-sp-related { padding: 30px 20px 60px !important; }
    .reset-sp-related-title {
        font-size: 26px !important;
        margin-bottom: 20px !important;
    }
    .reset-sp-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}


/* ══════════════════════════════════════════════════
   768px — Portrait Tablet / Large Phone
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {

    .reset-sp-wrapper { padding: 12px 16px 36px !important; }

    .reset-sp-breadcrumbs {
        font-size: 10px !important;
        margin-bottom: 10px !important;
    }

    .reset-sp-thumb {
        flex: 0 0 60px !important;
        width: 60px !important;
        height: 60px !important;
    }

    .reset-sp-summary-card {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }

    .reset-sp-title { font-size: 22px !important; }
    .cb-hook-main  { font-size: 15px !important; }

    .reset-sp-pack-card {
        flex: 0 0 80px !important;
        width: 80px !important;
        height: 100px !important;
        padding: 6px 4px !important;
    }

    .reset-sp-pack-card .reset-sp-pack-icon { min-height: 56px !important; }

    .remedy-style-svg {
        width: 36px !important;
        height: 60px !important;
    }

    .reset-sp-pack-card .reset-sp-pack-text {
        font-size: 10px !important;
        letter-spacing: 0 !important;
    }

    .reset-sp-price { font-size: 17px !important; }

    .reset-sp-qty-btn {
        width: 34px !important;
        height: 40px !important;
    }
    .reset-sp-qty-input {
        width: 28px !important;
        font-size: 13px !important;
    }
    .reset-sp-add-btn {
        height: 40px !important;
        font-size: 13px !important;
    }

    .reset-sp-shipping-notice { font-size: 10px !important; }

    .reset-sp-accordion-header {
        font-size: 13px !important;
        padding: 12px 0 !important;
    }
    .reset-sp-accordion-body { font-size: 12px !important; }

    /* Related — keep 2 col */
    .reset-sp-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .reset-sp-related-title { font-size: 22px !important; }

    /* Sticky bar: tighter */
    .reset-sp-sticky-bar  { padding: 10px 0 !important; }
    .reset-sp-sticky-btn {
        min-width: 130px !important;
        height: 38px !important;
        font-size: 12px !important;
    }
}


/* ══════════════════════════════════════════════════
   480px — Small Phones
   ══════════════════════════════════════════════════ */
@media (max-width: 480px) {

    .reset-sp-wrapper { padding: 10px 12px 32px !important; }

    .reset-sp-breadcrumbs {
        font-size: 9px !important;
        margin-bottom: 8px !important;
    }

    /* Gallery: smaller thumbnails */
    .reset-sp-main-image { border-radius: 12px !important; }

    .reset-sp-thumb {
        flex: 0 0 52px !important;
        width: 52px !important;
        height: 52px !important;
    }

    /* Summary card: minimal padding */
    .reset-sp-summary-card {
        padding: 16px 14px !important;
        border-radius: 12px !important;
    }

    .reset-sp-title {
        font-size: 19px !important;
        letter-spacing: 0.03em !important;
        margin-bottom: 8px !important;
    }

    .cb-hook-main { font-size: 14px !important; }
    .cb-hook-sub  { font-size: 12px !important; }

    /* Key Benefits */
    .reset-sp-key-benefits { margin-top: 8px !important; margin-bottom: 12px !important; }
    .reset-sp-key-benefits strong { font-size: 11px !important; }
    .reset-sp-key-benefits ul li  { font-size: 12px !important; }

    /* Pack options: wrap 3-per-row on small screens */
    .reset-sp-pack-options {
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        gap: 8px !important;
        justify-content: flex-start !important;
    }

    .reset-sp-pack-card {
        flex: 0 0 calc(33.33% - 6px) !important;
        width: calc(33.33% - 6px) !important;
        height: 88px !important;
        padding: 6px 4px !important;
    }

    .reset-sp-pack-card .reset-sp-pack-icon {
        min-height: 48px !important;
        margin-bottom: 4px !important;
    }

    .remedy-style-svg {
        width: 28px !important;
        height: 48px !important;
    }

    .reset-sp-pack-card .reset-sp-pack-text { font-size: 9px !important; }

    /* Price */
    .reset-sp-price      { font-size: 16px !important; }
    .reset-sp-price del  { font-size: 13px !important; }

    .reset-sp-separator { margin: 12px 0 !important; }

    /* Qty + ATC */
    .reset-sp-qty-row { gap: 8px !important; }

    .reset-sp-qty-btn {
        width: 32px !important;
        height: 38px !important;
        font-size: 15px !important;
    }
    .reset-sp-qty-input {
        width: 26px !important;
        font-size: 13px !important;
    }
    .reset-sp-add-btn {
        height: 38px !important;
        font-size: 12px !important;
        letter-spacing: 0.05em !important;
        padding: 0 12px !important;
    }

    /* Shipping notice */
    .reset-sp-shipping-notice {
        font-size: 9px !important;
        padding: 8px 0 !important;
        margin-top: 10px !important;
    }

    /* Accordions */
    .reset-sp-accordions { margin-top: 16px !important; }

    .reset-sp-accordion-header {
        font-size: 12px !important;
        padding: 10px 0 !important;
    }
    .reset-sp-accordion-icon { font-size: 16px !important; }
    .reset-sp-accordion-body {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }

    /* Benefits: compact 3-per-row */
    .reset-sp-benefits       { padding: 20px 12px 28px !important; }
    .reset-sp-benefits-grid  { gap: 10px !important; }
    .reset-sp-benefit-item   { width: clamp(58px, 24vw, 88px) !important; }

    /* Sticky bar: very compact */
    .reset-sp-sticky-bar   { padding: 8px 0 !important; }
    .reset-sp-sticky-inner {
        padding: 0 12px !important;
        gap: 8px !important;
    }
    .reset-sp-sticky-name  { font-size: 12px !important; }
    .reset-sp-sticky-price { font-size: 11px !important; }
    .reset-sp-sticky-btn {
        min-width: 110px !important;
        height: 36px !important;
        font-size: 11px !important;
        padding: 0 14px !important;
    }

    /* Related Products */
    .reset-sp-related { padding: 20px 12px 44px !important; }
    .reset-sp-related-title {
        font-size: 20px !important;
        margin-bottom: 14px !important;
    }
    .reset-sp-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .reset-sp-related-name  { font-size: 12px !important; }
    .reset-sp-related-price { font-size: 12px !important; }

    .reset-sp-related-card a.button.add_to_cart_button,
    .reset-sp-related-card .add_to_cart_button {
        font-size: 11px !important;
        padding: 10px 8px !important;
    }
}
