/* ====== Radhika Appliances — Light Theme ====== */
:root {
    --bg: #fdfcff;
    --bg-soft: #f4f1fb;
    --surface: #ffffff;
    --ink: #1b1533;
    --ink-soft: #52496b;
    --ink-mute: #8b849d;
    --brand: #6a4cff;
    --brand-2: #ff7ab6;
    --accent: #ffd166;
    --mint: #9ee6cf;
    --sky: #bfe3ff;
    --line: #ece7f5;
    --shadow-sm: 0 2px 10px rgba(72, 50, 140, 0.06);
    --shadow: 0 18px 60px -20px rgba(72, 50, 140, 0.18);
    --shadow-lg: 0 40px 80px -30px rgba(72, 50, 140, 0.28);
    --radius: 22px;
    --radius-sm: 14px;
    --radius-lg: 34px;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ==== Animated background blobs ==== */
.bg-blobs {
    position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
}
.blob {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
    animation: floatBlob 18s ease-in-out infinite;
}
.blob-1 { width: 520px; height: 520px; background: #d4c3ff; top: -180px; left: -120px; }
.blob-2 { width: 460px; height: 460px; background: #ffd4e5; top: 30%; right: -160px; animation-delay: -6s; }
.blob-3 { width: 420px; height: 420px; background: #c7f1dd; bottom: -180px; left: 30%; animation-delay: -12s; }
@keyframes floatBlob {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.06); }
    66% { transform: translate(-30px, 40px) scale(.96); }
}

/* ==== Top bar ==== */
.top-bar {
    background: linear-gradient(90deg, #6a4cff, #ff7ab6);
    color: #fff; font-size: 13px; font-weight: 500;
    overflow: hidden; white-space: nowrap;
}
.top-bar-inner { padding: 10px 0; text-align: center; letter-spacing: .3px; }

/* ==== Header ==== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    background: rgba(253, 252, 255, .8);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled {
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
    background: rgba(253, 252, 255, .92);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.logo-mark {
    width: 42px; height: 42px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-radius: 12px; color: #fff;
    box-shadow: 0 8px 20px -6px rgba(106, 76, 255, .6);
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: .3px; }
.logo-sub { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-mute); margin-top: 3px; }

.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
    position: relative; padding: 10px 18px; border-radius: 99px;
    font-weight: 500; font-size: 15px; color: var(--ink-soft);
    transition: color .25s, background .25s;
}
.main-nav a:hover { color: var(--brand); }
.main-nav a.active {
    color: var(--brand); background: rgba(106, 76, 255, .1);
}

.menu-toggle {
    display: none; background: none; border: 0; cursor: pointer;
    width: 40px; height: 40px; flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
}
.menu-toggle span {
    width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==== Buttons ==== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 26px; border-radius: 99px; font-weight: 600;
    font-size: 15px; cursor: pointer; border: 0;
    transition: transform .25s, box-shadow .25s, background .25s;
    text-decoration: none; font-family: inherit;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff;
    box-shadow: 0 14px 28px -10px rgba(106, 76, 255, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -10px rgba(106, 76, 255, .7); }
.btn-ghost {
    background: var(--surface); color: var(--ink); border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1fb858; transform: translateY(-2px); }

/* ==== Hero ==== */
.hero {
    padding: 70px 0 60px; position: relative;
}
.hero-grid {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
    border-radius: 99px; background: rgba(106, 76, 255, .1);
    color: var(--brand); font-size: 13px; font-weight: 600; letter-spacing: .5px;
}
.hero-eyebrow::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand); animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(1.4); } }
.hero h1 {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1.05; letter-spacing: -.02em;
    margin: 22px 0 18px;
}
.hero h1 em { font-style: italic; background: linear-gradient(135deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 1.1rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 36px; margin-top: 48px; }
.hero-stats .stat strong { font-family: var(--font-display); font-size: 2rem; display: block; }
.hero-stats .stat span { font-size: 13px; color: var(--ink-mute); }

.hero-visual {
    position: relative; width: 100%; min-height: 520px;
    max-width: 520px; margin-inline: auto;
}
.hero-card {
    position: absolute; background: var(--surface); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 18px; overflow: hidden;
    animation: floatCard 6s ease-in-out infinite;
}
.hero-card img {
    border-radius: 14px; aspect-ratio: 4/3; object-fit: cover;
    background: linear-gradient(135deg, #f4f1fb, #ffe8f1);
    width: 100%; height: auto; display: block;
}
.hero-card { min-height: 140px; }
.hero-card-1 {
    top: 0; left: 0; width: 62%;
}
.hero-card-2 {
    bottom: 0; right: 0; width: 58%; animation-delay: -2s;
}
.hero-card-3 {
    top: 40%; right: 6%; width: 46%; animation-delay: -4s;
}
.hero-card .tag {
    position: absolute; top: 30px; left: 30px; background: #fff;
    padding: 6px 12px; border-radius: 99px; font-size: 12px; font-weight: 600;
    box-shadow: var(--shadow-sm); color: var(--brand);
}
@keyframes floatCard {
    0%,100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
}

.hero-orbit {
    position: absolute; inset: -8%; border: 1px dashed rgba(106, 76, 255, .25);
    border-radius: 50%; animation: spin 30s linear infinite;
}
.hero-orbit::before, .hero-orbit::after {
    content: ''; position: absolute; width: 12px; height: 12px;
    border-radius: 50%; background: var(--brand-2);
}
.hero-orbit::before { top: -6px; left: 50%; }
.hero-orbit::after { bottom: -6px; right: 30%; background: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==== Section base ==== */
section { padding: 80px 0; position: relative; }
.section-head { margin-bottom: 48px; max-width: 680px; }
.section-head .eyebrow {
    font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--brand); margin-bottom: 12px; display: block;
}
.section-head h2 {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.1; letter-spacing: -.02em;
}
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.05rem; }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }

/* ==== Category Chips ==== */
.cat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.cat-card {
    background: var(--surface); border-radius: var(--radius); padding: 28px 22px;
    border: 1px solid var(--line); position: relative; overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
    display: block;
}
.cat-card::before {
    content: ''; position: absolute; inset: auto -30% -60% auto;
    width: 180px; height: 180px; border-radius: 50%;
    background: var(--cat-color, var(--sky)); opacity: .35; transition: transform .5s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card:hover::before { transform: scale(1.2); }
.cat-icon {
    width: 54px; height: 54px; border-radius: 16px;
    background: var(--cat-color, var(--sky)); display: grid; place-items: center;
    margin-bottom: 18px; font-size: 28px; position: relative; z-index: 1;
}
.cat-card h3 { font-size: 17px; font-weight: 700; position: relative; z-index: 1; }
.cat-card span { font-size: 13px; color: var(--ink-mute); position: relative; z-index: 1; }
.cat-card .arrow {
    position: absolute; bottom: 22px; right: 22px; width: 36px; height: 36px;
    border-radius: 50%; background: var(--ink); color: #fff;
    display: grid; place-items: center; z-index: 1;
    transition: transform .3s;
}
.cat-card:hover .arrow { transform: translate(3px, -3px); }

/* ==== Products ==== */
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 26px;
}
.product-card {
    background: var(--surface); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); position: relative;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .3s;
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow);
    border-color: rgba(106, 76, 255, .2);
}
.product-image {
    aspect-ratio: 4/3.2; position: relative; overflow: hidden; background: var(--bg-soft);
}
.product-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--ink); color: #fff; padding: 5px 12px; border-radius: 99px;
    font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.product-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-brand { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-mute); }
.product-name { font-size: 16px; font-weight: 700; line-height: 1.35; color: var(--ink); min-height: 44px; }
.product-price { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; }
.product-price .now { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); }
.product-price .was { font-size: 13px; text-decoration: line-through; color: var(--ink-mute); }
.product-price .off { font-size: 12px; font-weight: 700; color: #1fa85c; }
.product-actions { display: flex; gap: 10px; margin-top: 14px; }
.product-actions a { flex: 1; justify-content: center; padding: 10px 14px; font-size: 13px; }

/* Filter bar */
.filter-bar-wrap {
    position: relative; padding: 0 52px;
}
.filter-bar-wrap::before, .filter-bar-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 18px; width: 48px;
    pointer-events: none; z-index: 2;
}
.filter-bar-wrap::before { left: 44px; background: linear-gradient(90deg, var(--bg), transparent); }
.filter-bar-wrap::after { right: 44px; background: linear-gradient(-90deg, var(--bg), transparent); }
.filter-bar {
    display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 18px;
    scrollbar-width: none; scroll-behavior: auto;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-chip.filter-clone { cursor: pointer; }
.fb-nav {
    position: absolute; top: 50%; transform: translateY(calc(-50% - 9px));
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
    background: var(--surface); color: var(--ink); cursor: pointer; z-index: 3;
    display: grid; place-items: center; box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s, background .25s;
}
.fb-nav:hover { background: var(--ink); color: #fff; transform: translateY(calc(-50% - 9px)) scale(1.08); }
.fb-prev { left: 0; }
.fb-next { right: 0; }
.filter-chip {
    padding: 10px 20px; border-radius: 99px; background: var(--surface);
    border: 1px solid var(--line); font-size: 14px; font-weight: 500;
    white-space: nowrap; cursor: pointer; color: var(--ink-soft);
    transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.filter-chip:hover { transform: translateY(-2px); }
.filter-chip.active {
    background: var(--ink); color: #fff; border-color: var(--ink);
}

/* ==== Why Us ==== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card .icon-round {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(106, 76, 255, .12), rgba(255, 122, 182, .12));
    color: var(--brand); margin-bottom: 18px; font-size: 24px;
}
.why-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--ink-soft); }

/* ==== Marquee brands ==== */
.marquee {
    overflow: hidden; padding: 30px 0; border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
    display: flex; gap: 70px; width: max-content;
    animation: marquee 32s linear infinite;
    font-family: var(--font-display); font-weight: 600; color: var(--ink-soft);
    font-size: 1.7rem; font-style: italic;
}
.marquee-track span { display: flex; align-items: center; gap: 70px; white-space: nowrap; }
.marquee-track span::after {
    content: '✦'; color: var(--brand-2); font-style: normal; font-size: 1.4rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==== CTA Strip ==== */
.cta-strip {
    background: linear-gradient(135deg, var(--ink) 0%, #3a2d73 100%);
    border-radius: var(--radius-lg); padding: 70px 60px; color: #fff;
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
    position: relative; overflow: hidden;
}
.cta-strip::before {
    content: ''; position: absolute; right: -10%; top: -50%; width: 500px; height: 500px;
    border-radius: 50%; background: radial-gradient(circle, rgba(255, 122, 182, .3), transparent 70%);
}
.cta-strip h2 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px;
}
.cta-strip p { color: rgba(255,255,255,.75); max-width: 450px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.cta-actions .btn { justify-content: center; }

/* ==== Product details ==== */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.pd-image {
    aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--bg-soft); box-shadow: var(--shadow);
}
.pd-image img { width: 100%; height: 100%; object-fit: cover; }
.pd-breadcrumb { color: var(--ink-mute); font-size: 14px; margin-bottom: 18px; }
.pd-breadcrumb a:hover { color: var(--brand); }
.pd h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.1; letter-spacing: -.01em; margin: 8px 0 14px; }
.pd-brand-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand); }
.pd-price { display: flex; align-items: baseline; gap: 14px; margin: 22px 0; }
.pd-price .now { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; }
.pd-price .was { font-size: 1.1rem; text-decoration: line-through; color: var(--ink-mute); }
.pd-price .off { background: #e6f7ec; color: #1fa85c; padding: 4px 12px; border-radius: 99px; font-size: 13px; font-weight: 700; }
.pd-desc { color: var(--ink-soft); margin-bottom: 28px; line-height: 1.7; }
.pd-features { margin-bottom: 32px; }
.pd-features h3 { font-size: 16px; margin-bottom: 14px; font-weight: 700; }
.pd-features ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pd-features li {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px;
    background: var(--bg-soft); border-radius: 12px; font-size: 14px;
}
.pd-features li::before { content: '✓'; color: var(--brand); font-weight: 700; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==== About page ==== */
.about-hero {
    padding: 80px 0 40px; text-align: center;
}
.about-hero h1 {
    font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05;
    letter-spacing: -.02em;
}
.about-hero p { max-width: 620px; margin: 18px auto 0; color: var(--ink-soft); font-size: 1.1rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image {
    border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-family: var(--font-display); font-size: 2.2rem; line-height: 1.1; margin-bottom: 18px; letter-spacing: -.02em; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
    padding: 32px; border-radius: var(--radius); background: var(--surface);
    border: 1px solid var(--line); position: relative; overflow: hidden;
}
.value-card .num {
    font-family: var(--font-display); font-weight: 600; font-style: italic;
    font-size: 3rem; background: linear-gradient(135deg, var(--brand), var(--brand-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1; margin-bottom: 14px;
}
.value-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 14px; }

.timeline { position: relative; max-width: 800px; margin-inline: auto; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--brand), var(--brand-2)); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before {
    content: ''; position: absolute; left: -28px; top: 4px; width: 14px; height: 14px;
    border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(106, 76, 255, .2);
}
.timeline-item h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 6px; }
.timeline-item .year { font-size: 13px; font-weight: 600; color: var(--brand); letter-spacing: 2px; }
.timeline-item p { color: var(--ink-soft); margin-top: 6px; }

/* ==== Contact ==== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px; margin-bottom: 18px;
}
.contact-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 6px; }
.contact-card p { color: var(--ink-soft); margin-bottom: 18px; font-size: 14px; }
.contact-info-row {
    display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line);
    align-items: flex-start;
}
.contact-info-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-info-row .icon-round {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(106, 76, 255, .12), rgba(255, 122, 182, .12));
    color: var(--brand); display: grid; place-items: center; font-size: 20px;
}
.contact-info-row .info-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.contact-info-row .info-value { color: var(--ink); font-weight: 500; }
.contact-info-row .info-value a:hover { color: var(--brand); }

.contact-form { display: grid; gap: 16px; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; display: block; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 14px 18px; border: 1px solid var(--line);
    border-radius: 14px; background: var(--bg); font-family: inherit;
    font-size: 15px; color: var(--ink);
    transition: border-color .25s, box-shadow .25s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: 0; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(106, 76, 255, .12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-embed {
    border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
    aspect-ratio: 16/9;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ==== Floating WhatsApp ==== */
.float-wa {
    position: fixed; bottom: 22px; right: 22px; z-index: 90;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff; display: grid; place-items: center;
    box-shadow: 0 16px 36px -10px rgba(37, 211, 102, .55);
    animation: pulseWa 2.4s infinite;
    transition: transform .25s;
}
.float-wa:hover { transform: scale(1.08); }
@keyframes pulseWa {
    0%,100% { box-shadow: 0 16px 36px -10px rgba(37, 211, 102, .55), 0 0 0 0 rgba(37, 211, 102, .5); }
    50% { box-shadow: 0 16px 36px -10px rgba(37, 211, 102, .55), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ==== Footer ==== */
.site-footer {
    margin-top: 80px; padding: 70px 0 30px;
    background: linear-gradient(180deg, transparent, rgba(244, 241, 251, .7));
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px;
}
.footer-brand p { color: var(--ink-soft); margin-top: 18px; max-width: 340px; font-size: 14px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 18px; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--ink-soft); font-size: 14px; transition: color .25s; }
.footer-col a:hover { color: var(--brand); }
.footer-col .small { font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; line-height: 1.5; }
.footer-bottom {
    display: flex; justify-content: space-between; gap: 20px;
    padding-top: 24px; border-top: 1px solid var(--line);
    font-size: 13px; color: var(--ink-mute);
}

/* ==== Reveal animation ==== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* ==== Responsive ==== */
@media (max-width: 980px) {
    .hero-grid, .about-grid, .pd-grid, .contact-grid, .cta-strip { grid-template-columns: 1fr; gap: 40px; }
    .cta-strip { padding: 50px 32px; }
    .cat-grid, .why-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pd-features ul { grid-template-columns: 1fr; }
    .hero-visual { max-width: 420px; }
}
@media (max-width: 720px) {
    .main-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--surface); flex-direction: column; padding: 20px;
        border-top: 1px solid var(--line); gap: 0;
        transform: translateY(-14px); opacity: 0; pointer-events: none;
        transition: transform .3s, opacity .3s;
    }
    .main-nav.open { transform: none; opacity: 1; pointer-events: auto; }
    .main-nav a { width: 100%; padding: 12px 16px; border-radius: 12px; }
    .menu-toggle { display: flex; }
    .header-cta { display: none; }
    section { padding: 60px 0; }
    .hero { padding: 40px 0; }
    .cat-grid, .why-grid, .values-grid, .footer-grid { grid-template-columns: 1fr; }
    .head-row { flex-direction: column; align-items: flex-start; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
}
