/* ============================================================
   MERCADITO AGROSAH — STOREFRONT HOMEPAGE
   Inspired by mon-marche.fr — organic produce
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-deep: #1B5E3B;
    --green-dark: #145230;
    --green-mid: #27AE60;
    --green-light: #E8F5E9;
    --green-subtle: rgba(27, 94, 59, 0.06);
    --orange: #E67E22;
    --orange-dark: #CF6E17;
    --orange-light: rgba(230, 126, 34, 0.08);
    --bg: #FAFAF5;
    --bg-warm: #F5F0E8;
    --bg-card: #FFFFFF;
    --text: #1A1A1A;
    --text-soft: #666;
    --text-muted: #999;
    --border: rgba(0, 0, 0, 0.07);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Nunito', -apple-system, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 250ms var(--ease);
}

html {
    scroll-behavior: smooth;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--green-deep);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

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

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 2rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.header-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-light);
}

.header-logo-text {
    display: flex;
    flex-direction: column;
}

.header-logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--green-deep);
    line-height: 1.2;
}

.header-logo-tagline {
    font-size: 0.6875rem;
    color: var(--text-soft);
    font-weight: 400;
}

.header-nav {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.header-nav a {
    color: var(--text-soft);
    transition: color var(--transition);
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-mid);
    border-radius: 2px;
    transition: width var(--transition);
}

.header-nav a:hover {
    color: var(--green-deep);
}

.header-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-soft);
    padding: 0.5rem;
    border-radius: 50%;
    transition: all var(--transition);
}

.header-search-btn:hover {
    background: var(--green-light);
    color: var(--green-deep);
}

.btn-cart {
    position: relative;
    background: var(--green-deep);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-cart:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.cart-count {
    background: var(--orange);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-deep);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s var(--ease) both;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--text);
    animation: fadeUp 0.6s 0.1s var(--ease) both;
}

.hero-text h1 .highlight {
    color: var(--green-deep);
    position: relative;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--orange-light);
    border-radius: 4px;
    z-index: -1;
}

.hero-text>p {
    font-size: 1.1rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
    animation: fadeUp 0.6s 0.2s var(--ease) both;
}

.hero-ctas {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s 0.3s var(--ease) both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeUp 0.6s 0.4s var(--ease) both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: var(--text-soft);
    font-weight: 500;
}

.hero-trust-item svg {
    color: var(--green-mid);
}

/* Hero visual — floating cards */
.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    animation: fadeUp 0.8s 0.3s var(--ease) both;
}

.hero-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-mid);
}

.hero-card-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
}

.hero-card-label {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.hero-card--2 {
    transform: translateY(1.5rem);
}

.hero-card--4 {
    transform: translateY(1.5rem);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-pill);
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--lg {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

.btn--primary {
    background: var(--green-deep);
    color: #fff;
}

.btn--primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 94, 59, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--green-deep);
    border: 1.5px solid var(--green-deep);
}

.btn--outline:hover {
    background: var(--green-subtle);
    transform: translateY(-1px);
}

.btn--white {
    background: #fff;
    color: var(--green-deep);
}

.btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-soft);
}

.section-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green-deep);
    background: var(--green-light);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.75rem;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories {
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cat-color);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--cat-color);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.category-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
    padding: 4rem 0;
    background: var(--bg-warm);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-img-wrap {
    position: relative;
    background: linear-gradient(135deg, var(--green-light) 0%, #FFF8E1 100%);
    padding: 2rem;
    text-align: center;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-emoji {
    font-size: 3.5rem;
    transition: transform var(--transition);
}

.product-card:hover .product-emoji {
    transform: scale(1.15);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-pill);
}

.product-badge--bio {
    background: var(--green-mid);
    color: #fff;
}

.product-badge--fav {
    background: #FFF0F0;
    color: #E74C3C;
}

.product-info {
    padding: 1rem 1.25rem 1.25rem;
}

.product-origin {
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.product-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0.25rem 0 0.15rem;
}

.product-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--green-deep);
}

.product-add {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--green-deep);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-add:hover {
    background: var(--orange);
    transform: scale(1.1);
}

.products-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================================
   DELIVERY BANNER
   ============================================================ */
.delivery-banner {
    padding: 5rem 0;
    background: var(--green-deep);
    color: #fff;
    overflow: hidden;
}

.delivery-banner-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.delivery-banner-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.delivery-banner-text h2 span {
    color: var(--orange);
}

.delivery-banner-text>p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.delivery-stats {
    display: flex;
    gap: 2.5rem;
}

.delivery-stat {
    text-align: center;
}

.delivery-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.delivery-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.delivery-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.delivery-icon-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    font-size: 3rem;
    text-align: center;
    transition: all var(--transition);
}

.delivery-icon-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: 5rem 0;
    background: #fff;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.step-card {
    flex: 1;
    max-width: 300px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-mid);
}

.step-number {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--green-deep);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-top: 4rem;
    flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 5rem 0;
    background: var(--bg);
}

.about-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.about-text .section-badge {
    margin-bottom: 1rem;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.2;
}

.about-text p {
    font-size: 0.9375rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.about-feature svg {
    color: var(--green-mid);
    flex-shrink: 0;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-sm);
}

.about-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.about-card--hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-card--hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-soft);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.about-card--hours li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-card--hours li strong {
    color: var(--text);
    font-weight: 600;
}

.about-card--location p {
    font-size: 0.9375rem;
    color: var(--text-soft);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
    padding: 5rem 0;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.review-stars {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-soft);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    padding: 5rem 0;
    background: var(--green-deep);
    color: #fff;
    text-align: center;
}

.final-cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.final-cta-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.footer-brand p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-contact p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        font-size: 0.6875rem;
    }

    .header-nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        max-width: 300px;
        margin: 0 auto;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .delivery-banner-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .delivery-stats {
        gap: 1.5rem;
    }

    .delivery-icon-grid {
        display: none;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

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

    .hero-ctas {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .final-cta-btns {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}