@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700&display=swap');

@font-face {
    font-family: 'Street Anthem';
    src: url('Street Anthem Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   NIMADI FARMS — Homepage Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #00492C;
    --color-primary-dark: #003320;
    --color-primary-light: #006B3F;
    --color-accent: #C4A35A;
    --color-accent-light: #D4B76A;
    --color-white: #FFFFFF;
    --color-off-white: #F5F5F0;
    --color-cream: #E8F0E4;
    --color-text: #1A1A1A;
    --color-text-light: #555555;
    --color-bg-light: #EDF5EA;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --header-height: 72px;
    --announcement-height: 36px;
    --max-width: 1440px;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.35s ease;
    --transition-slow: 0.5s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: var(--color-primary);
    color: var(--color-white);
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.announcement-bar__content {
    text-align: center;
    padding: 0 20px;
}

.announcement-bar__content strong {
    font-weight: 700;
    color: var(--color-accent-light);
}

/* ============================================
   HEADER / NAVBAR (Floating Pill — RealNoni Style)
   ============================================ */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    transition: background var(--transition-medium), backdrop-filter var(--transition-medium), box-shadow var(--transition-medium);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    border-bottom-color: rgba(232, 232, 232, 0.6);
}

.header__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

/* --- Logo --- */
.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity var(--transition-fast);
}

.header__logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 32px;
    width: auto;
}

/* --- Navigation --- */
.header__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: #1a1a1a;
    padding: 0 14px;
    height: 60px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: capitalize;
    position: relative;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #1a1a1a;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav__link:hover {
    color: #000;
}

.nav__link:hover::after {
    transform: scaleX(1);
}

/* --- Right group (social + hamburger) --- */
.header__right {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav__social {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #1a1a1a;
    border-radius: 4px;
    transition: opacity var(--transition-fast), background var(--transition-fast);
}

.nav__social-link svg {
    width: 20px;
    height: 20px;
}

.nav__social-link:hover {
    opacity: 0.55;
}

.nav__link--highlight {
    color: var(--color-primary);
    font-weight: 700;
}


/* --- Action Buttons --- */
.header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--color-text);
    transition: color var(--transition-fast),
        background var(--transition-fast);
}

.action-btn:hover {
    color: var(--color-primary);
    background: rgba(0, 73, 44, 0.05);
}

.action-btn--cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 8px;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition-fast),
        opacity var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg-image,
.hero__bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 8s ease;
}

.hero:hover .hero__bg-image,
.hero:hover .hero__bg-video {
    transform: scale(1.03);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* --- Hero Text --- */
.hero__text {
    max-width: 560px;
    padding-top: 20px;
}

.hero__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    font-style: italic;
}

.hero__heading-line {
    display: block;
}

.hero__subheading {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    line-height: 1.5;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 73, 44, 0.06), transparent);
    transition: left var(--transition-slow);
}

.hero__cta:hover {
    background: var(--color-off-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero__cta:hover::before {
    left: 100%;
}

/* --- Hero Product Image --- */
.hero__products {
    flex-shrink: 0;
    padding-top: 20px;
}

.hero__product-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
    transition: transform var(--transition-medium);
}

.hero__product-img:hover {
    transform: scale(1.03);
}

/* ============================================
   TAGLINE SECTION
   ============================================ */
.tagline-section {
    display: none;
}

.tagline-heading {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    font-style: normal;
    color: var(--color-white);
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 0.9s ease both;
    animation-delay: 0.2s;
}

.tagline-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.08em;
    text-align: center;
    margin-top: 14px;
    animation: fadeInUp 0.9s ease both;
    animation-delay: 0.45s;
}

@media (max-width: 768px) {
    .tagline-sub {
        margin-top: 4px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: #fff;
    border-top: 1px solid #e8e8e8;
}

.about__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 130px 32px 130px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Left */
.about__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.about__heading {
    font-family: var(--font-body);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.about__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
    padding-top: 0;
}

.about__body p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: #444;
    line-height: 1.75;
    max-width: 420px;
}

/* Right */
.about__right {
    position: sticky;
    top: 80px;
}

.about__img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about__img-wrap:hover .about__img {
    transform: scale(1.04);
}

/* Responsive */
@media (max-width: 900px) {
    .about__inner {
        grid-template-columns: 1fr;
        padding: 56px 32px;
        gap: 40px;
    }

    .about__left {
        min-height: unset;
    }

    .about__body {
        margin-top: 16px;
        padding-top: 0;
    }

    .about__right {
        position: static;
    }

    .about__img-wrap {
        aspect-ratio: 16 / 9;
    }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    width: 100%;
    background: #000;
    margin-bottom: 110px;
}

.video-container {
    width: 100%;
    display: flex;
}

.brand-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background-color: #fbf6ea;
    padding: 80px 32px;
    margin-bottom: 80px;
}

.features__container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.features__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.features__heading {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: #0c4028;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

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

.feature-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.feature-card__content {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.feature-card__content.text-dark {
    color: #1b3d30;
}

.feature-card__content.text-light {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.feature-card__content.text-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

.feature-card__title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature-card__desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .features__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;
        /* Space for scrollbar */
        padding-left: 10px;
        /* Slight inset for first card */
        padding-right: 10px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        margin: 0 -20px;
        /* Bleed out of the container padding slightly */
    }

    .features__grid::-webkit-scrollbar {
        height: 4px;
    }

    .features__grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
        margin: 0 40px;
    }

    .features__grid::-webkit-scrollbar-thumb {
        background: rgba(12, 64, 40, 0.6);
        border-radius: 4px;
    }

    .feature-card {
        flex: 0 0 85%;
        /* Shows majority of the card + a hint of the next */
        scroll-snap-align: center;
        aspect-ratio: 4 / 5;
        /* Slightly adjust aspect ratio for mobile focus */
    }
}

/* ============================================
   PRODUCTS SECTION (RealNoni Style)
   ============================================ */
.products-section {
    background: #ffffff;
    padding: 0 32px 70px;
}

.products__container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.products__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.products__heading {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 64px;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
}

.product-card__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f8f8;
    transition: background-color 0.4s ease;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__img {
    transform: scale(1.05);
}

.product-card:hover .product-card__img-wrap {
    background-color: #0c4028;
}

.product-card__info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-card__title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
}

.product-card__desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin-top: 2px;
}

.product-card__price {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.contact-cta {
    background: #fbf6ea;
    padding: 85px 32px 100px;
}

.contact-cta__container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-primary, #0c4028);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.contact-cta__heading {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.contact-cta__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary, #0c4028);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(12, 64, 40, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-cta__submit {
    margin-top: 12px;
    background: var(--color-primary, #0c4028);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: center;
    /* Center the submit button */
    width: 100%;
    max-width: 250px;
}

.contact-cta__submit:hover {
    background: #082d1b;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .video-section {
        margin-bottom: 56px;
    }

    .features-section {
        padding: 56px 20px;
        margin-bottom: 0;
    }

    .products-section {
        padding: 56px 20px;
    }

    .contact-cta {
        padding: 56px 20px;
    }

    .contact-cta__form {
        padding: 32px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   FLOATING CONTACT BUTTON
   ============================================ */
.sticky-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: var(--color-primary, #0c4028);
    /* fallback if not set */
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease, background 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-contact-btn:hover {
    background-color: #082d1b;
    /* darker green hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .sticky-contact-btn {
        display: none;
    }
}

.products__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.products__actions .btn:hover {
    background: var(--color-text);
    color: #fff;
}

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

@media (max-width: 500px) {
    .products__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
    background: var(--color-bg-light);
    padding: 48px 32px 56px;
    text-align: center;
}

.categories__welcome {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    opacity: 0.8;
}

.categories__heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.categories__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
}

.category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transition: width var(--transition-medium);
}

.category:hover::after,
.category--active::after {
    width: 60%;
}

.category__icon {
    width: 36px;
    height: 36px;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.category:hover .category__icon,
.category--active .category__icon {
    color: var(--color-primary);
}

.category__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.category:hover .category__label,
.category--active .category__label {
    color: var(--color-primary);
    font-weight: 600;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero__text {
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.2s;
}

.hero__products {
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.5s;
}

.categories__welcome,
.categories__heading {
    animation: fadeInUp 0.6s ease both;
}

.categories__welcome {
    animation-delay: 0.1s;
}

.categories__heading {
    animation-delay: 0.2s;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .header__container {
        padding: 16px 20px;
    }

    .nav__link {
        font-size: 0.845rem;
        padding: 6px 8px;
    }

    .hero {
        height: 480px;
    }

    .hero__content {
        padding: 0 32px;
    }

    .hero__product-img {
        max-width: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 52px;
        --announcement-height: 32px;
    }

    .header__container {
        display: flex;
        justify-content: space-between;
    }

    .header__nav--left,
    .header__nav--right {
        display: none;
    }

    .announcement-bar {
        font-size: 0.68rem;
    }

    /* Mobile Nav */
    .header__nav {
        position: fixed;
        top: calc(var(--header-height) + var(--announcement-height) + 24px);
        left: 16px;
        right: 16px;
        bottom: 0;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 24px;
        border-radius: 12px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all var(--transition-medium);
        z-index: 98;
    }

    .header__nav.open {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav__link {
        font-size: 1rem;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .hamburger {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero__content {
        flex-direction: column;
        padding: 40px 24px;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
        gap: 8px;
        /* Reduced from 24px to move subheading up */
    }

    .hero__heading {
        font-size: 2.2rem;
        margin-bottom: 0px;
    }

    .hero__subheading {
        font-size: 0.85rem;
        text-align: center;
        width: 100%;
    }

    .hero__products {
        width: 100%;
    }

    .hero__product-img {
        max-width: 100%;
    }

    /* Categories Mobile */
    .categories {
        padding: 36px 20px 44px;
    }

    .categories__heading {
        font-size: 1.3rem;
    }

    .categories__list {
        gap: 16px;
    }

    .category {
        padding: 8px 10px;
    }

    .category__icon {
        width: 28px;
        height: 28px;
    }

    .category__label {
        font-size: 0.68rem;
    }
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    border-top: 1px solid #f0f0f0;
}

.footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Left Col: Logo */
.footer__col--logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer__logo-img {
    max-width: 280px;
    height: auto;
}

/* Middle Col: Subscribe & Links */
.footer__col--center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary, #1b3d30);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.footer__subtext {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 24px;
}

.footer__subscribe {
    display: flex;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.footer__subscribe input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #333;
    outline: none;
}

.footer__subscribe button {
    background: transparent;
    border: none;
    padding: 0 20px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer__subscribe button:hover {
    color: var(--color-primary, #1b3d30);
}

.footer__links-inline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer__links-inline a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.footer__links-inline a:hover {
    color: var(--color-primary, #1b3d30);
}

.footer__links-inline .divider {
    width: 1px;
    height: 14px;
    background-color: #ccc;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__socials a {
    color: #444;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer__socials a:hover {
    color: var(--color-primary, #1b3d30);
    transform: translateY(-2px);
}

/* Right Col: Contact/Address */
.footer__col--contact {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 40px;
    border-left: 1px solid #f0f0f0;
}

.footer__col--contact p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    /* Increased size */
    color: #555;
    line-height: 1.3;
    /* Added a bit more line height for readability */
    margin: 0;
}

.footer__col--contact a {
    color: #555;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer__col--contact a:hover {
    color: var(--color-primary, #1b3d30);
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 48px;
    }

    .footer__col--contact {
        padding-left: 0;
        border-left: none;
        align-items: center;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero__heading {
        font-size: 1.8rem;
    }

    .hero__product-img {
        max-width: 100%;
    }

    .categories__list {
        gap: 8px;
    }
}