/* Coco's Cheesecakes — hand-written re-creation of the original Tailwind
   stylesheet (artifacts/cheesecake-dubai/src/index.css). Fonts load via
   <link> in the HTML head; everything else is plain CSS, no build step. */

:root {
  --background: 38 100% 97%;
  --foreground: 324 29% 14%;
  --border: 34 35% 82%;
  --input: 34 35% 82%;
  --ring: 349 75% 61%;
  --card: 39 100% 99%;
  --card-foreground: 324 29% 14%;
  --card-border: 34 35% 82%;
  --popover: 39 100% 99%;
  --popover-foreground: 324 29% 14%;
  --primary: 324 49% 27%;
  --primary-foreground: 38 100% 97%;
  --secondary: 52 100% 62%;
  --secondary-foreground: 324 29% 14%;
  --muted: 35 41% 91%;
  --muted-foreground: 324 13% 43%;
  --accent: 7 100% 70%;
  --accent-foreground: 324 29% 14%;
  --destructive: 0 72% 51%;
  --destructive-foreground: 0 0% 100%;
  --app-font-sans: 'DM Sans', sans-serif;
  --app-font-display: 'Bricolage Grotesque', sans-serif;
  --app-font-mono: 'Space Mono', monospace;
  --radius: 1rem;
  --shadow-soft: 0 20px 50px rgba(91, 31, 65, .08);
  --shadow-card: 0 8px 0 rgba(91, 31, 65, .08), 0 20px 45px rgba(91, 31, 65, .08);
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--app-font-sans);
  -webkit-font-smoothing: antialiased;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  margin: 0;
}

button, input, textarea {
  font: inherit;
}

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

@keyframes rise-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float-cake { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-9px) rotate(1deg); } }

.reveal { animation: rise-in .7s cubic-bezier(.2,.8,.2,1) both; }
.reveal-delay-2 { animation-delay: .2s; }
.display { font-family: var(--app-font-display); letter-spacing: -.045em; }
.mono { font-family: var(--app-font-mono); }
.text-sm { font-size: 14px; }
.block { display: block; }
.mt-2 { margin-top: 8px; }
.eyebrow { font-family: var(--app-font-mono); font-size: .67rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; }

.site-shell { overflow: hidden; background: hsl(var(--background)); min-height: 100dvh; }
.container-wide { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.top-note { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); font-family: var(--app-font-mono); font-size: 11px; letter-spacing: .02em; text-align: center; padding: 10px 16px; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.brand-lockup { display: flex; align-items: center; gap: 10px; color: hsl(var(--foreground)); text-decoration: none; }
.brand-mark { width: 38px; height: 38px; border-radius: 13px 13px 13px 4px; background: hsl(var(--secondary)); display: grid; place-items: center; transform: rotate(-7deg); color: hsl(var(--primary)); box-shadow: 4px 4px 0 hsl(var(--primary)); }
.brand-mark span { display: grid; place-items: center; transform: rotate(7deg); }
.brand-name { font-family: var(--app-font-display); font-weight: 800; font-size: 28px; line-height: .9; }
.cart-button { border: 1px solid hsl(var(--border)); background: hsl(var(--card)); color: hsl(var(--foreground)); border-radius: 999px; height: 42px; padding: 0 14px; display: flex; align-items: center; gap: 9px; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.cart-button:hover { transform: translateY(-2px); background: hsl(var(--secondary)); }
.cart-label { display: none; }
.cart-count { min-width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: hsl(var(--accent)); color: hsl(var(--foreground)); font-family: var(--app-font-mono); font-size: 10px; font-weight: 700; }
.hero { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 48px; padding: 56px 0 90px; }
.hero-copy h1 { max-width: 650px; font-size: clamp(3.7rem, 7vw, 6.8rem); line-height: .9; margin: 16px 0 26px; color: hsl(var(--primary)); }
.hero-copy h1 em { color: hsl(var(--accent)); font-style: normal; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button-primary, .button-secondary { min-height: 48px; padding: 0 20px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; cursor: pointer; font-weight: 700; font-size: 13px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); box-shadow: 0 5px 0 hsl(324 49% 18%); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 0 hsl(324 49% 18%); }
.button-primary:active { transform: translateY(1px); box-shadow: 0 2px 0 hsl(324 49% 18%); }
.button-secondary { background: transparent; color: hsl(var(--primary)); border-color: hsl(var(--border)); }
.button-secondary:hover { background: hsl(var(--muted)); transform: translateY(-2px); }
.hero-meta { display: flex; gap: 18px; margin-top: 28px; color: hsl(var(--muted-foreground)); font-family: var(--app-font-mono); font-size: 10px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 5px; }
.hero-art { min-height: 480px; position: relative; display: grid; place-items: center; }
.art-blob { width: min(430px, 90%); aspect-ratio: 1; border-radius: 48% 52% 45% 55%; background: hsl(var(--secondary)); transform: rotate(7deg); position: absolute; box-shadow: inset -22px -28px 0 rgba(255,255,255,.16); }
.art-sun { position: absolute; width: 84px; height: 84px; right: 4%; top: 8%; border-radius: 50%; background: hsl(var(--accent)); box-shadow: 11px 11px 0 hsl(var(--primary)); }
.art-dot { position: absolute; width: 15px; height: 15px; background: hsl(var(--primary)); border-radius: 50%; left: 5%; top: 20%; box-shadow: 30px 34px 0 hsl(var(--accent)), 4px 120px 0 hsl(var(--accent)); }
.cake-illustration { position: relative; width: 300px; height: 250px; z-index: 1; animation: float-cake 5s ease-in-out infinite; }
.cake-top { position: absolute; width: 265px; height: 74px; border-radius: 50%; background: #fff9e9; border: 3px solid hsl(var(--primary)); left: 16px; top: 33px; z-index: 3; box-shadow: inset 0 -10px 0 #f4e7bf, 0 7px 0 rgba(94,32,72,.08); }
.cake-top:before { content: ''; position: absolute; width: 180px; height: 20px; left: 42px; top: 31px; border-top: 5px solid rgba(94,32,72,.16); border-radius: 50%; transform: rotate(-4deg); }
.cake-top:after { content: ''; position: absolute; width: 74px; height: 15px; background: hsl(var(--accent)); border-radius: 50%; left: 92px; top: 17px; opacity: .9; }
.cake-body { position: absolute; width: 265px; height: 112px; left: 16px; top: 66px; border: 3px solid hsl(var(--primary)); border-top: 0; border-radius: 0 0 24px 24px; background: linear-gradient(90deg, #fff5d7 0 12%, #ffedbd 12% 18%, #fff9e9 18% 100%); z-index: 2; overflow: hidden; }
.cake-body:after { content: ''; position: absolute; width: 11px; height: 38px; right: 35px; top: 15px; background: hsl(var(--accent)); border-radius: 0 0 9px 9px; opacity: .68; box-shadow: -150px 18px 0 rgba(216,200,226,.72); }
.cake-base { position: absolute; width: 287px; height: 36px; background: #d9a27e; border: 3px solid hsl(var(--primary)); border-radius: 50%; left: 5px; top: 157px; z-index: 1; }
.berry { position: absolute; width: 26px; height: 26px; background: hsl(324 49% 27%); border: 2px solid hsl(var(--primary)); border-radius: 50%; z-index: 5; }
.berry-1 { left: 50px; top: 42px; }
.berry-2 { left: 215px; top: 55px; width: 19px; height: 19px; }
.berry-3 { left: 172px; top: 28px; width: 15px; height: 15px; }

.section { padding: 95px 0; }
.section-tint { background: #f5eade; }
.section-berry { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 35px; }
.section-heading h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: .92; color: inherit; margin: 12px 0 0; }
.section-heading p { max-width: 310px; color: hsl(var(--muted-foreground)); font-size: 14px; line-height: 1.55; margin: 0; }
.section-berry .section-heading p { color: #dfcdd5; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.product-card-link { display: block; }
.product-card { display: flex; align-items: center; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 22px; padding: 12px; box-shadow: var(--shadow-card); transition: transform .3s ease, box-shadow .3s ease; cursor: pointer; }
.product-card:hover { transform: translateY(-7px) rotate(-.4deg); box-shadow: 0 13px 0 rgba(91,31,65,.1), 0 28px 55px rgba(91,31,65,.11); }
.product-visual-wrap { position: relative; flex: 0 0 42%; }
.product-visual { min-height: 235px; border-radius: 15px; position: relative; overflow: hidden; display: grid; place-items: center; }
.visual-lemon { background: #fdeea9; }
.visual-blueberry { background: #d8c8e2; }
.visual-og { background: #f2d3b3; }
.product-badge { position: absolute; left: 12px; top: 12px; border-radius: 9999px; background: #fff9e9; padding: 6px 10px; color: #5e2048; }
.mini-cake { width: 174px; height: 142px; position: relative; transition: transform .3s ease; }
.product-card:hover .mini-cake { transform: rotate(4deg) scale(1.04); }
.mini-top { position: absolute; width: 158px; height: 50px; left: 8px; top: 16px; border-radius: 50%; border: 2px solid hsl(var(--primary)); background: #fff9e6; z-index: 2; box-shadow: inset 0 -8px 0 rgba(220,173,119,.25); }
.mini-body { position: absolute; width: 158px; height: 69px; left: 8px; top: 39px; background: #fff5d4; border: 2px solid hsl(var(--primary)); border-top: 0; border-radius: 0 0 16px 16px; z-index: 1; }
.mini-base { position: absolute; width: 169px; height: 22px; left: 2px; top: 96px; background: #c88f6b; border: 2px solid hsl(var(--primary)); border-radius: 50%; }
.mini-accent { position: absolute; z-index: 3; width: 23px; height: 23px; border-radius: 50%; background: hsl(var(--accent)); border: 2px solid hsl(var(--primary)); top: 23px; left: 60px; }
.blue .mini-accent { background: hsl(324 49% 35%); }
.og .mini-accent { background: #ffd27f; }
.spark { position: absolute; font-family: var(--app-font-mono); color: hsl(var(--primary)); font-weight: 700; font-size: 25px; }
.spark-a { top: 21px; right: 24px; transform: rotate(16deg); }
.spark-b { bottom: 16px; left: 24px; transform: rotate(-15deg); }
.product-info { flex: 1; padding: 12px 20px 12px 14px; }
.product-info h3 { font-size: 25px; line-height: 1; margin: 0 0 8px; }
.product-info p { font-size: 12px; color: hsl(var(--muted-foreground)); min-height: 38px; line-height: 1.5; margin: 0 0 17px; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; }
.price { font-family: var(--app-font-mono); font-size: 14px; font-weight: 700; color: hsl(var(--primary)); }
.price small { font-family: var(--app-font-sans); font-size: 10px; color: hsl(var(--muted-foreground)); font-weight: 400; }
.icon-add { width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer; background: hsl(var(--secondary)); color: hsl(var(--primary)); display: grid; place-items: center; transition: transform .2s ease, background .2s ease; }
.icon-add:hover { transform: rotate(90deg); background: hsl(var(--accent)); }
.icon-add svg { stroke-width: 2.5; }

.feature-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.feature-copy h2 { color: hsl(var(--primary)); font-size: clamp(2.8rem, 5vw, 5rem); line-height: .9; margin: 16px 0 22px; }
.feature-copy p { color: hsl(var(--muted-foreground)); line-height: 1.7; font-size: 15px; max-width: 420px; }
.feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 29px; }
.feature-item { border-top: 1px solid hsl(var(--border)); padding-top: 14px; }
.feature-item strong { font-family: var(--app-font-display); display: block; font-size: 15px; margin-bottom: 4px; }
.feature-item span { font-size: 12px; color: hsl(var(--muted-foreground)); line-height: 1.4; display: block; }
.options-board { background: hsl(var(--secondary)); border-radius: 28px; padding: 27px; position: relative; min-height: 360px; box-shadow: 10px 10px 0 hsl(var(--primary)); }
.options-board h3 { font-size: 31px; line-height: 1; margin: 0 0 23px; color: hsl(var(--primary)); }
.option-row { background: rgba(255,255,255,.45); padding: 16px 17px; border-radius: 15px; display: flex; justify-content: space-between; align-items: center; margin: 8px 0; }
.option-row span { font-size: 13px; font-weight: 700; color: hsl(var(--primary)); }
.option-pills { display: flex; gap: 5px; flex-wrap: wrap; justify-content: flex-end; }
.option-pill { border: 1px solid rgba(91,31,65,.25); background: rgba(255,255,255,.35); color: hsl(var(--primary)); border-radius: 999px; font-family: var(--app-font-mono); font-size: 9px; padding: 7px 9px; }
.board-sticker { position: absolute; right: -16px; bottom: -17px; width: 93px; height: 93px; display: grid; place-items: center; text-align: center; line-height: 1.05; font-family: var(--app-font-display); font-weight: 800; font-size: 16px; border-radius: 50%; color: hsl(var(--primary)); background: hsl(var(--accent)); transform: rotate(10deg); border: 3px solid hsl(var(--primary)); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.process-step { padding: 29px 28px 32px; border-right: 1px solid rgba(255,255,255,.2); }
.process-step:last-child { border-right: 0; }
.process-number { font-family: var(--app-font-mono); color: hsl(var(--secondary)); font-size: 12px; }
.process-step h3 { font-size: 25px; margin: 20px 0 10px; line-height: 1; }
.process-step p { color: #dfcdd5; font-size: 13px; line-height: 1.6; max-width: 240px; }

.quotes { display: grid; grid-template-columns: 1.5fr .8fr .8fr; gap: 15px; }
.quote-card { padding: 30px; border-radius: 20px; background: hsl(var(--card)); color: hsl(var(--foreground)); min-height: 165px; display: flex; flex-direction: column; justify-content: space-between; }
.quote-card:first-child { background: hsl(var(--secondary)); transform: rotate(-1.5deg); }
.quote-card p { font-family: var(--app-font-display); font-size: 23px; line-height: 1.05; margin: 0; }
.quote-card small { font-family: var(--app-font-mono); font-size: 9px; color: hsl(var(--muted-foreground)); }
.quote-card:first-child small { color: hsl(var(--primary)); }

.footer { padding: 58px 0 35px; background: #f5eade; }
.footer-main { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-bottom: 50px; }
.footer h2 { font-size: 50px; line-height: .85; color: hsl(var(--primary)); margin: 0 0 15px; }
.footer-links { display: flex; gap: 55px; }
.footer-links strong { font-family: var(--app-font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: 14px; }
.footer-links a { color: hsl(var(--muted-foreground)); display: flex; align-items: center; gap: 5px; border: 0; background: transparent; padding: 4px 0; font-size: 13px; text-decoration: none; cursor: pointer; }
.footer-links a:hover { color: hsl(var(--primary)); }
.footer-bottom { border-top: 1px solid hsl(var(--border)); padding-top: 18px; display: flex; justify-content: space-between; color: hsl(var(--muted-foreground)); font-size: 11px; }

/* Overlays. Hidden by default, shown when their anchor target is active.
   The .target spans live at the top of the page so navigating to them
   never scrolls the document. */
.target { position: absolute; width: 0; height: 0; }
.overlay { display: none; position: fixed; inset: 0; background: rgba(43, 19, 34, .46); z-index: 40; justify-content: flex-end; animation: rise-in .2s ease both; }
.site-shell:has(#customize-lemon:target) #overlay-customize-lemon,
.site-shell:has(#customize-blueberry:target) #overlay-customize-blueberry,
.site-shell:has(#cart:target) #overlay-cart,
.site-shell:has(#checkout:target) #overlay-checkout { display: flex; }
/* The offers modal is JS-driven (assets/offers.js): it shows on first
   load and never again, so it's shown by adding .is-open instead of a
   :target rule. */
.overlay.is-open { display: flex; }
.backdrop-close { position: absolute; inset: 0; z-index: 0; background: transparent; border: 0; padding: 0; cursor: pointer; }
.overlay > .dialog, .overlay > .drawer { position: relative; z-index: 1; }
.drawer { width: min(470px, 100%); height: 100%; background: hsl(var(--background)); padding: 27px; display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(43,19,34,.2); animation: rise-in .3s ease both; }
.drawer-head { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid hsl(var(--border)); padding-bottom: 20px; }
.drawer-head h2 { font-size: 36px; line-height: .9; margin: 0; color: hsl(var(--primary)); }
.close-btn { width: 36px; height: 36px; border: 1px solid hsl(var(--border)); border-radius: 50%; background: transparent; cursor: pointer; display: grid; place-items: center; color: hsl(var(--foreground)); }
.close-btn:hover { background: hsl(var(--muted)); }
.cart-list { flex: 1; overflow: auto; padding: 19px 0; }
.empty-cart { display: grid; place-items: center; text-align: center; height: 100%; color: hsl(var(--muted-foreground)); }
.empty-cart .empty-icon { width: 70px; height: 70px; border-radius: 25px; background: hsl(var(--secondary)); color: hsl(var(--primary)); display: grid; place-items: center; margin-bottom: 19px; }
.empty-cart h3 { color: hsl(var(--primary)); font-size: 24px; margin: 0 0 7px; }
.empty-cart p { font-size: 13px; margin: 0 0 20px; }

.dialog-wrap { align-items: center; justify-content: center; padding: 20px; }
.dialog { background: hsl(var(--background)); width: min(620px, 100%); max-height: min(800px, calc(100dvh - 40px)); overflow-y: auto; border-radius: 25px; padding: 28px; box-shadow: 0 25px 80px rgba(43,19,34,.25); animation: rise-in .3s ease both; }
.dialog-header { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.dialog-header h2 { color: hsl(var(--primary)); font-size: 35px; line-height: .88; margin: 0; }
.dialog-header p { color: hsl(var(--muted-foreground)); font-size: 12px; margin: 8px 0 0; line-height: 1.4; }
.customizer-layout { display: grid; grid-template-columns: 180px 1fr; gap: 24px; }
.custom-visual { border-radius: 19px; min-height: 205px; display: grid; place-items: center; }
.customizer-section { margin-bottom: 17px; }
.customizer-section > label { display: block; font-family: var(--app-font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; color: hsl(var(--muted-foreground)); margin-bottom: 8px; }
.choice-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.choice { position: relative; display: inline-block; cursor: pointer; border: 1px solid hsl(var(--border)); color: hsl(var(--foreground)); background: transparent; padding: 9px 11px; border-radius: 10px; text-align: left; font-size: 11px; transition: .2s ease; }
.choice input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.choice:hover { border-color: hsl(var(--accent)); }
.choice:has(input:checked) { background: hsl(var(--primary)); border-color: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.choice small { display: block; opacity: .7; font-family: var(--app-font-mono); font-size: 8px; margin-top: 3px; }
.custom-summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid hsl(var(--border)); padding-top: 17px; margin-top: 5px; }
.custom-summary strong { color: hsl(var(--primary)); font-family: var(--app-font-mono); font-size: 17px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--app-font-mono); text-transform: uppercase; letter-spacing: .08em; font-size: 9px; color: hsl(var(--muted-foreground)); }
.field input { border: 1px solid hsl(var(--border)); background: hsl(var(--card)); color: hsl(var(--foreground)); border-radius: 11px; min-height: 43px; padding: 10px 12px; outline: none; font-size: 13px; }
.field input:focus { border-color: hsl(var(--accent)); box-shadow: 0 0 0 3px rgba(255,119,95,.16); }
.checkout-total { display: flex; justify-content: space-between; align-items: center; background: hsl(var(--muted)); padding: 14px; border-radius: 13px; margin: 5px 0 18px; }
.checkout-total span { font-size: 12px; }
.checkout-total strong { color: hsl(var(--primary)); font-family: var(--app-font-mono); }
.checkout-note { margin-top: 12px; text-align: center; font-size: 10px; color: hsl(var(--muted-foreground)); }
.full-button { width: 100%; }
.success-state { text-align: center; padding: 30px 15px 18px; }
.offers-success { text-align: center; padding: 14px 10px 8px; }
.offers-success h3 { font-size: 28px; color: hsl(var(--primary)); margin: 0 0 8px; line-height: 1; }
.offers-success p { color: hsl(var(--muted-foreground)); font-size: 13px; line-height: 1.55; max-width: 320px; margin: 0 auto; }
.success-mark { width: 67px; height: 67px; border-radius: 50%; display: grid; place-items: center; background: hsl(var(--secondary)); color: hsl(var(--primary)); margin: 0 auto 21px; }
.success-state h2 { font-size: 39px; color: hsl(var(--primary)); margin: 0 0 10px; line-height: .9; }
.success-state p { color: hsl(var(--muted-foreground)); font-size: 13px; line-height: 1.55; max-width: 350px; margin: 0 auto 22px; }
.order-code { display: inline-block; font-family: var(--app-font-mono); background: hsl(var(--muted)); padding: 9px 12px; border-radius: 8px; font-size: 11px; margin-bottom: 25px; }

@media (min-width: 640px) {
  .cart-label { display: inline; }
}

@media (max-width: 800px) {
  .container-wide { width: min(100% - 30px, 600px); }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 30px; gap: 10px; }
  .hero-copy h1 { font-size: clamp(3.5rem, 16vw, 6rem); }
  .hero-art { min-height: 350px; }
  .art-blob { width: 330px; }
  .cake-illustration { transform: scale(.85); }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; }
  .product-card { flex-direction: column; align-items: stretch; }
  .product-visual-wrap { flex: none; width: 100%; }
  .product-info { flex: none; padding: 17px 9px 7px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 19px; }
  .feature-layout { grid-template-columns: 1fr; gap: 43px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); margin: 0; padding: 29px 0 32px; }
  .process-step:last-child { border-bottom: 0; }
  .quotes { grid-template-columns: 1fr; }
  .quote-card { min-height: 135px; }
  .footer-main { display: block; }
  .footer-links { gap: 45px; margin-top: 35px; }
  .footer-bottom { display: block; line-height: 1.8; }
  .customizer-layout { grid-template-columns: 1fr; }
  .custom-visual { min-height: 145px; }
  .dialog { padding: 21px; }
  .dialog-header h2 { font-size: 31px; }
}

@media (max-width: 430px) {
  .hero-meta { flex-direction: column; gap: 9px; }
  .brand-name { font-size: 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .field.full { grid-column: auto; }
  .drawer { padding: 21px 17px; }
  .footer-links { gap: 25px; }
  .footer h2 { font-size: 43px; }
}
