:root {
  --vmrc-accent: #2d5a3a;
  --vmrc-accent-light: #3a7548;
  --vmrc-accent-dark: #1d3a2a;
  --vmrc-bg: #fafaf8;
  --vmrc-bg-alt: #f0ece8;
  --vmrc-text: #2b2620;
  --vmrc-muted: #6b6259;
  --vmrc-border: #d9d0ca;
  --vmrc-error: #c84c3c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--vmrc-text);
  background: var(--vmrc-bg);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--vmrc-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.disclosure-bar {
  background: var(--vmrc-accent);
  color: white;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}

.usni {
  background: white;
  border-bottom: 1px solid var(--vmrc-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vmrc-accent);
}

.uuej {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.ucca {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 0.35rem;
}

.ucca span {
  width: 24px;
  height: 3px;
  background: var(--vmrc-text);
  border-radius: 2px;
  transition: 0.3s;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--vmrc-accent);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s;
  text-align: center;
}

.btn:hover {
  background: var(--vmrc-accent-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--vmrc-accent);
  border: 2px solid var(--vmrc-accent);
}

.btn-outline:hover {
  background: var(--vmrc-accent);
  color: white;
}

.btn-primary {
  background: var(--vmrc-accent);
}

.btn-primary:hover {
  background: var(--vmrc-accent-dark);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
  display: block;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--vmrc-bg-alt);
}

.uosg {
  background: var(--vmrc-accent-dark);
  color: white;
}

.uosg h2 {
  color: white;
}

.uosg a {
  color: white;
}

.uosg .btn {
  background: white;
  color: var(--vmrc-accent-dark);
}

.uosg .btn:hover {
  background: var(--vmrc-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vmrc-accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--vmrc-bg-alt) 0%, var(--vmrc-bg) 100%);
  border-bottom: 1px solid var(--vmrc-border);
}

.urjq {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  overflow: hidden;
  z-index: 0;
}

.urjq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-eyebrow {
  font-size: 0.9rem;
  color: var(--vmrc-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  z-index: 1;
}

.hero-visual {
  z-index: 1;
}

.uwxj {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.media {
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 8px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-1x1 {
  aspect-ratio: 1 / 1;
}

.media-4x3 {
  aspect-ratio: 4 / 3;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--vmrc-text);
}

.check-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--vmrc-accent);
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
}

.hero-rating {
  font-size: 1rem;
  color: var(--vmrc-muted);
  margin: 1rem 0;
}

.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.price-block {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-old {
  color: var(--vmrc-muted);
  font-size: 0.95rem;
}

.price-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vmrc-accent);
}

.price-badge {
  background: var(--vmrc-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--vmrc-muted);
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
  text-align: center;
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--vmrc-accent);
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--vmrc-muted);
  margin: 0;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--vmrc-accent);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--vmrc-muted);
  margin: 0;
}

.trust-section {
  padding: 3rem 0;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: white;
}

.trust-item i {
  font-size: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
  display: block;
}

.testimonial-disclaimer {
  text-align: center;
  color: var(--vmrc-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.testimonial .stars {
  display: block;
  margin-bottom: 0.75rem;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--vmrc-text);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial cite {
  font-size: 0.85rem;
  color: var(--vmrc-muted);
  font-style: normal;
}

.cta-band {
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
}

.cta-band h2 {
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: var(--vmrc-muted);
  margin-bottom: 1.5rem;
}

.product-pack {
  width: 100%;
  max-width: 300px;
  display: block;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.order-info {
  text-align: center;
}

.order-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
}

.urfq {
  display: flex;
  flex-direction: column;
}

.urfq h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem;
  border: 1px solid var(--vmrc-border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--vmrc-accent);
  box-shadow: 0 0 0 3px rgba(45, 90, 58, 0.1);
}

.uwmc {
  color: var(--vmrc-error);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: var(--vmrc-error);
}

.form-group.has-error .uwmc {
  display: block;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
  margin-right: 0.25rem;
  min-width: 20px;
}

.form-checkbox label {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.uyxi {
  display: none;
}

.phone-row {
  display: flex;
  gap: 0.5rem;
}

.phone-row select {
  width: 80px;
}

.phone-row input {
  flex: 1;
}

.order-note {
  text-align: center;
  color: var(--vmrc-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.uufz {
  background: white;
  border: 1px solid var(--vmrc-border);
  border-radius: 8px;
  overflow: hidden;
}

.uzoz {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--vmrc-text);
  transition: 0.3s;
}

.uzoz:hover {
  background: var(--vmrc-bg-alt);
}

.uzoz i {
  transition: 0.3s;
}

.uzoz[aria-expanded="true"] {
  background: var(--vmrc-bg-alt);
}

.uzoz[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.ukwu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.ukwu[aria-hidden="false"] {
  max-height: 1000px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--vmrc-muted);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
}

.dose-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.dose-table thead {
  background: var(--vmrc-bg-alt);
}

.dose-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--vmrc-border);
}

.dose-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--vmrc-border);
}

.dose-table tr:last-child td {
  border-bottom: none;
}

.dose-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--vmrc-muted);
  margin-top: 1rem;
}

.ingredient-spotlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ingredient-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.ingredient-spotlight:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.ingredient-spotlight:nth-child(even) .spotlight-content {
  direction: ltr;
}

.spotlight-content h3 {
  margin-bottom: 0.75rem;
}

.spotlight-content p {
  color: var(--vmrc-muted);
  margin: 0;
}

.usage-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.usage-cards .card {
  text-align: center;
}

.usage-cards i {
  font-size: 2rem;
  color: var(--vmrc-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.usage-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.timeline-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--vmrc-accent);
}

.timeline-item h3 {
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--vmrc-muted);
  margin: 0;
  font-size: 0.95rem;
}

.timeline-v {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tl-step {
  display: flex;
  gap: 1.5rem;
}

.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--vmrc-accent);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.tl-step > div:last-child {
  flex: 1;
  padding-top: 0.5rem;
}

.package-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.info-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
  text-align: center;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.delivery-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
  text-align: center;
}

.delivery-card i {
  font-size: 2.5rem;
  color: var(--vmrc-accent);
  margin-bottom: 1rem;
  display: block;
}

.delivery-card h3 {
  margin-bottom: 0.5rem;
}

.delivery-card p {
  color: var(--vmrc-muted);
  font-size: 0.95rem;
  margin: 0;
}

.return-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.return-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
}

.return-card h3 {
  margin-bottom: 0.75rem;
}

.return-card p {
  color: var(--vmrc-muted);
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.utun {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
}

.utun h2 {
  margin-bottom: 1.5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-panel h2 {
  margin-bottom: 1rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--vmrc-accent);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info-item a {
  color: var(--vmrc-accent);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--vmrc-border);
  height: 450px;
}

.map-container iframe {
  border: none;
}

.value-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
  color: white;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.value-item i {
  font-size: 2rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-cards i {
  font-size: 2.5rem;
  color: var(--vmrc-accent);
  margin-bottom: 1rem;
}

.about-cards.alt-style i {
  color: var(--vmrc-error);
}

.about-cards h3 {
  margin-bottom: 0.5rem;
}

.about-cards p {
  color: var(--vmrc-muted);
  margin: 0;
  font-size: 0.95rem;
}

.notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.note-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
}

.note-item h3 {
  margin-bottom: 0.5rem;
}

.note-item p {
  color: var(--vmrc-muted);
  margin: 0;
  font-size: 0.95rem;
}

.text-center {
  text-align: center;
}

.ukzf, .ukbf {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--vmrc-border);
}

.uhmq {
  margin-bottom: 1.5rem;
}

.uwfq {
  font-weight: 600;
  margin-bottom: 1rem;
}

.uvrx {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.uawc {
  padding: 0.75rem 1rem;
  border: 2px solid var(--vmrc-border);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
}

.uawc:hover {
  border-color: var(--vmrc-accent);
}

.uawc.active {
  background: var(--vmrc-accent);
  color: white;
  border-color: var(--vmrc-accent);
}

.uyvc {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--vmrc-bg-alt);
  border-radius: 6px;
}

.lf-tablist {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--vmrc-border);
}

.ughf {
  padding: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-weight: 500;
}

.ughf.is-active {
  color: var(--vmrc-accent);
  border-bottom-color: var(--vmrc-accent);
}

.uawf {
  display: none;
}

.uawf.is-active {
  display: block;
}

.site-footer {
  background: var(--vmrc-accent-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  transition: 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-col p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-legal-links {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-legal-links a {
  color: rgba(255,255,255,0.8);
  margin: 0 0.5rem;
  font-size: 0.9rem;
}

.footer-legal-links a:hover {
  color: white;
}

.footer-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin: 1rem 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.uzmw {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--vmrc-border);
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: none;
}

.uzmw.visible {
  display: block;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-banner-text {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
}

.uedg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uedg[aria-hidden="true"] {
  display: none;
}

.ucud {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
}

.ucud h2 {
  margin-bottom: 1rem;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--vmrc-border);
}

.cookie-toggle:last-of-type {
  border-bottom: none;
}

.cookie-toggle h4 {
  margin: 0;
}

.cookie-toggle p {
  margin: 0.25rem 0 0 0;
  font-size: 0.85rem;
  color: var(--vmrc-muted);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--vmrc-accent);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .uuej {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .uuej.active {
    display: flex;
  }

  .ucca {
    display: flex;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .ingredient-spotlight {
    grid-template-columns: 1fr;
  }

  .ingredient-spotlight:nth-child(even) {
    direction: ltr;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-banner-actions {
    flex-wrap: wrap;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2rem 0;
  }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uzmw{position:fixed !important;left:1rem;right:1rem;bottom:1rem;z-index:9000 !important;max-width:760px;margin-left:auto;margin-right:auto;background:#fff;color:#1a1a1a;border:1px solid rgba(0,0,0,.12);border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.18);padding:1rem 1.25rem;transform:translateY(220%);transition:transform .32s ease}
.uzmw.is-visible,.cookie-banner--visible,.uzmw.show,.uzmw.active{transform:none !important}
.uzmw a{color:inherit;text-decoration:underline}
.uzmw button{cursor:pointer}
.uedg{position:fixed !important;inset:0;z-index:9001 !important;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.5);padding:1rem}
.uedg.is-visible,.cookie-modal--visible,.uedg.show,.uedg.active{display:flex !important}
.ucud,.uedg>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uosg .ukzf,.uosg .uwur,.uosg .ukbf,.uosg .uegb,.uusb .ukzf,.uusb .uwur,.uusb .ukbf,.uusb .uegb{background:#fff !important;color:#1a1a1a !important}
.ukzf,.uwur{color:#1a1a1a !important}
.ukzf label,.uwur label,.ukzf p,.uwur p,.ukzf .uwfq,.ukzf span,.uwur span,.utck,.uxiy,.ukbf .uawf,.ukbf .uawf *{color:#1a1a1a !important}
.utck,.uxiy{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ukzf .uawc{color:#1a1a1a !important}
.ukzf .uawc.is-sel{color:#fff !important}
.urfq .uwmc{display:none}
.urfq .uwmc.is-visible{display:block !important;color:#c0392b}
.urfq .uyxi,.urfq [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.urfq{color:#1a1a1a}
.uosg .urfq,.uusb .urfq{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uwxj{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uwxj img{width:100%;height:100%;object-fit:cover}
.urjq,.usrt{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.urjq img,.usrt img{width:100%;height:100%;object-fit:cover;display:block}
.urjq img{opacity:.28}
.usrt img{opacity:.07}
*:has(> .urjq),*:has(> .usrt){position:relative}
.uixk{position:absolute !important;left:50%;top:52%;transform:translate(-50%,-50%);width:52%;max-width:280px;text-align:center;pointer-events:none;color:#2c2c2c;background:rgba(250,246,238,.94);border-radius:10px;padding:1rem .8rem;box-shadow:0 2px 14px rgba(0,0,0,.16)}
.uixk .ufml{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uixk .uykb{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.upwz{margin:1.4rem auto;max-width:920px}
.upwz img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uoow{padding:3rem 0}
.uifm{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uifm img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uegb{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.unzr{display:flex;overflow:hidden;gap:0 !important}
.uiaw{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ulbo{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;border:1px solid rgba(0,0,0,.18);background:#fff;cursor:pointer;z-index:2;font-size:1.1rem;line-height:1}
.uzlx{left:.5rem}.uzsf{right:.5rem}
.ukbf .uawf{display:none}.ukbf .uawf.is-active{display:block}
.ukzf .uhmq{display:block !important}
.ukzf .uvrx{display:flex;flex-wrap:wrap;gap:.5rem}
.ukzf .uawc{cursor:pointer}
