/* =====================================================================
   Swadigo Theme — main.css
   ===================================================================== */

:root {
	--sw-red: #e8291c;
	--sw-red-dark: #c41e13;
	--sw-orange: #f5821f;
	--sw-gradient: linear-gradient(90deg, var(--sw-red) 0%, var(--sw-orange) 100%);
	--sw-cream: #fff9f4;
	--sw-cream-2: #fdece3;
	--sw-dark: #1c1c1c;
	--sw-gray: #6b6b6b;
	--sw-gray-light: #efefef;
	--sw-green: #25d366;
	--sw-green-dark: #1eae54;
	--sw-radius: 14px;
	--sw-radius-lg: 22px;
	--sw-shadow: 0 6px 24px rgba(0,0,0,.08);
	--sw-container: 1240px;
	--sw-font-heading: 'Poppins', sans-serif;
	--sw-font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--sw-font-body);
	color: var(--sw-dark);
	background: #fff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--sw-font-heading); line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { list-style: none; margin: 0; padding: 0; }
.container { max-width: var(--sw-container); margin: 0 auto; padding: 0 20px; }
.text-accent { color: var(--sw-red); }
.text-gradient { background: var(--sw-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); overflow: hidden; height: 1px; width: 1px; }
.empty-state { text-align: center; color: var(--sw-gray); padding: 40px 20px; background: var(--sw-cream); border-radius: var(--sw-radius); }

/* -------------------------------------------------- Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 30px; font-weight: 600; font-size: .95rem; border: none; cursor: pointer; white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn-primary { background: var(--sw-gradient); color: #fff; box-shadow: 0 6px 16px rgba(232,41,28,.3); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(232,41,28,.38); }
.btn-whatsapp { background: var(--sw-green); color: #fff; }
.btn-whatsapp:hover { background: var(--sw-green-dark); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.icon-whatsapp { width: 18px; height: 18px; }

/* -------------------------------------------------- Header */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--sw-gray-light); }
/* Keep the sticky header below the WP admin toolbar for logged-in users instead of hiding behind it on scroll. */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
.site-header__row { display: flex; align-items: center; gap: 24px; padding: 14px 20px; }
.site-branding { flex-shrink: 0; }
.site-title-text { display: flex; align-items: center; gap: 8px; font-family: var(--sw-font-heading); font-weight: 800; font-size: 1.5rem; color: var(--sw-red); }
.logo-mark { font-size: 1.6rem; }
.custom-logo { max-height: 56px; width: auto; }

.main-navigation { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; gap: 28px; align-items: center; }
.nav-menu a { font-weight: 500; color: var(--sw-dark); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--sw-red); border-color: var(--sw-red); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-actions--mobile { display: none; }

.location-switcher { display: flex; align-items: center; gap: 6px; border: 1px solid var(--sw-gray-light); border-radius: 30px; padding: 8px 14px; font-size: .9rem; }
.location-switcher__select { border: none; background: transparent; font-weight: 600; }
.wishlist-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--sw-gray-light); color: var(--sw-dark); flex-shrink: 0; }
.wishlist-link:hover { border-color: var(--sw-red); color: var(--sw-red); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--sw-dark); border-radius: 2px; }
body.swadigo-nav-open { overflow: hidden; }

/* -------------------------------------------------- Hero */
.hero { background: var(--sw-cream); padding: 50px 0 0; overflow: hidden; }
.hero__row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; padding-bottom: 40px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--sw-cream-2); color: var(--sw-red); font-weight: 600; font-size: .85rem; padding: 6px 16px; border-radius: 30px; margin-bottom: 18px; }
.eyebrow__dot { font-size: .5rem; }
.hero__copy h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.hero__copy h1 span { display: block; }
.hero__subtitle { color: var(--sw-gray); max-width: 480px; font-size: 1.05rem; }
.hero__search { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; background: #fff; border-radius: 40px; box-shadow: var(--sw-shadow); padding: 6px; max-width: 560px; width: 100%; overflow: hidden; }
.hero__search-pin { padding: 0 4px 0 10px; flex-shrink: 0; }
.hero__search-city { border: none; background: transparent; font-weight: 600; padding: 10px 6px; border-right: 1px solid var(--sw-gray-light); flex-shrink: 0; }
.hero__search-row-top { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.hero__search input[type=search] { flex: 1 1 120px; border: none; outline: none; padding: 10px; font-size: .95rem; background: transparent; min-width: 0; }
.hero__media { position: relative; display: flex; justify-content: center; }
.hero__media img { border-radius: var(--sw-radius-lg); }
.hero__media-placeholder { font-size: 6rem; background: #fff; border-radius: var(--sw-radius-lg); width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: var(--sw-shadow); }

.category-strip { display: flex; gap: 10px; overflow-x: auto; padding: 18px 20px 26px; scrollbar-width: thin; }
.category-strip::-webkit-scrollbar { height: 4px; }
.category-pill { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--sw-gray-light); border-radius: 14px; padding: 12px 18px; font-size: .8rem; font-weight: 600; min-width: 76px; }
.category-pill__icon { font-size: 1.3rem; }
.category-pill.is-active, .category-pill:hover { border-color: var(--sw-red); color: var(--sw-red); background: var(--sw-cream-2); }
.category-strip--archive { padding-left: 0; padding-right: 0; }

/* -------------------------------------------------- Stats bar */
.stats-bar { background: var(--sw-gradient); }
.stats-bar__row { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; padding: 22px 20px; color: #fff; }
.stats-bar__item { display: flex; flex-direction: column; align-items: center; gap: 2px; border-right: 1px solid rgba(255,255,255,.25); }
.stats-bar__item:last-child { border-right: none; }
.stats-bar__icon { font-size: 1.3rem; }
.stats-bar__item strong { font-size: 1.3rem; font-weight: 800; }
.stats-bar__item span { font-size: .85rem; opacity: .9; }

/* -------------------------------------------------- Sections */
.section { padding: 56px 0; }
.section__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.section__head h2 { font-size: 1.6rem; font-weight: 700; }
.section__more { color: var(--sw-red); font-weight: 600; white-space: nowrap; }

/* -------------------------------------------------- Restaurant cards */
.restaurant-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 240px; gap: 20px; overflow-x: auto; padding-bottom: 8px; }
.restaurant-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 24px; }
.restaurant-card { background: #fff; border: 1px solid var(--sw-gray-light); border-radius: var(--sw-radius); overflow: hidden; transition: box-shadow .2s ease, transform .2s ease; }
.restaurant-card:hover { box-shadow: var(--sw-shadow); transform: translateY(-2px); }
.restaurant-card__media { display: block; aspect-ratio: 4/3; background: var(--sw-cream); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.restaurant-card__media img { width: 100%; height: 100%; object-fit: cover; }
.restaurant-card__placeholder { font-size: 2.6rem; }
.restaurant-card__fav { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; display: flex; align-items: center; justify-content: center; color: var(--sw-dark); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.restaurant-card__fav:hover { color: var(--sw-red); }
.restaurant-card__fav.is-active { color: var(--sw-red); }
.restaurant-card__fav.is-active svg path { fill: currentColor; }
.restaurant-card__body { padding: 14px; }
.restaurant-card__title { display: block; font-weight: 700; font-size: 1.02rem; margin-bottom: 4px; }
.restaurant-card__meta { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--sw-gray); margin-bottom: 12px; flex-wrap: wrap; }
.swadigo-rating { display: inline-flex; align-items: center; gap: 3px; color: #f5a623; font-weight: 600; }

/* -------------------------------------------------- Top categories */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 18px; }
.category-tile { display: flex; flex-direction: column; align-items: center; gap: 10px; background: var(--sw-cream); border-radius: var(--sw-radius); padding: 24px 10px; text-align: center; font-weight: 600; transition: background .2s ease; }
.category-tile:hover { background: var(--sw-cream-2); }
.category-tile__icon { font-size: 2.2rem; }
.categories-subhead { margin: 30px 0 16px; font-size: 1.1rem; }
.categories-subhead:first-of-type { margin-top: 0; }

/* -------------------------------------------------- Offers */
.offers-strip { background: var(--sw-cream-2); }
.offers-strip__row { display: grid; grid-template-columns: 1fr 1.3fr; gap: 30px; align-items: center; }
.offers-strip__intro h2 { font-size: 1.7rem; }
.offers-strip__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 18px; margin-top: 20px; }
.offer-card { background: #fff; border-radius: var(--sw-radius); padding: 20px; display: flex; flex-direction: column; gap: 6px; box-shadow: var(--sw-shadow); }
.offer-card strong { color: var(--sw-red); font-size: 1.15rem; }
.offer-card em { font-style: normal; color: var(--sw-gray); font-size: .8rem; }
.offer-card--full img { border-radius: 10px; margin-bottom: 8px; aspect-ratio: 16/9; object-fit: cover; }

/* -------------------------------------------------- How it works */
.how-it-works h2 { text-align: center; font-size: 1.7rem; margin-bottom: 34px; }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 14px; flex-wrap: wrap; }
.step { text-align: center; max-width: 190px; }
.step__icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--sw-cream-2); font-size: 1.7rem; margin-bottom: 12px; }
.step h3 { font-size: 1rem; }
.step p { font-size: .85rem; color: var(--sw-gray); margin: 0; }
.step-arrow { color: var(--sw-gray); align-self: center; font-size: 1.3rem; margin-top: 22px; }

/* -------------------------------------------------- WhatsApp CTA */
.whatsapp-cta { background: #eafaf0; border-radius: var(--sw-radius-lg); margin: 0 20px; max-width: calc(var(--sw-container) - 40px); margin-inline: auto; }
.whatsapp-cta__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 30px; }
.whatsapp-cta__copy { display: flex; align-items: center; gap: 16px; }
.whatsapp-cta__icon { font-size: 2rem; }
.whatsapp-cta__copy h3 { margin-bottom: 4px; }
.whatsapp-cta__copy p { margin: 0; color: var(--sw-gray); }

/* -------------------------------------------------- Newsletter */
.newsletter-strip { background: #fff; border-top: 1px solid var(--sw-gray-light); padding: 40px 0; }
.newsletter-strip__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.newsletter-strip h3 { margin-bottom: 2px; }
.newsletter-strip p { margin: 0; color: var(--sw-gray); }
.newsletter-form { display: flex; gap: 8px; flex: 1; max-width: 420px; }
.newsletter-form input { flex: 1; padding: 12px 16px; border-radius: 30px; border: 1px solid var(--sw-gray-light); }
.newsletter-strip__art { font-size: 2rem; }

/* -------------------------------------------------- Footer */
.site-footer { background: var(--sw-dark); color: #cfcfcf; padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 24px; padding-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: #fff; }
.footer-col--brand .site-title-text { color: #fff; }
.footer-col--brand p { font-size: .88rem; color: #9a9a9a; }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-family: 'Font Awesome 5 Brands', var(--sw-font-body); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; border-top: 1px solid rgba(255,255,255,.1); padding: 18px 20px; font-size: .82rem; }

/* -------------------------------------------------- WhatsApp floating button */
.whatsapp-float { position: fixed; bottom: 22px; right: 22px; width: 56px; height: 56px; border-radius: 50%; background: var(--sw-green); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.25); z-index: 90; color: #fff; }
.whatsapp-float svg { width: 28px; height: 28px; }

/* -------------------------------------------------- Generic page bits */
.page-header { padding: 40px 20px 10px; }
.page-header h1 { font-size: 2rem; }
.page-content { padding: 0 0 40px; }
.content-layout { display: grid; grid-template-columns: 2.4fr 1fr; gap: 30px; padding-bottom: 50px; }
.post-card { display: flex; gap: 18px; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--sw-gray-light); }
.post-card__media img { border-radius: var(--sw-radius); width: 220px; height: 150px; object-fit: cover; }
.post-card__meta { color: var(--sw-gray); font-size: .85rem; }
.widget { margin-bottom: 24px; }
.widget-title { font-size: 1rem; margin-bottom: 12px; }

/* -------------------------------------------------- Archive / restaurant single */
.archive-filter-bar { display: flex; gap: 10px; margin: 26px 0 4px; max-width: 500px; }
.archive-filter-bar input { flex: 1; padding: 12px 18px; border-radius: 30px; border: 1px solid var(--sw-gray-light); }

/* -------------------------------------------------- Single restaurant / menu page (v1.2 redesign) */
.back-link { display: inline-block; margin: 22px 0 16px; color: var(--sw-gray); font-weight: 600; font-size: .9rem; }
.back-link:hover { color: var(--sw-red); }

.restaurant-hero-card { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: #fff; border: 1px solid var(--sw-gray-light); border-radius: var(--sw-radius-lg); padding: 26px; margin-bottom: 22px; }
.restaurant-hero-card__main { flex: 1; min-width: 240px; }
.restaurant-hero-card__title-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.restaurant-hero-card__logo { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.restaurant-hero-card__title-row h1 { font-size: 1.9rem; margin: 0; }
.status-pill { font-size: .78rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; border: 1px solid; }
.status-pill--open { color: var(--sw-green-dark); border-color: var(--sw-green); background: #eafaf0; }
.status-pill--closed { color: var(--sw-red-dark); border-color: var(--sw-red); background: #fdeceb; }
.restaurant-hero-card__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: var(--sw-gray); font-size: .92rem; margin: 0 0 6px; }
.restaurant-hero-card__meta .swadigo-rating { color: #f5a623; font-weight: 700; }
.restaurant-hero-card__meta .swadigo-rating i { font-style: normal; }
.meta-dot { opacity: .5; }
.restaurant-hero-card__meta--secondary span { display: inline-flex; align-items: center; gap: 4px; }

.restaurant-hero-card__info { display: flex; flex-direction: column; gap: 14px; background: var(--sw-cream); border-radius: var(--sw-radius); padding: 18px 22px; min-width: 220px; }
.info-row { display: flex; align-items: center; gap: 10px; }
.info-row__icon { font-size: 1.2rem; }
.info-row__label { display: block; font-size: .78rem; color: var(--sw-gray); }
.info-row strong { font-size: .95rem; }

.menu-tabs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--sw-gray-light); }
.menu-tab { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--sw-gray-light); border-radius: 12px; padding: 10px 18px; font-size: .8rem; font-weight: 600; cursor: pointer; min-width: 74px; }
.menu-tab__icon { font-size: 1.2rem; }
.menu-tab.is-active, .menu-tab:hover { border-color: var(--sw-red); color: var(--sw-red); background: var(--sw-cream-2); }
.menu-section-anchor { scroll-margin-top: 90px; }

.section-heading-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 6px; }
.section-heading-row h2 { font-size: 1.4rem; margin: 0; }
.section-heading-row__sub { color: var(--sw-gray); font-size: .88rem; }

/* Deal cards (theme-rendered, separate from the plugin's regular menu rows) */
.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; margin-bottom: 34px; }
.deal-card { position: relative; background: var(--sw-cream-2); border-radius: var(--sw-radius); padding: 22px; overflow: hidden; }
.deal-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.deal-card__list { margin: 0 0 14px; padding-left: 18px; color: var(--sw-gray); font-size: .9rem; }
.deal-card__list li { margin-bottom: 3px; }
.deal-card__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.deal-card__price .swadigo-price--now { font-size: 1.3rem; font-weight: 800; color: var(--sw-red); }
.deal-card__price .swadigo-price--was { text-decoration: line-through; color: var(--sw-gray); font-size: .9rem; }
.deal-card__badge { position: absolute; top: 16px; right: 16px; width: 66px; height: 66px; border-radius: 50%; background: #ffb703; color: #4a2b00; font-size: .72rem; font-weight: 800; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.25; transform: rotate(8deg); box-shadow: 0 4px 10px rgba(0,0,0,.15); }

/* Reskin the PLUGIN's own menu output (classes come from templates/single-restaurant.php,
   templates/partials/product-grid.php, and sticky-cart-bar.php — kept exactly as the
   plugin renders them; only presentation is changed here). */
.single-restaurant .swadigo-restaurant-header { display: none; } /* replaced by .restaurant-hero-card above — avoids showing the info twice. */
.swadigo-theme-menu-wrap { padding-bottom: 90px; }
.swadigo-menu-category { margin-bottom: 30px; }
.swadigo-menu-category h2 { font-size: 1.4rem; margin-bottom: 14px; }
.swadigo-product-grid { display: flex; flex-direction: column; }
.swadigo-product-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px dashed var(--sw-gray-light); }
.swadigo-product-card__image { display: none; } /* the reference design uses a clean text list, no thumbnails */
.swadigo-product-card__body { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; flex-wrap: wrap; }
.swadigo-product-card__body h4 { font-size: 1.05rem; margin: 0 0 4px; }
.swadigo-product-card__desc { color: var(--sw-gray); font-size: .88rem; margin: 0; max-width: 420px; }
.swadigo-product-card__price { display: flex; align-items: center; gap: 14px; margin: 0; flex-shrink: 0; }
.swadigo-price--now { color: var(--sw-red); font-weight: 700; font-size: 1.05rem; }
.swadigo-price--was { color: var(--sw-gray); text-decoration: line-through; font-size: .9rem; }
.swadigo-add-to-cart.swadigo-btn { flex-shrink: 0; background: #fff; color: var(--sw-red); border: 1.5px solid var(--sw-red); border-radius: 30px; padding: 8px 20px; font-weight: 700; font-size: .9rem; cursor: pointer; transition: background .15s ease, color .15s ease; }
.swadigo-add-to-cart.swadigo-btn:hover { background: var(--sw-red); color: #fff; }
.deal-card .swadigo-add-to-cart { background: var(--sw-gradient); color: #fff; border: none; }

.swadigo-sticky-cart-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: #fff; border-top: 1px solid var(--sw-gray-light); box-shadow: 0 -6px 20px rgba(0,0,0,.08); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.swadigo-sticky-cart-bar[hidden] { display: none; }
.swadigo-sticky-cart-bar__summary { font-weight: 700; }
.swadigo-sticky-cart-bar .swadigo-btn--primary { background: var(--sw-gradient); color: #fff; border: none; border-radius: 30px; padding: 12px 26px; font-weight: 700; cursor: pointer; }

@media (max-width: 720px) {
	.restaurant-hero-card { flex-direction: column; }
	.restaurant-hero-card__info { flex-direction: row; flex-wrap: wrap; }
	.swadigo-product-card__body { flex-direction: column; align-items: flex-start; }
	.swadigo-add-to-cart.swadigo-btn { align-self: flex-start; }
}

/* -------------------------------------------------- Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; padding-bottom: 60px; }
.contact-info__item { display: flex; gap: 12px; margin-bottom: 18px; }
.contact-info__item span { font-size: 1.2rem; }
.contact-info__cta { background: var(--sw-cream); border-radius: var(--sw-radius); padding: 20px; margin-top: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.form-row input, .form-row textarea { width: 100%; padding: 12px 16px; border-radius: 10px; border: 1px solid var(--sw-gray-light); font-family: inherit; }
.form-row--honeypot { position: absolute; left: -9999px; }
.form-notice { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; }
.form-notice--success { background: #eafaf0; color: var(--sw-green-dark); }
.form-notice--error { background: #fdeceb; color: var(--sw-red-dark); }

/* -------------------------------------------------- 404 */
.error-404 { text-align: center; padding: 90px 20px; }
.error-404__icon { font-size: 3.4rem; display: block; margin-bottom: 10px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
	.hero__row { grid-template-columns: 1fr; }
	.hero__media { order: -1; }
	.hero__copy h1 { font-size: 2.2rem; }
	.stats-bar__row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.stats-bar__item:nth-child(2) { border-right: none; }
	.offers-strip__row { grid-template-columns: 1fr; }
	.offers-strip__cards { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.content-layout, .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.main-navigation { position: fixed; top: var(--sw-header-h, 66px); left: 0; right: 0; bottom: 0; background: #fff; flex-direction: column; padding: 24px 20px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; z-index: 99; }
	.main-navigation.is-open { transform: translateX(0); }
	.nav-menu { flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; }
	.menu-toggle { display: flex; }
	.header-actions--desktop { display: none; }
	.header-actions--mobile { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-top: 24px; width: 100%; }
	.header-actions--mobile .btn { width: 100%; justify-content: center; }
	.hero__search { flex-direction: column; align-items: stretch; border-radius: 20px; padding: 12px; gap: 10px; }
	.hero__search-row-top { display: flex; align-items: center; gap: 6px; }
	.hero__search-city { border-right: none; max-width: none; flex: 1; }
	.hero__search input[type=search] { width: 100%; flex: none; border: 1px solid var(--sw-gray-light); border-radius: 30px; padding: 12px 16px; }
	.hero__search .btn { width: 100%; justify-content: center; }
	.footer-grid { grid-template-columns: 1fr; }
	.whatsapp-cta__row { flex-direction: column; align-items: flex-start; }
	.newsletter-strip__row { flex-direction: column; align-items: flex-start; }
}
