/* =========================================================================
   Melato Houses — design system
   Editorial, minimalist-luxury guesthouse aesthetic (inspired by Manna Arcadia)
   Layered on top of Bootstrap 5 (load bootstrap.css BEFORE this file).
   Preserves JS hooks used by the vendor scripts:
   .site-nav, .site-mobile-menu, .js-clone-nav, .js-menu-toggle, .offcanvas-menu,
   .glightbox, .hero, .section, #arrival/#departure (flatpickr), .loader/#overlayer.
   ========================================================================= */

:root {
	--cream:      #f4efe6;   /* page background */
	--paper:      #fbf9f4;   /* lighter panels  */
	--ink:        #2a2822;   /* body text       */
	--ink-soft:   #6a655a;   /* muted text      */
	--forest:     #34402f;   /* deep green      */
	--forest-2:   #435239;   /* lighter green   */
	--olive:      #7a7f63;
	--brass:      #a98b5d;   /* accent          */
	--line:       #ddd5c6;   /* hairlines       */
	--white:      #ffffff;

	--serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--sans:  "Jost", "Work Sans", -apple-system, Segoe UI, Roboto, sans-serif;

	--ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- base ---------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
	font-family: var(--sans);
	font-weight: 300;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.75;
	letter-spacing: .01em;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	max-width: 100%;
}

p { margin: 0 0 1.25rem; color: var(--ink); font-weight: 300; }
p.lead { font-size: 1.15rem; }

a { color: var(--forest); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--brass); }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6, .heading {
	font-family: var(--serif);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.12;
	letter-spacing: .01em;
	margin: 0 0 1rem;
}

.bg-light { background: var(--paper) !important; }
.text-white { color: #fff !important; }
.text-black-50 { color: var(--ink-soft) !important; }
.text-secondary { color: var(--brass) !important; }

/* Small uppercase chapter label above section titles */
.eyebrow {
	display: inline-block;
	font-family: var(--sans);
	font-weight: 500;
	font-size: .72rem;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: 1rem;
}
.eyebrow.on-dark { color: #d8c9a8; }

/* Section headings */
.heading { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
.heading.underlinned { position: relative; padding-bottom: 1.1rem; }
.heading.underlinned::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 64px; height: 1px; background: var(--brass);
}
.text-center .heading.underlinned::after { left: 50%; transform: translateX(-50%); }

/* ---------- layout rhythm ------------------------------------------------- */
.section { padding: 96px 0; }
@media (max-width: 767.98px){ .section { padding: 64px 0; } }
.section.py-0 { padding-top: 0; padding-bottom: 0; }
.container { max-width: 1200px; }

/* flexbox safety: let columns shrink so long text wraps instead of overflowing */
[class*="col-"] { min-width: 0; }
.heading, p, .eyebrow, .hero-eyebrow { overflow-wrap: break-word; }

/* ---------- preloader ----------------------------------------------------- */
#overlayer { position: fixed; inset: 0; z-index: 9999; background: var(--cream); }
.loader { position: fixed; z-index: 10000; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.spinner-border.text-primary { color: var(--forest) !important; }

/* ---------- navbar -------------------------------------------------------- */
.site-nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 1500;
	padding: 22px 0;
	transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-nav .menu-bg-wrap { transition: inherit; }

/* transparent over hero (default) */
.site-nav .site-menu > li > a,
.site-nav .logo,
.site-nav .call-us { color: #fff; }
.site-nav .brand-sub { color: rgba(255,255,255,.72); }

/* solid on scroll OR on inner (heroless / short-hero) pages */
.site-nav.scrolled,
body.nav-solid .site-nav {
	background: var(--paper);
	padding: 12px 0;
	box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.site-nav.scrolled .site-menu > li > a,
.site-nav.scrolled .logo,
.site-nav.scrolled .call-us,
body.nav-solid .site-nav .site-menu > li > a,
body.nav-solid .site-nav .logo,
body.nav-solid .site-nav .call-us { color: var(--ink); }
.site-nav.scrolled .brand-sub,
body.nav-solid .site-nav .brand-sub { color: var(--ink-soft); }

/* wordmark */
.logo.brand { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand-name {
	font-family: var(--serif); font-weight: 600; font-size: 1.6rem;
	letter-spacing: .18em; text-transform: uppercase;
}
.brand-sub {
	font-family: var(--sans); font-weight: 400; font-size: .56rem;
	letter-spacing: .42em; text-transform: uppercase; margin-top: 4px;
}

/* desktop menu */
.site-menu { margin: 0; padding: 0; list-style: none; white-space: nowrap; }
.site-menu > li { display: inline-block; margin: 0 10px; vertical-align: middle; }
.site-menu > li > a {
	font-family: var(--sans); font-weight: 400; font-size: .74rem;
	letter-spacing: .14em; text-transform: uppercase; position: relative; padding: 6px 0;
}
.site-menu > li > a::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
	background: var(--brass); transition: width .3s var(--ease);
}
.site-menu > li > a:hover::after,
.site-menu > li.active > a::after { width: 100%; }
.site-menu > li.active > a { color: var(--brass) !important; }

/* language pill (rendered as a plain link, not a bootstrap button) */
.lang-switch {
	display: inline-flex; align-items: center; gap: 6px;
	border: 1px solid currentColor; padding: 5px 11px;
	font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; border-radius: 2px;
	transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.lang-switch img { width: 18px; height: auto; }
.lang-switch:hover { background: var(--brass); border-color: var(--brass); color: #fff !important; }

/* prominent booking button in the nav */
.site-menu > li > a.nav-book {
	background: var(--brass); color: #fff !important; border: 1px solid var(--brass);
	padding: 9px 20px; border-radius: 2px; letter-spacing: .16em;
}
.site-menu > li > a.nav-book::after { display: none; }
.site-menu > li > a.nav-book:hover { background: var(--forest); border-color: var(--forest); color: #fff !important; }
.site-nav.scrolled .site-menu > li > a.nav-book,
body.nav-solid .site-nav .site-menu > li > a.nav-book { color: #fff !important; }

/* contact links top-right */
.nav-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.call-us { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; letter-spacing: .04em; }
.call-us [class^="icon-"] { color: var(--brass); font-size: 1rem; }

/* burger */
.burger { position: relative; width: 30px; height: 22px; display: inline-block; color: inherit; font-size: 0; }
.burger > span, .burger > span::before, .burger > span::after {
	content: ""; position: absolute; left: 0; height: 2px; width: 28px;
	background: currentColor; transition: .3s var(--ease);
}
.burger > span { top: 10px; }
.burger > span::before { top: -8px; }
.burger > span::after { top: 8px; }
/* burger colour: white over hero, dark on solid/inner/scrolled navs */
.site-nav .burger { color: #fff; }
body.nav-solid .site-nav .burger, .site-nav.scrolled .burger { color: var(--ink); }

/* ---------- mobile off-canvas menu --------------------------------------- */
.site-mobile-menu {
	width: 300px; position: fixed; right: 0; top: 0; z-index: 2000; padding-top: 10px;
	background: var(--paper); height: 100%;
	transform: translateX(110%); transition: transform .35s var(--ease);
	box-shadow: -10px 0 40px rgba(0,0,0,.12);
}
.offcanvas-menu .site-mobile-menu { transform: translateX(0); }
.site-mobile-menu-header { padding: 12px 24px; text-align: right; }
.site-mobile-menu-close { font-size: 1.6rem; cursor: pointer; color: var(--ink); }
.site-mobile-menu-body { padding: 6px 26px 40px; }
.site-mobile-menu .site-nav-wrap { list-style: none; margin: 0; padding: 0; display: block !important; }
.site-mobile-menu .site-nav-wrap li { display: block; border-bottom: 1px solid var(--line); }
.site-mobile-menu .site-nav-wrap li a {
	display: block; padding: 14px 0; color: var(--ink);
	font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
}
.site-mobile-menu .site-nav-wrap li a::after { display: none; }
.site-mobile-menu .site-nav-wrap li a img { width: 20px; margin-right: 8px; }
.site-mobile-menu .btn, .site-mobile-menu .lang-switch,
.site-mobile-menu .nav-book { padding: 14px 0 !important; border: 0 !important; background: transparent !important; color: var(--ink) !important; letter-spacing: .18em; }

body.offcanvas-menu { overflow: hidden; }
body.offcanvas-menu::after { content: ""; position: fixed; inset: 0; background: rgba(20,20,16,.45); z-index: 1900; }

/* ---------- buttons ------------------------------------------------------- */
.btn {
	font-family: var(--sans); font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
	font-size: .76rem; border-radius: 2px; padding: 15px 34px; transition: all .35s var(--ease);
}
.btn-primary { background: var(--forest); border: 1px solid var(--forest); color: #fff; }
.btn-primary:hover, .btn-primary:focus { background: var(--brass); border-color: var(--brass); color: #fff; }
.btn-outline-light { border: 1px solid #fff; color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--forest); }
.btn-block { width: 100%; }

/* thin text link */
.link-underline {
	display: inline-block; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
	padding-bottom: 4px; border-bottom: 1px solid var(--brass); color: var(--ink);
}
.link-underline:hover { color: var(--brass); }

/* ---------- hero ---------------------------------------------------------- */
.hero {
	position: relative; min-height: 100vh; display: flex; align-items: center;
	background-size: cover; background-position: center; background-repeat: no-repeat;
	color: #fff; text-align: center;
}
.hero.overlay::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(20,26,18,.45) 0%, rgba(20,26,18,.28) 42%, rgba(20,26,18,.62) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero .hero-eyebrow {
	color: #e8dcc2; letter-spacing: .4em; text-transform: uppercase;
	font-size: .8rem; margin-bottom: 1.6rem; display: block;
}
.hero .heading {
	color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400;
	line-height: 1.15; margin-bottom: 2.4rem; text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero .btn { margin-top: .5rem; }
.hero.hero-inner { min-height: 72vh; }

.hero .scroll-cue {
	position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 2;
	color: #fff; font-size: 1.6rem; opacity: .8; animation: bob 2s infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,10px);} }

/* ---------- reservation / search form ------------------------------------ */
.sec-form-search { position: relative; z-index: 20; background: transparent !important; }
.sec-form-search .form {
	background: var(--paper); margin-top: -70px; padding: 44px;
	box-shadow: 0 30px 60px rgba(0,0,0,.10); border-top: 3px solid var(--brass); border-radius: 3px;
}
.sec-form-search .form > .col-lg-12 > p {
	text-align: center; color: var(--ink-soft); font-style: italic;
	font-family: var(--serif); font-size: 1.25rem; margin-bottom: 1.6rem;
}

label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; margin-bottom: .4rem; }

.form-control, .form-select, select.form-control {
	height: auto; line-height: 1.5;
	border: 1px solid var(--line); border-radius: 2px; background: #fff;
	padding: 12px 14px; font-family: var(--sans); font-weight: 300; color: var(--ink);
	box-shadow: none; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-control:focus, .form-select:focus {
	border-color: var(--brass); box-shadow: 0 0 0 3px rgba(169,139,93,.15); outline: none;
}
.input-icon-wrap { position: relative; }
.input-icon-wrap [class^="icon-"] { position: absolute; right: 14px; top: 42px; color: var(--brass); pointer-events: none; }

/* ---------- content sections --------------------------------------------- */
.sec-about img { border-radius: 3px; }
.img-box-shadow { box-shadow: 0 30px 60px rgba(0,0,0,.14); }
.framed { position: relative; }
.framed::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--brass); z-index: -1; }

/* feature banner (rooms / faq blocks) */
.sec-faq { background: var(--forest); color: #fff; background-size: cover; background-position: center; position: relative; }
.sec-faq.has-img::before { content:""; position:absolute; inset:0; background: rgba(28,36,25,.72); }
.sec-faq .container { position: relative; z-index: 2; }
.sec-faq .heading, .sec-faq p { color: #fff; }
.sec-faq p { color: rgba(255,255,255,.85); }
.sec-faq .eyebrow { color: #d8c9a8; }

/* ---------- gallery ------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid .g-item { position: relative; overflow: hidden; border-radius: 3px; display: block; aspect-ratio: 4/5; }
.gallery-grid .g-item.wide { grid-column: span 2; aspect-ratio: 16/10; }
.gallery-grid .g-item.tall { grid-row: span 2; aspect-ratio: 4/5; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item::after {
	content: "+"; font-family: var(--serif); font-size: 2rem; font-weight: 300;
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	color: #fff; background: rgba(52,64,47,0); opacity: 0; transition: .4s var(--ease);
}
.gallery-grid .g-item:hover::after { background: rgba(52,64,47,.35); opacity: 1; }
@media (max-width: 767.98px){
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-grid .g-item.wide { grid-column: span 2; }
	.gallery-grid .g-item.tall { grid-row: span 1; }
}

/* ---------- location / map ------------------------------------------------ */
.map-wrap img { width: 100%; height: auto; border-radius: 3px; box-shadow: 0 20px 50px rgba(0,0,0,.10); }

/* ---------- products ------------------------------------------------------ */
.product-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.product-line .p-name { display: flex; align-items: baseline; gap: 12px; }
.product-line .p-name .name { font-family: var(--serif); font-size: 1.2rem; letter-spacing: .01em; color: var(--ink); font-weight: 500; }
.product-line .idx { color: var(--brass); font-family: var(--serif); font-size: 1.2rem; }
.product-line .qty { width: 96px; flex: 0 0 96px; }

/* ---------- contact info -------------------------------------------------- */
.contact-info h3 { font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); margin-bottom: .3rem; }
.contact-info p { margin-bottom: 1.6rem; }

/* ---------- footer -------------------------------------------------------- */
.site-footer { background: var(--forest) !important; color: rgba(255,255,255,.8); padding: 80px 0 30px; }
.site-footer .brand-name, .site-footer .brand-sub { color: #fff; }
.site-footer h3 { font-family: var(--sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--brass); }
.site-footer .links { list-style: none; padding: 0; margin: 0; }
.site-footer .links li { margin-bottom: .6rem; font-size: .86rem; letter-spacing: .06em; }
.site-footer address { font-style: normal; color: rgba(255,255,255,.78); margin-bottom: 1rem; letter-spacing: .06em; }
.site-footer .copyright { border-top: 1px solid rgba(255,255,255,.15); margin-top: 50px; padding-top: 24px; }
.site-footer .copyright p { color: rgba(255,255,255,.6); font-size: .8rem; letter-spacing: .06em; margin: 0; }

/* floating badges (booking / espa) */
.floating-badges { position: fixed; bottom: 14px; right: 14px; z-index: 9999; display: flex; align-items: flex-end; gap: 10px; }
.floating-badges img { border-radius: 3px; box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* ---------- dynamic map (OpenStreetMap iframe) ---------------------------- */
.map-frame {
	position: relative; width: 100%; height: 440px; border-radius: 3px; overflow: hidden;
	box-shadow: 0 20px 50px rgba(0,0,0,.10); border: 1px solid var(--line); background: #e8e2d4;
	z-index: 0;
}
.map-frame.map-sm { height: 320px; }
.map-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
/* Leaflet marker/controls tint */
.leaflet-container { font-family: var(--sans); background: #e8e2d4; }
.leaflet-bar a { color: var(--forest); }
@media (max-width: 767.98px){ .map-frame { height: 300px; } }

/* ---------- booking / reservation page ----------------------------------- */
.booking { position: relative; }
.booking-split { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 100vh; }
.booking-aside {
	position: relative; background-size: cover; background-position: center;
	display: flex; align-items: flex-end; color: #fff; padding: 60px;
}
.booking-aside::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,26,18,.30), rgba(20,26,18,.72)); }
.booking-aside .aside-inner { position: relative; z-index: 2; max-width: 420px; }
.booking-aside .heading { color: #fff; font-size: clamp(2rem, 3vw, 3rem); }
.booking-aside p { color: rgba(255,255,255,.85); }
.booking-aside .eyebrow { color: #d8c9a8; }
.booking-form-wrap {
	display: flex; align-items: center; justify-content: center;
	padding: 120px 6% 80px; background: var(--cream);
}
.booking-form-wrap .inner { width: 100%; max-width: 560px; }
.booking-back { display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.4rem; }
@media (max-width: 991.98px){
	.booking-split { grid-template-columns: 1fr; min-height: 0; }
	.booking-aside { min-height: 46vh; padding: 40px; }
	.booking-form-wrap { padding: 110px 24px 70px; }
}

/* ---------- e-shop -------------------------------------------------------- */
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (min-width: 992px){ .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px){ .shop-grid { grid-template-columns: 1fr; } }

.product-card {
	background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
	overflow: hidden; display: flex; flex-direction: column;
	transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.product-card:hover { box-shadow: 0 24px 50px rgba(0,0,0,.10); transform: translateY(-3px); }
.product-media { display: block; aspect-ratio: 1/1; background: #efe8db; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-tag { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); margin-bottom: .5rem; }
.product-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin: 0 0 .4rem; }
.product-desc { font-size: .9rem; color: var(--ink-soft); margin: 0 0 1.2rem; line-height: 1.6; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-family: var(--serif); font-size: 1.5rem; color: var(--forest); }
.product-price small { font-family: var(--sans); font-size: .7rem; letter-spacing: .08em; color: var(--ink-soft); }

/* stepper */
.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 3px; background: #fff; }
.stepper button {
	width: 40px; height: 42px; border: 0; background: transparent; color: var(--forest);
	font-size: 1.2rem; line-height: 1; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease);
}
.stepper button:hover { background: var(--forest); color: #fff; }
.stepper .qty-input {
	width: 46px; height: 42px; text-align: center; border: 0; border-left: 1px solid var(--line);
	border-right: 1px solid var(--line); font-family: var(--sans); font-size: .95rem; color: var(--ink);
	-moz-appearance: textfield; background: #fff;
}
.stepper .qty-input::-webkit-outer-spin-button,
.stepper .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product-card.in-cart { border-color: var(--brass); box-shadow: 0 0 0 1px var(--brass) inset; }

/* order summary */
.order-summary {
	background: var(--paper); border: 1px solid var(--line); border-radius: 4px; padding: 30px;
	position: sticky; top: 110px;
}
.order-summary h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1.2rem; }
.summary-lines { list-style: none; margin: 0 0 1rem; padding: 0; }
.summary-lines li { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.summary-lines li .s-name { color: var(--ink); }
.summary-lines li .s-name span { color: var(--ink-soft); }
.summary-lines li.empty { justify-content: center; color: var(--ink-soft); font-style: italic; border: 0; padding: 18px 0; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0 20px; }
.summary-total .lbl { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.summary-total .amt { font-family: var(--serif); font-size: 1.8rem; color: var(--forest); }
.summary-note { font-size: .78rem; color: var(--ink-soft); margin-top: 1rem; line-height: 1.6; }
.order-summary .btn { width: 100%; }
@media (max-width: 991.98px){ .order-summary { position: static; margin-top: 30px; } }

/* ---------- helpers ------------------------------------------------------- */
.w_100_mobile {}
@media (max-width: 767.98px){ .w_100_mobile { width: 100% !important; } }

/* ---------- responsive ---------------------------------------------------- */
@media (max-width: 991.98px){
	.hero .heading { font-size: clamp(2rem, 8vw, 3rem); }
	.sec-form-search .form { margin-top: -40px; padding: 26px; }
	.nav-contact { display: none; }
	.site-nav { padding: 16px 0; }
	.brand-name { font-size: 1.4rem; }
}
@media (max-width: 767.98px){
	.section { padding: 56px 0; }
	.hero, .hero.hero-inner { min-height: 88vh; }
	.hero .heading { font-size: clamp(1.9rem, 9vw, 2.6rem); }
	.framed::after { inset: 12px -12px -12px 12px; }
	.site-footer { padding: 56px 0 24px; text-align: left; }
	.product-title { font-size: 1.3rem; }
	.product-price { font-size: 1.3rem; }
}
@media (max-width: 575.98px){
	.hero .heading { font-size: clamp(1.7rem, 9.5vw, 2.3rem); }
	.btn { padding: 13px 26px; }
	.sec-form-search .form { padding: 20px; }
}
