/** Shopify CDN: Minification failed

Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:25 Expected ":"
Line 22:15 Expected identifier but found whitespace
Line 22:17 Unexpected "{"
Line 22:27 Expected ":"
Line 23:18 Expected identifier but found whitespace
Line 23:20 Unexpected "{"
Line 23:30 Expected ":"
Line 24:23 Expected identifier but found whitespace
... and 17 more hidden warnings

**/
/* ===========================================================
   Ambre & Fleur — Theme Stylesheet
   =========================================================== */

:root {
  --color-bg: {{ settings.color_background }};
  --color-text: {{ settings.color_text }};
  --color-primary: {{ settings.color_primary }};
  --color-primary-text: {{ settings.color_primary_text }};
  --color-surface: {{ settings.color_surface }};
  --color-border: {{ settings.color_border }};
  --color-dark: {{ settings.color_dark }};
  --font-heading: {{ settings.heading_font }};
  --font-body: {{ settings.body_font }};
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
}
.skip-to-content:focus {
  left: 12px;
  top: 12px;
  background: var(--color-primary);
  color: var(--color-primary-text);
  padding: 8px 16px;
  z-index: 999;
}

.section-heading {
  text-align: center;
  margin: 0 0 40px;
}
.section-heading h2, .section-heading h1 {
  font-size: clamp(28px, 4vw, 40px);
}
.section-heading p {
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
  font-size: 16px;
  max-width: 560px;
  margin: 8px auto 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn--primary {
  background: var(--color-dark);
  color: #FFFFFF;
}
.btn--primary:hover { opacity: 0.85; }
.btn--outline {
  background: transparent;
  border-color: var(--color-dark);
  color: var(--color-dark);
}
.btn--outline:hover {
  background: var(--color-dark);
  color: #FFFFFF;
}
.btn--small { padding: 8px 20px; font-size: 12px; width: 100%; }
.btn--full { width: 100%; text-align: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== Announcement bar ===== */
.announcement-bar {
  background: var(--color-dark);
  color: #FFFFFF;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 8px 16px;
}
.announcement-bar p { margin: 0; }

/* ===== Header ===== */
.site-header {
  background: var(--color-surface);
  border-bottom: 2px solid var(--color-dark);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}
.site-header__menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;

}
.site-header__menu-item { position: relative; font-size: 14px; letter-spacing: 0.03em; font-weight: 500; }
.site-header__menu-item > a {
  padding: 8px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.site-header__menu-item > a:hover {
  border-bottom-color: var(--color-dark);
}
.site-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: none;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.site-header__menu-item.has-dropdown:hover .site-header__dropdown { display: block; }
.site-header__dropdown li a { display: block; padding: 8px 20px; }
.site-header__dropdown li a:hover { background: var(--color-bg); }

.site-header__icons { display: flex; align-items: center; gap: 16px; }
.site-header__icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  position: relative;
  display: inline-flex;
}
.site-header__cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--color-primary);
  color: var(--color-primary-text);
  font-size: 10px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__menu-toggle {
  display: none !important;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}
.site-header__menu-toggle span {
  width: 24px;
  height: 3px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header__menu-toggle {
  border: none;
  border-radius: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.site-header__menu-toggle:hover {
  background: rgba(0,0,0,0.06);
  transform: scale(1.15);
}
.site-header__search-bar {
  border-top: 1px solid var(--color-border);
  padding: 16px 0;
}
.site-header__search-bar form { display: flex; gap: 12px; }
.site-header__search-bar input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
}
.site-header__nav-drawer-header { display: none; }
.site-header__nav-overlay { display: none; }
@media (max-width: 900px) {
  .site-header__menu-toggle { display: flex !important; }
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .site-header__menu-toggle { grid-column: 1; justify-self: start; }
  .site-header__logo { grid-column: 2; justify-self: center; }
  .site-header__icons { grid-column: 3; justify-self: end; }
  .site-header__icons .site-header__icon-btn:not(.site-header__cart-btn) { display: none; }

  .site-header__nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 998;
  }
  .site-header__nav-overlay.is-open { opacity: 1; visibility: visible; }

  .site-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    background: var(--color-surface);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 8px 0 24px rgba(0,0,0,0.15);
  }
  .site-header__nav.is-open { transform: translateX(0); }

.site-header__nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  border-bottom: 1px solid var(--color-border);
}
.site-header__nav-drawer-logo img { height: 52px; width: auto; }
.site-header__nav-drawer-logo .site-header__logo-text { font-size: 22px; }
.site-header__nav-close {
  background: none;
  border: none;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-dark);
  padding: 4px 10px;
}

.site-header__nav .site-header__menu {
  flex-direction: column;
  gap: 0;
  padding: 8px 0;
  margin: 0;
}
.site-header__nav .site-header__menu-item { width: 100%; font-size: 19px; }
.site-header__nav .site-header__menu-item > a {
  display: block;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}
.site-header__nav .site-header__dropdown {
  position: static;
  display: none;
  box-shadow: none;
  border: none;
  background: var(--color-bg);
  padding: 0 0 0 12px;
  margin: 0;
}
.site-header__nav .site-header__menu-item.has-dropdown .site-header__dropdown {
  display: block;
}
.site-header__nav .site-header__dropdown li a { padding: 14px 20px; font-size: 17px; }
}
/* ===== Hero ===== */
.hero {
  position: relative;
  height: clamp(380px, 40vw, var(--hero-height, 560px));
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 700px) {
  .hero { height: clamp(460px, 125vw, 680px); }
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image--mobile { display: none; }
@media (max-width: 700px) {
  .hero__image--desktop { display: none; }
  .hero__image--mobile { display: block; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
}
.hero__content {
  position: relative;
  color: #fff;
  max-width: 640px;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  margin-bottom: 12px;
  opacity: 0.9;
}
.hero__heading {
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
}
.hero__text { margin-bottom: 24px; opacity: 0.95; }

/* ===== Promo banners ===== */
.promo-banners { padding: 72px 24px; }
.promo-banners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.promo-banners__grid:has(> :only-child) {
  grid-template-columns: minmax(240px, 480px);
  justify-content: center;
}
.promo-card--static { cursor: default; }
.promo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  aspect-ratio: 7 / 8;
  background: var(--color-surface);
}
.promo-card img { width: 100%; height: 100%; object-fit: cover; }
.promo-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F0E6D8, #D9C7AE);
}
.promo-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
}

/* ===== Category grid ===== */
.category-grid { padding: 100px 24px; }
.category-grid__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 320px;
  text-align: center;
}
.category-item__circle {
  width: 320px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-surface);
  border: 2px solid var(--color-dark);
  display: block;
}
.category-item__circle img { width: 100%; height: 100%; object-fit: cover; }
.category-item__title { font-size: 24px; font-weight: 600; letter-spacing: 0.02em; }
/* ===== Testimonials ===== */
.testimonials { padding: 72px 24px; background: var(--color-surface); }
.testimonials__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.testimonial-card__stars { color: var(--color-primary); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card__quote { font-style: italic; margin-bottom: 16px; }
.testimonial-card__name { font-size: 13px; opacity: 0.7; }

/* ===== Video / story ===== */
.video-story {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-story__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-story__media--placeholder { background: linear-gradient(135deg, #3A322C, #6B5B4F); }
.video-story__media--embed { overflow: hidden; }
.video-story__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh; /* 16:9 ratio scaled to height, to always cover */
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw; /* 16:9 ratio scaled to width */
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.video-story__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.video-story__content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 640px;
}
.video-story__content h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); }
.video-story__text { margin-bottom: 24px; opacity: 0.95; }

/* ===== Featured collection / product grid ===== */
.featured-collection { padding: 72px 24px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 16px;
}
.product-card__image-wrap { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 12px; aspect-ratio: 4/5; background: var(--color-bg); }
.product-card__image { width: 100%; height: 100%; object-fit: cover; }
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-dark);
  color: #FFFFFF;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}
.product-card__title { font-size: 15px; margin-bottom: 6px; }
.product-card__price { font-size: 15px; margin-bottom: 12px; }
.product-card__price--compare { text-decoration: line-through; opacity: 0.5; margin-right: 8px; font-size: 13px; }
.product-card--placeholder .product-card__image { aspect-ratio: 4/5; background: linear-gradient(135deg, #F0E6D8, #D9C7AE); border-radius: 12px; margin-bottom: 12px; }
.featured-collection__cta { text-align: center; margin-top: 40px; }

/* ===== Why choose us ===== */
.why-choose-us { padding: 72px 24px; text-align: center; }
.why-choose-us__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.why-choose-us__item h3 { font-size: 20px; }
.why-choose-us__stats {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.why-choose-us__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--color-primary);
}
.why-choose-us__stat-label { font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ===== Footer ===== */
.site-footer { background: var(--color-dark); color: var(--color-bg); padding: 64px 0 24px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.site-footer h4 { color: var(--color-bg); font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer__social { display: flex; gap: 16px; }
.site-footer__social a { display: inline-flex; opacity: 0.85; }
.site-footer__social a:hover { opacity: 1; }
.site-footer__info-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.site-footer__info-row svg { flex-shrink: 0; margin-top: 2px; }
.site-footer__newsletter-form { display: flex; gap: 8px; }
.site-footer__newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--color-bg);
}
.site-footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.site-footer__newsletter-form button {
  background: var(--color-bg);
  color: var(--color-dark);
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.site-footer__newsletter-success { margin-top: 10px; font-size: 13px; opacity: 0.85; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; font-size: 13px; opacity: 0.7; }

/* ===== Product page ===== */
.product { padding: 60px 24px; }
.product__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.product__gallery img { border-radius: 16px; margin-bottom: 12px; }
.product__gallery-placeholder { aspect-ratio: 4/5; background: linear-gradient(135deg, #F0E6D8, #D9C7AE); border-radius: 16px; }
.product__title { font-size: 32px; }
.product__price { font-size: 22px; margin-bottom: 24px; }
.product__price--compare { text-decoration: line-through; opacity: 0.5; margin-right: 10px; }
.product__description { margin-bottom: 24px; }
.product__option { margin-bottom: 16px; }
.product__option select, .product__quantity input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
}
.product__quantity { margin-bottom: 20px; max-width: 120px; }
@media (max-width: 800px) {
  .product__grid { grid-template-columns: 1fr; }
}

/* ===== Cart drawer ===== */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}
.cart-drawer.is-open { visibility: visible; pointer-events: auto; }
.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cart-drawer.is-open .cart-drawer__overlay { opacity: 1; }
.cart-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--color-bg);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 24px;
  overflow-y: auto;
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cart-drawer__close { background: none; border: none; font-size: 28px; cursor: pointer; }

/* ===== Cart page ===== */
.cart { padding: 60px 24px; }
.cart__table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.cart__table th, .cart__table td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--color-border); }
.cart__item { display: flex; align-items: center; gap: 12px; }
.cart__item img { border-radius: 8px; }
.cart__footer { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }
.cart__subtotal { margin-right: auto; font-size: 18px; }

/* ===== Collection page ===== */
.collection { padding: 60px 24px; }
.collection__toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.pagination { display: flex; gap: 12px; justify-content: center; margin-top: 40px; grid-column: 1 / -1; }

/* ===== 404 / search ===== */
.page-404, .search-results { padding: 100px 24px; text-align: center; }

/* ===== About page ===== */
.about-page { background: #FAFAFA; }
.about-page__hero { width: 100%; height: clamp(320px, 48vw, 820px); overflow: hidden; }
.about-page__hero img { width: 100%; height: 100%; object-fit: cover; }.about-page__hero-placeholder { height: 360px; background: linear-gradient(135deg, var(--color-dark), #3A322C); }
.about-page__content { padding: 64px 24px 40px; max-width: 780px; text-align: center; margin: 0 auto; }
.about-page__content h1 { font-size: clamp(30px, 4vw, 44px); font-style:italic }
.about-page__body { font-size: 20px; font-style:italic }
.about-page__values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding: 40px 24px 80px;
  text-align: center;
  font-style:italic;
  font-size:16px
  
}
.about-page__value {
  border-top: 3px solid #1A1A1A;
  padding-top: 20px;
  padding: 24px;
  background-color: #F0F0F0;
  border-radius: 20px;
}
.about-page__value h3 { color: #1A1A1A; }
.about-page__value p { color: #4A4A4A; }
.about-page__value h3 { font-size: 24px; }
/* ===== Contact page ===== */
.contact-page { padding: 64px 24px; }
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}
.contact-page__info {
  background: #FAFAFA;
  border: 1px solid #978f84ff;
  border-radius: 16px;
  padding: 36px 30px;
}
.contact-page__info p { margin-bottom: 0; font-size: 16px; }
.contact-page__info-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #E9C9A0;
}
.contact-page__info-row:first-child { padding-top: 0; }
.contact-page__info-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-page__info-row a {
  color: #15110D;
  text-decoration: underline;
  text-decoration-color: #B08968;
  font-weight: 500;
}
.contact-page__icon {
  flex-shrink: 0;
  color: #FFFFFF;
  background: #B08968;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(176,137,104,0.35);
}
.contact-page__icon svg { width: 20px; height: 20px; }
.contact-page__info strong {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: #B08968;
  margin-bottom: 5px;
}
.contact-page__form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.contact-page__field { margin-bottom: 20px; }
.contact-page__field label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.contact-page__field input, .contact-page__field textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 16px;
  border: 2px solid #8A7A64;
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--color-text);
  font-family: var(--font-body);
}
.contact-page__field input:hover, .contact-page__field textarea:hover {
  border-color: #6B5B4F;
}
.contact-page__field input:focus, .contact-page__field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 20%, transparent);
}
.contact-page__success { background: #EAF3EA; border: 1px solid #B7D8B7; padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; }
.contact-page__error { background: #F7E7E7; border: 1px solid #E3B3B3; padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; }
@media (max-width: 800px) {
  .contact-page__grid { grid-template-columns: 1fr; }
}
.contact-page__map { margin-top: 56px; }
.contact-page__map h2 { font-size: 24px; margin-bottom: 16px; }
.contact-page__map iframe { border-radius: 12px; border: 1px solid var(--color-border); }
.contact-page__newsletter {
  margin-top: 56px;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  background: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface));
  border-radius: 14px;
  padding: 40px 32px;
}
.contact-page__newsletter h2 { font-size: 24px; }
.contact-page__newsletter p { font-size: 16px; margin-top: 8px; }
.newsletter-form { display: flex; gap: 10px; margin-top: 16px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
}
.newsletter-form button { border-radius: 999px; }
.product-card__actions { display: flex; gap: 8px; }
.product-card__actions .product-card__form { flex: 1; }
.product-card__actions .btn { width: 100%; }


