@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600&family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ===================================================================
   CLIENT WEBSITE â€” "HEALTH-ADE MEETS OLIPOP" 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: 'Oswald', sans-serif;
    --body: 'Inter', sans-serif;
    --handwrite: 'Caveat', cursive;
    --max-w: 1200px;
    --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: 17px;
    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.03em;
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   HEADER
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 89px;
    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: 10px;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-start;
    z-index: 10;
}

.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: 16px;
    font-weight: 500;
    color: #2D2D2D;
    letter-spacing: 0px;
    text-transform: uppercase;
    padding: 6px 8px;
    transition: all 0.25s ease;
    text-decoration: none !important;
    position: relative;
}

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

.nav-link:hover {
    color: #EE3F46;
    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: #EE3F46 !important;
}

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

.logo-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 160px;
    height: 160px;
    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: 80px;
    height: 80px;
    top: -14px;
    box-shadow: none;
    border: none;
    background: transparent;
    letter-spacing: -0.3px;
}

.logo-lets {
    font-family: var(--body);
    font-size: 6.5px;
    font-weight: 700;
    letter-spacing: 3px;
    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: 2px;
    margin-bottom: 0;
}

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

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

.cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cranberry-pop);
    color: #FFF;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(210, 54, 71, 0.4);
}

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

.dropdown-menu {
    position: fixed;
    top: 89px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    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%;
}

.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: 13px;
    font-weight: 500;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.dropdown-category-list a i {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    transition: all 0.2s ease;
}

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

.dropdown-category-list a:hover,
.dropdown-category-list a.active {
    color: var(--deep-green);
    font-weight: 700;
}

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

.dropdown-title {
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 1px;
    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;
}

.shop-all-link:hover {
    color: var(--deep-green);
}

.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: 14px;
    font-weight: 500;
    color: var(--charcoal);
    transition: all 0.2s ease;
}

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

.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;
    transform: scale(1.1);
    transition: transform 0.4s var(--ease);
}

.dropdown-menu:hover .dropdown-image-col img {
    transform: scale(1);
}

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

.hero-ref-container {
    width: 100%;
    height: 569px;
}

.hero-banner-fullbleed {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 80px;
    image-rendering: -webkit-optimize-contrast;
}

@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-headline {
    font-family: var(--heading);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.text-accent {
    color: #EE3F46;
}

.hero-subheadline {
    font-family: var(--body);
    font-size: 19px;
    font-weight: 500;
    color: var(--charcoal);
    max-width: 520px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

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

.btn-hero-primary:hover {
    background: #EE3F46;
    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: #EE3F46;
    border-color: #EE3F46;
    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.03em;
}

.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: 3px;
    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;
}

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

.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: 24px;
    letter-spacing: normal;
    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: #EE3F46;
    color: #FFFFFF;
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s var(--ease);
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 20px 0;
}

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

.image-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    margin-bottom: 12px;
    background: transparent !important;
}

.image-stack img.img-default {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s var(--ease);
}

.image-stack img.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s var(--ease);
    z-index: 2;
}

.product-card:hover .img-default {
    opacity: 0;
    transform: translate(-50%, -55%) scale(0.95);
}

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

.card-info {
    padding: 0 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-name {
    font-family: var(--heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: -4px;
    color: var(--ink);
    letter-spacing: normal;
}

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

.product-price {
    font-family: var(--body);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.old-price {
    display: none;
}

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

.btn-add-basket {
    background: #EE3F46;
    color: #FFFFFF;
    font-family: var(--heading);
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 19px 31px;
    border-radius: 13px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(238, 63, 70, 0.3);
    transition: all 0.3s ease;
}

.btn-add-basket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(238, 63, 70, 0.4);
    background: #F45258;
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   BRAND PHILOSOPHY
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
.brand-philosophy {
    padding: 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(32px, 5vw, 48px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.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(6, 1fr);
    gap: 20px;
    max-width: var(--max-w);
    margin: 0 auto 80px;
    padding: 0 20px;
}

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

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

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

.phil-icon-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.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;
    transition: all 0.3s ease;
}

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

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

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

.testimonials-highlight .header-title {
    color: #FFF;
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    height: 450px;
    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 {
    width: 20px;
    height: 20px;
}

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

.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: 1px;
    color: var(--pale-sage);
}

.user-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--body);
}

.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: #EE3F46;
    transform: scale(1.4);
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   BLOGS â€” Peach section with wave at bottom
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
/* Blogs padding adjust */
/* Blogs - Normal top spacing */
.blogs-section {
    padding: 60px 0 120px;
    /* bottom 120px */
    background: #FFFCF9;
    position: relative;
    overflow: hidden;
}


.blogs-editorial-bg {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.vertical-text {
    font-family: var(--heading);
    font-size: clamp(100px, 15vw, 220px);
    font-weight: 900;
    color: rgba(45, 106, 79, 0.04);
    /* Very subtle deep green */
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.blogs-grid-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 280px 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px 24px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.blogs-header-box {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 24px;
}

.editorial-accent {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--leaf-green);
    margin-bottom: 12px;
}

.editorial-title {
    font-family: var(--heading);
    font-size: clamp(56px, 7vw, 96px);
    line-height: 0.85;
    font-weight: 900;
    color: var(--charcoal) !important;
    /* Shop title jaisa */
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.editorial-intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--stone);
    margin-bottom: 24px;
    max-width: 280px;
}

.editorial-cta {
    font-family: var(--heading);
    font-weight: 800;
    font-size: 13px;
    color: var(--deep-green);
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: all 0.3s ease;
}

.editorial-cta:hover {
    color: #EE3F46;
}

/* Featured Card Styling */
.blog-card.featured {
    grid-column: 2 / span 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    background: #FFF;
    border: 1px solid #EEE;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.blog-card.featured .blog-image {
    aspect-ratio: auto;
    height: 100%;
}

.blog-card.featured .blog-info {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card.featured .blog-title {
    font-size: 24px;
    margin-bottom: 12px;
}

/* Compact Cards Styling */
.blog-card.compact {
    background: transparent;
    border: none;
    box-shadow: none;
    grid-row: 2;
}

.blog-card.compact:nth-of-type(3) {
    grid-column: 2;
}

.blog-card.compact:nth-of-type(4) {
    grid-column: 3;
}

.blog-card.compact .blog-image {
    border-radius: 4px;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-height: 180px;
    overflow: hidden;
}

.blog-card.compact .blog-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card.compact .blog-title {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Global Blog Elements */
.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: #FFF;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--deep-green);
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-date {
    font-size: 11px;
    font-weight: 700;
    color: var(--leaf-green);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: block;
}

.blog-card {
    position: relative;
    transition: transform 0.4s var(--ease);
}

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

.blog-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

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

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   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%, #7B439A 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.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@keyframes bannerFloat {

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

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

/* btn-read-more */
.btn-read-more {
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    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: #EE3F46;
}

/* â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   âœ… 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: 100px 0 80px;
    /* top 100px */
    background: var(--oat-milk);
    text-align: center;
    position: relative;
}



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



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

.social-header {
    margin-bottom: 40px;
    padding-top: 0;
    /* 0 rakho kyunki social-section 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: var(--deep-green);
    color: #FFF;
    transform: translateY(-50%) scale(1.1);
}

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

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

.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: #2d2826;
    padding: 96px 0 40px;
    color: var(--chalk);
    border-radius: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 2.5fr;
    gap: 32px;
    margin-bottom: 64px;
}

.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: var(--pale-sage);
}

.footer-col h4 {
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--pale-sage);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

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

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

.footer-col ul li a:hover {
    color: #EE3F46;
    transform: translateX(4px);
}

.newsletter-box h4 {
    font-family: var(--heading);
    font-size: 24px;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 10px;
}

.newsletter-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    border-radius: 100px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}


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

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

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

/* NEW: White button with black arrow */
.btn-newsletter-submit {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #FFF !important;
    /* white background */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    /* shop-now jaisa smooth */
    margin: 4px;
}

.btn-newsletter-submit i {
    color: var(--deep-green) !important;
    /* black arrow */
    width: 20px;
    height: 20px;
}

/* Hover: shop-now style (red bg + white arrow) */
.btn-newsletter-submit:hover {
    background: #EE3F46 !important;
    /* red like shop-now */
    transform: translateY(-3px);
}

.btn-newsletter-submit:hover i {
    color: #FFF !important;
    /* white arrow on hover */
}

.btn-newsletter-submit svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.footer-socials a:hover {
    background: #EE3F46 !important;
    /* red background */
    color: #FFF !important;
    transform: translateY(-3px);
}

.footer-contact {
    text-align: right;
}

.footer-contact h5 {
    display: none;
}

.footer-contact p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact a {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.legal-links a:hover {
    color: #EE3F46;
}

/* â”â”â” Mobile Nav â”â”â” */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-green);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

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

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-link {
    font-family: var(--heading);
    font-size: 40px;
    font-weight: 800;
    color: #FFF;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-link:hover {
    color: var(--fresh-green);
}

/* â”â”â” 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(--cranberry-pop);
    letter-spacing: 1px;
}

.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
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */
@media (max-width: 1200px) {
    .product-grid {
        gap: 20px;
    }

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

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

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

    .blogs-header-box {
        grid-column: 1;
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

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

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

    .footer {
        border-radius: 0 !important;
    }
}

@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-left {
        display: none;
    }

    .header {
        padding: 0 20px;
        width: calc(100% - 32px);
    }

    .hamburger {
        display: flex !important;
        width: 24px;
        height: 16px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 2000;
    }

    .hamburger span {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background: var(--deep-green);
        transition: all 0.25s ease;
    }

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

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .header {
        top: 8px;
        height: 56px;
        width: calc(100% - 24px);
    }

    .header-inner {
        justify-content: space-between;
        padding: 0 16px;
    }

    .header-center {
        position: static;
        transform: none;
        left: auto;
        top: auto;
        order: -1;
    }

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

    .header.scrolled .logo-reset {
        width: 50px;
        height: 50px;
    }

    .hero-ref-container {
        min-height: 380px;
    }

    .hero-banner-fullbleed {
        padding: 80px 24px 40px;
        background-position: center center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(15, 30, 22, 0.85) 0%, rgba(15, 30, 22, 0.7) 50%, rgba(15, 30, 22, 0.5) 100%);
    }

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

    .hero-headline {
        font-size: 32px;
        line-height: 1.1;
    }

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

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 12px 20px;
    }

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

    .trust-badge {
        font-size: 10px;
        padding: 6px 10px;
    }

    .hero-scroll-indicator {
        bottom: 16px;
    }

    .product-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 16px;
        margin: 0 -28px;
        padding-left: 28px;
        scrollbar-width: none;
    }

    .product-card {
        min-width: 80%;
        scroll-snap-align: center;
        margin-right: 16px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-price {
        font-size: 16px;
    }

    .product-size {
        font-size: 14px;
    }

    .btn-add-basket {
        font-size: 14px;
        padding: 10px 16px;
    }

    .section-header {
        padding: 40px 0 32px;
    }

    .header-title {
        font-size: 28px;
    }

    .shop-title {
        font-size: 28px;
    }

    .phil-title {
        font-size: 24px;
    }

    .phil-subtitle p {
        font-size: 16px;
    }

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

    .blog-card.compact {
        min-width: 85%;
        margin-right: 20px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-excerpt {
        font-size: 14px;
    }

    .blogs-grid-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 32px;
        margin: 0 -24px;
        padding-left: 24px;
        scrollbar-width: none;
    }

    .blogs-grid-container::-webkit-scrollbar {
        display: none;
    }

    .blog-card {
        scroll-snap-align: center;
    }

    .social-title {
        font-size: 24px;
    }

    .footer {
        border-radius: 0 !important;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-circle {
        align-items: center;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

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

    .product-showcase,
    .brand-philosophy,
    .testimonials-highlight,
    .blogs-section,
    .social-section {
        padding-top: 72px;
    }

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

/* ===================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   Paste this at the VERY BOTTOM of your client_styles.css file
   =================================================================== */

/* ━━━ TABLET (991px and below) ━━━ */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    /* Tablet par gap thoda kam kar diya */
    .blogs-section {
        padding: 60px 0 80px !important;
    }

    .social-section {
        padding: 80px 0 60px !important;
    }
}

/* ━━━ MOBILE (768px and below) ━━━ */
@media (max-width: 768px) {

    /* Header Fix */
    .header {
        top: 8px;
        height: 56px;
        width: calc(100% - 24px);
    }

    .header-left {
        display: none;
    }

    .hamburger {
        display: flex !important;
    }

    /* Hero Fix */
    .hero-headline {
        font-size: 36px;
    }

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

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Product Section (Horizontal Swipe) */
    .product-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 16px;
        margin: 0 -28px;
        padding-left: 28px;
        scrollbar-width: none;
    }

    .product-card {
        min-width: 80%;
        scroll-snap-align: center;
        margin-right: 16px;
    }

    /* Blogs Section (Horizontal Swipe) */
    .blogs-grid-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 32px;
        margin: 0 -24px;
        padding-left: 24px;
        scrollbar-width: none;
    }

    .blog-card {
        min-width: 85%;
        scroll-snap-align: center;
        margin-right: 20px;
    }

    /* Blog & Social Gap (Mobile par desktop jitna bada gap ajeeb lagega, isliye reduce kiya) */
    .blogs-section {
        padding: 40px 0 60px !important;
    }

    .social-section {
        padding: 60px 0 40px !important;
    }

    .social-title {
        font-size: 28px !important;
    }

    /* Social Demo Banners responsive fix */
    .social-demo-banner {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .social-chip {
        font-size: 9px;
        padding: 4px 8px;
    }

    .social-meta {
        font-size: 11px;
        white-space: normal;
    }

    /* Footer responsive fix */
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-circle {
        align-items: center;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-contact,
    .footer-legal {
        text-align: center;
        flex-direction: column;
        gap: 12px;
    }

    /* Newsletter fix for mobile */
    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .newsletter-form input {
        text-align: center;
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-newsletter-submit {
        width: 100%;
        border-radius: 0 0 20px 20px;
        margin: 0;
    }
}

/* ━━━ SMALL PHONES (480px and below) ━━━ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 24px;
        line-height: 1.1;
    }

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

    .hero-ctas {
        padding: 0 10px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 13px;
        padding: 10px 16px;
    }

    .trust-badge {
        font-size: 9px;
        padding: 5px 8px;
    }

    .product-card {
        min-width: 90%;
        margin-right: 12px;
    }

    .product-name {
        font-size: 16px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-size {
        font-size: 12px;
    }

    .btn-add-basket {
        font-size: 12px;
        padding: 8px 12px;
    }

    .section-header {
        padding: 32px 0 24px;
    }

    .header-title,
    .shop-title {
        font-size: 24px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .phil-item {
        padding: 20px;
    }

    .phil-title {
        font-size: 20px;
    }

    .phil-subtitle p {
        font-size: 14px;
    }

    .testimonial-carousel {
        padding: 20px 0;
    }

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

    .blog-card {
        min-width: 90%;
        margin-right: 16px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-excerpt {
        font-size: 12px;
    }

    .social-slider {
        gap: 10px;
    }

    .social-card {
        min-width: 250px;
    }

    .social-title {
        font-size: 20px;
    }

    .footer-main {
        gap: 32px;
    }

    .newsletter-box {
        padding: 24px;
    }

    .newsletter-form input {
        font-size: 16px;
    }
}