:root {
  --blue: #112B75;
  --gold: #D89B2B;
  --ink: #080b12;
  --dark: #0B0F19;
  --muted: #687084;
  --line: #E3E7EF;
  --soft: #F5F7FA;
  --white: #fff;
  --shadow: 0 20px 55px rgba(17, 43, 117, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: #101522; background: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { min-height: 70vh; overflow: hidden; }

.site-header { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 11px clamp(16px, 4vw, 52px); background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(227,231,239,.8); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; min-width: 0; }
.logo-brand img { width: clamp(132px, 15vw, 205px); height: 48px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: 22px; color: #111827; font-size: 14px; font-weight: 800; }
.nav a, .utility-nav a, .icon-btn { transition: color .2s ease, background .2s ease, transform .2s ease; }
.nav a:hover, .utility-nav a:hover, .icon-btn:hover { color: var(--blue); }
.utility-nav { display: flex; align-items: center; gap: 10px; }
.icon-btn, .cart-link, .dealer-btn { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 10px 14px; font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; }
.cart-link span { background: var(--gold); color: #100b03; border-radius: 999px; padding: 1px 7px; margin-left: 4px; }
.dealer-btn { background: var(--ink); color: white; border-color: var(--ink); }
.nav-toggle { display: none; }

.mega-parent { position: relative; padding: 16px 0; }
.mega-menu { position: absolute; top: 100%; left: -22px; display: grid; grid-template-columns: 240px 210px; gap: 24px; min-width: 520px; padding: 24px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 28px 70px rgba(0,0,0,.16); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .22s ease; }
.mega-parent:hover .mega-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-menu a { display: block; padding: 8px 0; font-weight: 700; color: #263246; }
.mega-label { display: block; color: var(--gold); font-size: 12px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.search-panel { position: fixed; inset: 0; z-index: 80; display: grid; place-items: start center; padding-top: 90px; background: rgba(8,11,18,.45); opacity: 0; pointer-events: none; transition: .2s ease; }
.search-panel.open { opacity: 1; pointer-events: auto; }
.search-panel form { display: flex; gap: 10px; width: min(760px, calc(100% - 28px)); background: white; padding: 18px; border-radius: 20px; box-shadow: 0 30px 90px rgba(0,0,0,.22); }

.home-hero { min-height: calc(100vh - 72px); display: grid; align-items: center; background: linear-gradient(120deg, #f7f8fb 0%, #fff 45%, #eef3ff 100%); position: relative; padding: clamp(32px, 6vw, 78px) clamp(18px, 5vw, 72px); }
.hero-slide { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 610px); align-items: center; gap: clamp(26px, 5vw, 70px); }
.hero-copy { max-width: 720px; }
.eyebrow { display: inline-block; color: var(--gold); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .08em; margin-bottom: 12px; }
h1, h2, h3 { font-family: Montserrat, Inter, Arial, sans-serif; line-height: 1.04; margin: 0 0 16px; letter-spacing: 0; }
h1 { font-size: clamp(42px, 7vw, 84px); }
h2 { font-size: clamp(28px, 4.5vw, 52px); }
h3 { font-size: 18px; }
p { color: var(--muted); line-height: 1.7; }
.hero-copy p { font-size: 18px; max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.btn.primary { background: var(--gold); color: #151006; }
.btn.dark { background: var(--ink); color: white; }
.btn.ghost { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); color: inherit; }
.btn.plain { background: white; border-color: var(--line); color: var(--blue); }

.hero-product { position: relative; min-height: 480px; display: grid; place-items: center; }
.hero-product img { width: min(520px, 100%); aspect-ratio: 1 / .78; object-fit: cover; border-radius: 34px; box-shadow: 0 35px 110px rgba(17,43,117,.22); animation: productFloat 6s ease-in-out infinite; }
.product-orbit { position: absolute; background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: 999px; padding: 11px 15px; font-weight: 900; box-shadow: var(--shadow); animation: orbitFloat 5s ease-in-out infinite; }
.product-orbit.one { top: 38px; left: 8%; }
.product-orbit.two { right: 2%; bottom: 96px; animation-delay: .8s; }
.product-orbit.three { left: 0; bottom: 48px; animation-delay: 1.4s; }
@keyframes productFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-12px) scale(1.01); } }
@keyframes orbitFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.category-rail { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 12px; padding: 24px clamp(18px, 5vw, 72px); border-bottom: 1px solid var(--line); background: white; }
.category-rail a { display: grid; place-items: center; gap: 9px; min-height: 104px; padding: 12px; border-radius: 20px; font-size: 13px; font-weight: 900; text-align: center; transition: .22s ease; }
.category-rail a:hover { background: var(--soft); transform: translateY(-4px); }
.category-rail span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 16px; background: #eef3ff; color: var(--blue); font-size: 18px; }

.section, .page-title, .catalog-layout, .split-page, .checkout-grid, .article, .product-detail, .blog-grid, .showcase-grid { padding: clamp(38px, 6vw, 82px) clamp(18px, 5vw, 72px); }
.compact-hero { background: linear-gradient(120deg, #f7f8fb, white); }
.page-title p { max-width: 720px; font-size: 18px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.section-head a, .text-link { color: var(--blue); font-weight: 900; }
.center-head { text-align: center; max-width: 880px; margin: 0 auto 28px; }

.showcase-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.showcase-main { grid-row: span 2; position: relative; min-height: 620px; overflow: hidden; border-radius: 28px; background: var(--dark); color: white; }
.showcase-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; transform: scale(1.03); transition: transform .6s ease; }
.showcase-main:hover img { transform: scale(1.08); }
.showcase-main > div { position: absolute; left: clamp(22px, 4vw, 52px); right: clamp(22px, 4vw, 52px); bottom: clamp(22px, 4vw, 52px); max-width: 720px; }
.showcase-main p { color: #d8e0ef; }
.showcase-card { position: relative; min-height: 300px; overflow: hidden; border-radius: 28px; background: #f1f4f8; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .25s ease, box-shadow .25s ease; }
.showcase-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.showcase-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; transition: transform .6s ease; }
.showcase-card:hover img { transform: scale(1.08); }
.showcase-card strong, .showcase-card span { position: relative; z-index: 1; }
.showcase-card strong { font-size: 26px; line-height: 1.05; margin-bottom: 10px; }
.showcase-card span { color: #263246; max-width: 320px; }

.home-tabs { display: inline-flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 10px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: var(--soft); }
.home-tabs button { border: 0; border-radius: 999px; padding: 10px 16px; background: transparent; font: inherit; font-weight: 900; cursor: pointer; }
.home-tabs button.active { background: var(--ink); color: white; }
.home-panel { display: none; }
.home-panel.active { display: block; animation: fadeUp .28s ease; }

.category-grid, .product-grid, .blog-grid, .service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card, .panel, .service-card, .category-card { border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 12px 36px rgba(17,43,117,.06); }
.product-card { overflow: hidden; transition: transform .24s ease, box-shadow .24s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card img { width: 100%; height: 230px; object-fit: cover; background: var(--soft); transition: transform .5s ease; }
.product-card:hover img { transform: scale(1.05); }
.product-card > div { padding: 16px; }
.badge { display: inline-flex; background: #fff3dd; color: #8f5c08; border-radius: 999px; padding: 4px 9px; font-size: 12px; font-weight: 900; margin-bottom: 10px; }
.product-card h3 { margin-bottom: 8px; }
.product-card p { font-size: 14px; margin: 0 0 14px; }
.card-bottom { display: flex; align-items: center; justify-content: space-between; padding: 0 !important; }
.card-bottom button { width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--ink); color: white; font-size: 22px; cursor: pointer; transition: .2s ease; }
.card-bottom button:hover { background: var(--blue); transform: rotate(90deg); }

.business-band { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; margin: clamp(20px, 5vw, 60px) clamp(18px, 5vw, 72px); padding: clamp(28px, 5vw, 58px); border-radius: 30px; background: linear-gradient(135deg, var(--dark), var(--blue)); color: white; }
.business-band p { color: #d8e0ef; max-width: 760px; }
.business-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.service-card { padding: 24px; min-height: 180px; transition: .22s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card strong { display: block; font-size: 22px; margin-bottom: 12px; }
.service-card span { color: var(--muted); line-height: 1.6; }

.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.filters { border: 1px solid var(--line); padding: 18px; border-radius: 24px; position: sticky; top: 92px; background: white; box-shadow: 0 12px 36px rgba(17,43,117,.06); }
.form, .filters form { display: grid; gap: 12px; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; background: white; }
textarea { min-height: 120px; resize: vertical; }
label { font-weight: 900; font-size: 13px; }

.product-detail { display: grid; grid-template-columns: minmax(0, 620px) 1fr; gap: 46px; align-items: center; }
.product-detail > img { width: 100%; aspect-ratio: 1 / .8; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }
.price { font-size: 32px; font-weight: 950; color: var(--blue); }
del { color: var(--muted); font-size: 18px; margin-left: 10px; }
.stock { font-weight: 900; }
.specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0; list-style: none; }
.specs li { background: var(--soft); padding: 12px; border-radius: 14px; }
.split-page, .checkout-grid { display: grid; grid-template-columns: 1fr minmax(320px, 520px); gap: 34px; align-items: start; }
.business-page { background: linear-gradient(120deg, #f7f8fb, white); }
.panel { padding: 24px; }
.stack-actions { display: grid; gap: 12px; align-content: start; }
.cart-row { display: grid; grid-template-columns: 82px 1fr auto; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); padding: 12px 0; }
.cart-row img { width: 82px; height: 64px; object-fit: cover; border-radius: 14px; }
.cart-row span { display: block; color: var(--muted); margin-top: 4px; }
.cart-row button { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 8px 12px; }
.cart-total { display: flex; justify-content: space-between; padding-top: 18px; font-size: 22px; }
.article { max-width: 900px; margin: 0 auto; }
.article p { font-size: 18px; }

.whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 60; background: #25d366; color: white; padding: 13px 16px; border-radius: 999px; font-weight: 950; box-shadow: 0 12px 34px rgba(0,0,0,.22); }

.dw-footer-simple { position: relative; overflow: hidden; padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 72px) 0; background: linear-gradient(135deg, #020a16 0%, #06152d 55%, #010710 100%); color: white; border-top: 3px solid var(--gold); }
.dw-footer-simple:before { content: ""; position: absolute; width: 420px; height: 420px; background: radial-gradient(circle,rgba(216,155,43,.18),transparent 65%); top: -160px; right: -120px; animation: dwGlowMove 8s ease-in-out infinite alternate; }
.dw-footer-simple:after { content: ""; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle,rgba(17,43,117,.45),transparent 65%); bottom: -220px; left: -150px; animation: dwGlowMove2 9s ease-in-out infinite alternate; }
.dw-footer-wrap { position: relative; z-index: 2; }
.dw-footer-skyline { position: absolute; left: -4%; bottom: 118px; width: 38%; height: 220px; opacity: .36; background: linear-gradient(to top, rgba(216,155,43,.55), transparent 72%); clip-path: polygon(0 100%,0 72%,3% 72%,3% 56%,6% 56%,6% 86%,9% 86%,9% 35%,12% 35%,12% 100%,16% 100%,16% 62%,19% 62%,19% 12%,23% 12%,23% 100%,27% 100%,27% 48%,31% 48%,31% 76%,35% 76%,35% 38%,39% 38%,39% 100%,100% 100%); }
.dw-footer-main { display: grid; grid-template-columns: minmax(260px, 1.35fr) minmax(150px, .75fr) minmax(220px, 1fr) minmax(145px, .7fr) minmax(280px, 1.35fr); gap: clamp(20px, 3vw, 38px); align-items: start; }
.dw-footer-logo img { width: min(300px, 100%); height: 84px; object-fit: contain; object-position: left center; filter: drop-shadow(0 18px 26px rgba(0,0,0,.28)); }
.dw-footer-title { color: #ffd66d; font-size: 20px; margin: 22px 0 10px; }
.dw-gold-rule { display: block; width: 58px; height: 2px; margin: 16px 0 22px; background: linear-gradient(90deg, var(--gold), transparent); box-shadow: 0 0 10px var(--gold); }
.dw-footer-text { color: #d8e0ed; line-height: 1.75; font-size: 16px; max-width: 420px; }
.dw-socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.dw-socials a { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 50%; color: white; font-weight: 950; text-transform: uppercase; background: rgba(255,255,255,.04); }
.dw-footer-column h4, .dw-footer-contact h4 { color: #ffc23d; margin: 10px 0 28px; text-transform: uppercase; font-size: 18px; }
.dw-footer-column h4::after, .dw-footer-contact h4::after { content: ""; display: block; width: 62px; height: 2px; margin-top: 10px; background: linear-gradient(90deg, var(--gold), transparent); }
.dw-footer-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.dw-footer-list li a { display: flex; align-items: center; gap: 12px; min-height: 34px; color: #eef3fb; }
.dw-footer-list li span { width: 8px; height: 8px; border-right: 2px solid var(--gold); border-top: 2px solid var(--gold); transform: rotate(45deg); }
.dw-category-list li b { display: grid; place-items: center; min-width: 44px; height: 30px; border: 1px solid rgba(216,155,43,.8); border-radius: 8px; color: #ffd66d; font-size: 10px; }
.dw-brand-column li a { font-size: clamp(18px, 1.7vw, 24px); font-weight: 950; letter-spacing: .02em; min-height: 40px; }
.dw-footer-contact { display: grid; align-content: start; gap: 0; }
.dw-contact-item { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.dw-contact-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--gold); border-radius: 50%; color: #ffd66d; font-size: 10px; font-weight: 950; }
.dw-contact-item strong { display: block; color: white; margin-bottom: 4px; }
.dw-contact-item p { margin: 0; color: #d8e0ed; line-height: 1.55; overflow-wrap: anywhere; }
.dw-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: clamp(34px, 5vw, 58px); padding: 26px 28px; border: 1px solid rgba(216,155,43,.75); border-radius: 18px; background: rgba(255,255,255,.025); box-shadow: inset 0 0 28px rgba(216,155,43,.08); }
.dw-trust-card { display: grid; grid-template-columns: 66px minmax(0, 1fr); column-gap: 14px; align-items: center; padding: 4px 18px; border-right: 1px solid rgba(255,255,255,.14); }
.dw-trust-card:last-child { border-right: 0; }
.dw-trust-icon { grid-row: span 2; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: linear-gradient(135deg, #ffc23d, #a96a00); color: #071022; font-weight: 950; box-shadow: 0 12px 24px rgba(216,155,43,.22); transition: all .3s ease; }
.dw-trust-card strong { text-transform: uppercase; }
.dw-trust-card p { margin: 4px 0 0; color: #d8e0ed; line-height: 1.55; }
.dw-footer-bottom { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; margin-top: 34px; padding: 28px 0 34px; border-top: 1px solid rgba(255,255,255,.12); }
.dw-footer-bottom p { margin: 0 0 14px; color: #eef3fb; }
.dw-policy-links { display: flex; flex-wrap: wrap; gap: 18px; }
.dw-policy-links a { color: #ffd66d; font-size: 14px; }
.dw-payments { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.dw-payments span { display: grid; place-items: center; min-width: 86px; min-height: 40px; padding: 8px 12px; border-radius: 6px; background: linear-gradient(180deg, white, #dce5f2); color: #0b2c70; font-weight: 950; font-size: 13px; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.dw-footer-logo, .dw-footer-title, .dw-footer-text, .dw-footer-list li, .dw-contact-item, .dw-trust, .dw-footer-bottom { animation: dwFadeUp .8s ease both; }
.dw-footer-list li, .dw-socials a, .dw-contact-icon, .dw-trust-card, .dw-payments span { transition: all .3s ease; }
.dw-footer-list li:hover { transform: translateX(6px); color: #fff; }
.dw-socials a:hover { transform: translateY(-5px) scale(1.08); box-shadow: 0 0 25px rgba(216,155,43,.45); }
.dw-contact-item:hover { transform: translateX(5px); }
.dw-contact-item:hover .dw-contact-icon { background: #D89B2B; color: #0B0F19; box-shadow: 0 0 22px rgba(216,155,43,.45); }
.dw-trust:hover { box-shadow: 0 0 35px rgba(216,155,43,.18); }
.dw-trust-card:hover { transform: translateY(-5px); }
.dw-trust-card:hover .dw-trust-icon { transform: rotate(-4deg) scale(1.08); box-shadow: 0 0 25px rgba(216,155,43,.45); }
.dw-payments span:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(255,255,255,.14); }
@keyframes dwFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dwGlowMove { from { transform: translate(0,0) scale(1); } to { transform: translate(-40px,40px) scale(1.15); } }
@keyframes dwGlowMove2 { from { transform: translate(0,0) scale(1); } to { transform: translate(50px,-35px) scale(1.12); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
  .hero-slide, .product-detail, .split-page, .checkout-grid, .catalog-layout, .business-band, .showcase-grid { grid-template-columns: 1fr; }
  .category-rail { grid-template-columns: repeat(4, 1fr); }
  .category-grid, .product-grid, .blog-grid, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filters { position: static; }
  .dw-footer-main { grid-template-columns: repeat(2, 1fr); }
  .dw-footer-contact { grid-column: span 2; }
  .dw-trust { grid-template-columns: repeat(2, 1fr); }
  .dw-trust-card:nth-child(2) { border-right: 0; }
  .dw-footer-bottom { grid-template-columns: 1fr; }
  .dw-payments { justify-content: flex-start; }
  .showcase-main { min-height: 520px; }
}

@media (max-width: 820px) {
  .site-header { align-items: center; gap: 10px; }
  .logo-brand img { width: 142px; height: 42px; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; top: 68px; left: 12px; right: 12px; flex-direction: column; align-items: stretch; gap: 0; background: white; border: 1px solid var(--line); border-radius: 22px; padding: 14px; box-shadow: 0 24px 60px rgba(0,0,0,.16); }
  .nav.open { display: flex; }
  .nav a { padding: 12px; }
  .mega-parent { padding: 0; }
  .mega-menu { position: static; display: none; min-width: 0; box-shadow: none; border-radius: 16px; transform: none; opacity: 1; pointer-events: auto; grid-template-columns: 1fr; margin-top: 8px; }
  .mega-parent:hover .mega-menu { display: grid; }
  .utility-nav { margin-left: auto; gap: 6px; }
  .utility-nav .dealer-btn { display: none; }
  .icon-btn, .cart-link { padding: 9px 11px; font-size: 12px; }
  h1 { font-size: 40px; }
  .home-hero { min-height: auto; }
  .hero-product { min-height: 360px; }
  .product-orbit { font-size: 12px; }
  .category-rail, .category-grid, .product-grid, .blog-grid, .service-grid, .dw-footer-main, .dw-trust, .specs { grid-template-columns: 1fr; }
  .dw-footer-contact { grid-column: auto; }
  .dw-trust-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); padding: 18px 0; }
  .dw-trust-card:last-child { border-bottom: 0; }
  .dw-footer-logo img { height: 74px; }
  .showcase-main, .showcase-card { min-height: 360px; border-radius: 22px; }
  .section-head { display: block; }
  .cart-row { grid-template-columns: 64px 1fr; }
  .cart-row button { grid-column: 2; }
  .search-panel form { flex-direction: column; }
}
