:root {
  --color-primary: #24382b;
  --color-primary-dark: #15271d;
  --color-background: #fbf8f2;
  --color-surface: #f5f0e7;
  --color-accent: #c59a55;
  --color-terracotta: #b86f52;
  --color-coffee: #382a22;
  --color-text: #20231f;
  --color-muted: #73736b;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --serif-size: clamp(3.4rem, 7vw, 7rem);
}

body > *:not(#mesa-serena-app) { display: none !important; }
/* The Shopify theme sets html to 62.5% (1rem = 10px); this layout is sized for 1rem = 16px. */
html:has(#mesa-serena-app) { font-size: 100%; }
body:has(#mesa-serena-app) { margin: 0; background: var(--color-background); }

#mesa-serena-app {
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow: visible;
  isolation: isolate;
}

#mesa-serena-app *, #mesa-serena-app *::before, #mesa-serena-app *::after { box-sizing: border-box; }
#mesa-serena-app a { color: inherit; text-decoration: none; }
#mesa-serena-app img { display: block; max-width: 100%; }
.ms-container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.ms-eyebrow { color: var(--color-accent); font-size: .85rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.ms-kicker { color: var(--color-muted); font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; }
.ms-title { margin: 0; color: var(--color-primary); font-family: var(--font-display); font-size: clamp(2.8rem, 5.6vw, 5.7rem); font-weight: 500; line-height: .95; letter-spacing: 0; }
.ms-title em { color: var(--color-terracotta); font-style: italic; }
.ms-lead { max-width: 570px; color: #5f6159; font-size: clamp(1.06rem, 1.4vw, 1.22rem); }
.ms-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 26px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; font: inherit; font-size: .92rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease; }
.ms-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(21,39,29,.14); }
.ms-btn--dark { background: var(--color-primary); color: var(--color-background); }
.ms-btn--outline { border-color: rgba(36,56,43,.3); color: var(--color-primary); }
.ms-btn--light { background: var(--color-background); color: var(--color-primary-dark); }
.ms-section { padding: clamp(80px, 10vw, 150px) 0; }
.ms-rule { width: 100%; height: 1px; background: rgba(197,154,85,.45); }

.ms-nav { position: relative; z-index: 3; padding: 22px 0; border-bottom: 1px solid rgba(36,56,43,.12); }
.ms-nav__inner, .ms-nav__links, .ms-nav__actions { display: flex; align-items: center; }
.ms-nav__inner { justify-content: space-between; gap: 24px; }
.ms-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--color-primary); font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; }
.ms-brand__mark { width: 26px; height: 26px; border: 1px solid var(--color-accent); border-radius: 50% 0 50% 50%; transform: rotate(-35deg); position: relative; }
.ms-brand__mark::after { content: ""; position: absolute; width: 15px; height: 1px; background: var(--color-accent); left: 5px; top: 13px; transform: rotate(35deg); }
.ms-nav__links { gap: 28px; color: var(--color-muted); font-size: .84rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.ms-nav__links a:hover { color: var(--color-primary); }
.ms-nav__actions { gap: 14px; }
.ms-nav__cart { padding: 9px 14px; border: 1px solid rgba(36,56,43,.2); border-radius: 99px; font-size: .84rem; font-weight: 800; }
.ms-localization { display: flex; align-items: center; gap: 6px; }
.ms-localization__label { position: relative; }
.ms-localization select { max-width: 82px; padding: 7px 20px 7px 8px; border: 1px solid rgba(36,56,43,.18); border-radius: 999px; appearance: none; background: var(--color-background) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath d='m1 1 3 3 3-3' fill='none' stroke='%2324382b' stroke-width='1.2'/%3E%3C/svg%3E") no-repeat right 8px center; color: var(--color-primary); font: 700 .78rem var(--font-body); cursor: pointer; }
.ms-localization select:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

.ms-hero { position: relative; min-height: 710px; padding: 70px 0 100px; background: var(--color-surface); }
.ms-hero::before { content: ""; position: absolute; inset: 0 0 auto 48%; height: 100%; background: radial-gradient(circle at 70% 30%, rgba(197,154,85,.17), transparent 42%), linear-gradient(135deg, transparent 45%, rgba(184,111,82,.08) 45%); pointer-events: none; }
.ms-hero__grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 70px; }
.ms-hero__copy { padding: 30px 0; }
.ms-hero__copy .ms-title { margin: 22px 0 28px; max-width: 620px; }
.ms-hero__copy .ms-lead { margin: 0 0 34px; }
.ms-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 15px; }
.ms-hero__proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: var(--color-muted); font-size: .75rem; font-weight: 700; }
.ms-hero__proof span::before { content: "✓"; margin-right: 7px; color: var(--color-accent); font-weight: 900; }
.ms-hero__visual { position: relative; min-height: 540px; }
.ms-hero__visual::before { content: ""; position: absolute; width: 360px; height: 360px; right: 11%; top: 12%; border: 1px solid rgba(197,154,85,.55); border-radius: 50%; }
.ms-hero__image { position: absolute; z-index: 1; width: min(680px, 125%); right: -8%; top: 3%; transform: rotate(2deg); filter: drop-shadow(22px 28px 25px rgba(56,42,34,.22)); }
.ms-hero__tag { position: absolute; z-index: 2; right: 2%; bottom: 4%; max-width: 180px; padding: 18px; background: var(--color-primary); color: var(--color-background); font-family: var(--font-display); font-size: 1.35rem; line-height: 1.05; }

.ms-intro { background: var(--color-background); text-align: center; }
.ms-intro .ms-lead { margin: 24px auto 0; }

.video-classes-section { position: relative; overflow: hidden; padding: clamp(78px, 10vw, 142px) 0; background: var(--color-background); }
.video-classes-section::before { position: absolute; content: ""; width: clamp(260px, 32vw, 520px); aspect-ratio: 1; right: -10%; top: 8%; border: 1px solid rgba(197,154,85,.2); border-radius: 50%; box-shadow: 0 0 0 clamp(22px, 3vw, 46px) rgba(197,154,85,.045); pointer-events: none; }
.video-classes-container { position: relative; display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); align-items: center; gap: clamp(42px, 7vw, 108px); width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.video-classes-copy { max-width: 455px; }
.video-classes-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--color-accent); font-size: .85rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.video-classes-badge span { font-size: 1rem; }
.video-classes-title { margin: 22px 0 24px; color: var(--color-primary); font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 5.3rem); font-weight: 500; line-height: .94; }
.video-classes-title em { color: var(--color-terracotta); font-style: italic; }
.video-classes-description { max-width: 420px; margin: 0; color: var(--color-muted); font-size: clamp(1.06rem, 1.3vw, 1.18rem); line-height: 1.65; }
.video-classes-benefits { display: grid; gap: 10px; margin-top: 30px; color: var(--color-primary); font-size: 1rem; font-weight: 700; }
.video-classes-benefits span::first-letter { color: var(--color-accent); }
.video-classes-media { min-width: 0; }
.video-classes-label { margin: 0 0 14px 8px; color: var(--color-muted); font-size: .82rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.video-classes-frame { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 20px; background: var(--color-primary-dark); box-shadow: 0 18px 45px rgba(35,30,20,.14); }
.video-classes-frame::after { position: absolute; content: ""; inset: 0; border: 1px solid rgba(197,154,85,.48); border-radius: 20px; pointer-events: none; }
.video-classes-player { position: relative; z-index: 1; display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 20px; background: var(--color-primary-dark); object-fit: cover; }
.video-classes-caption { margin: 16px 8px 0; color: var(--color-muted); font-family: var(--font-display); font-size: 1.35rem; }
.video-classes-cta { display: inline-flex; align-items: center; gap: 20px; margin: 24px 8px 0; color: var(--color-primary); font-size: .92rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; transition: color .2s ease, transform .2s ease; }
.video-classes-cta span { color: var(--color-accent); font-size: 1.1rem; }
.video-classes-cta:hover { color: var(--color-terracotta); transform: translateX(3px); }
.video-classes-cta:focus-visible { outline: 3px solid rgba(197,154,85,.65); outline-offset: 5px; }

@media (max-width: 900px) {
  .video-classes-container { grid-template-columns: 1fr 1.35fr; gap: 32px; }
  .video-classes-title { font-size: clamp(2.6rem, 5.5vw, 4rem); }
}

@media (max-width: 767px) {
  .video-classes-section { padding: 78px 0; }
  .video-classes-section::before { right: -35%; top: 38%; }
  .video-classes-container { display: flex; flex-direction: column; align-items: stretch; gap: 34px; width: min(100% - 40px, 540px); }
  .video-classes-copy { max-width: none; }
  .video-classes-title { max-width: 500px; margin-top: 20px; font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .video-classes-description { font-size: .98rem; }
  .video-classes-media { width: 100%; }
  .video-classes-frame { border-radius: 18px; }
  .video-classes-frame::after, .video-classes-player { border-radius: 18px; }
  .video-classes-caption { font-size: 1.22rem; }
  .video-classes-cta { width: calc(100% - 16px); justify-content: space-between; margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .video-classes-cta { transition: none; }
}
.ms-problem__head { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 50px; margin-bottom: 58px; }
.ms-problem__head .ms-title { max-width: 550px; }
.ms-problem__head p { max-width: 460px; margin: 0; color: var(--color-muted); font-size: 1.06rem; }
.ms-problem__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(36,56,43,.18); }
.ms-problem__item { min-height: 245px; padding: 28px 24px; border-right: 1px solid rgba(36,56,43,.18); }
.ms-problem__item:last-child { border-right: 0; }
.ms-problem__number { color: var(--color-accent); font-family: var(--font-display); font-size: 3rem; line-height: 1; }
.ms-problem__item h3 { margin: 48px 0 0; color: var(--color-primary); font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; line-height: 1.1; }

.ms-transition { background: var(--color-primary-dark); color: var(--color-background); }
.ms-transition__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.ms-transition .ms-title { color: var(--color-background); }
.ms-transition p { max-width: 470px; color: rgba(251,248,242,.8); font-size: 1.1rem; }
.ms-transition__photo { min-height: 430px; background: linear-gradient(150deg, rgba(197,154,85,.1), rgba(184,111,82,.3)), url('/cdn/shop/files/WhatsAppImage2026-05-29at18.21.45.jpg') center/cover; }

.ms-product { background: var(--color-surface); }
.ms-product__grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 90px; }
.ms-product__visual { position: relative; padding: 30px; }
.ms-product__visual::after { content: "CUISINE SEREINE"; position: absolute; right: 0; bottom: 0; color: rgba(197,154,85,.55); font-size: .8rem; letter-spacing: .2em; writing-mode: vertical-rl; }
.ms-product__visual img { width: 100%; filter: drop-shadow(16px 20px 20px rgba(56,42,34,.2)); }
.ms-product__visual--video { display: grid; place-items: center; overflow: hidden; border-radius: 18px; }
.ms-product__video { display: block; width: 100%; height: auto; max-height: 620px; aspect-ratio: 16 / 10; object-fit: cover; filter: drop-shadow(16px 20px 20px rgba(56,42,34,.2)); }
.ms-product__copy .ms-title { margin: 18px 0 24px; }
.ms-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 28px; margin: 34px 0 0; padding: 0; list-style: none; color: #5f6159; font-size: 1.06rem; }
.ms-list li::before { content: "—"; margin-right: 10px; color: var(--color-accent); }

.ms-benefits { background: var(--color-background); }
.ms-benefits__head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 55px; }
.ms-benefits__head p { max-width: 370px; margin: 0; color: var(--color-muted); font-size: 1.06rem; }
.ms-benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ms-benefit { min-height: 245px; padding: 24px; border-top: 2px solid var(--color-accent); background: #fffdf9; }
.ms-benefit:nth-child(2) { margin-top: 38px; }
.ms-benefit:nth-child(3) { margin-top: 76px; }
.ms-benefit:nth-child(4) { margin-top: 114px; }
.ms-benefit h3 { margin: 55px 0 10px; color: var(--color-primary); font-family: var(--font-display); font-size: 1.65rem; font-weight: 500; line-height: 1; }
.ms-benefit p { margin: 0; color: var(--color-muted); font-size: 1rem; }

.ms-offers { overflow-x: clip; background: var(--color-primary); color: var(--color-background); }
.ms-offers .ms-title { color: var(--color-background); }
.ms-offers__intro { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 45px; }
.ms-offers__intro p { max-width: 340px; margin: 0; color: rgba(251,248,242,.78); font-size: 1.06rem; }
.ms-offers__grid { position: relative; isolation: isolate; display: grid; grid-template-columns: 1fr 1.05fr; grid-auto-rows: 1fr; align-items: stretch; gap: 22px; }
.ms-offers__grid::before { content: ""; position: absolute; z-index: -1; inset: -14% -6% -14% 40%; background: radial-gradient(closest-side, rgba(197,154,85,.17), rgba(197,154,85,.05) 55%, transparent 75%); pointer-events: none; }
.ms-offer { position: relative; display: flex; flex-direction: column; padding: 34px 34px 28px; border-radius: 20px; transition: translate .3s ease, box-shadow .3s ease; }
.ms-offer:hover { translate: 0 -5px; }
/* Same base as Premium (2px border + 34px): buttons and "acceso" line sit on the same line; the gap above stays empty on purpose. */
.ms-offer--essential { padding-bottom: 35px; border: 1px solid rgba(197,154,85,.32); background: linear-gradient(180deg, rgba(251,248,242,.09), rgba(251,248,242,.03)); color: var(--color-background); box-shadow: 0 18px 40px rgba(0,0,0,.22), inset 0 1px 0 rgba(251,248,242,.08); }
.ms-offer--essential:hover { box-shadow: 0 26px 50px rgba(0,0,0,.3), inset 0 1px 0 rgba(251,248,242,.1); }
.ms-offer--premium { padding: 46px 40px 34px; border: 2px solid var(--color-accent); background: linear-gradient(180deg, #fdfaf4 0%, #f5efe3 100%); color: var(--color-text); box-shadow: 0 30px 64px rgba(0,0,0,.34), 0 0 38px rgba(197,154,85,.2); }
.ms-offer--premium:hover { box-shadow: 0 38px 74px rgba(0,0,0,.38), 0 0 48px rgba(197,154,85,.28); }
.ms-offer__badge { position: absolute; z-index: 2; top: -30px; right: -22px; display: grid; place-items: center; width: clamp(96px, 9vw, 116px); aspect-ratio: 1; padding: 14px; border: 1px solid rgba(251,248,242,.55); border-radius: 50%; background: radial-gradient(circle at 32% 28%, #f3dca3 0%, #d9b066 38%, #b98238 100%); box-shadow: 0 12px 24px rgba(56,42,34,.28), inset 0 0 0 5px rgba(251,248,242,.22), inset 0 0 0 6px rgba(56,42,34,.18); color: #2e2218; font-family: var(--font-display); font-size: clamp(.95rem, 1.1vw, 1.12rem); font-weight: 600; line-height: .95; letter-spacing: .04em; text-align: center; text-transform: uppercase; transform: rotate(10deg); }
.ms-offer__media { display: grid; place-items: center; margin: -4px 0 20px; }
#mesa-serena-app .ms-offer__media img { width: auto; max-width: 100%; height: 200px; object-fit: contain; filter: drop-shadow(0 14px 20px rgba(0,0,0,.3)); }
#mesa-serena-app .ms-offer--premium .ms-offer__media img { height: 260px; }
/* PREMIUM.png has a solid white background: multiply blends it into the cream card. */
#mesa-serena-app .ms-offer__media .ms-offer__media-premium { filter: none; mix-blend-mode: multiply; }
.ms-offer__labels { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 16px; }
.ms-offer--premium .ms-offer__labels { padding-right: 72px; }
.ms-offer__name, .ms-offer__tag { display: inline-flex; align-items: center; min-height: 26px; padding: 4px 12px; border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .12em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.ms-offer__name { border: 1px solid rgba(197,154,85,.6); color: var(--color-accent); }
.ms-offer--premium .ms-offer__name { border-color: rgba(154,113,52,.45); color: #8c6630; }
.ms-offer__tag { background: rgba(251,248,242,.12); color: rgba(251,248,242,.88); }
.ms-offer__tag--gold { background: linear-gradient(135deg, #e7c985, #c59a55); color: #2a1f15; box-shadow: 0 4px 10px rgba(197,154,85,.3); }
.ms-offer h3 { margin: 0; color: inherit; font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; line-height: 1; }
.ms-offer--premium h3 { font-size: 2.9rem; color: var(--color-primary-dark); }
.ms-offer__price { display: flex; align-items: flex-start; gap: .08em; margin: 18px 0 22px; font-family: var(--font-display); font-size: 4.3rem; font-weight: 600; line-height: .9; letter-spacing: -.01em; white-space: nowrap; }
.ms-offer--premium .ms-offer__price { font-size: 4.9rem; color: var(--color-primary-dark); }
.ms-price__currency { padding-top: .3em; font-size: .38em; font-weight: 600; opacity: .85; }
.ms-offer__video-note { display: grid; grid-template-columns: 48px 1fr; align-items: center; column-gap: 14px; margin: 0 0 24px; padding: 14px 18px 14px 14px; border: 1px solid rgba(197,154,85,.32); border-radius: 16px; background: linear-gradient(135deg, rgba(231,201,133,.22), rgba(251,248,242,.7)); box-shadow: inset 0 1px 0 rgba(255,255,255,.7); color: var(--color-primary-dark); }
.ms-offer__video-note span { grid-row: span 2; display: grid; place-items: center; width: 48px; height: 48px; padding-left: 3px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #e7c985, #c59a55 60%, #a97a3a); box-shadow: 0 8px 16px rgba(197,154,85,.38), inset 0 0 0 3px rgba(251,248,242,.3); color: #fff; font-size: 1rem; }
.ms-offer__video-note strong { font-size: 1rem; line-height: 1.25; }
.ms-offer__video-note small { grid-column: 2; margin-top: 3px; color: #4f524b; font-size: .95rem; line-height: 1.35; }
.ms-offer__features { display: grid; gap: 4px; margin: 0 0 26px; padding: 20px 0; border: 0; background: linear-gradient(90deg, transparent, rgba(197,154,85,.6), transparent) top / 100% 1px no-repeat, linear-gradient(90deg, transparent, rgba(197,154,85,.6), transparent) bottom / 100% 1px no-repeat; list-style: none; }
.ms-offer--essential .ms-offer__features { gap: 8px; padding: 24px 0; }
.ms-offer__features li { display: flex; align-items: center; gap: 12px; margin: 0; padding: 7px 0; color: inherit; font-size: 1rem; font-weight: 600; line-height: 1.3; }
.ms-offer--essential .ms-offer__features li { font-size: 1.08rem; }
.ms-offer__features li::before { content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='m2.5 6.2 2.3 2.3 4.7-5' fill='none' stroke='%2315271d' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat, linear-gradient(135deg, #ecd092, #c59a55); box-shadow: 0 3px 8px rgba(197,154,85,.3); }
.ms-offer__features .ms-offer__feature--highlight { margin-top: 8px; padding: 11px 14px; border: 1px solid rgba(197,154,85,.45); border-radius: 12px; background: linear-gradient(135deg, rgba(231,201,133,.28), rgba(231,201,133,.1)); color: var(--color-primary-dark); font-weight: 800; }
.ms-offer__cta { margin-top: auto; }
.ms-offer .ms-btn { width: 100%; min-height: 60px; font-size: .98rem; letter-spacing: .12em; transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease; }
.ms-offer--essential .ms-btn--light { border-color: var(--color-accent); background: var(--color-background); color: var(--color-primary-dark); }
.ms-offer--essential .ms-btn--light:hover { background: #fff; box-shadow: 0 0 0 4px rgba(197,154,85,.22), 0 14px 28px rgba(0,0,0,.25); }
.ms-offer--premium .ms-btn--dark { background: var(--color-primary); color: var(--color-background); box-shadow: 0 14px 28px rgba(21,39,29,.28); }
.ms-offer--premium .ms-btn--dark:hover { background: var(--color-accent); color: var(--color-primary-dark); box-shadow: 0 16px 32px rgba(197,154,85,.4); }
.ms-offer__access { margin: 12px 0 0; color: rgba(251,248,242,.75); font-size: .92rem; font-weight: 600; letter-spacing: .02em; text-align: center; }
.ms-offer--premium .ms-offer__access { color: var(--color-muted); }
.ms-offers__compare { margin-top: 45px; overflow-x: auto; }
.ms-compare { width: 100%; border-collapse: collapse; color: rgba(251,248,242,.85); font-size: 1rem; }
.ms-compare th, .ms-compare td { padding: 14px 12px; border-bottom: 1px solid rgba(251,248,242,.16); text-align: center; }
.ms-compare th:first-child, .ms-compare td:first-child { text-align: left; }
.ms-compare th { color: var(--color-accent); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }

.ms-bonuses { background: var(--color-surface); }
.ms-bonuses__head { max-width: 570px; margin-bottom: 50px; }
.ms-bonuses__head .ms-title { margin: 18px 0; }
.ms-bonuses__head p { color: var(--color-muted); font-size: 1.06rem; }
.ms-bonuses__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ms-bonus { overflow: hidden; padding: 0 22px 22px; background: var(--color-background); box-shadow: 0 8px 22px rgba(56,42,34,.06); }
.ms-bonus__image { display: block; width: calc(100% + 44px); height: auto; aspect-ratio: 2 / 3; margin-left: -22px; object-fit: contain; object-position: center; background: var(--color-surface); }
.ms-bonus h3 { margin: 20px 0 0; color: var(--color-primary); font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; line-height: 1.05; }
.ms-bonus p { min-height: 42px; margin: 9px 0 14px; color: var(--color-muted); font-size: .98rem; line-height: 1.45; }
.ms-bonus__free { color: var(--color-primary); font-size: .82rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.ms-bonus__free::before { content: "✓"; margin-right: 7px; color: var(--color-accent); }

.ms-social { background: var(--color-background); }
.ms-social__head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 44px; }
.ms-social__head p { max-width: 350px; margin: 0; color: var(--color-muted); font-size: 1.06rem; }
.ms-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ms-quote { padding: 28px; border-left: 2px solid var(--color-accent); background: #fffdf9; }
.ms-quote__photo { height: 140px; margin: -28px -28px 23px; background: url('/cdn/shop/files/WhatsAppImage2026-05-29at18.21.45.jpg') center 68%/cover; filter: saturate(.75); }
.ms-quote p { margin: 0 0 22px; color: var(--color-primary); font-family: var(--font-display); font-size: 1.45rem; line-height: 1.1; }
.ms-quote footer { color: var(--color-muted); font-size: .85rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.ms-guarantee { background: var(--color-surface); }
.ms-guarantee__box { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 28px; max-width: 820px; margin: auto; padding: 48px; border: 1px solid rgba(197,154,85,.55); }
.ms-shield { display: grid; place-items: center; width: 72px; height: 72px; border: 1px solid var(--color-accent); border-radius: 50%; color: var(--color-accent); font-family: var(--font-display); font-size: 2rem; }
.ms-guarantee h2 { margin: 0 0 8px; color: var(--color-primary); font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; }
.ms-guarantee p { margin: 0; color: var(--color-muted); font-size: 1.06rem; }

.ms-faq { background: var(--color-background); }
.ms-faq__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.ms-faq__list details { border-bottom: 1px solid rgba(36,56,43,.2); }
.ms-faq__list summary { display: flex; justify-content: space-between; gap: 20px; padding: 21px 0; cursor: pointer; color: var(--color-primary); font-family: var(--font-display); font-size: 1.45rem; list-style: none; }
.ms-faq__list summary::-webkit-details-marker { display: none; }
.ms-faq__list summary::after { content: "+"; color: var(--color-accent); font-family: var(--font-body); font-size: 1.2rem; }
.ms-faq__list details[open] summary::after { content: "−"; }
.ms-faq__list p { max-width: 600px; margin: -5px 0 20px; color: var(--color-muted); font-size: 1.06rem; }

.ms-final { background: var(--color-primary-dark); color: var(--color-background); text-align: center; }
.ms-final .ms-title { max-width: 700px; margin: 0 auto 22px; color: var(--color-background); }
.ms-final > .ms-container > p { max-width: 450px; margin: 0 auto 38px; color: rgba(251,248,242,.78); font-size: 1.06rem; }
.ms-final__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 330px)); justify-content: center; gap: 14px; text-align: left; }
.ms-final__card { padding: 25px; border: 1px solid rgba(251,248,242,.2); border-radius: 14px; }
.ms-final__card--featured { border-color: var(--color-accent); }
.ms-final__card strong { display: block; margin-bottom: 4px; font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; }
.ms-final__card span { display: block; margin-bottom: 18px; color: var(--color-accent); font-size: .85rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ms-footer { padding: 28px 0; background: var(--color-primary-dark); border-top: 1px solid rgba(251,248,242,.15); color: rgba(251,248,242,.7); font-size: .88rem; }
.ms-footer__inner { display: flex; justify-content: space-between; gap: 20px; }

.ms-reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.ms-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .ms-nav__links { display: none; }
  .ms-hero__grid, .ms-transition__grid, .ms-product__grid, .ms-faq__grid { grid-template-columns: 1fr; gap: 45px; }
  .ms-hero { padding-top: 48px; }
  .ms-hero__visual { min-height: 420px; }
  .ms-hero__image { width: min(620px, 110%); right: -5%; }
  .ms-problem__head { grid-template-columns: 1fr; gap: 18px; }
  .ms-problem__grid { grid-template-columns: repeat(2, 1fr); }
  .ms-problem__item:nth-child(2) { border-right: 0; }
  .ms-problem__item:nth-child(-n+2) { border-bottom: 1px solid rgba(36,56,43,.18); }
  .ms-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .ms-benefit:nth-child(n) { margin-top: 0; }
  .ms-bonuses__grid { grid-template-columns: repeat(2, 1fr); }
  .ms-transition__photo { min-height: 320px; order: -1; }
}

@media (max-width: 600px) {
  .ms-container { width: min(100% - 36px, 520px); }
  .ms-nav { padding: 16px 0; }
  .ms-brand { font-size: 1.4rem; }
  .ms-nav__actions .ms-btn { display: none; }
  .ms-localization select { max-width: 70px; padding-inline: 7px 17px; font-size: .68rem; }
  .ms-hero { min-height: auto; padding: 38px 0 65px; }
  .ms-hero__copy .ms-title { font-size: clamp(3rem, 15vw, 4.3rem); }
  .ms-hero__visual { min-height: 310px; margin-top: 8px; }
  .ms-hero__visual::before { width: 240px; height: 240px; right: 2%; top: 8%; }
  .ms-hero__image { width: 100%; right: 0; top: 2%; }
  .ms-hero__tag { right: -2%; bottom: -2%; font-size: 1.05rem; }
  .ms-hero__actions { align-items: stretch; flex-direction: column; }
  .ms-btn { width: 100%; }
  .ms-hero__proof { gap: 9px 16px; font-size: .68rem; }
  .ms-section { padding: 78px 0; }
  .ms-title { font-size: clamp(2.65rem, 14vw, 4rem); }
  .ms-problem__grid, .ms-benefits__grid, .ms-bonuses__grid, .ms-testimonials, .ms-offers__grid, .ms-final__cards { grid-template-columns: 1fr; }
  .ms-problem__item { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(36,56,43,.18); }
  .ms-problem__item:last-child { border-bottom: 0; }
  .ms-problem__item h3 { margin-top: 28px; }
  .ms-product__grid { gap: 22px; }
  .ms-product__visual { padding: 0; }
  .ms-list { grid-template-columns: 1fr; }
  .ms-benefits__head, .ms-offers__intro, .ms-social__head { display: block; }
  .ms-benefits__head p, .ms-offers__intro p, .ms-social__head p { margin-top: 18px; }
  .ms-offers__grid { gap: 44px; }
  .ms-offers__grid::before { inset: 38% -10% -6% -10%; }
  .ms-offer { padding: 28px 22px 24px; }
  .ms-offer--essential { padding-bottom: 29px; }
  .ms-offer--premium { padding: 40px 22px 28px; }
  .ms-offer__badge { top: -26px; right: -8px; width: 98px; padding: 16px; font-size: .8rem; letter-spacing: .02em; }
  .ms-offer--premium .ms-offer__labels { padding-right: 70px; }
  .ms-offer__price { font-size: 3.8rem; }
  .ms-offer--premium .ms-offer__price { font-size: 4.3rem; }
  .ms-offer--premium h3 { font-size: 2.6rem; }
  #mesa-serena-app .ms-offer__media img { height: 180px; }
  #mesa-serena-app .ms-offer--premium .ms-offer__media img { height: 230px; }
  .ms-guarantee__box { grid-template-columns: 1fr; padding: 30px 24px; }
  .ms-faq__grid { gap: 35px; }
  .ms-faq__list summary { font-size: 1.25rem; }
  .ms-footer__inner { display: block; }
  .ms-footer__inner span { display: block; margin-top: 8px; }
}

/* Hero editorial: each layer remains independent so the supplied product mockup can be replaced safely. */
.hero-premium { 
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(640px, 78vw, 820px);
  background: var(--color-surface);
  color: var(--color-text);
}

.hero-premium__background {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 28%, rgba(197, 154, 85, .22), transparent clamp(120px, 18vw, 300px)),
    linear-gradient(112deg, rgba(251, 248, 242, .7) 0 42%, rgba(245, 240, 231, .92) 42% 100%);
}

.hero-premium__background::before {
  position: absolute;
  content: "";
  width: clamp(420px, 58vw, 920px);
  aspect-ratio: 1;
  right: clamp(-280px, -10vw, -100px);
  top: clamp(50px, 9vw, 140px);
  border: 1px solid rgba(36, 56, 43, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 clamp(24px, 4vw, 62px) rgba(197, 154, 85, .05), 0 0 0 clamp(25px, 4.2vw, 64px) rgba(197, 154, 85, .05);
}

.hero-premium__background::after {
  position: absolute;
  content: "";
  width: clamp(180px, 22vw, 360px);
  height: clamp(120px, 16vw, 250px);
  right: 7%;
  bottom: -10%;
  border: 1px solid rgba(184, 111, 82, .17);
  border-radius: 50% 50% 0 50%;
  transform: rotate(-18deg);
}

.hero-premium__sun {
  position: absolute;
  width: clamp(100px, 13vw, 190px);
  aspect-ratio: 1;
  left: 4%;
  bottom: 12%;
  border: 1px solid rgba(197, 154, 85, .4);
  border-radius: 50%;
}

.hero-premium__leaf {
  position: absolute;
  width: clamp(40px, 5vw, 75px);
  aspect-ratio: .58;
  border: 1px solid rgba(36, 56, 43, .18);
  border-radius: 100% 0 100% 0;
  opacity: .7;
}

.hero-premium__leaf--one { right: 8%; top: 12%; transform: rotate(28deg); }
.hero-premium__leaf--two { right: 16%; top: 21%; transform: rotate(58deg) scale(.65); }

.hero-premium__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(38px, 7vw, 112px);
  width: min(1360px, calc(100% - 64px));
  min-height: inherit;
  margin-inline: auto;
  padding: clamp(56px, 7vw, 100px) 0 clamp(60px, 8vw, 110px);
}

.hero-premium__copy { max-width: 620px; }
.hero-premium__eyebrow { display: flex; align-items: center; gap: 10px; color: var(--color-primary); font-size: clamp(.8rem, .9vw, .88rem); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-premium__eyebrow > span:not(.hero-premium__eyebrow-mark) { color: var(--color-accent); }
.hero-premium__eyebrow-mark { width: 22px; height: 22px; border: 1px solid var(--color-accent); border-radius: 50% 0 50% 50%; transform: rotate(-35deg); }
.hero-premium__title { max-width: 660px; margin: clamp(22px, 3vw, 38px) 0 clamp(24px, 3vw, 34px); color: var(--color-primary-dark); font-family: var(--font-display); font-size: clamp(3.35rem, 6.2vw, 7.1rem); font-weight: 500; line-height: .88; letter-spacing: -.025em; }
.hero-premium__title span { display: block; }
.hero-premium__title em { display: inline-block; color: var(--color-terracotta); font-style: italic; }
.hero-premium__description { max-width: 520px; margin: 0 0 clamp(26px, 3vw, 38px); color: #5f6159; font-size: clamp(1.06rem, 1.25vw, 1.2rem); line-height: 1.65; }
.hero-premium__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.hero-premium__primary, .hero-premium__secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; border-radius: 999px; font: inherit; font-size: .92rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.hero-premium__primary { gap: 24px; padding: 0 24px 0 28px; border: 1px solid var(--color-primary); background: var(--color-primary); color: var(--color-background); cursor: pointer; }
.hero-premium__primary span { font-size: 1.15rem; font-weight: 400; line-height: 1; }
.hero-premium__secondary { gap: 10px; padding: 0 5px 0 18px; border: 1px solid rgba(36, 56, 43, .45); color: var(--color-primary); }
.hero-premium__secondary span { font-size: 1rem; }
.hero-premium__primary:hover, .hero-premium__secondary:hover { transform: translateY(-2px); box-shadow: 0 13px 25px rgba(21, 39, 29, .15); }
.hero-premium__primary:focus-visible, .hero-premium__secondary:focus-visible { outline: 3px solid rgba(197, 154, 85, .65); outline-offset: 4px; }
.hero-premium__benefits { display: flex; flex-wrap: wrap; gap: 13px clamp(17px, 2.5vw, 32px); margin-top: clamp(28px, 4vw, 48px); color: var(--color-muted); font-size: clamp(.85rem, .9vw, .92rem); font-weight: 700; }
.hero-premium__benefits span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.hero-premium__benefits i { color: var(--color-accent); font-size: 1rem; font-style: normal; }

.hero-premium__product { position: relative; display: grid; align-items: center; min-width: 0; }
.hero-premium__product-frame { position: relative; display: grid; place-items: center; width: 100%; min-height: clamp(330px, 42vw, 600px); perspective: 1100px; overflow: visible; }
.hero-premium__product-frame::before { position: absolute; content: ""; width: min(84%, 570px); aspect-ratio: 1; border-radius: 50%; background: rgba(197, 154, 85, .13); }
.hero-premium__product-frame::after { position: absolute; content: ""; width: min(88%, 610px); aspect-ratio: 1; border: 1px solid rgba(197, 154, 85, .42); border-radius: 50%; transform: rotate(18deg); }
.hero-product { position: relative; z-index: 1; display: block; width: min(100%, 650px); height: auto; max-height: min(62vh, 620px); object-fit: contain; transform: rotateY(-7deg) rotateX(2deg) rotateZ(1deg) translateZ(0); transform-origin: 50% 75%; filter: drop-shadow(18px 26px 22px rgba(56, 42, 34, .2)); animation: hero-product-float 7s ease-in-out infinite; will-change: transform; }

.hero-premium__foods { position: absolute; z-index: 0; inset: 0; pointer-events: none; transform-style: preserve-3d; }
.hero-food { position: absolute; left: 50%; top: 50%; width: clamp(86px, 13vw, 170px); height: auto; opacity: 0; transform: translate3d(-50%, -50%, -10px) rotate(0deg) scale(.4); transform-origin: center; filter: drop-shadow(10px 16px 12px rgba(56,42,34,.18)); transition: opacity 260ms ease, transform 850ms cubic-bezier(.22, 1, .36, 1); will-change: transform, opacity; }
.hero-food--l1 { z-index: 1; transition-delay: 0ms; }
.hero-food--l2 { z-index: 2; transition-delay: 70ms; }
.hero-food--l3 { z-index: 3; transition-delay: 140ms; }
.hero-food--l4 { z-index: 2; transition-delay: 210ms; }
.hero-food--l5 { z-index: 2; transition-delay: 280ms; }
.hero-premium__product-frame.is-open .hero-food { opacity: 1; }
.hero-premium__product-frame.is-open .hero-food--l1 { transform: translate3d(calc(-50% - clamp(86px, 10.5vw, 150px)), calc(-50% - clamp(90px, 12vw, 170px)), 70px) rotate(-12deg) scale(.9); }
.hero-premium__product-frame.is-open .hero-food--l2 { transform: translate3d(calc(-50% + clamp(86px, 10.5vw, 150px)), calc(-50% - clamp(78px, 10.5vw, 150px)), 30px) rotate(10deg) scale(.85); }
.hero-premium__product-frame.is-open .hero-food--l3 { transform: translate3d(calc(-50% - clamp(100px, 12.5vw, 180px)), calc(-50% + clamp(25px, 4vw, 50px)), 90px) rotate(-8deg) scale(.9); }
.hero-premium__product-frame.is-open .hero-food--l4 { transform: translate3d(calc(-50% + clamp(100px, 12.5vw, 180px)), calc(-50% + clamp(30px, 4.5vw, 60px)), 50px) rotate(9deg) scale(.85); }
.hero-premium__product-frame.is-open .hero-food--l5 { transform: translate3d(calc(-50% + clamp(22px, 3vw, 40px)), calc(-50% + clamp(110px, 13vw, 180px)), 110px) rotate(-5deg) scale(.9); }
.hero-premium__product-frame.is-open .hero-product { transform: rotateY(-9deg) rotateX(3deg) rotateZ(1deg) translateZ(40px) scale(1.025); }
.hero-premium__product:hover .hero-premium__product-frame .hero-food { opacity: 1; }
.hero-premium__product:hover .hero-premium__product-frame .hero-food--l1 { transform: translate3d(calc(-50% - clamp(86px, 10.5vw, 150px)), calc(-50% - clamp(90px, 12vw, 170px)), 70px) rotate(-12deg) scale(.9); }
.hero-premium__product:hover .hero-premium__product-frame .hero-food--l2 { transform: translate3d(calc(-50% + clamp(86px, 10.5vw, 150px)), calc(-50% - clamp(78px, 10.5vw, 150px)), 30px) rotate(10deg) scale(.85); }
.hero-premium__product:hover .hero-premium__product-frame .hero-food--l3 { transform: translate3d(calc(-50% - clamp(100px, 12.5vw, 180px)), calc(-50% + clamp(25px, 4vw, 50px)), 90px) rotate(-8deg) scale(.9); }
.hero-premium__product:hover .hero-premium__product-frame .hero-food--l4 { transform: translate3d(calc(-50% + clamp(100px, 12.5vw, 180px)), calc(-50% + clamp(30px, 4.5vw, 60px)), 50px) rotate(9deg) scale(.85); }
.hero-premium__product:hover .hero-premium__product-frame .hero-food--l5 { transform: translate3d(calc(-50% + clamp(22px, 3vw, 40px)), calc(-50% + clamp(110px, 13vw, 180px)), 110px) rotate(-5deg) scale(.9); }
.hero-premium__product:hover .hero-premium__product-frame .hero-product { transform: rotateY(-9deg) rotateX(3deg) rotateZ(1deg) translateZ(40px) scale(1.025); }

@keyframes hero-product-float {
  0%, 100% { transform: rotateY(-7deg) rotateX(2deg) rotateZ(1deg) translate3d(0, 0, 0); }
  50% { transform: rotateY(-5deg) rotateX(3deg) rotateZ(1deg) translate3d(0, -8px, 0); }
}
.hero-premium__caption { display: flex; justify-content: space-between; gap: 20px; margin: clamp(8px, 1vw, 18px) clamp(12px, 2vw, 28px) 0; color: var(--color-muted); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-premium__caption span:first-child { color: var(--color-accent); font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; letter-spacing: 0; }

@media (max-width: 900px) {
  .hero-premium__container { grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); width: min(100% - 48px, 900px); gap: 30px; }
  .hero-premium__title { font-size: clamp(3rem, 7vw, 5rem); }
  .hero-premium__product-frame { min-height: 390px; }
}

@media (max-width: 767px) {
  .hero-premium { min-height: 0; }
  .hero-premium__background { background: radial-gradient(circle at 72% 67%, rgba(197, 154, 85, .2), transparent 38%), linear-gradient(165deg, #fbf8f2 0 44%, #f5f0e7 44% 100%); }
  .hero-premium__background::before { width: 105vw; right: -35vw; top: 43%; }
  .hero-premium__background::after { right: -18%; bottom: 2%; }
  .hero-premium__sun { left: -8%; bottom: 34%; }
  .hero-premium__leaf--one { right: 7%; top: 48%; }
  .hero-premium__leaf--two { right: 17%; top: 56%; }
  .hero-premium__container { display: flex; flex-direction: column; align-items: stretch; width: min(100% - 40px, 540px); padding: 42px 0 58px; gap: 30px; }
  .hero-premium__title { max-width: 520px; margin-top: 22px; font-size: clamp(3.05rem, 14.2vw, 4.65rem); line-height: .89; }
  .hero-premium__description { font-size: .98rem; }
  .hero-premium__actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-premium__primary, .hero-premium__secondary { width: 100%; }
  .hero-premium__benefits { justify-content: space-between; gap: 10px; font-size: .74rem; }
  .hero-premium__benefits span { gap: 4px; }
  .hero-premium__product { width: 100%; margin-top: 4px; }
  .hero-premium__product-frame { min-height: 0; padding: 14px 0 6px; }
  .hero-premium__product-frame::before { width: 84vw; }
  .hero-premium__product-frame::after { width: 90vw; }
  .hero-premium__product-frame.is-open .hero-premium__foods,
  .hero-premium__product:hover .hero-premium__foods { z-index: 2; }
  .hero-product { width: min(100%, 420px); max-height: none; }
  .hero-premium__caption { margin-inline: 8px; font-size: .68rem; }
  .hero-food { width: clamp(78px, 25vw, 122px); }
  .hero-premium__product-frame.is-open .hero-food--l1 { transform: translate3d(calc(-50% - 28vw), calc(-50% - 34vw), 50px) rotate(-12deg) scale(.88); }
  .hero-premium__product-frame.is-open .hero-food--l2 { transform: translate3d(calc(-50% + 28vw), calc(-50% - 31vw), 25px) rotate(10deg) scale(.84); }
  .hero-premium__product-frame.is-open .hero-food--l3 { transform: translate3d(calc(-50% - 32vw), calc(-50% + 12vw), 65px) rotate(-8deg) scale(.88); }
  .hero-premium__product-frame.is-open .hero-food--l4 { transform: translate3d(calc(-50% + 32vw), calc(-50% + 14vw), 40px) rotate(9deg) scale(.84); }
  .hero-premium__product-frame.is-open .hero-food--l5 { transform: translate3d(calc(-50% + 8vw), calc(-50% + 36vw), 80px) rotate(-5deg) scale(.88); }
}

@media (max-width: 480px) {
  .ms-nav__inner { gap: 10px; }
  .ms-brand { white-space: nowrap; }
  .ms-nav__cart { display: none; }
  .ms-localization select { max-width: 96px; }
}

@media (max-width: 360px) {
  .hero-premium__container { width: min(100% - 32px, 540px); }
  .hero-premium__title { font-size: clamp(2.8rem, 14vw, 3.6rem); }
  .hero-premium__benefits { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-premium__benefits span:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .ms-offer, .ms-offer .ms-btn { transition: none; }
  .ms-offer:hover { translate: none; }
  .hero-premium__primary, .hero-premium__secondary { transition: none; }
  .hero-premium__copy, .hero-premium__product { opacity: 1; transform: none; transition: none; }
  .hero-product { animation: none; transform: rotateY(-4deg) rotateX(1deg) rotateZ(1deg); }
  .hero-food { transition-duration: 0ms; }
}

/* Mobile readability: minimum text sizes on small screens */
@media (max-width: 767px) {
  #mesa-serena-app { font-size: 17px; }
  .ms-lead, .hero-premium__description, .video-classes-description { font-size: 1.12rem; }
  .ms-problem__head p, .ms-benefits__head p, .ms-social__head p, .ms-offers__intro p, .ms-bonuses__head p,
  .ms-transition p, .ms-guarantee p, .ms-faq__list p, .ms-final > .ms-container > p { font-size: 1.06rem; }
  .ms-eyebrow, .video-classes-badge, .video-classes-label, .hero-premium__eyebrow, .ms-product__visual::after,
  .ms-compare th, .ms-bonus__free, .ms-final__card span, .ms-offer__name, .ms-offer__tag { font-size: .9rem; }
  .ms-btn, .ms-offer .ms-btn, .hero-premium__primary, .hero-premium__secondary, .video-classes-cta { font-size: 1rem; }
  .ms-kicker, .ms-list, .ms-benefit p, .ms-bonus p, .ms-compare, .video-classes-benefits,
  .ms-offer__features li, .ms-offer__video-note small { font-size: 1.06rem; }
  .ms-hero__proof, .hero-premium__benefits, .hero-premium__caption, .ms-offer__access, .ms-quote footer, .ms-footer { font-size: .95rem; }
  .ms-nav__cart, .ms-localization select { font-size: .85rem; }
}

/* Full-width looping video between the hero and the video-classes section: no gaps, original proportion. */
#mesa-serena-app .ms-fullvideo { display: block; width: 100%; max-width: none; height: auto; margin: 0; padding: 0; border: 0; background: transparent; pointer-events: none; }
