/* components/presets/shop/boutique/css/base.css */
/* components/presets/shop/boutique/css/base.css */
/* Boutique Preset - Fashion-minimalistisch */
/* KEIN fuer style-jsx Components (mc-*, sf-*, nl-*, smm-*, sh-*) */
/* Stattdessen: CSS Variables die von den style jsx Components gelesen werden */

/* ========================================
   CSS VARIABLES - Fuer style jsx Components
   ======================================== */
[data-preset="boutique"] .shop-root {
  /* Footer */
  --footer-bg: var(--shop-primary);
  --footer-padding: 60px 48px 32px;
  --footer-max-width: 1400px;
  --footer-gap: 20px;
  --footer-logo-height: 28px;
  --footer-logo-filter: brightness(0) invert(1);
  --footer-logo-font-size: 20px;
  --footer-logo-spacing: 2px;
  --footer-font-size: 13px;
  --footer-links-gap: 8px;
  --footer-copy-size: 12px;
  --footer-social-gap: 16px;
  --footer-scroll-radius: 0px;
  --footer-scroll-bottom: 28px;
  --footer-scroll-right: 28px;

  /* Newsletter */
  --nl-bg: var(--shop-primary);
  --nl-padding: 80px 48px;
  --nl-max-width: 680px;
  --nl-title-size: clamp(24px, 3vw, 32px);
  --nl-title-weight: 400;
  --nl-title-color: var(--shop-text-on-primary, #fff);
  --nl-text-size: 14px;
  --nl-form-width: 480px;
  --nl-input-radius: 0px;
  --nl-input-padding: 16px 18px;
  --nl-input-font-size: 14px;
  --nl-input-bg: transparent;
  --nl-input-color: #fff;
  --nl-input-shadow: none;
  --nl-btn-bg: #fff;
  --nl-btn-color: var(--shop-primary, #000);
  --nl-btn-padding: 16px 28px;
  --nl-btn-font-size: 11px;

  /* Allgemein */
  --shop-text-on-primary: #fff;
  --shop-link-on-primary: #fff;
  --shop-text-on-accent: #000;

  /* Boutique erzwingt weissen Hintergrund + dunklen Text. Alle Boutique-
     Paletten haben background=#ffffff und text=dunkel.
     !important ist noetig weil BuilderCanvas die CSS-Variablen via
     inline-style auf dem gleichen Element setzt (style="--shop-text:..."),
     und inline normalerweise stylesheet schlaegt. Im Frontend (Live-Site)
     wird --shop-text korrekt aus shop_settings durchgereicht; im Builder-
     Editor-State kann colors.text aber leer/falsch sein -- !important
     macht das robust gegen beide Faelle. */
  --shop-bg: #fff !important;
  --shop-text: #1a1a1a !important;

  /* Body weiss */
  background: #fff;
  color: #1a1a1a;
}

/* Footer main: Abgeschwaechtee Primaerfarbe statt --shop-bg (verhindert gelben Ton) */
[data-preset="boutique"] .sf-footer .sf-main {
  background: color-mix(in srgb, var(--shop-primary) 8%, #fff);
  border-top: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
  padding: 40px 20px;
}
[data-preset="boutique"] .sf-footer .sf-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
[data-preset="boutique"] .sf-footer .sf-logo-img {
  height: 50px;
  object-fit: contain;
}
[data-preset="boutique"] .sf-footer .sf-logo-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--shop-primary);
}
[data-preset="boutique"] .sf-footer .sf-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
[data-preset="boutique"] .sf-footer .sf-link {
  text-decoration: none;
  font-size: 13px;
  color: var(--shop-text, #333);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
[data-preset="boutique"] .sf-footer .sf-link:hover {
  opacity: 1;
  color: var(--shop-primary);
}
[data-preset="boutique"] .sf-footer .sf-divider {
  font-size: 13px;
  color: var(--shop-text, #333);
  opacity: 0.2;
}
[data-preset="boutique"] .sf-footer .sf-social {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
[data-preset="boutique"] .sf-footer .sf-social-link {
  color: var(--shop-text, #333);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
[data-preset="boutique"] .sf-footer .sf-social-link:hover {
  opacity: 1;
  color: var(--shop-primary);
}
[data-preset="boutique"] .sf-footer .sf-copy {
  font-size: 12px;
  margin: 0;
  color: var(--shop-text, #333);
  opacity: 0.4;
}
[data-preset="boutique"] .sf-footer .sf-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--shop-primary);
  color: var(--shop-text-on-primary, #fff);
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
[data-preset="boutique"] .sf-footer .sf-scroll-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
[data-preset="boutique"] .sf-footer .sf-scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  [data-preset="boutique"] .sf-footer .sf-links {
    flex-direction: column;
    gap: 12px;
  }
  [data-preset="boutique"] .sf-footer .sf-divider {
    display: none;
  }
}

/* Boutique: Weisser Hintergrund ueberall - ueberschreibt gelbe --shop-bg vom body */
[data-preset="boutique"] .bq-root {
  --shop-bg: #fff !important;
  --shop-text: #1a1a1a !important;
  background: #fff;
  color: #1a1a1a;
}

/* ========================================
   NEWSLETTER - Boutique (nl-*)
   ======================================== */
[data-preset="boutique"] .nl-section {
  padding: 64px 20px;
  background: var(--shop-primary);
}
[data-preset="boutique"] .nl-dark {
  background: var(--shop-primary);
}
[data-preset="boutique"] .nl-container {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
[data-preset="boutique"] .nl-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--shop-text-on-primary, #fff);
  margin: 0 0 12px;
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  letter-spacing: 0.02em;
}
[data-preset="boutique"] .nl-text {
  font-size: 14px;
  color: var(--shop-text-on-primary, #fff);
  opacity: 0.7;
  margin: 0 0 28px;
  line-height: 1.5;
}
[data-preset="boutique"] .nl-form {
  max-width: 480px;
  margin: 0 auto;
}
[data-preset="boutique"] .nl-input-wrap {
  display: flex;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
}
[data-preset="boutique"] .nl-input {
  flex: 1;
  padding: 16px 18px;
  border: none;
  border-radius: 0;
  font-size: 14px;
  outline: none;
  background: transparent;
  color: #fff;
  min-width: 0;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}
[data-preset="boutique"] .nl-input-name {
  flex: 0.8;
  border-right: 1px solid rgba(255,255,255,0.15);
}
[data-preset="boutique"] .nl-input::placeholder {
  color: rgba(255,255,255,0.35);
}
[data-preset="boutique"] .nl-btn {
  padding: 16px 28px;
  background: #fff;
  color: var(--shop-primary, #000);
  border: none;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
[data-preset="boutique"] .nl-btn:hover {
  opacity: 0.9;
}
[data-preset="boutique"] .nl-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
[data-preset="boutique"] .nl-error {
  color: #fca5a5;
  font-size: 13px;
  margin: 10px 0 0;
}
[data-preset="boutique"] .nl-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--shop-text-on-primary, #fff);
  opacity: 0.65;
  line-height: 1.4;
}
[data-preset="boutique"] .nl-checkbox {
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: #fff;
  cursor: pointer;
  visibility: visible;
  opacity: 1;
  appearance: auto;
  -webkit-appearance: checkbox;
}
[data-preset="boutique"] .nl-consent a {
  color: var(--shop-text-on-primary, #fff);
  text-decoration: underline;
}
[data-preset="boutique"] .nl-consent a:hover {
  opacity: 0.8;
}
[data-preset="boutique"] .nl-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 20px 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 500px) {
  [data-preset="boutique"] .nl-input-wrap {
    flex-direction: column;
  }
  [data-preset="boutique"] .nl-input-name {
    flex: 1;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  [data-preset="boutique"] .nl-btn { width: 100%; }
  [data-preset="boutique"] .nl-title { font-size: 24px; }
  [data-preset="boutique"] .nl-section { padding: 48px 16px; }
  [data-preset="boutique"] .nl-consent { font-size: 11px; text-align: left; }
}

/* ========================================
   FOOTER - Extras (nicht in style jsx)
   ======================================== */
[data-preset="boutique"] .sf-logo-text {
  text-transform: uppercase;
}
[data-preset="boutique"] .sf-scroll-top {
  border-radius: 0;
}


/* ========================================
/* ========================================
   TOPBAR
   ======================================== */
[data-preset="boutique"] .sh-topbar {
  background: var(--shop-primary);
  padding: 8px 20px;
  overflow: hidden;
}
[data-preset="boutique"] .sh-topbar-desktop {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  color: var(--shop-text-on-primary, #fff);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
[data-preset="boutique"] .sh-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
[data-preset="boutique"] .sh-topbar-sep {
  opacity: 0.4;
  margin: 0 12px;
}

/* ========================================
/* ========================================
   HEADER
   ======================================== */
[data-preset="boutique"] .sh-header {
  background: var(--shop-bg, #fff);
  border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 6%, transparent);
  position: sticky;
  top: 0;
  z-index: 100;
}
[data-preset="boutique"] .sh-header.sh-scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
[data-preset="boutique"] .sh-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  height: 56px;
  display: flex;
  align-items: center;
}
[data-preset="boutique"] .sh-desktop {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
}
[data-preset="boutique"] .sh-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
[data-preset="boutique"] .sh-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
}
[data-preset="boutique"] .sh-logo {
  text-decoration: none;
  flex-shrink: 0;
}
[data-preset="boutique"] .sh-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
}
[data-preset="boutique"] .sh-logo-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--shop-text, #000);
  letter-spacing: 2px;
  text-transform: uppercase;
}
[data-preset="boutique"] .sh-logo-img-mobile {
  height: 24px;
  width: auto;
  object-fit: contain;
}
[data-preset="boutique"] .sh-logo-text-mobile {
  font-size: 16px;
  font-weight: 600;
  color: var(--shop-text, #000);
  letter-spacing: 2px;
}
[data-preset="boutique"] .sh-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--shop-text, #333);
  display: flex;
  align-items: center;
  padding: 6px;
  text-decoration: none;
  transition: color 0.2s ease;
}
[data-preset="boutique"] .sh-icon-btn:hover {
  color: var(--shop-primary);
}
[data-preset="boutique"] .sh-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--shop-primary);
  color: var(--shop-text-on-primary, #fff);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--shop-bg, #fff);
}
[data-preset="boutique"] .sh-search {
  position: relative;
  width: 650px;
  max-width: 650px;
  flex-shrink: 1;
}
[data-preset="boutique"] .sh-search-box {
  display: flex;
  align-items: center;
  border-radius: 0;
  background: color-mix(in srgb, var(--shop-text, #000) 5%, var(--shop-bg, #fff));
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent);
  padding: 3px;
  transition: all 0.3s ease;
}
[data-preset="boutique"] .sh-search-focused {
  border-color: var(--shop-primary);
}
[data-preset="boutique"] .sh-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 7px 14px;
  font-size: 13px;
  outline: none;
  color: var(--shop-text, #000);
}
[data-preset="boutique"] .sh-search-btn {
  background: var(--shop-primary);
  border: none;
  border-radius: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--shop-text-on-primary, #fff);
  flex-shrink: 0;
}
[data-preset="boutique"] .sh-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--shop-bg, #fff);
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  max-height: 380px;
  overflow-y: auto;
  z-index: 200;
  padding: 6px;
}
[data-preset="boutique"] .sh-search-result {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.15s;
}
[data-preset="boutique"] .sh-search-result:hover {
  background: color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000));
}
[data-preset="boutique"] .sh-search-img {
  width: 50px;
  height: 50px;
  border-radius: 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000));
  flex-shrink: 0;
}
[data-preset="boutique"] .sh-search-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-preset="boutique"] .sh-search-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--shop-text, #000);
}
[data-preset="boutique"] .sh-search-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--shop-text, #000);
}
[data-preset="boutique"] .sh-nav {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 8px 16px;
  color: var(--shop-text, #333);
  transition: color 0.3s ease;
}
[data-preset="boutique"] .sh-nav:hover {
  color: var(--shop-primary);
}
[data-preset="boutique"] .sh-nav-active {
  color: var(--shop-primary);
}
[data-preset="boutique"] .sh-cta {
  padding: 9px 22px;
  background: var(--shop-primary);
  color: var(--shop-text-on-primary, #fff);
  border: none;
  border-radius: 0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
[data-preset="boutique"] .sh-cta:hover {
  opacity: 0.9;
}
[data-preset="boutique"] .sh-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
[data-preset="boutique"] .sh-mobile-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Topbar Mobile */
[data-preset="boutique"] .sh-topbar-mobile {
  display: none;
  white-space: nowrap;
}
[data-preset="boutique"] .sh-marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 80px;
}

/* Icon SVG */
[data-preset="boutique"] .sh-icon {
  width: 20px;
  height: 20px;
}

/* Search Center (Boutique nutzt Center-Layout) */
[data-preset="boutique"] .sh-search-center {
  width: 340px;
}

/* Logo Center */
[data-preset="boutique"] .sh-logo-center {
  flex: 0 0 auto;
}

/* Login Pill (nicht verwendet bei Boutique, aber definiert fuer Vollstaendigkeit) */
[data-preset="boutique"] .sh-login-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000));
  border-radius: 0;
  text-decoration: none;
  color: var(--shop-text, #333);
  transition: all 0.3s ease;
}
[data-preset="boutique"] .sh-login-pill.sh-login-active {
  background: var(--shop-primary);
  color: var(--shop-text-on-primary, #fff);
}
[data-preset="boutique"] .sh-login-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
  [data-preset="boutique"] .sh-desktop { display: none; }
  [data-preset="boutique"] .sh-mobile { display: flex; }
  [data-preset="boutique"] .sh-topbar-desktop { display: none; }
  [data-preset="boutique"] .sh-topbar-mobile { display: block; }
  [data-preset="boutique"] .sh-container {
    padding: 0 16px;
    height: 56px;
  }
}

/* Marquee Animation */
@keyframes sh-marquee-boutique {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
[data-preset="boutique"] .sh-marquee {
  display: inline-flex;
  animation: sh-marquee-boutique 15s linear infinite;
}

/* ========================================
/* ========================================
   CATEGORY TABS
   ======================================== */
[data-preset="boutique"] .shop-cat-tab {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
[data-preset="boutique"] .shop-cat-tab.active {
  border-bottom-color: var(--shop-primary, #000);
  color: var(--shop-text, #000);
}
[data-preset="boutique"] .shop-cat-tab:not(.active) {
  color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent);
}

/* ========================================
/* ========================================
   SHOP LAYOUT
   ======================================== */
[data-preset="boutique"] .str-shop-wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px 80px;
  width: 100%;
  box-sizing: border-box;
}
[data-preset="boutique"] .str-shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
[data-preset="boutique"] .str-shop-sidebar {
  position: sticky;
  top: 80px;
  background: var(--shop-bg, #fff);
  padding: 0;
  border: none;
  border-right: 1px solid color-mix(in srgb, var(--shop-text, #000) 6%, transparent);
  border-radius: 0;
  padding-right: 24px;
}
[data-preset="boutique"] .str-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid var(--shop-primary, #000);
  border-radius: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  color: var(--shop-text, #000);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
[data-preset="boutique"] .str-filter-toggle:hover {
  background: var(--shop-primary, #000);
  color: var(--shop-bg, #fff);
}
@media (max-width: 900px) {
  [data-preset="boutique"] .str-shop-wrap { padding: 0; padding-bottom: 60px; }
[data-preset="boutique"] .str-shop-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
[data-preset="boutique"] .str-shop-sidebar {
    display: none;
    position: relative;
    top: 0;
    border-right: none;
    padding-right: 0;
    padding: 16px;
  }
  [data-preset="boutique"] .str-shop-sidebar.open { display: block; }
  [data-preset="boutique"] .str-filter-toggle { display: flex; margin: 16px; }
}
@media (max-width: 480px) {
  [data-preset="boutique"] .str-shop-wrap { padding: 0; padding-bottom: 48px; }
}
@media (min-width: 1800px) {
  [data-preset="boutique"] .str-shop-wrap { max-width: 1700px; margin: 0 auto; }
}

/* ========================================
   SHOP GRID - Products
   ======================================== */
[data-preset="boutique"] .shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
[data-preset="boutique"] .shop-product-card {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: hidden;
  transition: none;
}
[data-preset="boutique"] .shop-product-card:hover {
  transform: none;
  box-shadow: none;
}
[data-preset="boutique"] .shop-product-img {
  aspect-ratio: 3/4;
  background: color-mix(in srgb, var(--shop-primary, #000) 4%, #fff);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-preset="boutique"] .shop-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease;
  mix-blend-mode: multiply;
}
[data-preset="boutique"] .shop-product-card:hover .shop-product-img img {
  transform: scale(1.04);
}
[data-preset="boutique"] .shop-product-info {
  padding: 14px 8px 20px;
  text-align: left;
}
[data-preset="boutique"] .shop-product-info h3 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}
[data-preset="boutique"] .regular-price {
  font-weight: 500;
  color: var(--shop-text, #1a1a1a);
}
[data-preset="boutique"] .sale-price {
  color: var(--shop-accent, #c0392b);
}
[data-preset="boutique"] .shop-sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--shop-accent, #c0392b);
  color: var(--shop-bg, #fff);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.5px;
  border-radius: 0;
}
@media (max-width: 1200px) {
  [data-preset="boutique"] .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  [data-preset="boutique"] .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  [data-preset="boutique"] .shop-product-card { border-radius: 0; }
  [data-preset="boutique"] .shop-product-info { padding: 10px 8px 14px; }
}
@media (max-width: 480px) {
  [data-preset="boutique"] .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  [data-preset="boutique"] .shop-product-info h3 { font-size: 11px; }
  [data-preset="boutique"] .regular-price, [data-preset="boutique"] .sale-price { font-size: 12px; }
}

/* ========================================
/* ========================================
   SHOP HERO
   ======================================== */
[data-preset="boutique"] [data-section="shop_hero"] {
  background: color-mix(in srgb, var(--shop-primary, #000) 4%, #fff);
  border-radius: 0;
  min-height: 200px;
}
[data-preset="boutique"] [data-section="shop_hero"] > div:last-child {
  padding: 0 48px;
}
[data-preset="boutique"] [data-section="shop_hero"] h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  [data-preset="boutique"] [data-section="shop_hero"] { height: 160px; }
  [data-preset="boutique"] [data-section="shop_hero"] > div:last-child { padding: 0 20px; }
  [data-preset="boutique"] [data-section="shop_hero"] h1 { font-size: clamp(18px, 4vw, 24px); }
}

/* ========================================
/* ========================================
   ACCORDION / FAQ
   ======================================== */
[data-preset="boutique"] .accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
[data-preset="boutique"] .accordion-item {
  border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
}
[data-preset="boutique"] .accordion-item:first-child {
  border-top: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
}
[data-preset="boutique"] .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--shop-text, #000);
  transition: color 0.2s ease;
  gap: 16px;
}
[data-preset="boutique"] .accordion-header:hover {
  color: var(--shop-primary);
}
[data-preset="boutique"] .accordion-header-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
[data-preset="boutique"] .accordion-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.4;
}
[data-preset="boutique"] .accordion-item--open .accordion-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--shop-primary);
}
[data-preset="boutique"] .accordion-plus {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  opacity: 0.4;
  flex-shrink: 0;
}
[data-preset="boutique"] .accordion-item--open .accordion-plus {
  transform: rotate(45deg);
  opacity: 1;
  color: var(--shop-primary);
}
[data-preset="boutique"] .accordion-body {
  overflow: hidden;
  transition: max-height 0.35s ease;
}
[data-preset="boutique"] .accordion-body-inner {
  padding: 0 0 20px;
}
[data-preset="boutique"] .accordion-body-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--shop-text, #000) 60%, transparent);
  margin: 0;
}
[data-preset="boutique"] .accordion-image-col {
  flex: 0 0 380px;
  position: sticky;
  top: 100px;
}
[data-preset="boutique"] .accordion-image-wrap {
  overflow: hidden;
  aspect-ratio: 1;
}
/* Boutique-spezifische Accordion-Overrides */
[data-preset="boutique"] .section-accordion .section-inner {
  max-width: 100%;
  padding: 80px 48px;
}
[data-preset="boutique"] .section-accordion .section-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--shop-text, #1a1a1a);
  margin-bottom: 40px;
}
[data-preset="boutique"] .accordion-header {
  border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
  border-radius: 0;
  background: transparent;
}
[data-preset="boutique"] .accordion-header-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
[data-preset="boutique"] .accordion-body-inner {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--shop-text, #000) 60%, transparent);
}
[data-preset="boutique"] .accordion-number {
  display: none;
}
@media (max-width: 900px) {
[data-preset="boutique"] .section-accordion .section-inner {
    padding: 60px 20px;
  }
  [data-preset="boutique"] .accordion-image-col { display: none; }
}

/* ========================================
/* ========================================
   DESCRIPTION SECTION
   ======================================== */
[data-preset="boutique"] .section-description .section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px;
}
[data-preset="boutique"] .section-description .section-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--shop-text, #1a1a1a);
}
@media (max-width: 768px) {
  [data-preset="boutique"] .section-description .section-inner { padding: 48px 20px; }
}

/* ========================================
/* ========================================
   ABOUT SECTION
   ======================================== */
[data-preset="boutique"] .section-about .section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px;
}
[data-preset="boutique"] .section-about .section-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--shop-text, #1a1a1a);
}
[data-preset="boutique"] .section-about .about-grid {
  gap: 80px;
}
[data-preset="boutique"] .section-about .about-image-col img {
  border-radius: 0;
}
[data-preset="boutique"] .section-about .cta-btn {
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #1a1a1a;
  color: var(--shop-bg, #fff);
}
[data-preset="boutique"] .section-about .cta-btn:hover {
  background: color-mix(in srgb, var(--shop-primary, #000) 80%, transparent);
}
@media (max-width: 768px) {
  [data-preset="boutique"] .section-about .section-inner { padding: 48px 20px; }
[data-preset="boutique"] .section-about .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
/* ========================================
   MEMBER LOGIN
   ======================================== */
[data-preset="boutique"] .member-login-card {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent);
  box-shadow: none;
  overflow: hidden;
}
[data-preset="boutique"] .member-login-header {
  background: var(--shop-primary, #000);
  color: var(--shop-bg, #fff);
  padding: 40px;
}
[data-preset="boutique"] .member-login-header h2 {
  color: var(--shop-bg, #fff);
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
[data-preset="boutique"] .member-login-header p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
[data-preset="boutique"] .member-login-body {
  padding: 40px;
}
[data-preset="boutique"] .member-login-field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent);
}
[data-preset="boutique"] .member-login-field input {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent);
  padding: 12px 16px;
  font-size: 14px;
}
[data-preset="boutique"] .member-login-field input:focus {
  border-color: var(--shop-text, #000);
  box-shadow: none;
  outline: none;
}
[data-preset="boutique"] .member-login-remember {
  border-radius: 0;
}
[data-preset="boutique"] .member-login-btn {
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--shop-primary, #000);
  color: var(--shop-bg, #fff);
  padding: 14px;
}
[data-preset="boutique"] .member-login-btn:hover {
  transform: none;
  box-shadow: none;
  background: color-mix(in srgb, var(--shop-primary, #000) 80%, transparent);
}
[data-preset="boutique"] .member-login-error,
[data-preset="boutique"] .member-login-success {
  border-radius: 0;
}
[data-preset="boutique"] .member-login-switch {
  font-size: 13px;
}
[data-preset="boutique"] .member-login-switch button {
  border-radius: 0;
}

/* ========================================
/* ========================================
   MEMBER DASHBOARD
   ======================================== */
[data-preset="boutique"] .md-hero {
  border-radius: 0;
  background: var(--shop-primary, #000);
}
[data-preset="boutique"] .md-hero h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
[data-preset="boutique"] .md-stats {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
  box-shadow: none;
}
[data-preset="boutique"] .md-stat-val {
  font-weight: 600;
  color: var(--shop-text, #000);
}
[data-preset="boutique"] .md-nav-btn {
  border-radius: 0;
  border: 2px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: color-mix(in srgb, var(--shop-text, #000) 60%, transparent);
  font-weight: 600;
}
[data-preset="boutique"] .md-nav-btn:hover {
  border-color: var(--shop-text, #000);
  color: var(--shop-text, #000);
}
[data-preset="boutique"] .md-nav-btn.active {
  background: var(--shop-primary, #000);
  color: var(--shop-bg, #fff);
  border-color: var(--shop-text, #000);
}
[data-preset="boutique"] .md-section {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
  box-shadow: none;
}
[data-preset="boutique"] .md-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
[data-preset="boutique"] .md-btn {
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
[data-preset="boutique"] .md-field input,
[data-preset="boutique"] .md-field select,
[data-preset="boutique"] .md-field textarea {
  border-radius: 0;
}
[data-preset="boutique"] .md-field input:focus,
[data-preset="boutique"] .md-field select:focus {
  border-color: var(--shop-text, #000);
  box-shadow: none;
}
[data-preset="boutique"] .md-field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent);
}
[data-preset="boutique"] .md-logout-btn {
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
[data-preset="boutique"] .md-table-wrap {
  border-radius: 0;
}
[data-preset="boutique"] .md-status {
  border-radius: 0;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
[data-preset="boutique"] .md-wishlist-item {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
}
[data-preset="boutique"] .md-wishlist-item:hover {
  transform: none;
  box-shadow: none;
}
[data-preset="boutique"] .md-wishlist-price {
  color: var(--shop-text, #000);
  font-weight: 600;
}
[data-preset="boutique"] .md-wishlist-remove {
  border-radius: 0;
}
[data-preset="boutique"] .md-empty-box {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
}
@media (max-width: 768px) {
  [data-preset="boutique"] .member-login-header { padding: 24px; }
  [data-preset="boutique"] .member-login-body { padding: 24px; }
  [data-preset="boutique"] .member-login-header h2 { font-size: 22px; }
}

/* ========================================
/* ========================================
   CART PAGE
   ======================================== */
[data-preset="boutique"] .cart-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;
}
[data-preset="boutique"] .cart-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
[data-preset="boutique"] .cart-grid {
  gap: 48px;
}
[data-preset="boutique"] .cart-item-row {
  border-radius: 0;
  padding: 20px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
}
[data-preset="boutique"] .cart-item-row img {
  border-radius: 0;
  background: color-mix(in srgb, var(--shop-primary, #000) 4%, #fff);
  object-fit: contain;
}
[data-preset="boutique"] .cart-item-name {
  font-size: 14px;
  font-weight: 400;
}
[data-preset="boutique"] .cart-item-price {
  font-weight: 600;
}
[data-preset="boutique"] .cart-item-remove {
  color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
[data-preset="boutique"] .cart-item-remove:hover {
  color: var(--shop-accent, #c0392b);
}
[data-preset="boutique"] .cart-qty-btn {
  border-radius: 0;
}
[data-preset="boutique"] .cart-summary {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
  box-shadow: none;
  padding: 32px;
}
[data-preset="boutique"] .cart-summary-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
[data-preset="boutique"] .cart-checkout-btn {
  border-radius: 0;
  background: var(--shop-primary, #000);
  color: var(--shop-bg, #fff);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px;
}
[data-preset="boutique"] .cart-checkout-btn:hover {
  background: color-mix(in srgb, var(--shop-primary, #000) 80%, transparent);
}
[data-preset="boutique"] .cart-continue-btn {
  border-radius: 0;
  border: 2px solid var(--shop-primary, #000);
  color: var(--shop-text, #000);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
[data-preset="boutique"] .cart-empty {
  border-radius: 0;
}
@media (max-width: 768px) {
  [data-preset="boutique"] .cart-wrap { padding: 24px 16px; }
  [data-preset="boutique"] .cart-grid { grid-template-columns: 1fr; }
}

/* ========================================
/* ========================================
   CHECKOUT
   ======================================== */
[data-preset="boutique"] .checkout-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px;
}
[data-preset="boutique"] .checkout-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
[data-preset="boutique"] .checkout-grid {
  gap: 48px;
}
[data-preset="boutique"] .checkout-section {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
  box-shadow: none;
}
[data-preset="boutique"] .checkout-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
[data-preset="boutique"] .checkout-field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent);
}
[data-preset="boutique"] .checkout-field input,
[data-preset="boutique"] .checkout-field select {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent);
  padding: 12px 16px;
}
[data-preset="boutique"] .checkout-field input:focus,
[data-preset="boutique"] .checkout-field select:focus {
  border-color: var(--shop-text, #000);
  box-shadow: none;
}
[data-preset="boutique"] .checkout-btn {
  border-radius: 0;
  background: var(--shop-primary, #000);
  color: var(--shop-bg, #fff);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px;
}
[data-preset="boutique"] .checkout-btn:hover {
  background: color-mix(in srgb, var(--shop-primary, #000) 80%, transparent);
}
[data-preset="boutique"] .checkout-summary {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
  box-shadow: none;
}
[data-preset="boutique"] .checkout-summary img {
  border-radius: 0;
}
@media (max-width: 768px) {
  [data-preset="boutique"] .checkout-wrap { padding: 24px 16px; }
  [data-preset="boutique"] .checkout-grid { grid-template-columns: 1fr; }
}

/* ========================================
/* ========================================
   PRODUCT PAGE
   ======================================== */
[data-preset="boutique"] .product-detail-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 48px 80px;
}
[data-preset="boutique"] .product-detail-grid {
  gap: 60px;
}
[data-preset="boutique"] .product-detail-gallery img {
  border-radius: 0;
  background: color-mix(in srgb, var(--shop-primary, #000) 4%, #fff);
  object-fit: contain;
}
[data-preset="boutique"] .product-detail-gallery .gallery-thumb {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent);
}
[data-preset="boutique"] .product-detail-gallery .gallery-thumb.active {
  border-color: var(--shop-text, #000);
}
[data-preset="boutique"] .product-detail-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
}
[data-preset="boutique"] .product-detail-price {
  font-size: 20px;
  font-weight: 600;
}
[data-preset="boutique"] .product-detail-desc {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--shop-text, #000) 60%, transparent);
}
[data-preset="boutique"] .product-add-btn {
  border-radius: 0;
  background: var(--shop-primary, #000);
  color: var(--shop-bg, #fff);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
}
[data-preset="boutique"] .product-add-btn:hover {
  background: color-mix(in srgb, var(--shop-primary, #000) 80%, transparent);
}
[data-preset="boutique"] .product-variant-btn {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent);
  font-size: 12px;
}
[data-preset="boutique"] .product-variant-btn.active {
  border-color: var(--shop-text, #000);
  background: var(--shop-primary, #000);
  color: var(--shop-bg, #fff);
}
[data-preset="boutique"] .product-wishlist-btn {
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent);
}
[data-preset="boutique"] .product-tabs {
  border-radius: 0;
}
[data-preset="boutique"] .product-tab-btn {
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
[data-preset="boutique"] .product-tab-btn.active {
  border-bottom: 2px solid #000;
  color: var(--shop-text, #000);
}
@media (max-width: 768px) {
  [data-preset="boutique"] .product-detail-wrap { padding: 16px 16px 48px; }
  [data-preset="boutique"] .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ========================================
/* ========================================
   FILTER SIDEBAR
   ======================================== */
[data-preset="boutique"] .filter-group-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent);
}
[data-preset="boutique"] .filter-option {
  border-radius: 0;
}
[data-preset="boutique"] .filter-option input[type="checkbox"] {
  border-radius: 0;
}
[data-preset="boutique"] .filter-price-input {
  border-radius: 0;
}
[data-preset="boutique"] .filter-apply-btn {
  border-radius: 0;
  background: var(--shop-primary, #000);
  color: var(--shop-bg, #fff);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
[data-preset="boutique"] .filter-clear-btn {
  border-radius: 0;
  color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================================
/* ========================================
   GLOBAL INPUTS
   ======================================== */
[data-preset="boutique"] .shop-root input[type="text"],
[data-preset="boutique"] .shop-root input[type="email"],
[data-preset="boutique"] .shop-root input[type="tel"],
[data-preset="boutique"] .shop-root input[type="number"],
[data-preset="boutique"] .shop-root input[type="password"],
[data-preset="boutique"] .shop-root input[type="search"],
[data-preset="boutique"] .shop-root select,
[data-preset="boutique"] .shop-root textarea {
  border-radius: 0;
  font-family: inherit;
}
[data-preset="boutique"] .shop-root input:focus,
[data-preset="boutique"] .shop-root select:focus,
[data-preset="boutique"] .shop-root textarea:focus {
  border-color: var(--shop-text, #000);
  outline: none;
  box-shadow: none;
}
[data-preset="boutique"] .shop-root button {
  border-radius: 0;
  font-family: inherit;
}

/* ========================================
   BOUTIQUE SHOPPAGE - Eigene Klassen
   ======================================== */
[data-preset="boutique"] .boutique-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
[data-preset="boutique"] .boutique-product-card {
  position: relative;
  overflow: hidden;
}
[data-preset="boutique"] .boutique-product-card img {
  transition: transform 0.5s ease;
}
[data-preset="boutique"] .boutique-product-card:hover img {
  transform: scale(1.04);
}
[data-preset="boutique"] .boutique-filter-btn {
  border-radius: 0;
}
[data-preset="boutique"] .boutique-drawer {
  border-radius: 0;
}
@media (max-width: 1200px) {
  [data-preset="boutique"] .boutique-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  [data-preset="boutique"] .boutique-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
}
@media (max-width: 480px) {
  [data-preset="boutique"] .boutique-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
}
}

/* ========================================
   PRODUCT PAGE (pp-*)
   Boutique: Serif Titel, scharfe Kanten
   ======================================== */
[data-preset="boutique"] .pp-page { background: var(--shop-bg, #fff); min-height: 100vh; }
[data-preset="boutique"] .pp-page--empty { text-align: center; padding: 80px 20px; }
[data-preset="boutique"] .pp-page--empty h1 { font-size: 24px; }

/* Breadcrumb */
[data-preset="boutique"] .pp-breadcrumb { max-width: 1200px; margin: 0 auto; padding: 16px 20px 0; }
[data-preset="boutique"] .pp-breadcrumb-nav { font-size: 12px; color: var(--shop-text, #999); opacity: 0.5; letter-spacing: 0.3px; }
[data-preset="boutique"] .pp-breadcrumb-link { color: inherit; text-decoration: none; }
[data-preset="boutique"] .pp-breadcrumb-link:hover { opacity: 0.8; }
[data-preset="boutique"] .pp-breadcrumb-sep { margin: 0 6px; }
[data-preset="boutique"] .pp-breadcrumb-current { opacity: 1; color: var(--shop-text, #111); }

/* Grid */
[data-preset="boutique"] .pp-grid { max-width: 1200px; margin: 0 auto; padding: 24px 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Gallery */
[data-preset="boutique"] .pp-gallery--side { display: grid; grid-template-columns: 80px 1fr; gap: 12px; }
[data-preset="boutique"] .pp-main-image { background: var(--pp-img-bg, #f8f8f8); position: relative; overflow: hidden; aspect-ratio: 3/4; margin-bottom: 12px; cursor: crosshair; }
[data-preset="boutique"] .pp-gallery--side .pp-main-image { margin-bottom: 0; }
[data-preset="boutique"] .pp-main-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.15s ease-out; }
[data-preset="boutique"] .pp-no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--shop-text, #ccc); opacity: 0.3; }
[data-preset="boutique"] .pp-sale-badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: var(--shop-primary, #000); color: var(--shop-bg, #fff); padding: 6px 14px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
[data-preset="boutique"] .pp-thumbnails { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
[data-preset="boutique"] .pp-thumbnails-side { display: flex; flex-direction: column; gap: 8px; max-height: 600px; overflow-y: auto; }
[data-preset="boutique"] .pp-thumb { aspect-ratio: 1; cursor: pointer; overflow: hidden; border: 2px solid transparent; background: var(--pp-img-bg, #f8f8f8); transition: border-color 0.2s; }
[data-preset="boutique"] .pp-thumb--active { border-color: var(--shop-primary, #000); }
[data-preset="boutique"] .pp-thumb img { width: 100%; height: 100%; object-fit: cover; }
[data-preset="boutique"] .pp-slider { position: relative; overflow: hidden; aspect-ratio: 3/4; touch-action: pan-y; }
[data-preset="boutique"] .pp-slider-track { display: flex; height: 100%; transition: transform 0.3s ease; }
[data-preset="boutique"] .pp-slider-slide { flex: 0 0 100%; height: 100%; position: relative; }
[data-preset="boutique"] .pp-slider-slide img { width: 100%; height: 100%; object-fit: cover; }
[data-preset="boutique"] .pp-slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
[data-preset="boutique"] .pp-slider-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.5); cursor: pointer; padding: 0; }
[data-preset="boutique"] .pp-slider-dot--active { background: #fff; }

/* Info */
[data-preset="boutique"] .pp-info { position: sticky; top: 100px; }
[data-preset="boutique"] .pp-info--static { position: static; }
[data-preset="boutique"] .pp-category { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--shop-text, #999); opacity: 0.5; margin-bottom: 8px; font-weight: 600; }
[data-preset="boutique"] .pp-name { font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif; font-size: 32px; font-weight: 400; margin: 0 0 16px; line-height: 1.3; color: var(--shop-text, #111); letter-spacing: 0.02em; }
[data-preset="boutique"] .pp-short-desc { font-size: 14px; line-height: 1.7; color: var(--shop-text, #666); margin: 0 0 20px; max-width: 500px; }

/* Price */
[data-preset="boutique"] .pp-price-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--shop-border, #eee); }
[data-preset="boutique"] .pp-price { font-size: 24px; font-weight: 700; display: flex; align-items: baseline; gap: 12px; }
[data-preset="boutique"] .pp-price del { color: #999; font-weight: 400; font-size: 16px; }
[data-preset="boutique"] .pp-price ins { text-decoration: none; color: var(--shop-primary, #000); }
[data-preset="boutique"] .pp-price-old { font-size: 16px; color: #999; text-decoration: line-through; }
[data-preset="boutique"] .pp-price-current { font-size: 24px; font-weight: 700; color: var(--shop-text, #111); }
[data-preset="boutique"] .pp-price-current--sale { color: var(--shop-primary, #000); }
[data-preset="boutique"] .pp-price-tax { font-size: 12px; color: #999; margin-top: 4px; }

/* Variants */
[data-preset="boutique"] .pp-variant-group { margin-bottom: 20px; transition: opacity 0.3s; }
[data-preset="boutique"] .pp-variant-group--hidden { opacity: 0.3; pointer-events: none; }
[data-preset="boutique"] .pp-variant-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
[data-preset="boutique"] .pp-variant-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
[data-preset="boutique"] .pp-variant-selected { font-weight: 400; text-transform: none; margin-left: 8px; color: var(--shop-text, #666); }
[data-preset="boutique"] .pp-variant-hint { font-size: 11px; color: #e53935; font-weight: 500; }
[data-preset="boutique"] .pp-variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
[data-preset="boutique"] .pp-variant-options--colors { gap: 10px; }

/* Color Swatches */
[data-preset="boutique"] .pp-swatch { width: 36px; height: 36px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; position: relative; transition: all 0.2s; }
[data-preset="boutique"] .pp-swatch--selected { border: 3px solid var(--shop-primary, #000); outline: 2px solid var(--shop-primary, #000); outline-offset: 2px; }
[data-preset="boutique"] .pp-swatch--unavailable { opacity: 0.3; cursor: not-allowed; }
[data-preset="boutique"] .pp-swatch--white { border-color: #ddd; }
[data-preset="boutique"] .pp-swatch--white.pp-swatch--selected { border-color: var(--shop-primary, #000); }
[data-preset="boutique"] .pp-swatch-slash { position: absolute; inset: 0; background: linear-gradient(135deg, transparent 45%, #999 45%, #999 55%, transparent 55%); border-radius: 50%; }

/* Size Buttons */
[data-preset="boutique"] .pp-size-btn { padding: 10px 18px; font-size: 12px; font-weight: 600; border: 1px solid #ddd; background: var(--shop-bg, #fff); color: #333; cursor: pointer; min-width: 48px; text-align: center; text-transform: uppercase; letter-spacing: 2px; transition: all 0.2s; }
[data-preset="boutique"] .pp-size-btn--selected { border: 2px solid var(--shop-primary, #000); background: var(--shop-primary, #000); color: #fff; }
[data-preset="boutique"] .pp-size-btn--unavailable { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; color: #bbb; }

/* Stock Warning */
[data-preset="boutique"] .pp-stock-warning { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #fff8e1; color: #f57f17; font-size: 13px; font-weight: 500; margin-bottom: 16px; }

/* Cart Section */
[data-preset="boutique"] .pp-cart-section { margin-bottom: 20px; }
[data-preset="boutique"] .pp-cart-row { display: flex; gap: 12px; margin-bottom: 12px; }
[data-preset="boutique"] .pp-qty-wrap { display: flex; border: 1px solid var(--shop-border, #ddd); overflow: hidden; }
[data-preset="boutique"] .pp-qty-wrap--disabled { opacity: 0.5; pointer-events: none; }
[data-preset="boutique"] .pp-qty-btn { width: 44px; height: 50px; border: none; background: var(--shop-bg, #fff); cursor: pointer; font-size: 18px; color: var(--shop-text, #333); }
[data-preset="boutique"] .pp-qty-input { width: 50px; text-align: center; border: none; border-left: 1px solid var(--shop-border, #ddd); border-right: 1px solid var(--shop-border, #ddd); font-size: 15px; font-weight: 600; background: var(--shop-bg, #fff); color: var(--shop-text, #333); }
[data-preset="boutique"] .pp-cart-btn { flex: 1; background: var(--shop-primary, #000); color: var(--shop-bg, #fff); border: none; padding: 14px 24px; height: 50px; font-weight: 700; font-size: 13px; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; transition: opacity 0.2s; }
[data-preset="boutique"] .pp-cart-btn--disabled { background: color-mix(in srgb, var(--shop-text, #000) 20%, transparent); cursor: not-allowed; }

/* Actions Row */
[data-preset="boutique"] .pp-actions-row { display: flex; gap: 8px; }
[data-preset="boutique"] .pp-wishlist-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: none; border: 1px solid var(--shop-border, #ddd); cursor: pointer; font-size: 12px; font-weight: 600; color: var(--shop-text, #666); text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s; }
[data-preset="boutique"] .pp-wishlist-btn--active { color: var(--shop-primary, #000); }
[data-preset="boutique"] .pp-share-wrap { position: relative; }
[data-preset="boutique"] .pp-share-btn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 18px; background: none; border: 1px solid var(--shop-border, #ddd); cursor: pointer; font-size: 12px; font-weight: 600; color: var(--shop-text, #666); text-transform: uppercase; letter-spacing: 0.5px; }
[data-preset="boutique"] .pp-share-dropdown { position: absolute; top: 100%; right: 0; margin-top: 4px; background: var(--shop-bg, #fff); border: 1px solid var(--shop-border, #eee); box-shadow: 0 8px 24px rgba(0,0,0,0.12); padding: 8px; z-index: 10; min-width: 160px; }
[data-preset="boutique"] .pp-share-item { display: block; width: 100%; padding: 10px 14px; border: none; background: none; cursor: pointer; font-size: 13px; text-align: left; color: var(--shop-text, #333); }
[data-preset="boutique"] .pp-share-item:hover { background: color-mix(in srgb, var(--shop-text, #000) 5%, var(--shop-bg, #fff)); }

/* Trust Badges */
[data-preset="boutique"] .pp-trust-row { display: flex; gap: 20px; padding: 20px 0; border-top: 1px solid var(--shop-border, #eee); border-bottom: 1px solid var(--shop-border, #eee); margin-bottom: 24px; }
[data-preset="boutique"] .pp-trust-badge { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #888; font-weight: 500; }
[data-preset="boutique"] .pp-trust-icon { color: #aaa; display: flex; }

/* Delivery & Meta */
[data-preset="boutique"] .pp-delivery { font-size: 13px; color: var(--shop-text, #555); margin-bottom: 16px; }
[data-preset="boutique"] .pp-meta { font-size: 12px; color: #999; line-height: 2; }
[data-preset="boutique"] .pp-meta-value { color: var(--shop-text, #666); }
[data-preset="boutique"] .pp-meta-link { color: var(--shop-text, #666); text-decoration: underline; }

/* Accordion */
[data-preset="boutique"] .pp-accordion-section { background: color-mix(in srgb, var(--shop-primary) 6%, var(--shop-bg, #fff) 94%); margin-top: 48px; padding: 40px 0; }
[data-preset="boutique"] .pp-accordion-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
[data-preset="boutique"] .pp-accordion-item { border-bottom: 1px solid var(--shop-border, #eee); }
[data-preset="boutique"] .pp-accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border: none; background: none; cursor: pointer; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--shop-text, #111); }
[data-preset="boutique"] .pp-accordion-icon { transition: transform 0.3s; color: #666; }
[data-preset="boutique"] .pp-accordion-icon--open { transform: rotate(180deg); }
[data-preset="boutique"] .pp-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
[data-preset="boutique"] .pp-accordion-content--open { max-height: 600px; }
[data-preset="boutique"] .pp-accordion-body { padding: 0 0 24px; font-size: 14px; line-height: 1.8; color: var(--shop-text, #555); }

/* Related Products */
[data-preset="boutique"] .pp-related-section { max-width: 1200px; margin: 0 auto; padding: 64px 20px 0; }
[data-preset="boutique"] .pp-related-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 32px; color: var(--shop-primary); }
[data-preset="boutique"] .pp-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
[data-preset="boutique"] .pp-related-card { text-decoration: none; color: inherit; }
[data-preset="boutique"] .pp-related-img { background: #f5f5f5; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 12px; }
[data-preset="boutique"] .pp-related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
[data-preset="boutique"] .pp-related-img:hover img { transform: scale(1.05); }
[data-preset="boutique"] .pp-related-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
[data-preset="boutique"] .pp-related-price { font-size: 13px; font-weight: 700; }

/* Recently Viewed */
[data-preset="boutique"] .pp-recent-section { max-width: 1200px; margin: 0 auto; padding: 64px 20px 0; }
[data-preset="boutique"] .pp-recent-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 32px; color: var(--shop-primary); }
[data-preset="boutique"] .pp-recent-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
[data-preset="boutique"] .pp-recent-card { text-decoration: none; color: inherit; }
[data-preset="boutique"] .pp-recent-img { background: #f5f5f5; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 8px; }
[data-preset="boutique"] .pp-recent-img img { width: 100%; height: 100%; object-fit: cover; }
[data-preset="boutique"] .pp-recent-name { font-size: 11px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
[data-preset="boutique"] .pp-recent-price { font-size: 11px; font-weight: 700; }

/* Newsletter Wrap */
[data-preset="boutique"] .pp-newsletter-wrap { margin-top: 72px; }

/* Number Input Spinner */
[data-preset="boutique"] .pp-qty-input::-webkit-inner-spin-button,
[data-preset="boutique"] .pp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
[data-preset="boutique"] .pp-qty-input { -moz-appearance: textfield; }

/* Mobile */
@media (max-width: 768px) {
  [data-preset="boutique"] .pp-grid { grid-template-columns: 1fr; gap: 0; padding-left: 0; padding-right: 0; }
  [data-preset="boutique"] .pp-info { position: static; padding: 24px 20px 0; }
  [data-preset="boutique"] .pp-gallery--side { grid-template-columns: 1fr; }
  [data-preset="boutique"] .pp-thumbnails { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; gap: 0; grid-template-columns: none; padding: 0; -webkit-overflow-scrolling: touch; }
  [data-preset="boutique"] .pp-thumbnails::-webkit-scrollbar { display: none; }
  [data-preset="boutique"] .pp-thumbnails .pp-thumb { flex: 0 0 100%; scroll-snap-align: start; aspect-ratio: 3/4; border: none; max-height: 70vh; }
  [data-preset="boutique"] .pp-thumbnails-side { flex-direction: row; max-height: none; overflow-x: auto; }
  [data-preset="boutique"] .pp-breadcrumb { padding-left: 20px; padding-right: 20px; }
  [data-preset="boutique"] .pp-related-grid { grid-template-columns: repeat(2, 1fr); }
  [data-preset="boutique"] .pp-recent-grid { grid-template-columns: repeat(3, 1fr); }
  [data-preset="boutique"] .pp-trust-row { flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 480px) {
  [data-preset="boutique"] .pp-recent-grid { grid-template-columns: repeat(2, 1fr); }
  [data-preset="boutique"] .pp-thumbnails { grid-template-columns: repeat(4, 1fr); }
}

/* ========================================
   BOUTIQUE GLOBAL - Scharfe Kanten ueberall
   ======================================== */
[data-preset="boutique"] *,
[data-preset="boutique"] *::before,
[data-preset="boutique"] *::after {
  border-radius: 0;
}

/* ========================================
   BOUTIQUE SHOP HERO (shs-*)
   ======================================== */
[data-preset="boutique"] .shs-wrap {
  height: var(--shs-height, 260px);
  background: var(--shop-primary);
  position: relative;
  overflow: hidden;
}
[data-preset="boutique"] .shs-has-image {
  background: var(--shs-bg-image) center/cover no-repeat;
}
[data-preset="boutique"] .shs-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
[data-preset="boutique"] .shs-has-image .shs-overlay {
  background: rgba(255,255,255,0.75);
}
[data-preset="boutique"] .shs-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
[data-preset="boutique"] .shs-title {
  color: var(--shop-bg, #fff);
  font-size: clamp(28px, 4vw, 36px);
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.2;
  text-align: center;
}
[data-preset="boutique"] .shs-has-image .shs-title {
  color: var(--shop-text, #000);
  text-shadow: none;
}
[data-preset="boutique"] .shs-subtitle {
  color: color-mix(in srgb, var(--shop-bg, #fff) 85%, transparent);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 600px;
  margin: 0;
  text-align: center;
}
[data-preset="boutique"] .shs-has-image .shs-subtitle {
  color: var(--shop-text, #555);
  text-shadow: none;
}
@media (max-width: 768px) {
  [data-preset="boutique"] .shs-inner { padding: 0 20px; }
}

/* ========================================
   BOUTIQUE CATEGORY TABS (ct-*)
   ======================================== */
[data-preset="boutique"] .ct-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}
[data-preset="boutique"] .ct-scroll {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
[data-preset="boutique"] .ct-scroll::-webkit-scrollbar { display: none; }
[data-preset="boutique"] .ct-tab {
  padding: 12px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s;
  background: transparent;
  color: #999;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
[data-preset="boutique"] .ct-tab:hover {
  background: transparent;
  color: var(--shop-text, #000);
}
[data-preset="boutique"] .ct-tab-active {
  background: transparent;
  color: var(--shop-primary, #000);
  border-bottom-color: var(--shop-primary, #000);
}
@media (max-width: 768px) {
  [data-preset="boutique"] .ct-wrap { padding: 0 16px; }
  [data-preset="boutique"] .ct-scroll { justify-content: flex-start; gap: 16px; padding: 20px 0; }
}

/* ========================================
   BOUTIQUE DESCRIPTION SECTION (ds-*)
   ======================================== */
[data-preset="boutique"] .ds-wrap {
  background: color-mix(in srgb, var(--shop-primary) 8%, var(--shop-bg, #fff) 92%);
}
[data-preset="boutique"] .ds-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px;
  width: 100%;
  box-sizing: border-box;
}
[data-preset="boutique"] .ds-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
[data-preset="boutique"] .ds-content {
  flex: 1;
  min-width: 0;
}
[data-preset="boutique"] .ds-title {
  font-size: 22px;
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  color: var(--shop-primary);
  margin: 0 0 20px;
}
[data-preset="boutique"] .ds-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--shop-text, #555);
  max-height: 300px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}
[data-preset="boutique"] .ds-text-expanded {
  max-height: none;
}
[data-preset="boutique"] .ds-paragraph {
  margin: 0 0 16px;
}
[data-preset="boutique"] .ds-text-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, color-mix(in srgb, var(--shop-primary) 8%, var(--shop-bg, #fff) 92%));
}
[data-preset="boutique"] .ds-toggle-btn {
  margin-top: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--shop-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
[data-preset="boutique"] .ds-toggle-icon {
  transition: transform 0.3s;
}
[data-preset="boutique"] .ds-toggle-icon-up {
  transform: rotate(180deg);
}
[data-preset="boutique"] .ds-image {
  flex: 0 0 380px;
  overflow: hidden;
  max-height: 400px;
  align-self: flex-start;
}
[data-preset="boutique"] .ds-image-sticky {
  position: sticky;
  top: 100px;
}
[data-preset="boutique"] .ds-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  [data-preset="boutique"] .ds-layout { flex-direction: column-reverse; }
  [data-preset="boutique"] .ds-image { flex: none; width: 100%; max-height: 280px; position: relative; top: auto; }
}
@media (max-width: 768px) {
  [data-preset="boutique"] .ds-inner { padding: 40px 20px; }
}
@media (max-width: 480px) {
  [data-preset="boutique"] .ds-image { display: none; }
}

/* ===== Anpassungen Kategorie-Seite + FAQ ===== */
/* Keine Hurenkinder/Witwen in Titeln (Zeilenausgleich) */
[data-preset="boutique"] .shs-title,
[data-preset="boutique"] .ds-title,
[data-preset="boutique"] .section-accordion .section-title {
  text-wrap: balance;
}

/* FAQ zentriert (Block + Titel mittig) */
[data-preset="boutique"] .section-accordion .accordion-main {
  max-width: 720px;
  margin: 0 auto;
}
[data-preset="boutique"] .section-accordion .accordion-title {
  text-align: center;
}

/* FAQ-Antwort: Abstand links/rechts statt am Rand kleben */
[data-preset="boutique"] .accordion-body-inner {
  padding: 4px 24px 22px;
}

/* ========================================
   BOUTIQUE PRODUCT GRID (spg-*)
   ======================================== */
[data-preset="boutique"] .spg-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 20px;
  width: 100%;
  box-sizing: border-box;
}
[data-preset="boutique"] .spg-embedded {
  padding: 32px 0;
  max-width: none;
}
[data-preset="boutique"] .spg-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
[data-preset="boutique"] .spg-total {
  color: var(--shop-text, #666);
  font-size: 13px;
  opacity: 0.6;
}
[data-preset="boutique"] .spg-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
[data-preset="boutique"] .spg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
[data-preset="boutique"] .spg-card {
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: var(--shop-bg, #fff);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
[data-preset="boutique"] .spg-card:hover {
  transform: none;
  box-shadow: none;
}
[data-preset="boutique"] .spg-card-img {
  aspect-ratio: 3/4;
  background: color-mix(in srgb, var(--shop-text, #000) 4%, var(--shop-bg, #fff));
  overflow: hidden;
  position: relative;
}
[data-preset="boutique"] .spg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
[data-preset="boutique"] .spg-card:hover .spg-card-img img {
  transform: scale(1.03);
}
[data-preset="boutique"] .spg-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--shop-text, #000) 25%, transparent);
  font-size: 13px;
}
[data-preset="boutique"] .spg-sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--shop-primary, #e53e3e);
  color: var(--shop-bg, #fff);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
}
[data-preset="boutique"] .spg-card-info {
  padding: 14px 12px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
[data-preset="boutique"] .spg-card-info h3 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--shop-text, #333);
}
[data-preset="boutique"] .spg-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
[data-preset="boutique"] .spg-price-regular {
  font-size: 14px;
  font-weight: 600;
  color: var(--shop-primary);
  letter-spacing: 0.02em;
}
[data-preset="boutique"] .spg-price-sale {
  font-size: 14px;
  font-weight: 700;
  color: #e53e3e;
  letter-spacing: 0.02em;
}
[data-preset="boutique"] .spg-price-original {
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--shop-text, #000) 45%, transparent);
  text-decoration: line-through;
}
[data-preset="boutique"] .spg-tax {
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--shop-text, #000) 45%, transparent);
  line-height: 1.5;
}
[data-preset="boutique"] .spg-swatches {
  display: flex;
  gap: 4px;
  margin: 4px 0 6px;
}
[data-preset="boutique"] .spg-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
[data-preset="boutique"] .spg-sort-select {
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent);
  font-size: 13px;
  background: var(--shop-bg, #fff);
  color: var(--shop-text, #333);
  cursor: pointer;
  transition: border-color 0.2s;
  font-family: inherit;
}
[data-preset="boutique"] .spg-sort-select:hover, [data-preset="boutique"] .spg-sort-select:focus {
  border-color: var(--shop-primary);
  outline: none;
}
[data-preset="boutique"] .spg-view-toggle {
  display: flex;
  border: 1px solid var(--shop-primary, #ddd);
  overflow: hidden;
}
[data-preset="boutique"] .spg-view-btn {
  padding: 8px 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s;
  background: transparent;
  color: var(--shop-text, #333);
}
[data-preset="boutique"] .spg-view-btn:hover { opacity: 0.8; }
[data-preset="boutique"] .spg-view-btn-active {
  background: var(--shop-primary);
  color: #fff;
}
[data-preset="boutique"] .spg-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
[data-preset="boutique"] .spg-list-item {
  display: flex;
  gap: 20px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent);
  text-decoration: none;
  color: inherit;
  background: var(--shop-bg, #fff);
  transition: transform 0.2s, box-shadow 0.2s;
  align-items: center;
}
[data-preset="boutique"] .spg-list-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
[data-preset="boutique"] .spg-list-img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  background: color-mix(in srgb, var(--shop-text, #000) 4%, var(--shop-bg, #fff));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
[data-preset="boutique"] .spg-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-preset="boutique"] .spg-noimg-text {
  color: color-mix(in srgb, var(--shop-text, #000) 25%, transparent);
  font-size: 12px;
}
[data-preset="boutique"] .spg-list-info {
  flex: 1;
  min-width: 0;
}
[data-preset="boutique"] .spg-list-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--shop-text, #333);
}
[data-preset="boutique"] .spg-list-desc {
  font-size: 13px;
  color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent);
  margin: 0 0 8px;
  line-height: 1.5;
}
[data-preset="boutique"] .spg-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent);
}
[data-preset="boutique"] .spg-page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--shop-text, #333);
  background: var(--shop-bg, #fff);
  transition: all 0.2s;
}
[data-preset="boutique"] .spg-page-btn:hover {
  border-color: var(--shop-primary);
  color: var(--shop-primary);
}
[data-preset="boutique"] .spg-page-btn-active {
  background: var(--shop-primary);
  border-color: var(--shop-primary);
  color: var(--shop-bg, #fff);
}
[data-preset="boutique"] .spg-skeleton {
  background: color-mix(in srgb, var(--shop-text, #000) 6%, var(--shop-bg, #fff));
  height: 360px;
  animation: spgPulse 1.5s infinite;
}
[data-preset="boutique"] .spg-list .spg-skeleton { height: 140px; }
@keyframes spgPulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
[data-preset="boutique"] .spg-empty {
  text-align: center;
  padding: 80px 0;
}
[data-preset="boutique"] .spg-empty-icon {
  margin-bottom: 16px;
  stroke: color-mix(in srgb, var(--shop-text, #000) 25%, transparent);
}
[data-preset="boutique"] .spg-empty-text {
  color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent);
  font-size: 15px;
  margin: 0;
}
[data-preset="boutique"] .spg-empty-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--shop-tertiary, var(--shop-primary));
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  [data-preset="boutique"] .spg-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  [data-preset="boutique"] .spg-list-img { width: 80px; height: 80px; }
}
@media (max-width: 768px) {
  [data-preset="boutique"] .spg-wrap { padding: 24px 0; }
  [data-preset="boutique"] .spg-embedded { padding: 24px 0; }
  [data-preset="boutique"] .spg-grid { gap: 1px; }
  [data-preset="boutique"] .spg-card-info { padding: 12px 8px 16px; }
  [data-preset="boutique"] .spg-toolbar { padding: 0 16px; margin-bottom: 16px; }
}
@media (max-width: 480px) {
  [data-preset="boutique"] .spg-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  [data-preset="boutique"] .spg-card-info h3 { font-size: 12px; }
}
/* ========================================
   MOBILE MENU
   ======================================== */

/* Sidebar */
[data-preset="boutique"] .smm-sidebar { position: fixed; top: 0; left: -400px; width: 380px; height: 100vh; background: var(--shop-bg, #fff); z-index: 2147483647; transition: left var(--transition); display: flex; flex-direction: column; overflow-y: auto; box-shadow: 2px 0 10px rgba(0,0,0,.1); }
[data-preset="boutique"] .smm-sidebar.open { left: 0; }
[data-preset="boutique"] .smm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2147483646; opacity: 0; visibility: hidden; transition: var(--transition); }
[data-preset="boutique"] .smm-overlay.show { opacity: 1; visibility: visible; }
[data-preset="boutique"] .smm-overlay.smm-overlay-dark { background: rgba(0,0,0,.7); backdrop-filter: blur(4px); }
[data-preset="boutique"] .smm-spacer { flex: 1; }
[data-preset="boutique"] .smm-close { margin: 16px; padding: 14px; background: #000; color: #fff; border: none; border-radius: 0; font-weight: 700; font-size: 14px; cursor: pointer; text-transform: uppercase; transition: opacity var(--transition); letter-spacing: 1px; }
[data-preset="boutique"] .smm-close:hover { opacity: .9; }

/* Dark Menu */
[data-preset="boutique"] .smm-dark { position: fixed; top: 0; left: -400px; width: 380px; height: 100vh; background: var(--shop-bg, #fff); color: var(--shop-text, #000); z-index: 2147483647; transition: left .35s cubic-bezier(.16,1,.3,1); display: flex; flex-direction: column; overflow-y: auto; box-shadow: 2px 0 10px rgba(0,0,0,.1); }
[data-preset="boutique"] .smm-dark.open { left: 0; }
[data-preset="boutique"] .smm-dk-header { display: flex; justify-content: flex-end; padding: 16px 20px; }
[data-preset="boutique"] .smm-dk-close { background: color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)); border: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); transition: all var(--transition); }
[data-preset="boutique"] .smm-dk-close:hover { background: color-mix(in srgb, var(--shop-bg, #fff) 85%, var(--shop-text, #000)); color: var(--shop-text, #000); }
[data-preset="boutique"] .smm-dk-auth { padding: 0 24px 20px; border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent); }
[data-preset="boutique"] .smm-dk-user { display: flex; align-items: center; gap: 12px; }
[data-preset="boutique"] .smm-dk-avatar { width: 36px; height: 36px; border-radius: 50%; background: #000; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #fff; }
[data-preset="boutique"] .smm-dk-name { font-size: 14px; font-weight: 600; color: var(--shop-text, #000); }
[data-preset="boutique"] .smm-dk-link { font-size: 12px; color: #000; text-decoration: none; }
[data-preset="boutique"] .smm-dk-nav { padding: 24px 24px 16px; }
[data-preset="boutique"] .smm-dk-navlink { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 6%, transparent); text-decoration: none; color: var(--shop-text, #000); transition: all var(--transition); }
[data-preset="boutique"] .smm-dk-navlink:hover { padding-left: 8px; }
[data-preset="boutique"] .smm-dk-navlink:hover .smm-dk-label { color: #000; }
[data-preset="boutique"] .smm-dk-navlink:hover .smm-dk-arrow { transform: translateX(4px); color: #000; }
[data-preset="boutique"] .smm-dk-num { font-size: 11px; font-weight: 500; color: color-mix(in srgb, var(--shop-text, #000) 25%, transparent); font-family: monospace; min-width: 20px; }
[data-preset="boutique"] .smm-dk-label { font-size: 16px; font-weight: 500; flex: 1; transition: color var(--transition); }
[data-preset="boutique"] .smm-dk-arrow { color: color-mix(in srgb, var(--shop-text, #000) 25%, transparent); transition: all var(--transition); margin-left: auto; }
[data-preset="boutique"] .smm-dk-contact { display: flex; gap: 10px; margin-top: 20px; }
[data-preset="boutique"] .smm-dk-contact-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)); border: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); border-radius: 0; text-decoration: none; color: color-mix(in srgb, var(--shop-text, #000) 60%, transparent); font-size: 13px; font-weight: 500; transition: all var(--transition); }
[data-preset="boutique"] .smm-dk-contact-btn:hover { background: color-mix(in srgb, var(--shop-bg, #fff) 85%, var(--shop-text, #000)); color: #000; }
[data-preset="boutique"] .smm-dk-bottom { padding: 20px 24px; border-top: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent); display: flex; flex-direction: column; gap: 12px; }
[data-preset="boutique"] .smm-dk-cta { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; background: #000; color: #fff; border: none; border-radius: 0; font-size: 14px; font-weight: 700; cursor: pointer; transition: all var(--transition); letter-spacing: 1px; text-transform: uppercase; }
[data-preset="boutique"] .smm-dk-cta:hover { opacity: .9; }

/* Light Business/Portfolio Nav */
[data-preset="boutique"] .smm-biz-nav { padding: 24px 16px; }
[data-preset="boutique"] .smm-biz-nav .smm-heading { font-size: 15px; font-weight: 700; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 1px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); }
[data-preset="boutique"] .smm-biz-nav ul { list-style: none; margin: 0; padding: 0; }
[data-preset="boutique"] .smm-biz-nav li { border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent); }
[data-preset="boutique"] .smm-biz-nav li a { display: flex; align-items: center; gap: 12px; padding: 14px 4px; text-decoration: none; color: var(--shop-text, #000); font-size: 15px; font-weight: 500; transition: all var(--transition); }
[data-preset="boutique"] .smm-biz-nav li a:hover { color: #000; padding-left: 10px; }
[data-preset="boutique"] .smm-biz-contact { display: flex; gap: 8px; margin-top: 20px; }
[data-preset="boutique"] .smm-biz-contact-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)); border: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); border-radius: 0; text-decoration: none; color: var(--shop-text, #000); font-size: 13px; font-weight: 600; transition: all var(--transition); }
[data-preset="boutique"] .smm-biz-contact-btn:hover { background: #000; color: #fff; border-color: #000; }

/* Shop: Auth */
[data-preset="boutique"] .smm-auth { padding: 16px; border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); }
[data-preset="boutique"] .smm-user { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; font-size: 14px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); }
[data-preset="boutique"] .smm-user strong { color: var(--shop-text, #000); }
[data-preset="boutique"] .smm-user a { color: #000; font-weight: 600; font-size: 13px; text-decoration: none; }
[data-preset="boutique"] .smm-login-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 10px 16px; background: color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)); border: 1px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); border-radius: 0; cursor: pointer; font-size: 13px; font-weight: 700; color: var(--shop-text, #000); transition: all var(--transition); letter-spacing: 1px; }
[data-preset="boutique"] .smm-login-toggle.active { background: color-mix(in srgb, #000 15%, var(--shop-bg, #fff)); border-color: #000; }
[data-preset="boutique"] .smm-login-toggle svg { fill: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); }
[data-preset="boutique"] .smm-login-toggle.active svg { fill: #000; }

/* Shop: Search */
[data-preset="boutique"] .smm-search { padding: 14px 16px; border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); position: relative; }
[data-preset="boutique"] .smm-search-wrap { display: flex; background: color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)); border-radius: 0; overflow: hidden; }
[data-preset="boutique"] .smm-search-wrap input { flex: 1; border: none; background: transparent; padding: 12px 16px; font-size: 14px; outline: none; color: var(--shop-text, #000); }
[data-preset="boutique"] .smm-search-wrap button { background: #000; border: none; padding: 0 14px; cursor: pointer; color: #fff; display: flex; align-items: center; }
[data-preset="boutique"] .smm-search-results { position: absolute; left: 16px; right: 16px; top: 100%; background: var(--shop-bg, #fff); border-radius: 0; box-shadow: 0 8px 30px rgba(0,0,0,.15); z-index: 10; max-height: 300px; overflow-y: auto; }
[data-preset="boutique"] .smm-search-item { display: flex; gap: 12px; padding: 10px 14px; text-decoration: none; align-items: center; }
[data-preset="boutique"] .smm-search-item:hover { background: color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)); }
[data-preset="boutique"] .smm-search-item img { width: 44px; height: 44px; border-radius: 0; object-fit: cover; }
[data-preset="boutique"] .smm-sr-name { font-size: 13px; font-weight: 600; color: var(--shop-text, #000); }
[data-preset="boutique"] .smm-sr-price { font-size: 14px; font-weight: 700; color: var(--shop-text, #000); }

/* Shop: Categories */
[data-preset="boutique"] .smm-cats { padding: 16px; }
[data-preset="boutique"] .smm-cats .smm-heading { font-size: 15px; font-weight: 700; margin: 0 0 12px; text-transform: uppercase; letter-spacing: 1px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); }
[data-preset="boutique"] .smm-cats ul { list-style: none; margin: 0; padding: 0; }
[data-preset="boutique"] .smm-cats li { border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent); }
[data-preset="boutique"] .smm-cats li a { display: flex; align-items: center; gap: 12px; padding: 13px 4px; text-decoration: none; color: var(--shop-text, #000); font-size: 14px; font-weight: 500; transition: all var(--transition); }
[data-preset="boutique"] .smm-cats li a:hover { color: #000; }
[data-preset="boutique"] .smm-cat-img { width: 28px; height: 28px; border-radius: 0; object-fit: cover; }
[data-preset="boutique"] .smm-cat-count { color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); font-size: 12px; margin-left: auto; }
[data-preset="boutique"] .smm-cat-skel { height: 48px; flex: none; width: 100%; margin-bottom: 6px; background: linear-gradient(90deg, color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)) 25%, color-mix(in srgb, var(--shop-bg, #fff) 85%, var(--shop-text, #000)) 50%, color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)) 75%); background-size: 200% 100%; animation: smm-shimmer-boutique 1.5s infinite; border-radius: 0; }
[data-preset="boutique"] .smm-all-products { font-weight: 700; }

/* Shop: Products */
[data-preset="boutique"] .smm-prods { padding: 16px; background: color-mix(in srgb, var(--shop-bg, #fff) 96%, var(--shop-text, #000)); }
[data-preset="boutique"] .smm-prods .smm-heading { font-size: 15px; font-weight: 700; margin: 0 0 12px; color: var(--shop-text, #000); }
[data-preset="boutique"] .smm-prod-slider { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
[data-preset="boutique"] .smm-prod-slider::-webkit-scrollbar { display: none; }
[data-preset="boutique"] .smm-prod-card { flex: 0 0 130px; background: var(--shop-bg, #fff); border-radius: 0; padding: 8px; text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
[data-preset="boutique"] .smm-prod-card:active { transform: scale(.98); }
[data-preset="boutique"] .smm-prod-img { width: 100%; height: 120px; background: color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)); border-radius: 0; overflow: hidden; margin-bottom: 8px; }
[data-preset="boutique"] .smm-prod-img img { width: 100%; height: 100%; object-fit: cover; }
[data-preset="boutique"] .smm-prod-name { font-size: 12px; font-weight: 600; color: var(--shop-text, #000); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; height: 32px; margin-bottom: 4px; }
[data-preset="boutique"] .smm-prod-price { font-size: 14px; font-weight: 700; color: var(--shop-text, #000); }
[data-preset="boutique"] .smm-prod-skel { flex: 0 0 130px; height: 190px; background: linear-gradient(90deg, color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)) 25%, color-mix(in srgb, var(--shop-bg, #fff) 85%, var(--shop-text, #000)) 50%, color-mix(in srgb, var(--shop-bg, #fff) 92%, var(--shop-text, #000)) 75%); background-size: 200% 100%; animation: smm-shimmer-boutique 1.5s infinite; border-radius: 0; }
@keyframes smm-shimmer-boutique { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

@media (max-width: 768px) {
  [data-preset="boutique"] .smm-sidebar { width: 100%; left: -100%; }
  [data-preset="boutique"] .smm-dark { width: 100%; left: -100%; }
}

/* ========================================
   MINICART
   ======================================== */
[data-preset="boutique"] .mc-sidebar { position: fixed; top: 0; right: -420px; width: 420px; height: 100vh; background: #fff; z-index: 2147483647; transition: right var(--transition); display: flex; flex-direction: column; box-shadow: -2px 0 10px rgba(0,0,0,.1); color: var(--shop-text, #000); }
[data-preset="boutique"] .mc-sidebar.open { right: 0; }
[data-preset="boutique"] .mc-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 2147483646; opacity: 0; visibility: hidden; transition: var(--transition); }
[data-preset="boutique"] .mc-overlay.show { opacity: 1; visibility: visible; }
[data-preset="boutique"] .mc-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); background: #fff; }
[data-preset="boutique"] .mc-title { font-size: 17px; font-weight: 600; color: var(--shop-text, #000); letter-spacing: 1px; }
[data-preset="boutique"] .mc-close { background: none; border: none; cursor: pointer; padding: 4px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); transition: color var(--transition); }
[data-preset="boutique"] .mc-close:hover { color: var(--shop-text, #000); }
[data-preset="boutique"] .mc-items { flex: 1; overflow-y: auto; padding: 14px; }
[data-preset="boutique"] .mc-item { display: flex; gap: 12px; padding: 12px; border-radius: 0; margin-bottom: 8px; background: color-mix(in srgb, var(--shop-text, #000) 4%, var(--shop-bg, #fff)); }
[data-preset="boutique"] .mc-img { width: 56px; height: 56px; border-radius: 0; overflow: hidden; background: color-mix(in srgb, var(--shop-text, #000) 6%, var(--shop-bg, #fff)); flex-shrink: 0; }
[data-preset="boutique"] .mc-img img { width: 100%; height: 100%; object-fit: cover; }
[data-preset="boutique"] .mc-info { flex: 1; min-width: 0; }
[data-preset="boutique"] .mc-name { font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-bottom: 4px; color: var(--shop-text, #000); }
[data-preset="boutique"] .mc-meta { display: flex; gap: 10px; font-size: 13px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); }
[data-preset="boutique"] .mc-price { font-weight: 700; color: var(--shop-text, #000); }
[data-preset="boutique"] .mc-remove { background: none; border: none; cursor: pointer; color: color-mix(in srgb, var(--shop-text, #000) 35%, transparent); flex-shrink: 0; padding: 4px; transition: color var(--transition); }
[data-preset="boutique"] .mc-remove:hover { color: #d00; }
[data-preset="boutique"] .mc-remove:disabled { opacity: .5; }
[data-preset="boutique"] .mc-empty { text-align: center; padding: 40px; color: color-mix(in srgb, var(--shop-text, #000) 35%, transparent); }
[data-preset="boutique"] .mc-footer { padding: 18px; border-top: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); }
[data-preset="boutique"] .mc-total { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 4px; color: var(--shop-text, #000); }
[data-preset="boutique"] .mc-total strong { font-size: 18px; }
[data-preset="boutique"] .mc-tax { font-size: 11px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); text-align: center; margin-bottom: 14px; }
[data-preset="boutique"] .mc-btn { display: block; width: 100%; padding: 13px; text-align: center; border-radius: 0; text-decoration: none; font-weight: 700; font-size: 14px; border: none; cursor: pointer; margin-bottom: 8px; transition: all var(--transition); letter-spacing: 1px; text-transform: uppercase; }
[data-preset="boutique"] .mc-btn-secondary { background: color-mix(in srgb, var(--shop-text, #000) 6%, var(--shop-bg, #fff)); color: var(--shop-text, #333); }
[data-preset="boutique"] .mc-btn-secondary:hover { background: color-mix(in srgb, var(--shop-text, #000) 10%, var(--shop-bg, #fff)); }
[data-preset="boutique"] .mc-btn-primary { background: #000; color: #fff; }
[data-preset="boutique"] .mc-btn-primary:hover { opacity: .9; }
@media (max-width: 768px) { [data-preset="boutique"] .mc-sidebar { width: 100%; right: -100%; } }

/* ========== COOKIE BANNER (cb-*) ========== */
[data-preset="boutique"] .cb-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 99998; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
[data-preset="boutique"] .cb-overlay.show { opacity: 1; pointer-events: auto; }

[data-preset="boutique"] .cb-banner { position: fixed; z-index: 99999; background: #fff; color: #333; box-shadow: 0 -4px 40px rgba(0,0,0,0.15); padding: 28px 32px; font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
[data-preset="boutique"] .cb-banner[data-position="bottom"] { bottom: 0; left: 0; right: 0; border-radius: 16px 16px 0 0; }
[data-preset="boutique"] .cb-banner[data-position="center"] { top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: 560px; width: 90%; border-radius: 16px; }
[data-preset="boutique"] .cb-banner[data-position="bottom-left"] { bottom: 24px; left: 24px; max-width: 440px; width: calc(100% - 48px); border-radius: 16px; }

[data-preset="boutique"] .cb-title { margin: 0 0 12px; font-size: 18px; font-weight: 700; color: #111; }
[data-preset="boutique"] .cb-text { margin: 0 0 20px; font-size: 14px; line-height: 1.7; color: #555; }

[data-preset="boutique"] .cb-actions { display: flex; gap: 10px; flex-wrap: wrap; }
[data-preset="boutique"] .cb-btn { flex: 1 1 auto; padding: 14px 24px; border-radius: 8px; font-size: 14px; cursor: pointer; border: none; }
[data-preset="boutique"] .cb-btn-accept { background: var(--shop-primary, #000); color: #fff; font-weight: 700; }
[data-preset="boutique"] .cb-banner[data-btn-style="green"] .cb-btn-accept { background: #16a34a; }
[data-preset="boutique"] .cb-banner[data-btn-style="dark"] .cb-btn-accept { background: #1a1a1a; }
[data-preset="boutique"] .cb-btn-reject { background: transparent; color: #333; border: 1px solid #ddd; font-weight: 600; }
[data-preset="boutique"] .cb-btn-settings { background: transparent; color: #666; border: 1px solid #ddd; font-weight: 600; }

[data-preset="boutique"] .cb-links { margin-top: 16px; display: flex; gap: 16px; justify-content: center; }
[data-preset="boutique"] .cb-link { font-size: 12px; color: #888; text-decoration: underline; }

[data-preset="boutique"] .cb-prefs-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
[data-preset="boutique"] .cb-prefs-header .cb-title { margin: 0; }
[data-preset="boutique"] .cb-prefs-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #999; padding: 0 4px; }
[data-preset="boutique"] .cb-prefs-list { max-height: 400px; overflow-y: auto; margin-bottom: 20px; }
[data-preset="boutique"] .cb-prefs-actions { display: flex; gap: 10px; }

[data-preset="boutique"] .cb-cat { margin-bottom: 8px; background: #f8f8f8; border-radius: 10px; overflow: hidden; }
[data-preset="boutique"] .cb-cat-header { padding: 16px; display: flex; align-items: flex-start; gap: 14px; }
[data-preset="boutique"] .cb-cat-info { flex: 1; }
[data-preset="boutique"] .cb-cat-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: #111; }
[data-preset="boutique"] .cb-cat-badge { font-size: 11px; font-weight: 400; color: #999; }
[data-preset="boutique"] .cb-cat-desc { font-size: 13px; color: #666; line-height: 1.5; }

[data-preset="boutique"] .cb-toggle-wrap { padding-top: 2px; }
[data-preset="boutique"] .cb-toggle { display: block; width: 44px; height: 24px; border-radius: 12px; cursor: pointer; background: #ccc; transition: background 0.2s; position: relative; }
[data-preset="boutique"] .cb-toggle.active { background: var(--shop-primary, #000); }
[data-preset="boutique"] .cb-banner[data-btn-style="green"] .cb-toggle.active { background: #16a34a; }
[data-preset="boutique"] .cb-banner[data-btn-style="dark"] .cb-toggle.active { background: #1a1a1a; }
[data-preset="boutique"] .cb-toggle.disabled { cursor: not-allowed; }
[data-preset="boutique"] .cb-toggle input { display: none; }
[data-preset="boutique"] .cb-toggle-knob { position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: left 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
[data-preset="boutique"] .cb-toggle.active .cb-toggle-knob { left: 22px; }

[data-preset="boutique"] .cb-expand { background: none; border: none; cursor: pointer; padding: 4px; color: #999; flex-shrink: 0; margin-top: 2px; transition: transform 0.2s; }
[data-preset="boutique"] .cb-expand.expanded { transform: rotate(180deg); }

[data-preset="boutique"] .cb-services { padding: 0 16px 16px; }
[data-preset="boutique"] .cb-service { background: #fff; border-radius: 8px; padding: 12px 14px; margin-bottom: 6px; border: 1px solid #eee; }
[data-preset="boutique"] .cb-service-name { font-weight: 600; font-size: 13px; color: #222; margin-bottom: 8px; }
[data-preset="boutique"] .cb-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; font-size: 12px; color: #666; line-height: 1.6; }
[data-preset="boutique"] .cb-service-label { color: #999; }

@media (max-width: 600px) {
  [data-preset="boutique"] .cb-banner { padding: 20px 18px; }
  [data-preset="boutique"] .cb-banner[data-position="bottom-left"] { left: 12px; bottom: 12px; width: calc(100% - 24px); }
  [data-preset="boutique"] .cb-service-grid { grid-template-columns: 1fr; }
}

/* ========== FILTER SIDEBAR ========== */
[data-preset="boutique"] .filter-sidebar { padding: 20px; }
@media (max-width: 768px) { [data-preset="boutique"] .filter-sidebar { padding: 16px; } }
[data-preset="boutique"] .filter-section { margin-bottom: 25px; position: relative; }
[data-preset="boutique"] .filter-title { font-weight: 700; font-size: 13px; margin-bottom: 15px; color: var(--shop-text, #000); text-transform: uppercase; letter-spacing: 0.5px; }
[data-preset="boutique"] .search-form { display: flex; align-items: center; background: color-mix(in srgb, var(--shop-text, #000) 5%, var(--shop-bg, #fff)); border-radius: var(--radius-lg, 50px); overflow: hidden; border: 2px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); transition: border-color var(--transition, 0.3s ease); }
[data-preset="boutique"] .search-form:focus-within { border-color: var(--shop-primary, #000); }
[data-preset="boutique"] .search-input { flex: 1; border: none; background: transparent; padding: 12px 20px; font-size: 14px; outline: none; color: var(--shop-text, #333); min-width: 0; font-family: inherit; }
[data-preset="boutique"] .search-input::placeholder { color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); }
[data-preset="boutique"] .search-button { background: var(--shop-primary, #000); border: none; width: 38px; height: 38px; min-width: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; margin: 4px; transition: opacity var(--transition, 0.3s ease); }
[data-preset="boutique"] .search-button:hover { opacity: 0.8; }
[data-preset="boutique"] .price-slider { position: relative; height: 40px; margin: 20px 0; }
[data-preset="boutique"] .slider-track { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; height: 4px; background: color-mix(in srgb, var(--shop-text, #000) 10%, transparent); border-radius: 2px; }
[data-preset="boutique"] .slider-range { position: absolute; top: 50%; transform: translateY(-50%); height: 4px; background: var(--shop-primary, #000); border-radius: 2px; }
[data-preset="boutique"] .range-input { position: absolute; width: 100%; top: 50%; transform: translateY(-50%); background: transparent; pointer-events: none; -webkit-appearance: none; margin: 0; }
[data-preset="boutique"] .range-input::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--shop-primary, #000); border: 3px solid var(--shop-bg, #fff); cursor: pointer; pointer-events: auto; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
[data-preset="boutique"] .range-input::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--shop-primary, #000); border: 3px solid var(--shop-bg, #fff); cursor: pointer; pointer-events: auto; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
[data-preset="boutique"] .price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 15px; }
[data-preset="boutique"] .price-input-group label { display: block; font-size: 12px; color: var(--shop-text, #000); font-weight: 600; margin-bottom: 6px; }
[data-preset="boutique"] .price-input-group input { width: 100%; padding: 10px; border: 2px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); border-radius: var(--radius, 8px); font-size: 14px; font-weight: 600; color: var(--shop-text, #000); box-sizing: border-box; background: var(--shop-bg, #fff); font-family: inherit; }
[data-preset="boutique"] .price-input-group input:focus { border-color: var(--shop-primary); outline: none; }
[data-preset="boutique"] .price-display { text-align: center; padding: 12px; background: color-mix(in srgb, var(--shop-text, #000) 5%, var(--shop-bg, #fff)); border-radius: var(--radius, 8px); font-size: 14px; font-weight: 700; color: var(--shop-text, #000); }
[data-preset="boutique"] .filter-select { width: 100%; padding: 12px; border: 2px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); border-radius: var(--radius, 8px); background: var(--shop-bg, #fff); cursor: pointer; font-size: 14px; color: var(--shop-text, #000); box-sizing: border-box; font-family: inherit; }
[data-preset="boutique"] .filter-select:focus { border-color: var(--shop-primary); outline: none; }
[data-preset="boutique"] .color-filter-list { display: flex; flex-wrap: wrap; gap: 8px; }
[data-preset="boutique"] .color-filter-btn { display: flex; align-items: center; gap: 6px; padding: 6px 12px; border: 2px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); border-radius: var(--radius, 8px); background: var(--shop-bg, #fff); cursor: pointer; font-size: 13px; color: var(--shop-text, #000); transition: all var(--transition, 0.3s ease); font-family: inherit; }
[data-preset="boutique"] .color-filter-btn:hover { border-color: color-mix(in srgb, var(--shop-text, #000) 35%, transparent); }
[data-preset="boutique"] .color-filter-btn.active { border-color: var(--shop-primary, #000); background: color-mix(in srgb, var(--shop-primary, #000) 8%, var(--shop-bg, #fff)); font-weight: 600; }
[data-preset="boutique"] .color-swatch { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.15); display: inline-block; }
[data-preset="boutique"] .apply-button { width: 100%; padding: 14px; background: var(--shop-primary, #000); color: var(--shop-bg, #fff); border: none; border-radius: var(--radius, 8px); font-size: 13px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: opacity var(--transition, 0.3s ease); font-family: inherit; }
[data-preset="boutique"] .apply-button:hover { opacity: 0.85; }
[data-preset="boutique"] .search-dropdown { position: absolute; z-index: 1000; width: 100%; margin-top: 8px; background: var(--shop-bg, #fff); border: 1px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); border-radius: var(--radius, 8px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); max-height: 400px; overflow-y: auto; }
[data-preset="boutique"] .search-dropdown-loading,
[data-preset="boutique"] .search-dropdown-empty { padding: 20px; text-align: center; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); font-size: 14px; }
[data-preset="boutique"] .search-dropdown-list { padding: 8px; }
[data-preset="boutique"] .search-dropdown-item { display: flex; gap: 12px; padding: 10px; border-radius: var(--radius, 8px); text-decoration: none; transition: background var(--transition, 0.3s ease); color: var(--shop-text, #000); }
[data-preset="boutique"] .search-dropdown-item:hover { background: color-mix(in srgb, var(--shop-text, #000) 5%, var(--shop-bg, #fff)); }
[data-preset="boutique"] .search-dropdown-image { width: 50px; height: 50px; flex-shrink: 0; background: color-mix(in srgb, var(--shop-text, #000) 6%, var(--shop-bg, #fff)); border-radius: var(--radius, 8px); overflow: hidden; display: flex; align-items: center; justify-content: center; }
[data-preset="boutique"] .search-dropdown-image img { width: 100%; height: 100%; object-fit: cover; }
[data-preset="boutique"] .search-dropdown-info { flex: 1; min-width: 0; }
[data-preset="boutique"] .search-dropdown-name { font-size: 13px; font-weight: 600; color: var(--shop-text, #000); margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
[data-preset="boutique"] .search-dropdown-price { font-size: 14px; font-weight: 700; color: var(--shop-text, #000); }

/* ========== MEMBER LOGIN (member-login-*) ========== */
[data-preset="boutique"] .member-login-wrapper { max-width: 500px; margin: 60px auto; padding: 0 20px; }
[data-preset="boutique"] .member-login-card { background: var(--shop-bg, #fff); border: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent); border-radius: var(--radius, 8px); overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
[data-preset="boutique"] .member-login-header { background: var(--shop-primary, #000); color: var(--shop-bg, #fff); padding: 40px 50px; text-align: center; }
[data-preset="boutique"] .member-login-header h2 { margin: 0 0 8px 0; font-size: 28px; font-weight: 700; color: var(--shop-accent, #FFD700); }
[data-preset="boutique"] .member-login-header p { margin: 0; color: var(--shop-bg, #fff); font-size: 14px; opacity: 0.85; }
[data-preset="boutique"] .member-login-body { padding: 40px 50px; }
[data-preset="boutique"] .member-login-field { margin-bottom: 18px; }
[data-preset="boutique"] .member-login-field label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--shop-text, #000); font-size: 14px; }
[data-preset="boutique"] .member-login-field input { width: 100%; padding: 14px 16px; border: 2px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent); border-radius: var(--radius, 8px); font-size: 15px; background: color-mix(in srgb, var(--shop-bg, #fff) 95%, var(--shop-text, #000)); box-sizing: border-box; color: var(--shop-text, #000); }
[data-preset="boutique"] .member-login-field input:focus { border-color: var(--shop-primary, #000); outline: none; background: var(--shop-bg, #fff); }
[data-preset="boutique"] .member-login-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
[data-preset="boutique"] .member-login-remember { display: flex; align-items: center; gap: 10px; margin: 16px 0; padding: 12px 14px; background: color-mix(in srgb, var(--shop-bg, #fff) 95%, var(--shop-text, #000)); border-radius: var(--radius, 8px); }
[data-preset="boutique"] .member-login-remember input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--shop-primary, #000); }
[data-preset="boutique"] .member-login-remember label { margin: 0; cursor: pointer; font-size: 14px; color: var(--shop-text, #333); }
[data-preset="boutique"] .member-login-btn { width: 100%; padding: 16px; background: var(--shop-primary, #000); color: var(--shop-bg, #fff); border: none; border-radius: var(--radius, 8px); font-size: 15px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }
[data-preset="boutique"] .member-login-btn:hover { opacity: 0.9; }
[data-preset="boutique"] .member-login-btn:disabled { opacity: 0.6; cursor: not-allowed; }
[data-preset="boutique"] .member-login-error { background: #fef2f2; border-left: 4px solid #dc2626; color: #dc2626; padding: 12px 16px; border-radius: var(--radius, 8px); margin-bottom: 16px; font-size: 14px; }
[data-preset="boutique"] .member-login-success { background: #f0fdf4; border-left: 4px solid #16a34a; color: #16a34a; padding: 12px 16px; border-radius: var(--radius, 8px); margin-bottom: 16px; font-size: 14px; }
[data-preset="boutique"] .member-login-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; padding-top: 30px; border-top: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent); }
[data-preset="boutique"] .member-login-toggle span { font-weight: 600; font-size: 14px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); transition: color var(--transition, 0.3s ease); }
[data-preset="boutique"] .member-login-toggle span.active { color: var(--shop-text, #000); font-weight: 700; }
[data-preset="boutique"] .member-login-switch { position: relative; width: 56px; height: 30px; background: color-mix(in srgb, var(--shop-text, #000) 15%, transparent); border-radius: 30px; cursor: pointer; transition: background var(--transition, 0.3s ease); }
[data-preset="boutique"] .member-login-switch.active { background: var(--shop-primary, #000); }
[data-preset="boutique"] .member-login-slider { position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; background: var(--shop-bg, #fff); border-radius: 50%; transition: transform var(--transition, 0.3s ease); box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
[data-preset="boutique"] .member-login-switch.active .member-login-slider { transform: translateX(26px); }
@media (max-width: 600px) {
  [data-preset="boutique"] .member-login-header { padding: 30px 25px; }
  [data-preset="boutique"] .member-login-body { padding: 30px 25px; }
  [data-preset="boutique"] .member-login-row { grid-template-columns: 1fr; }
}

/* ========== MEMBER DASHBOARD (md-*) ========== */
[data-preset="boutique"] .md-wrapper { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
[data-preset="boutique"] .md-hero { background: var(--shop-primary, #000); color: var(--shop-bg, #fff); padding: 45px 40px; border-radius: var(--radius, 8px); margin-bottom: 28px; }
[data-preset="boutique"] .md-hero h1 { font-size: 32px; font-weight: 700; margin: 0 0 8px; color: var(--shop-bg, #fff); }
[data-preset="boutique"] .md-hero p { margin: 0; color: var(--shop-accent, #FFD700); font-size: 15px; }
[data-preset="boutique"] .md-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
[data-preset="boutique"] .md-stat { background: var(--shop-bg, #fff); border: 2px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); border-radius: var(--radius, 8px); padding: 22px; text-align: center; cursor: pointer; transition: all var(--transition, 0.2s ease); }
[data-preset="boutique"] .md-stat:hover { border-color: var(--shop-primary, #000); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
[data-preset="boutique"] .md-stat-val { font-size: 28px; font-weight: 700; color: var(--shop-text, #000); margin-bottom: 4px; }
[data-preset="boutique"] .md-stat-label { font-size: 13px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); }
[data-preset="boutique"] .md-nav { display: flex; gap: 8px; margin-bottom: 24px; border-bottom: 2px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); }
[data-preset="boutique"] .md-nav-btn { padding: 14px 22px; background: none; border: none; font-size: 14px; font-weight: 600; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); cursor: pointer; border-bottom: 3px solid transparent; transition: all var(--transition, 0.2s ease); }
[data-preset="boutique"] .md-nav-btn:hover { color: var(--shop-text, #000); }
[data-preset="boutique"] .md-nav-btn.active { color: var(--shop-text, #000); border-bottom-color: var(--shop-primary, #000); }
[data-preset="boutique"] .md-section { background: var(--shop-bg, #fff); border: 2px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); border-radius: var(--radius, 8px); padding: 30px; }
[data-preset="boutique"] .md-section-title { font-size: 20px; font-weight: 700; margin: 0 0 22px; color: var(--shop-text, #000); }
[data-preset="boutique"] .md-table-wrap { overflow-x: auto; }
[data-preset="boutique"] .md-table { width: 100%; border-collapse: collapse; }
[data-preset="boutique"] .md-table th { text-align: left; padding: 12px 14px; background: color-mix(in srgb, var(--shop-bg, #fff) 95%, var(--shop-text, #000)); font-size: 12px; font-weight: 600; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); text-transform: uppercase; }
[data-preset="boutique"] .md-table td { padding: 14px; border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); font-size: 14px; color: var(--shop-text, #000); }
[data-preset="boutique"] .md-date { font-size: 12px; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); }
[data-preset="boutique"] .md-products { display: flex; align-items: center; gap: 10px; }
[data-preset="boutique"] .md-product-item { display: flex; align-items: center; gap: 8px; }
[data-preset="boutique"] .md-product-img { width: 40px; height: 40px; border-radius: var(--radius, 8px); object-fit: cover; }
[data-preset="boutique"] .md-product-name { font-size: 13px; font-weight: 500; color: var(--shop-text, #000); }
[data-preset="boutique"] .md-product-qty { font-size: 11px; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); }
[data-preset="boutique"] .md-more { font-size: 12px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); background: color-mix(in srgb, var(--shop-text, #000) 8%, transparent); padding: 4px 8px; border-radius: var(--radius, 8px); }
[data-preset="boutique"] .md-status { display: inline-block; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
[data-preset="boutique"] .md-empty { text-align: center; padding: 40px; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); }
[data-preset="boutique"] .md-empty-box { text-align: center; padding: 50px 20px; }
[data-preset="boutique"] .md-empty-box p { color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); font-size: 16px; margin-bottom: 20px; }
[data-preset="boutique"] .md-wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
[data-preset="boutique"] .md-wishlist-item { background: var(--shop-bg, #fff); border: 2px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); border-radius: var(--radius, 8px); overflow: hidden; position: relative; transition: all var(--transition, 0.2s ease); }
[data-preset="boutique"] .md-wishlist-item:hover { border-color: var(--shop-primary, #000); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
[data-preset="boutique"] .md-wishlist-img-wrap { display: block; width: 100%; height: 280px; background: color-mix(in srgb, var(--shop-bg, #fff) 95%, var(--shop-text, #000)); overflow: hidden; }
[data-preset="boutique"] .md-wishlist-img { width: 100%; height: 100%; object-fit: cover; }
[data-preset="boutique"] .md-wishlist-info { padding: 18px; }
[data-preset="boutique"] .md-wishlist-info h3 { margin: 0 0 8px; font-size: 15px; font-weight: 600; }
[data-preset="boutique"] .md-wishlist-info h3 a { color: var(--shop-text, #000); text-decoration: none; }
[data-preset="boutique"] .md-wishlist-info h3 a:hover { color: var(--shop-primary, #000); }
[data-preset="boutique"] .md-wishlist-price { font-size: 17px; font-weight: 700; color: var(--shop-text, #000); }
[data-preset="boutique"] .md-wishlist-remove { position: absolute; top: 12px; right: 12px; background: var(--shop-bg, #fff); border: none; border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.1); color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); }
[data-preset="boutique"] .md-wishlist-remove:hover { background: var(--shop-primary, #000); color: var(--shop-bg, #fff); }
[data-preset="boutique"] .md-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
[data-preset="boutique"] .md-field.md-full { grid-column: 1 / -1; }
[data-preset="boutique"] .md-field label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; color: var(--shop-text, #000); }
[data-preset="boutique"] .md-field input { width: 100%; padding: 13px 16px; border: 2px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent); border-radius: var(--radius, 8px); font-size: 15px; background: color-mix(in srgb, var(--shop-bg, #fff) 95%, var(--shop-text, #000)); box-sizing: border-box; color: var(--shop-text, #000); }
[data-preset="boutique"] .md-field input:focus { border-color: var(--shop-primary, #000); outline: none; background: var(--shop-bg, #fff); }
[data-preset="boutique"] .md-btn { display: inline-block; padding: 14px 32px; background: var(--shop-primary, #000); color: var(--shop-bg, #fff); border: none; border-radius: var(--radius, 8px); font-size: 15px; font-weight: 700; cursor: pointer; text-transform: uppercase; text-decoration: none; }
[data-preset="boutique"] .md-btn:hover { opacity: 0.9; }
[data-preset="boutique"] .md-btn:disabled { opacity: 0.6; cursor: not-allowed; }
[data-preset="boutique"] .md-success { background: #f0fdf4; border-left: 4px solid #16a34a; color: #16a34a; padding: 12px 16px; border-radius: var(--radius, 8px); margin-bottom: 16px; font-size: 14px; }
[data-preset="boutique"] .md-logout-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 12px 24px; background: color-mix(in srgb, var(--shop-bg, #fff) 95%, var(--shop-text, #000)); color: var(--shop-text, #000); border: 2px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent); border-radius: var(--radius, 8px); font-weight: 600; font-size: 14px; cursor: pointer; }
[data-preset="boutique"] .md-logout-btn:hover { background: var(--shop-primary, #000); color: var(--shop-bg, #fff); border-color: var(--shop-primary, #000); }
[data-preset="boutique"] .md-error { background: #fef2f2; border-left: 4px solid #ef4444; color: #ef4444; padding: 12px 16px; border-radius: var(--radius, 8px); margin-bottom: 16px; font-size: 14px; }
[data-preset="boutique"] .md-btn-outline { display: inline-block; padding: 14px 32px; background: transparent; color: var(--shop-text, #000); border: 2px solid color-mix(in srgb, var(--shop-text, #000) 20%, transparent); border-radius: var(--radius, 8px); font-size: 14px; font-weight: 600; cursor: pointer; }
[data-preset="boutique"] .md-btn-outline:hover { border-color: var(--shop-primary, #000); color: var(--shop-primary, #000); }
[data-preset="boutique"] .md-btn-danger { display: inline-block; padding: 14px 32px; background: #ef4444; color: #fff; border: none; border-radius: var(--radius, 8px); font-size: 14px; font-weight: 600; cursor: pointer; }
[data-preset="boutique"] .md-btn-danger:hover { background: #dc2626; }
[data-preset="boutique"] .md-btn-danger:disabled { opacity: 0.6; cursor: not-allowed; }
[data-preset="boutique"] .md-data-section { margin-top: 48px; padding-top: 32px; border-top: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); }
[data-preset="boutique"] .md-data-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
[data-preset="boutique"] .md-data-desc { font-size: 14px; opacity: 0.7; margin-bottom: 20px; line-height: 1.5; }
[data-preset="boutique"] .md-data-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
[data-preset="boutique"] .md-delete-confirm { margin-top: 20px; padding: 20px; background: #fef2f2; border-radius: var(--radius, 8px); border: 1px solid #fecaca; }
[data-preset="boutique"] .md-delete-warn { color: #991b1b; font-size: 14px; line-height: 1.5; margin-bottom: 16px; }
@media (max-width: 768px) {
  [data-preset="boutique"] .md-hero { padding: 30px 24px; }
  [data-preset="boutique"] .md-hero h1 { font-size: 24px; }
  [data-preset="boutique"] .md-stats { grid-template-columns: 1fr; }
  [data-preset="boutique"] .md-profile-grid { grid-template-columns: 1fr; }
  [data-preset="boutique"] .md-wishlist-grid { grid-template-columns: 1fr; }
}

/* === LegalPageClient === */
[data-preset="boutique"] .legal-wrapper { max-width: 900px; margin: 0 auto; padding: 48px 20px 80px; }
[data-preset="boutique"] .legal-skeleton-title { height: 24px; width: 300px; background: color-mix(in srgb, var(--shop-text, #000) 6%, var(--shop-bg, #fff)); border-radius: var(--radius, 4px); margin-bottom: 24px; }
[data-preset="boutique"] .legal-skeleton-line { height: 14px; width: 100%; background: color-mix(in srgb, var(--shop-text, #000) 6%, var(--shop-bg, #fff)); border-radius: var(--radius, 4px); margin-bottom: 12px; }
[data-preset="boutique"] .legal-skeleton-line.short { width: 80%; }
[data-preset="boutique"] .legal-skeleton-line.medium { width: 90%; margin-bottom: 0; }
[data-preset="boutique"] .legal-content { color: var(--shop-text, #333); line-height: 1.8; font-size: 15px; }
[data-preset="boutique"] .legal-content h1 { font-size: 28px; font-weight: 700; margin: 0 0 32px; color: var(--shop-text, #111); }
[data-preset="boutique"] .legal-content h2 { font-size: 20px; font-weight: 700; margin: 40px 0 16px; color: var(--shop-text, #111); }
[data-preset="boutique"] .legal-content h3 { font-size: 16px; font-weight: 700; margin: 28px 0 12px; color: var(--shop-text, #222); }
[data-preset="boutique"] .legal-content p { margin: 0 0 16px; }
[data-preset="boutique"] .legal-content ul,
[data-preset="boutique"] .legal-content ol { margin: 0 0 16px; padding-left: 24px; }
[data-preset="boutique"] .legal-content li { margin-bottom: 6px; }
[data-preset="boutique"] .legal-content a { color: var(--shop-primary, #000); text-decoration: underline; }
[data-preset="boutique"] .legal-content a:hover { opacity: 0.7; }
[data-preset="boutique"] .legal-content strong { font-weight: 600; }

/* === MemberAreaPage === */
[data-preset="boutique"] .member-area-loading { max-width: 960px; margin: 0 auto; padding: 80px 20px; text-align: center; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); }

/* === WishlistButton === */
[data-preset="boutique"] .wl-btn { border-radius: 50%; background: rgba(255,255,255,0.92); backdrop-filter: blur(4px); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition, 0.2s ease); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
[data-preset="boutique"] .wl-btn:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
[data-preset="boutique"] .wl-sm { width: 30px; height: 30px; }
[data-preset="boutique"] .wl-md { width: 34px; height: 34px; }
[data-preset="boutique"] .wl-lg { width: 40px; height: 40px; }
[data-preset="boutique"] .wl-top-right { position: absolute; top: 10px; right: 10px; z-index: 3; }
[data-preset="boutique"] .wl-top-left { position: absolute; top: 10px; left: 10px; z-index: 3; }
[data-preset="boutique"] .wl-btn-label { display: inline-flex; align-items: center; gap: 6px; background: none; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); border-radius: var(--radius, 4px); padding: 8px 14px; cursor: pointer; font-size: 12px; font-weight: 600; color: var(--shop-text, #666); transition: var(--transition, 0.2s ease); }
[data-preset="boutique"] .wl-btn-label.active { color: #e53e3e; }
[data-preset="boutique"] .wl-heart { transition: all 0.2s ease; flex-shrink: 0; }

/* === CartPageClient === */
[data-preset="boutique"] .cp-page { max-width: 1200px; margin: 0 auto; padding: 40px 20px 80px; }
[data-preset="boutique"] .cp-skeleton-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); }
[data-preset="boutique"] .cp-skeleton-img { width: 80px; height: 100px; background: color-mix(in srgb, var(--shop-text, #000) 3%, var(--shop-bg, #fff)); border-radius: var(--radius, 0px); }
[data-preset="boutique"] .cp-skeleton-text { flex: 1; }
[data-preset="boutique"] .cp-skeleton-line { height: 14px; background: color-mix(in srgb, var(--shop-text, #000) 3%, var(--shop-bg, #fff)); border-radius: 4px; margin-bottom: 12px; }
[data-preset="boutique"] .cp-skeleton-line.wide { width: 60%; height: 16px; }
[data-preset="boutique"] .cp-skeleton-line.narrow { width: 30%; }
[data-preset="boutique"] .cp-empty { max-width: 1200px; margin: 0 auto; padding: 80px 20px; text-align: center; }
[data-preset="boutique"] .cp-empty-icon { opacity: 0.3; margin-bottom: 20px; }
[data-preset="boutique"] .cp-empty-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--shop-text, #333); }
[data-preset="boutique"] .cp-empty-text { color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); margin-bottom: 28px; font-size: 15px; opacity: 0.7; }
[data-preset="boutique"] .cp-empty-btn { display: inline-block; padding: 14px 36px; background: var(--shop-primary, #000); color: var(--shop-bg, #fff); text-decoration: none; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; border-radius: var(--radius, 0px); }
[data-preset="boutique"] .cp-title { font-size: 22px; font-weight: 700; margin-bottom: 32px; color: var(--shop-text, #333); text-transform: uppercase; letter-spacing: 1.5px; }
[data-preset="boutique"] .cp-title-count { font-weight: 400; font-size: 16px; opacity: 0.5; }
[data-preset="boutique"] .cp-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
[data-preset="boutique"] .cp-table-header { display: grid; grid-template-columns: 1fr 120px 100px; gap: 16px; padding: 0 0 12px; border-bottom: 2px solid var(--shop-text, #333); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); opacity: 0.5; }
[data-preset="boutique"] .cp-header-center { text-align: center; }
[data-preset="boutique"] .cp-header-right { text-align: right; }
[data-preset="boutique"] .cp-item { display: grid; grid-template-columns: 1fr 120px 100px; gap: 16px; padding: 20px 0; border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); align-items: center; transition: opacity 0.2s; }
[data-preset="boutique"] .cp-item.updating { opacity: 0.4; }
[data-preset="boutique"] .cp-item-product { display: flex; gap: 16px; align-items: center; }
[data-preset="boutique"] .cp-item-img { width: 80px; height: 100px; background: color-mix(in srgb, var(--shop-text, #000) 3%, var(--shop-bg, #fff)); flex-shrink: 0; overflow: hidden; border-radius: var(--radius, 0px); }
[data-preset="boutique"] .cp-item-img img { width: 100%; height: 100%; object-fit: cover; }
[data-preset="boutique"] .cp-item-name { text-decoration: none; color: var(--shop-text, #333); }
[data-preset="boutique"] .cp-item-name h3 { font-size: 14px; font-weight: 600; margin: 0 0 4px; line-height: 1.4; }
[data-preset="boutique"] .cp-item-variation { font-size: 11px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); opacity: 0.6; margin-bottom: 4px; }
[data-preset="boutique"] .cp-item-variation span { margin-right: 10px; }
[data-preset="boutique"] .cp-item-unit-price { font-size: 13px; font-weight: 600; color: var(--shop-text, #333); }
[data-preset="boutique"] .cp-item-remove { background: none; border: none; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); cursor: pointer; font-size: 11px; padding: 4px 0; margin-top: 4px; opacity: 0.5; text-decoration: underline; }
[data-preset="boutique"] .cp-qty { display: flex; justify-content: center; }
[data-preset="boutique"] .cp-qty-wrap { display: inline-flex; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); border-radius: var(--radius, 0px); overflow: hidden; }
[data-preset="boutique"] .cp-qty-btn { width: 32px; height: 34px; border: none; background: transparent; cursor: pointer; font-size: 15px; color: var(--shop-text, #333); display: flex; align-items: center; justify-content: center; }
[data-preset="boutique"] .cp-qty-val { width: 36px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; border-left: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); border-right: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); color: var(--shop-text, #333); }
[data-preset="boutique"] .cp-line-total { font-weight: 700; font-size: 14px; text-align: right; color: var(--shop-text, #333); }
[data-preset="boutique"] .cp-coupon-row { margin-top: 24px; display: flex; gap: 8px; }
[data-preset="boutique"] .cp-coupon-input { flex: 1; padding: 10px 14px; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); font-size: 13px; outline: none; border-radius: var(--radius, 0px); background: transparent; color: var(--shop-text, #333); }
[data-preset="boutique"] .cp-coupon-btn { padding: 10px 20px; background: var(--shop-primary, #000); color: var(--shop-bg, #fff); border: none; cursor: pointer; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; border-radius: var(--radius, 0px); }
[data-preset="boutique"] .cp-coupon-btn.loading { opacity: 0.6; }
[data-preset="boutique"] .cp-coupon-error { color: #dc2626; font-size: 12px; margin-top: 6px; }
[data-preset="boutique"] .cp-coupon-applied { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding: 8px 12px; background: rgba(22,163,74,0.06); border-radius: var(--radius, 0px); }
[data-preset="boutique"] .cp-coupon-applied-text { font-size: 12px; color: var(--shop-text, #333); }
[data-preset="boutique"] .cp-coupon-applied-remove { background: none; border: none; color: #dc2626; cursor: pointer; font-size: 11px; }
[data-preset="boutique"] .cp-summary { position: sticky; top: 100px; padding: 24px; background: color-mix(in srgb, var(--shop-text, #000) 3%, var(--shop-bg, #fff)); border-radius: var(--radius, 0px); border: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); }
[data-preset="boutique"] .cp-summary-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 20px; color: var(--shop-text, #333); }
[data-preset="boutique"] .cp-summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; color: var(--shop-text, #333); }
[data-preset="boutique"] .cp-summary-val { font-weight: 600; }
[data-preset="boutique"] .cp-summary-row.discount { color: #16a34a; }
[data-preset="boutique"] .cp-summary-row.shipping { font-size: 13px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); opacity: 0.6; }
[data-preset="boutique"] .cp-free-progress,
[data-preset="boutique"] .cp-free-achieved { font-size: 11px; color: #16a34a; margin-bottom: 10px; padding: 6px 8px; background: rgba(22,163,74,0.06); border-radius: 4px; text-align: center; }
[data-preset="boutique"] .cp-free-achieved { font-weight: 600; }
[data-preset="boutique"] .cp-summary-row.tax { font-size: 12px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); opacity: 0.5; margin-bottom: 6px; }
[data-preset="boutique"] .cp-summary-total { display: flex; justify-content: space-between; padding-top: 16px; border-top: 2px solid var(--shop-text, #333); margin-top: 12px; font-size: 17px; font-weight: 700; color: var(--shop-text, #333); }
[data-preset="boutique"] .cp-summary-net { font-size: 11px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); text-align: right; margin-top: 2px; opacity: 0.5; }
[data-preset="boutique"] .cp-checkout-btn { display: block; text-align: center; margin-top: 20px; padding: 15px; background: var(--shop-primary, #000); color: var(--shop-bg, #fff); text-decoration: none; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; border-radius: var(--radius, 0px); }
[data-preset="boutique"] .cp-continue-link { display: block; text-align: center; margin-top: 10px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); font-size: 13px; text-decoration: underline; opacity: 0.6; }
[data-preset="boutique"] .cp-trust { margin-top: 20px; padding-top: 16px; border-top: 1px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); display: flex; flex-direction: column; gap: 8px; }
[data-preset="boutique"] .cp-trust-item { display: flex; align-items: center; gap: 8px; font-size: 11px; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); opacity: 0.5; }
@media (max-width: 768px) {
  [data-preset="boutique"] .cp-grid { grid-template-columns: 1fr; display: block; }
  [data-preset="boutique"] .cp-item { grid-template-columns: 1fr; gap: 12px; }
  [data-preset="boutique"] .cp-qty { justify-content: flex-start; }
  [data-preset="boutique"] .cp-line-total { text-align: left; }
  [data-preset="boutique"] .cp-summary { margin-top: 32px; }
}

/* === CheckoutClient === */
[data-preset="boutique"] .co-page { max-width: 960px; margin: 0 auto; padding: 40px 20px 80px; }
[data-preset="boutique"] .co-loading { height: 200px; display: flex; align-items: center; justify-content: center; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); }
[data-preset="boutique"] .co-empty { padding: 80px 20px; text-align: center; }
[data-preset="boutique"] .co-empty h1 { font-size: 24px; margin-bottom: 16px; }
[data-preset="boutique"] .co-empty-link { color: var(--shop-primary, #000); }
[data-preset="boutique"] .co-stepper { display: flex; justify-content: center; align-items: flex-start; margin-bottom: 40px; }
[data-preset="boutique"] .co-step { display: flex; flex-direction: column; align-items: flex-start; }
[data-preset="boutique"] .co-step-row { display: flex; align-items: center; }
[data-preset="boutique"] .co-step-circle { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #e5e5e5; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); font-weight: 700; font-size: 14px; flex-shrink: 0; }
[data-preset="boutique"] .co-step-circle.active,
[data-preset="boutique"] .co-step-circle.done { background: var(--shop-primary, #000); color: var(--shop-bg, #fff); }
[data-preset="boutique"] .co-step-label { width: 36px; font-size: 12px; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); font-weight: 400; text-align: center; margin-top: 6px; overflow: visible; white-space: nowrap; }
[data-preset="boutique"] .co-step-label.active { color: var(--shop-primary, #000); font-weight: 700; }
[data-preset="boutique"] .co-step-line { width: 60px; height: 2px; background: #e5e5e5; margin: 0 8px; }
[data-preset="boutique"] .co-step-line.done { background: var(--shop-primary, #000); }
[data-preset="boutique"] .co-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
[data-preset="boutique"] .co-login-box { margin-bottom: 24px; padding: 20px; background: color-mix(in srgb, var(--shop-text, #000) 3%, var(--shop-bg, #fff)); border-radius: var(--radius, 8px); border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent); }
[data-preset="boutique"] .co-login-prompt { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
[data-preset="boutique"] .co-login-prompt-text { font-size: 14px; color: color-mix(in srgb, var(--shop-text, #000) 60%, transparent); }
[data-preset="boutique"] .co-login-prompt-btn { padding: 10px 24px; background: var(--shop-primary, #000); color: var(--shop-bg, #fff); border: none; border-radius: var(--radius, 8px); font-weight: 600; font-size: 13px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; }
[data-preset="boutique"] .co-login-tabs { display: flex; gap: 0; margin-bottom: 16px; border-bottom: 2px solid color-mix(in srgb, var(--shop-text, #000) 10%, transparent); }
[data-preset="boutique"] .co-login-tab { padding: 10px 20px; background: none; border: none; border-bottom: 2px solid transparent; font-weight: 400; font-size: 14px; cursor: pointer; color: color-mix(in srgb, var(--shop-text, #000) 55%, transparent); margin-bottom: -2px; }
[data-preset="boutique"] .co-login-tab.active { border-bottom-color: var(--shop-primary, #000); font-weight: 700; color: var(--shop-primary, #000); }
[data-preset="boutique"] .co-login-tabs-spacer { flex: 1; }
[data-preset="boutique"] .co-login-close { background: none; border: none; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); cursor: pointer; font-size: 18px; padding: 0 8px; }
[data-preset="boutique"] .co-login-error { background: #fef2f2; border-left: 4px solid #dc2626; color: #dc2626; padding: 10px 14px; border-radius: var(--radius, 8px); margin-bottom: 12px; font-size: 13px; }
[data-preset="boutique"] .co-login-success { background: #f0fdf4; border-left: 4px solid #16a34a; color: #16a34a; padding: 10px 14px; border-radius: var(--radius, 8px); margin-bottom: 12px; font-size: 13px; }
[data-preset="boutique"] .co-login-form { display: grid; gap: 10px; }
[data-preset="boutique"] .co-login-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
[data-preset="boutique"] .co-login-input { width: 100%; padding: 10px 12px; font-size: 14px; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); outline: none; box-sizing: border-box; }
[data-preset="boutique"] .co-login-submit { margin-top: 12px; }
[data-preset="boutique"] .co-logged-in { margin-bottom: 24px; padding: 16px 20px; background: #f0fdf4; border-radius: var(--radius, 8px); border: 1px solid #bbf7d0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
[data-preset="boutique"] .co-logged-in-text { font-size: 14px; color: #166534; }
[data-preset="boutique"] .co-logged-in-logout { background: none; border: none; color: color-mix(in srgb, var(--shop-text, #000) 55%, transparent); font-size: 13px; cursor: pointer; text-decoration: underline; }
[data-preset="boutique"] .co-section-title { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
[data-preset="boutique"] .co-field { margin-bottom: 12px; }
[data-preset="boutique"] .co-field-label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 4px; color: color-mix(in srgb, var(--shop-text, #000) 60%, transparent); }
[data-preset="boutique"] .co-field-label.invalid { color: #dc2626; }
[data-preset="boutique"] .co-field-input { width: 100%; padding: 10px 12px; font-size: 14px; outline: none; border: 1px solid #ddd; background: #fff; box-sizing: border-box; }
[data-preset="boutique"] .co-field-input.invalid { border: 2px solid #dc2626; background: #fef2f2; }
[data-preset="boutique"] .co-field-select { width: 100%; padding: 10px 12px; font-size: 14px; outline: none; background: var(--shop-bg, #fff); border: 1px solid #ddd; box-sizing: border-box; }
[data-preset="boutique"] .co-field-select.invalid { border: 2px solid #dc2626; }
[data-preset="boutique"] .co-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
[data-preset="boutique"] .co-field-row-plz { display: grid; grid-template-columns: 140px 1fr; gap: 12px; }
[data-preset="boutique"] .co-account-box { background: color-mix(in srgb, var(--shop-text, #000) 3%, var(--shop-bg, #fff)); padding: 14px 16px; margin-bottom: 12px; border-radius: var(--radius, 8px); }
[data-preset="boutique"] .co-checkbox-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
[data-preset="boutique"] .co-password-wrap { margin-top: 10px; padding-left: 26px; }
[data-preset="boutique"] .co-ship-different { display: flex; align-items: center; gap: 8px; margin-top: 20px; cursor: pointer; font-size: 14px; }
[data-preset="boutique"] .co-ship-address { margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee; }
[data-preset="boutique"] .co-ship-address-title { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
[data-preset="boutique"] .co-btn { flex: 1; padding: 14px 24px; background: var(--shop-primary, #000); color: var(--shop-bg, #fff); border: none; font-weight: 700; font-size: 14px; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; margin-top: 24px; width: 100%; text-align: center; text-decoration: none; display: inline-block; box-sizing: border-box; }
[data-preset="boutique"] .co-btn.disabled { opacity: 0.6; cursor: not-allowed; }
[data-preset="boutique"] .co-btn.loading { opacity: 0.6; }
[data-preset="boutique"] .co-btn-secondary { background: var(--shop-bg, #fff); color: var(--shop-text, #333); border: 1px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); }
[data-preset="boutique"] .co-btn-row { display: flex; gap: 12px; margin-top: 24px; }
[data-preset="boutique"] .co-btn-row .co-btn { margin-top: 0; }
[data-preset="boutique"] .co-shipping-option { padding: 16px; border: 1px solid #ddd; border-radius: var(--radius, 8px); cursor: pointer; margin-bottom: 10px; background: #fff; }
[data-preset="boutique"] .co-shipping-option.selected { border: 2px solid var(--shop-primary, #000); background: #f8f8f8; }
[data-preset="boutique"] .co-shipping-option-inner { display: flex; justify-content: space-between; align-items: center; }
[data-preset="boutique"] .co-shipping-title { font-weight: 600; font-size: 15px; }
[data-preset="boutique"] .co-shipping-info { font-size: 13px; color: color-mix(in srgb, var(--shop-text, #000) 55%, transparent); margin-top: 2px; }
[data-preset="boutique"] .co-shipping-price { font-weight: 700; font-size: 15px; }
[data-preset="boutique"] .co-textarea { width: 100%; padding: 10px 12px; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); font-size: 14px; resize: vertical; outline: none; box-sizing: border-box; }
[data-preset="boutique"] .co-coupon-error-box { padding: 14px 16px; background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius, 8px); margin-bottom: 20px; }
[data-preset="boutique"] .co-coupon-error-text { color: #dc2626; font-size: 14px; margin-bottom: 10px; }
[data-preset="boutique"] .co-coupon-error-btn { padding: 8px 16px; background: #dc2626; color: var(--shop-bg, #fff); border: none; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; }
[data-preset="boutique"] .co-payment-warning { padding: 20px; background: #fff3cd; border-radius: var(--radius, 8px); margin-bottom: 20px; font-size: 14px; color: #856404; }

[data-preset="boutique"] .co-payment-tabs { display: flex; gap: 0; margin-bottom: 16px; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent); border-radius: var(--radius, 8px); overflow: hidden; }
[data-preset="boutique"] .co-payment-tab { flex: 1; padding: 12px 16px; border: none; background: transparent; cursor: pointer; font-size: 14px; font-weight: 600; color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent); transition: all 0.2s; }
[data-preset="boutique"] .co-payment-tab.active { background: var(--shop-primary, #000); color: var(--shop-primary-text, #fff); }
[data-preset="boutique"] .co-stripe-box { padding: 16px; border: 2px solid var(--shop-primary, #000); border-radius: var(--radius, 8px); margin-bottom: 16px; }
[data-preset="boutique"] .co-stripe-header { font-weight: 600; font-size: 15px; margin-bottom: 16px; }
[data-preset="boutique"] .co-stripe-loading { display: flex; align-items: center; justify-content: center; height: 100px; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); font-size: 14px; }
[data-preset="boutique"] .co-stripe-element { min-height: 100px; }
[data-preset="boutique"] .co-terms-box { padding: 14px 16px; margin-top: 16px; border-radius: var(--radius, 8px); border: 1px solid #ddd; background: color-mix(in srgb, var(--shop-text, #000) 3%, var(--shop-bg, #fff)); }
[data-preset="boutique"] .co-terms-box.invalid { border: 2px solid #dc2626; background: #fef2f2; }
[data-preset="boutique"] .co-terms-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; line-height: 1.5; }
[data-preset="boutique"] .co-terms-label input { margin-top: 2px; flex-shrink: 0; }
[data-preset="boutique"] .co-terms-link { color: var(--shop-primary, #000); font-weight: 600; }
[data-preset="boutique"] .co-terms-required { color: #dc2626; }
[data-preset="boutique"] .co-success { text-align: center; padding: 40px 0; }
[data-preset="boutique"] .co-success-icon { width: 64px; height: 64px; border-radius: 50%; background: #12B76A; color: var(--shop-bg, #fff); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 20px; }
[data-preset="boutique"] .co-success-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
[data-preset="boutique"] .co-success-text { color: color-mix(in srgb, var(--shop-text, #000) 55%, transparent); margin-bottom: 4px; }
[data-preset="boutique"] .co-success-order { font-size: 18px; font-weight: 600; margin-bottom: 24px; }
[data-preset="boutique"] .co-success-email { color: color-mix(in srgb, var(--shop-text, #000) 55%, transparent); font-size: 14px; margin-bottom: 8px; }
[data-preset="boutique"] .co-success-account,
[data-preset="boutique"] .co-success-newsletter { color: #16a34a; font-size: 14px; margin-bottom: 8px; }
[data-preset="boutique"] .co-success-actions { margin-top: 16px; }
[data-preset="boutique"] .co-success-btn { display: inline-block; padding: 14px 32px; text-decoration: none; }
[data-preset="boutique"] .co-error { margin-top: 16px; padding: 12px 16px; background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius, 8px); color: #dc2626; font-size: 14px; }
[data-preset="boutique"] .co-sidebar { background: color-mix(in srgb, var(--shop-text, #000) 3%, var(--shop-bg, #fff)); padding: 24px; position: sticky; top: 20px; }
[data-preset="boutique"] .co-sidebar-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
[data-preset="boutique"] .co-sidebar-item { display: flex; gap: 12px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #eee; }
[data-preset="boutique"] .co-sidebar-item-img { width: 56px; height: 68px; background: color-mix(in srgb, var(--shop-text, #000) 8%, var(--shop-bg, #fff)); flex-shrink: 0; overflow: hidden; position: relative; }
[data-preset="boutique"] .co-sidebar-item-img img { width: 100%; height: 100%; object-fit: cover; }
[data-preset="boutique"] .co-sidebar-item-qty { position: absolute; top: -4px; right: -4px; width: 20px; height: 20px; border-radius: 50%; background: color-mix(in srgb, var(--shop-text, #000) 55%, transparent); color: var(--shop-bg, #fff); font-size: 11px; display: flex; align-items: center; justify-content: center; font-weight: 700; }
[data-preset="boutique"] .co-sidebar-item-info { flex: 1; }
[data-preset="boutique"] .co-sidebar-item-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
[data-preset="boutique"] .co-sidebar-item-variation { font-size: 11px; color: #888; }
[data-preset="boutique"] .co-sidebar-item-price { font-size: 13px; font-weight: 600; }
[data-preset="boutique"] .co-sidebar-coupon { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 6px 0; color: #16a34a; }
[data-preset="boutique"] .co-sidebar-coupon-remove { background: none; border: none; color: #dc2626; cursor: pointer; font-size: 16px; padding: 0 4px; line-height: 1; }
[data-preset="boutique"] .co-sidebar-totals { margin-top: 12px; }
[data-preset="boutique"] .co-sidebar-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 6px; }
[data-preset="boutique"] .co-sidebar-row.discount { color: #16a34a; }
[data-preset="boutique"] .co-sidebar-free { font-size: 11px; color: #16a34a; margin-bottom: 6px; text-align: right; }
[data-preset="boutique"] .co-sidebar-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; padding-top: 10px; border-top: 2px solid #333; margin-top: 8px; }
[data-preset="boutique"] .co-sidebar-tax { font-size: 11px; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); margin-top: 4px; text-align: right; }
[data-preset="boutique"] .co-sidebar-customs { margin-top: 8px; padding: 8px 10px; background: #fff7ed; border-radius: var(--radius, 8px); font-size: 11px; color: #92400e; line-height: 1.5; }
@media (max-width: 768px) {
  [data-preset="boutique"] .co-grid { grid-template-columns: 1fr; }
  [data-preset="boutique"] .co-sidebar { position: static; margin-top: 32px; }
}

/* ========================================
   SERVICES SECTION (svc-*)
   ======================================== */

[data-preset="boutique"] .section-services { padding: 72px 0; width: 100%; }
[data-preset="boutique"] .svc-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; width: 100%; box-sizing: border-box; }
[data-preset="boutique"] .svc-title { font-size: 28px; font-weight: 400; color: var(--shop-primary); margin: 0 0 8px; font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; letter-spacing: 0.02em; }
[data-preset="boutique"] .svc-subtitle { font-size: 15px; color: var(--shop-text); opacity: 0.7; margin: 0 0 32px; max-width: 600px; }
[data-preset="boutique"] .svc-grid { display: grid; grid-template-columns: repeat(var(--svc-cols, 3), 1fr); gap: 24px; }
[data-preset="boutique"] .svc-card-link { text-decoration: none; color: inherit; }
[data-preset="boutique"] .svc-card { border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent); border-radius: 0; overflow: hidden; background: var(--shop-bg, #fff); transition: transform 0.2s, box-shadow 0.2s; }
[data-preset="boutique"] .svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
[data-preset="boutique"] .svc-card-image { aspect-ratio: 16/10; overflow: hidden; }
[data-preset="boutique"] .svc-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
[data-preset="boutique"] .svc-card:hover .svc-card-img { transform: scale(1.05); }
[data-preset="boutique"] .svc-card-body { padding: 20px; }
[data-preset="boutique"] .svc-card-title { font-size: 16px; font-weight: 600; margin: 0 0 8px; color: var(--shop-text); }
[data-preset="boutique"] .svc-card-desc { font-size: 13px; color: var(--shop-text); opacity: 0.7; margin: 0 0 12px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
[data-preset="boutique"] .svc-card-price { font-size: 14px; font-weight: 700; color: var(--shop-primary); }
[data-preset="boutique"] .svc-card-more { margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--shop-primary); display: flex; align-items: center; gap: 4px; }

@media (max-width: 900px) {
  [data-preset="boutique"] .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  [data-preset="boutique"] .svc-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CONTACT FORM SECTION (cf-*)
   ======================================== */

[data-preset="boutique"] .section-contact { padding: 72px 0; width: 100%; }
[data-preset="boutique"] .cf-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; width: 100%; box-sizing: border-box; }
[data-preset="boutique"] .cf-title { font-size: 28px; font-weight: 400; color: var(--shop-primary); margin: 0 0 8px; font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; letter-spacing: 0.02em; }
[data-preset="boutique"] .cf-subtitle { font-size: 15px; color: var(--shop-text); opacity: 0.7; margin: 0 0 32px; max-width: 600px; }
[data-preset="boutique"] .cf-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
[data-preset="boutique"] .cf-grid--single { grid-template-columns: 1fr; }
[data-preset="boutique"] .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
[data-preset="boutique"] .cf-field { margin-bottom: 16px; }
[data-preset="boutique"] .cf-label { font-size: 13px; font-weight: 500; color: var(--shop-text); display: block; margin-bottom: 6px; letter-spacing: 0.03em; }
[data-preset="boutique"] .cf-input { width: 100%; padding: 14px 16px; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); border-radius: 0; background: var(--shop-bg, #fff); color: var(--shop-text, #333); font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.2s; box-sizing: border-box; }
[data-preset="boutique"] .cf-input:focus { border-color: var(--shop-primary); }
[data-preset="boutique"] .cf-textarea { width: 100%; padding: 14px 16px; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); border-radius: 0; background: var(--shop-bg, #fff); color: var(--shop-text, #333); font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.2s; box-sizing: border-box; resize: vertical; line-height: 1.6; }
[data-preset="boutique"] .cf-textarea:focus { border-color: var(--shop-primary); }
[data-preset="boutique"] .cf-checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; cursor: pointer; font-size: 13px; color: var(--shop-text); opacity: 0.7; }
[data-preset="boutique"] .cf-checkbox { width: 18px; height: 18px; margin-top: 1px; flex-shrink: 0; }
[data-preset="boutique"] .cf-checkbox-link { color: var(--shop-primary); text-decoration: underline; }
[data-preset="boutique"] .cf-error { color: #ef4444; font-size: 13px; margin: 0 0 16px; }
[data-preset="boutique"] .cf-submit { width: 100%; padding: 16px; background: var(--shop-primary); color: var(--shop-text-on-primary, #fff); border: none; border-radius: 0; font-size: 13px; font-weight: 600; cursor: pointer; transition: opacity 0.2s; text-transform: uppercase; letter-spacing: 1px; }
[data-preset="boutique"] .cf-submit--loading { opacity: 0.6; }
[data-preset="boutique"] .cf-submit:hover { opacity: 0.9; }
[data-preset="boutique"] .cf-success { padding: 40px; text-align: center; background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.2); border-radius: 0; }
[data-preset="boutique"] .cf-success-icon { margin: 0 auto 16px; display: block; }
[data-preset="boutique"] .cf-success-title { font-size: 20px; font-weight: 400; margin: 0 0 8px; font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; }
[data-preset="boutique"] .cf-success-text { font-size: 15px; color: var(--shop-text); opacity: 0.7; margin: 0; }
[data-preset="boutique"] .cf-info { padding: 28px; background: color-mix(in srgb, var(--shop-text, #000) 2%, var(--shop-bg, #fff)); border-radius: 0; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 6%, transparent); }
[data-preset="boutique"] .cf-info-title { font-size: 18px; font-weight: 400; margin: 0 0 20px; color: var(--shop-primary); font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; letter-spacing: 0.02em; }
[data-preset="boutique"] .cf-info-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
[data-preset="boutique"] .cf-info-item--top { align-items: flex-start; }
[data-preset="boutique"] .cf-info-icon { color: var(--shop-primary); flex-shrink: 0; }
[data-preset="boutique"] .cf-info-link { font-size: 14px; color: var(--shop-primary); text-decoration: none; }
[data-preset="boutique"] .cf-info-link:hover { text-decoration: underline; }
[data-preset="boutique"] .cf-info-text { font-size: 14px; color: var(--shop-text); line-height: 1.5; white-space: pre-line; }
[data-preset="boutique"] .cf-map { margin-top: 24px; border-radius: 0; overflow: hidden; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 6%, transparent); }
[data-preset="boutique"] .cf-map-iframe { border: 0; display: block; }
[data-preset="boutique"] .cf-map-placeholder { height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: color-mix(in srgb, var(--shop-text, #000) 2%, var(--shop-bg, #fff)); padding: 20px; }
[data-preset="boutique"] .cf-map-icon { color: color-mix(in srgb, var(--shop-text, #000) 25%, transparent); }
[data-preset="boutique"] .cf-map-text { font-size: 12px; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); text-align: center; margin: 0; line-height: 1.5; }
[data-preset="boutique"] .cf-map-btn { padding: 8px 20px; font-size: 12px; font-weight: 600; background: var(--shop-primary); color: var(--shop-bg, #fff); border: none; border-radius: 0; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 900px) {
  [data-preset="boutique"] .cf-grid { grid-template-columns: 1fr; }
  [data-preset="boutique"] .cf-row { grid-template-columns: 1fr; }
}

/* ========================================
   GALLERY SECTION (gl-*)
   ======================================== */

[data-preset="boutique"] .section-gallery { padding: 72px 0; width: 100%; }
[data-preset="boutique"] .gl-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; width: 100%; box-sizing: border-box; }
[data-preset="boutique"] .gl-title { font-size: 28px; font-weight: 400; color: var(--shop-primary); margin: 0 0 8px; font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; letter-spacing: 0.02em; }
[data-preset="boutique"] .gl-subtitle { font-size: 15px; color: var(--shop-text); opacity: 0.65; margin: 0 0 8px; max-width: 600px; }
[data-preset="boutique"] .gl-description { font-size: 15px; color: var(--shop-text); opacity: 0.7; margin: 0 0 28px; max-width: 650px; line-height: 1.7; }
[data-preset="boutique"] .gl-filters { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
[data-preset="boutique"] .gl-filter-btn { padding: 8px 20px; border-radius: 0; font-size: 11px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; background: color-mix(in srgb, var(--shop-text, #000) 6%, transparent); color: var(--shop-text); text-transform: uppercase; letter-spacing: 1px; }
[data-preset="boutique"] .gl-filter-btn--active { background: var(--shop-primary); color: var(--shop-text-on-primary, #fff); }
[data-preset="boutique"] .gl-empty { color: var(--shop-text); opacity: 0.5; font-size: 14px; text-align: center; padding: 40px 0; }
[data-preset="boutique"] .gl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
[data-preset="boutique"] .gl-masonry { column-count: 3; column-gap: 12px; }
[data-preset="boutique"] .gl-card { border-radius: 0; overflow: hidden; cursor: pointer; position: relative; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
[data-preset="boutique"] .gl-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
[data-preset="boutique"] .gl-card--slider { flex: 0 0 300px; scroll-snap-align: start; }
[data-preset="boutique"] .gl-card--masonry { break-inside: avoid; margin-bottom: 12px; }
[data-preset="boutique"] .gl-card-media { aspect-ratio: 4/3; overflow: hidden; }
[data-preset="boutique"] .gl-card--masonry .gl-card-media { aspect-ratio: auto; }
[data-preset="boutique"] .gl-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
[data-preset="boutique"] .gl-card:hover .gl-card-img { transform: scale(1.05); }
[data-preset="boutique"] .gl-card-video { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
[data-preset="boutique"] .gl-card-video-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); border-radius: 0; padding: 4px 8px; color: #fff; font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
[data-preset="boutique"] .gl-card-cat-badge { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); border-radius: 0; padding: 4px 10px; color: #fff; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
[data-preset="boutique"] .gl-card-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,0.75) 100%); opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; pointer-events: none; }
[data-preset="boutique"] .gl-card:hover .gl-card-overlay { opacity: 1; }
[data-preset="boutique"] .gl-card-overlay-title { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
[data-preset="boutique"] .gl-card-overlay-desc { color: rgba(255,255,255,0.75); font-size: 12px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
[data-preset="boutique"] .gl-slider { position: relative; }
[data-preset="boutique"] .gl-slider-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 4px 0; }
[data-preset="boutique"] .gl-slider-track::-webkit-scrollbar { display: none; }
[data-preset="boutique"] .gl-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; border-radius: 0; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 12%, transparent); cursor: pointer; background: var(--shop-bg, #fff); color: var(--shop-text, #000); box-shadow: 0 2px 12px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; }
[data-preset="boutique"] .gl-nav-btn--prev { left: -16px; }
[data-preset="boutique"] .gl-nav-btn--next { right: -16px; }
[data-preset="boutique"] .gl-popup-overlay { position: fixed; inset: 0; z-index: 100000; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; padding: 40px; backdrop-filter: blur(6px); }
[data-preset="boutique"] .gl-popup-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 20px; cursor: pointer; width: 40px; height: 40px; border-radius: 0; display: flex; align-items: center; justify-content: center; z-index: 2; }
[data-preset="boutique"] .gl-popup-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 44px; height: 44px; border-radius: 0; border: none; cursor: pointer; background: rgba(255,255,255,0.1); color: #fff; font-size: 24px; display: flex; align-items: center; justify-content: center; }
[data-preset="boutique"] .gl-popup-nav--prev { left: 16px; }
[data-preset="boutique"] .gl-popup-nav--next { right: 16px; }
[data-preset="boutique"] .gl-popup-nav--disabled { opacity: 0.3; cursor: default; }
[data-preset="boutique"] .gl-popup-content { display: flex; gap: 0; max-width: 90vw; max-height: 85vh; align-items: center; flex-wrap: wrap; justify-content: center; }
[data-preset="boutique"] .gl-popup-content--details { gap: 32px; }
[data-preset="boutique"] .gl-popup-media { position: relative; flex: 1 1 100%; max-height: 85vh; }
[data-preset="boutique"] .gl-popup-media--with-details { flex: 1 1 60%; }
[data-preset="boutique"] .gl-popup-video { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 0; }
[data-preset="boutique"] .gl-popup-img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 0; }
[data-preset="boutique"] .gl-fullscreen-btn { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.6); border: none; color: #fff; width: 36px; height: 36px; border-radius: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; }
[data-preset="boutique"] .gl-popup-details { flex: 1 1 30%; min-width: 240px; max-width: 360px; color: #fff; }
[data-preset="boutique"] .gl-popup-category { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--shop-primary); margin-bottom: 8px; }
[data-preset="boutique"] .gl-popup-title { font-size: 22px; font-weight: 400; margin: 0 0 12px; line-height: 1.3; font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; }
[data-preset="boutique"] .gl-popup-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); margin: 0; }
[data-preset="boutique"] .gl-popup-counter { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 16px; }
[data-preset="boutique"] .gl-fullscreen-overlay { position: fixed; inset: 0; z-index: 100001; background: #000; display: flex; align-items: center; justify-content: center; cursor: zoom-out; }
[data-preset="boutique"] .gl-fullscreen-media { max-width: 100vw; max-height: 100vh; object-fit: contain; }
[data-preset="boutique"] .gl-yt-placeholder { width: 100%; aspect-ratio: 16/9; border-radius: 0; overflow: hidden; background: #111; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
[data-preset="boutique"] .gl-yt-icon { display: block; color: rgba(255,255,255,0.25); }
[data-preset="boutique"] .gl-yt-text { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin: 0; line-height: 1.5; }
[data-preset="boutique"] .gl-yt-btn { padding: 8px 20px; font-size: 12px; font-weight: 600; background: var(--shop-primary); color: #fff; border: none; border-radius: 0; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; }
[data-preset="boutique"] .gl-yt-wrap { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 0; overflow: hidden; }
[data-preset="boutique"] .gl-yt-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
[data-preset="boutique"] .gl-hp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
[data-preset="boutique"] .gl-hp-title { font-size: 28px; font-weight: 400; color: var(--shop-text); margin: 0 0 12px; line-height: 1.3; font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; letter-spacing: 0.02em; }
[data-preset="boutique"] .gl-hp-text { font-size: 15px; line-height: 1.7; color: var(--shop-text); opacity: 0.7; margin: 0 0 24px; }
[data-preset="boutique"] .gl-hp-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 0; font-size: 13px; font-weight: 600; background: var(--shop-primary); color: var(--shop-text-on-primary, #fff); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
[data-preset="boutique"] .gl-hp-img { width: 100%; border-radius: 0; aspect-ratio: 4/3; object-fit: cover; }
[data-preset="boutique"] .gl-hp-video { width: 100%; border-radius: 0; aspect-ratio: 4/3; object-fit: cover; }
[data-preset="boutique"] .gl-more-wrap { text-align: center; margin-top: 28px; }
[data-preset="boutique"] .gl-more-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 0; font-size: 13px; font-weight: 600; background: var(--shop-primary); color: var(--shop-text-on-primary, #fff); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 900px) {
  [data-preset="boutique"] .gl-grid { grid-template-columns: repeat(2, 1fr); }
  [data-preset="boutique"] .gl-masonry { column-count: 2; }
  [data-preset="boutique"] .gl-hp-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  [data-preset="boutique"] .gl-grid { grid-template-columns: 1fr; }
  [data-preset="boutique"] .gl-masonry { column-count: 1; }
}

/* ========================================
   INSTAGRAM SECTION (ig-*)
   ======================================== */

[data-preset="boutique"] .section-instagram { padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
[data-preset="boutique"] .ig-header { text-align: center; margin-bottom: 32px; }
[data-preset="boutique"] .ig-icon { width: 48px; height: 48px; border-radius: 0; background: var(--shop-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
[data-preset="boutique"] .ig-title { font-size: 28px; font-weight: 400; margin: 0 0 8px; color: var(--shop-text); font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif; letter-spacing: 0.02em; }
[data-preset="boutique"] .ig-profile-link { font-size: 15px; color: var(--shop-primary); text-decoration: none; font-weight: 600; }
[data-preset="boutique"] .ig-profile-link:hover { text-decoration: underline; }
[data-preset="boutique"] .ig-consent { text-align: center; padding: 32px 24px; margin-bottom: 32px; background: color-mix(in srgb, var(--shop-text) 4%, var(--shop-bg)); border-radius: 0; border: 1px solid color-mix(in srgb, var(--shop-text) 10%, transparent); }
[data-preset="boutique"] .ig-consent-icon { width: 40px; height: 40px; border-radius: 0; margin: 0 auto 12px; background: var(--shop-bg, #fff); border: 1px solid color-mix(in srgb, var(--shop-text) 10%, transparent); display: flex; align-items: center; justify-content: center; color: color-mix(in srgb, var(--shop-text) 45%, transparent); }
[data-preset="boutique"] .ig-consent-text { font-size: 14px; color: color-mix(in srgb, var(--shop-text) 55%, transparent); margin: 0 0 16px; line-height: 1.6; }
[data-preset="boutique"] .ig-consent-btn { padding: 10px 24px; border-radius: 0; font-size: 13px; font-weight: 600; background: var(--shop-bg, #fff); color: var(--shop-text); border: 1px solid color-mix(in srgb, var(--shop-text) 12%, transparent); cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; }
[data-preset="boutique"] .ig-slider { display: flex; overflow-x: auto; gap: 16px; padding-bottom: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; max-width: 100%; margin: 0 auto 32px; scrollbar-width: none; }
[data-preset="boutique"] .ig-slider::-webkit-scrollbar { display: none; }
[data-preset="boutique"] .ig-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(var(--ig-card-width, 350px), 1fr)); gap: 16px; max-width: 100%; margin: 0 auto 32px; }
[data-preset="boutique"] .ig-card { width: 100%; }
[data-preset="boutique"] .ig-card--slider { flex-shrink: 0; width: var(--ig-card-width, 350px); scroll-snap-align: start; }
[data-preset="boutique"] .ig-card-inner { position: relative; width: 100%; padding-bottom: 125%; border-radius: 0; overflow: hidden; background: var(--shop-bg, #fff); }
[data-preset="boutique"] .ig-iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
[data-preset="boutique"] .ig-placeholder-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
[data-preset="boutique"] .ig-follow-wrap { text-align: center; }
[data-preset="boutique"] .ig-follow-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 0; color: #fff; font-size: 13px; font-weight: 600; text-decoration: none; background: var(--shop-primary); transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15); text-transform: uppercase; letter-spacing: 1px; }
[data-preset="boutique"] .ig-follow-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }

/* ===== PRODUCT REVIEWS (Accordion + Preis-Rating) ===== */
[data-preset="boutique"] .pp-rating-inline { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
[data-preset="boutique"] .pp-rating-count { font-size: 13px; color: var(--shop-text, #555); }
[data-preset="boutique"] .pp-stars { display: inline-flex; gap: 2px; }
[data-preset="boutique"] .pp-star { font-size: 16px; color: color-mix(in srgb, var(--shop-text, #000) 15%, transparent); cursor: default; }
[data-preset="boutique"] .pp-star--filled { color: #f59e0b; }
[data-preset="boutique"] .pp-star--interactive { cursor: pointer; }
[data-preset="boutique"] .pp-reviews-list { display: flex; flex-direction: column; gap: 20px; }
[data-preset="boutique"] .pp-review-item { padding-bottom: 20px; border-bottom: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent); }
[data-preset="boutique"] .pp-review-item:last-child { border-bottom: none; padding-bottom: 0; }
[data-preset="boutique"] .pp-review-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
[data-preset="boutique"] .pp-review-author { font-size: 14px; font-weight: 600; color: var(--shop-text, #1a1a1a); }
[data-preset="boutique"] .pp-review-date { font-size: 12px; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); }
[data-preset="boutique"] .pp-review-text { font-size: 14px; line-height: 1.7; color: var(--shop-text, #555); margin-top: 8px; }
[data-preset="boutique"] .pp-review-form { display: flex; flex-direction: column; gap: 14px; }
[data-preset="boutique"] .pp-review-form-row { display: flex; flex-direction: column; gap: 6px; }
[data-preset="boutique"] .pp-review-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--shop-text, #333); }
[data-preset="boutique"] .pp-review-input { width: 100%; padding: 12px 16px; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent); border-radius: 0; font-size: 14px; background: var(--shop-bg, #fff); color: var(--shop-text, #333); }
[data-preset="boutique"] .pp-review-input:focus { border-color: var(--shop-text, #000); outline: none; box-shadow: none; }
[data-preset="boutique"] .pp-review-textarea { width: 100%; padding: 12px 16px; border: 1px solid color-mix(in srgb, var(--shop-text, #000) 15%, transparent); border-radius: 0; font-size: 14px; background: var(--shop-bg, #fff); color: var(--shop-text, #333); resize: vertical; }
[data-preset="boutique"] .pp-review-textarea:focus { border-color: var(--shop-text, #000); outline: none; box-shadow: none; }
[data-preset="boutique"] .pp-review-submit-btn { padding: 14px 24px; background: #1a1a1a; color: var(--shop-bg, #fff); border: none; border-radius: 0; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; }
[data-preset="boutique"] .pp-review-submit-btn:hover { background: color-mix(in srgb, var(--shop-primary, #000) 80%, transparent); }
[data-preset="boutique"] .pp-review-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
[data-preset="boutique"] .pp-reviews-summary { display: flex; align-items: center; gap: 8px; }
[data-preset="boutique"] .pp-reviews-avg { font-size: 14px; color: var(--shop-text, #555); }
[data-preset="boutique"] .pp-reviews-empty { font-size: 14px; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); }

/* ===== TESTIMONIALS (Homepage) ===== */
[data-preset="boutique"] .testimonials-section { padding: 80px 0; background: color-mix(in srgb, var(--shop-primary) 3%, var(--shop-bg, #fff) 97%); }
[data-preset="boutique"] .testimonials-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
[data-preset="boutique"] .testimonials-section .section-title { font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif; font-size: clamp(24px, 3vw, 32px); font-weight: 400; letter-spacing: 0.02em; text-transform: uppercase; color: var(--shop-text, #1a1a1a); }
[data-preset="boutique"] .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 40px; }
[data-preset="boutique"] .testimonial-card { background: var(--shop-bg, #fff); border: 1px solid color-mix(in srgb, var(--shop-text, #000) 8%, transparent); border-radius: 0; padding: 32px; }
[data-preset="boutique"] .testimonial-stars { display: flex; gap: 2px; color: #f59e0b; margin-bottom: 16px; }
[data-preset="boutique"] .testimonial-text { font-size: 14px; line-height: 1.8; color: var(--shop-text, #555); margin-bottom: 20px; font-style: italic; }
[data-preset="boutique"] .testimonial-author { display: flex; align-items: center; gap: 12px; }
[data-preset="boutique"] .testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: color-mix(in srgb, var(--shop-primary) 10%, var(--shop-bg, #fff) 90%); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--shop-primary, #333); }
[data-preset="boutique"] .testimonial-avatar--img { object-fit: cover; }
[data-preset="boutique"] .testimonial-name { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--shop-text, #1a1a1a); }
[data-preset="boutique"] .testimonial-role { font-size: 12px; color: color-mix(in srgb, var(--shop-text, #000) 40%, transparent); }

/* ============================================
   INTERAKTIONS-STYLES (aus shopInteractions.css migriert)
   ============================================ */

/* Primary Buttons (filled) */
[data-preset="boutique"] a[style*="background: var(--shop-primary)"],
[data-preset="boutique"] a[style*="background:var(--shop-primary)"],
[data-preset="boutique"] button[style*="background: var(--shop-primary)"],
[data-preset="boutique"] button[style*="background:var(--shop-primary)"] {
  transition: all 0.25s ease;
}
[data-preset="boutique"] a[style*="background: var(--shop-primary)"]:hover,
[data-preset="boutique"] a[style*="background:var(--shop-primary)"]:hover,
[data-preset="boutique"] button[style*="background: var(--shop-primary)"]:hover,
[data-preset="boutique"] button[style*="background:var(--shop-primary)"]:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Accent/Secondary Buttons */
[data-preset="boutique"] a[style*="background: var(--shop-accent"],
[data-preset="boutique"] a[style*="background:var(--shop-accent"],
[data-preset="boutique"] a[style*="background: var(--shop-secondary"],
[data-preset="boutique"] a[style*="background:var(--shop-secondary"] {
  transition: all 0.25s ease;
}
[data-preset="boutique"] a[style*="background: var(--shop-accent"]:hover,
[data-preset="boutique"] a[style*="background:var(--shop-accent"]:hover,
[data-preset="boutique"] a[style*="background: var(--shop-secondary"]:hover,
[data-preset="boutique"] a[style*="background:var(--shop-secondary"]:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Links (im Body) */
[data-preset="boutique"] main a:not([class]) {
  transition: color 0.2s ease, opacity 0.2s ease;
}
[data-preset="boutique"] main a:not([class]):hover {
  opacity: 0.75;
}

/* Icon Buttons (Header, etc.) */
[data-preset="boutique"] header a[style*="display: flex"],
[data-preset="boutique"] header a[style*="display:flex"],
[data-preset="boutique"] header button {
  transition: all 0.2s ease;
}
[data-preset="boutique"] header a[style*="display: flex"]:hover,
[data-preset="boutique"] header a[style*="display:flex"]:hover,
[data-preset="boutique"] header button:hover {
  opacity: 0.7;
  transform: scale(1.08);
}

/* Cards (Product, Category) */
[data-preset="boutique"] .product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
[data-preset="boutique"] .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
[data-preset="boutique"] .product-info {
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
[data-preset="boutique"] .product-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--shop-text, #1d1d1f);
}
[data-preset="boutique"] .product-pricing {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
[data-preset="boutique"] .product-prices {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
[data-preset="boutique"] .product-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--shop-primary);
  letter-spacing: 0.02em;
}
[data-preset="boutique"] .product-price--sale {
  font-weight: 700;
  color: #e53e3e;
}
[data-preset="boutique"] .product-price--original {
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--shop-text, #000) 45%, transparent);
  text-decoration: line-through;
}
[data-preset="boutique"] .product-tax {
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--shop-text, #000) 45%, transparent);
  line-height: 1.5;
}
[data-preset="boutique"] .product-delivery {
  font-size: 11px;
  color: color-mix(in srgb, var(--shop-text, #000) 50%, transparent);
}
[data-preset="boutique"] .category-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
[data-preset="boutique"] .category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Accordion Items */
[data-preset="boutique"] .accordion-item button {
  transition: color 0.2s ease;
}

/* Slider Arrows */
[data-preset="boutique"] .slider-arrow {
  transition: all 0.25s ease;
}
[data-preset="boutique"] .slider-arrow:hover {
  border-color: var(--shop-primary);
  color: var(--shop-primary);
  transform: scale(1.1);
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* Newsletter Button */
[data-preset="boutique"] .nl-btn {
  transition: all 0.25s ease;
}
[data-preset="boutique"] .nl-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0.9;
}

/* Alle klickbaren Elemente */
[data-preset="boutique"] a,
[data-preset="boutique"] button {
  transition: opacity 0.2s ease;
}
[data-preset="boutique"] a:active,
[data-preset="boutique"] button:active {
  transform: scale(0.98);
}

/* CTA Buttons (Hero, About, etc.) */
[data-preset="boutique"] .hero-cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  opacity: 0.92;
}
[data-preset="boutique"] .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  opacity: 0.88;
}

/* Weiterlesen/Text Buttons */
[data-preset="boutique"] button[style*="background: none"]:hover,
[data-preset="boutique"] button[style*="background:none"]:hover {
  opacity: 0.7;
}


/* components/presets/shop/boutique/css/home.css */
/* components/presets/shop/boutique/css/home.css */
/* ================================================
   BOUTIQUE — Homepage (Hanro-Style)
   KEIN italic. Serif regular. Scharfe Kanten.
   ================================================ */

[data-preset="boutique"] .bq-home {
  background: #fff;
  color: #1a1a1a;
}

/* ================================================
   1. HERO
   ================================================ */
[data-preset="boutique"] .bq-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
[data-preset="boutique"] .bq-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
[data-preset="boutique"] .bq-hero .hero-bg--fallback { background: #e8e8e8; }
[data-preset="boutique"] .bq-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
[data-preset="boutique"] .bq-hero .hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease;
}
[data-preset="boutique"] .bq-hero .hero-slide--active { opacity: 1; }
[data-preset="boutique"] .bq-hero .hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 8px;
}
[data-preset="boutique"] .bq-hero .hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0;
}
[data-preset="boutique"] .bq-hero .hero-dot--active { width: 24px; border-radius: 4px; background: #fff; }
[data-preset="boutique"] .bq-hero .hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border: none;
  background: rgba(0,0,0,0.15); color: #fff; font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 4; backdrop-filter: blur(4px);
}
[data-preset="boutique"] .bq-hero .hero-arrow:hover { background: rgba(0,0,0,0.4); }
[data-preset="boutique"] .bq-hero .hero-arrow--prev { left: 16px; }
[data-preset="boutique"] .bq-hero .hero-arrow--next { right: 16px; }
[data-preset="boutique"] .bq-hero .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* Hero Content */
[data-preset="boutique"] .bq-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
}
[data-preset="boutique"] .bq-hero .hero-subtitle {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 20px;
  text-wrap: balance;
}
[data-preset="boutique"] .bq-hero .hero-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
[data-preset="boutique"] .bq-hero .hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}
[data-preset="boutique"] .bq-hero .hero-cta-btn {
  display: inline-block;
  padding: 14px 44px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--shop-primary);
  color: var(--shop-text-on-primary, #fff);
  border: 2px solid var(--shop-primary);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}
[data-preset="boutique"] .bq-hero .hero-cta-btn:hover {
  filter: brightness(1.15);
}
[data-preset="boutique"] .bq-hero .hero-cta-btn:nth-child(2) {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
[data-preset="boutique"] .bq-hero .hero-cta-btn:nth-child(2):hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  filter: none;
}


/* ================================================
   2. KATEGORIEN - Horizontal mit Info rechts
   ================================================ */
[data-preset="boutique"] .bq-cats {
  padding: 56px 0;
  background: var(--shop-primary);
}
[data-preset="boutique"] .bq-cats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 20px;
  align-items: center;
}
[data-preset="boutique"] .bq-cats-title {
  display: none;
}
[data-preset="boutique"] .bq-cats-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
[data-preset="boutique"] .bq-cats-scroll::-webkit-scrollbar { display: none; }
[data-preset="boutique"] .bq-cat-link {
  flex: 0 0 200px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-decoration: none;
  color: inherit;
}
[data-preset="boutique"] .bq-cat-card { overflow: hidden; }
[data-preset="boutique"] .bq-cat-img-wrap { position: relative; overflow: hidden; }
[data-preset="boutique"] .bq-cat-img {
  width: 100%; display: block;
  aspect-ratio: 3/4; object-fit: cover;
  transition: transform 0.6s ease;
}
[data-preset="boutique"] .bq-cat-card:hover .bq-cat-img { transform: scale(1.04); }
[data-preset="boutique"] .bq-cat-fallback { aspect-ratio: 3/4; background: rgba(255,255,255,0.1); }
[data-preset="boutique"] .bq-cat-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; background: rgba(0,0,0,0.25);
  transition: background 0.3s; padding: 16px;
}
[data-preset="boutique"] .bq-cat-card:hover .bq-cat-overlay { background: rgba(0,0,0,0.35); }
[data-preset="boutique"] .bq-cat-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #fff; line-height: 1.4;
}

/* Info-Block rechts */
[data-preset="boutique"] .bq-cats-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 280px;
  flex-shrink: 0;
}
[data-preset="boutique"] .bq-cats-info-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--shop-text-on-primary, #fff);
  margin: 0;
  line-height: 1.2;
}
[data-preset="boutique"] .bq-cats-info-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
[data-preset="boutique"] .bq-cats-info-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  transition: all 0.3s;
  align-self: flex-start;
}
[data-preset="boutique"] .bq-cats-info-btn:hover {
  background: #fff;
  color: var(--shop-primary);
  border-color: #fff;
}

/* ================================================
   3. KATEGORIE-BLOECKE
   Split: Kategorie-Bild + Produkt-Slider
   Abwechselnd links/rechts
   ================================================ */
[data-preset="boutique"] .bq-catblock {
  padding: 60px 0;
  background: color-mix(in srgb, var(--shop-primary) 6%, #fff);
}
[data-preset="boutique"] .bq-catblock:nth-child(even) {
  background: color-mix(in srgb, var(--shop-primary) 10%, #fff);
}
[data-preset="boutique"] .bq-catblock-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Header: Komplett versteckt - Pfeile kommen in den Slider-Wrap */
[data-preset="boutique"] .bq-catblock-header {
  display: none;
}

/* Pfeile oben rechts im Slider-Bereich */
[data-preset="boutique"] .bq-catblock-slider-nav {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  margin-bottom: 12px;
}
[data-preset="boutique"] .bq-catblock-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0;
}
[data-preset="boutique"] .bq-catblock-sub {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin: 4px 0 0;
}
[data-preset="boutique"] .bq-catblock-nav {
  display: flex;
  gap: 6px;
}
[data-preset="boutique"] .bq-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
[data-preset="boutique"] .bq-arrow:hover {
  border-color: #000;
  background: #000;
}
[data-preset="boutique"] .bq-arrow:hover svg { stroke: #fff; }

/* Split Layout */
[data-preset="boutique"] .bq-catblock-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 16px;
  align-items: center;
}
[data-preset="boutique"] .bq-catblock-split--reverse {
  grid-template-columns: 1fr 420px;
}
[data-preset="boutique"] .bq-catblock-split--reverse .bq-catblock-img {
  order: 2;
}
[data-preset="boutique"] .bq-catblock-split--reverse .bq-catblock-slider-wrap {
  order: 1;
}

/* Kategorie-Bild */
[data-preset="boutique"] .bq-catblock-img {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}
[data-preset="boutique"] .bq-catblock-img img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
[data-preset="boutique"] .bq-catblock-img-fallback {
  width: 100%;
  min-height: 480px;
  background: color-mix(in srgb, var(--shop-primary) 15%, #eee);
}
[data-preset="boutique"] .bq-catblock-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
[data-preset="boutique"] .bq-catblock-img-label {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
[data-preset="boutique"] .bq-catblock-img-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
[data-preset="boutique"] .bq-catblock-img-btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
[data-preset="boutique"] .bq-catblock-img-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Slider */
[data-preset="boutique"] .bq-catblock-slider-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
}
[data-preset="boutique"] .bq-catblock-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
}
[data-preset="boutique"] .bq-catblock-slider::-webkit-scrollbar { display: none; }

/* Fade-Overlay weg, Dot-Indikatoren */
[data-preset="boutique"] .bq-slider-fade {
  display: none;
}

/* Dot-Indikatoren - viereckig, unten links */
[data-preset="boutique"] .bq-slider-dots {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  align-self: flex-start;
}
[data-preset="boutique"] .bq-slider-dot {
  width: 20px;
  height: 3px;
  background: color-mix(in srgb, var(--shop-text, #000) 15%, transparent);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
[data-preset="boutique"] .bq-slider-dot--active {
  background: var(--shop-primary);
  width: 32px;
}

[data-preset="boutique"] .bq-catblock-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  align-self: flex-end;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--shop-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}
[data-preset="boutique"] .bq-catblock-viewall:hover { opacity: 0.6; }
[data-preset="boutique"] .bq-catblock-viewall span {
  transition: transform 0.2s;
}
[data-preset="boutique"] .bq-catblock-viewall:hover span {
  transform: translateX(3px);
}


/* ================================================
   PRODUCT CARD
   ================================================ */
[data-preset="boutique"] .bq-prod-slide {
  flex: 0 0 220px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-decoration: none;
  color: inherit;
}
[data-preset="boutique"] .bq-prod-card { overflow: hidden; }
[data-preset="boutique"] .bq-prod-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: color-mix(in srgb, var(--shop-primary) 5%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-preset="boutique"] .bq-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
[data-preset="boutique"] .bq-prod-card:hover .bq-prod-img { transform: scale(1.04); }
[data-preset="boutique"] .bq-prod-empty { color: #ccc; font-size: 13px; }
[data-preset="boutique"] .bq-prod-badge {
  position: absolute; top: 10px; left: 10px;
  background: #c0392b; color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; letter-spacing: 0.5px;
}
[data-preset="boutique"] .bq-prod-info {
  padding: 10px 0;
  text-align: left;
}
[data-preset="boutique"] .bq-prod-name {
  font-size: 13px; font-weight: 400;
  margin: 0; color: #1a1a1a;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
[data-preset="boutique"] .bq-prod-price {
  margin-top: 3px;
  font-size: 14px; font-weight: 500; color: #1a1a1a;
}
[data-preset="boutique"] .bq-price-sale { color: #c0392b; }
[data-preset="boutique"] .bq-price-old {
  font-size: 12px; color: #999;
  text-decoration: line-through; margin-left: 6px;
}
[data-preset="boutique"] .bq-prod-swatches {
  display: flex; gap: 4px; margin-top: 6px;
}
[data-preset="boutique"] .bq-swatch {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}

/* Wishlist Hearts schwarz */
[data-preset="boutique"] .bq-prod-img-wrap button svg { stroke: #1a1a1a; }
[data-preset="boutique"] .bq-prod-img-wrap button svg[fill="#e53e3e"] { fill: #1a1a1a; stroke: #1a1a1a; }
[data-preset="boutique"] .bq-prod-img-wrap button svg[fill="none"] { fill: none; stroke: rgba(0,0,0,0.3); }


/* ================================================
   4. STORY
   ================================================ */
[data-preset="boutique"] .bq-story {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
[data-preset="boutique"] .bq-story-text h2 {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #1a1a1a;
}
[data-preset="boutique"] .bq-story-text p {
  font-size: 15px; line-height: 1.8; color: #666; margin: 0;
}
[data-preset="boutique"] .bq-story-img { overflow: hidden; }
[data-preset="boutique"] .bq-story-img img {
  width: 100%; min-height: 400px; object-fit: cover; display: block;
}


/* ================================================
   4. ABOUT SECTION
   ================================================ */
[data-preset="boutique"] .bq-about {
  padding: 80px 0;
  background: color-mix(in srgb, var(--shop-primary) 4%, #fff);
}
[data-preset="boutique"] .bq-about .section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
[data-preset="boutique"] .bq-about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
[data-preset="boutique"] .bq-about .section-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 20px;
}
[data-preset="boutique"] .bq-about p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}
[data-preset="boutique"] .bq-about .cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: #1a1a1a;
  color: #fff;
  border: none;
  transition: background 0.3s;
}
[data-preset="boutique"] .bq-about .cta-btn:hover {
  background: #333;
}
[data-preset="boutique"] .bq-about .about-image-col img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ================================================
   5. FAQ / ACCORDION
   ================================================ */
[data-preset="boutique"] .bq-faq {
  padding: 80px 0;
  background: color-mix(in srgb, var(--shop-primary) 8%, #fff);
}
[data-preset="boutique"] .bq-faq .section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}
[data-preset="boutique"] .bq-faq .section-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 40px;
}
[data-preset="boutique"] .bq-faq .accordion-header {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  cursor: pointer;
  background: transparent;
}
[data-preset="boutique"] .bq-faq .accordion-header-text {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}
[data-preset="boutique"] .bq-faq .accordion-body-inner {
  padding: 16px 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  /* HERO - zentriert */
  [data-preset="boutique"] .bq-hero { min-height: 75vh; }
  [data-preset="boutique"] .bq-hero .hero-content { padding: 60px 24px; text-align: center; }
  [data-preset="boutique"] .bq-hero .hero-title { font-size: clamp(32px, 10vw, 52px); }
  [data-preset="boutique"] .bq-hero .hero-subtitle { font-size: 11px; }
  [data-preset="boutique"] .bq-hero .hero-actions { flex-direction: column; gap: 10px; align-items: center; }
  [data-preset="boutique"] .bq-hero .hero-cta-btn { width: 100%; max-width: 320px; text-align: center; box-sizing: border-box; }

  /* KATEGORIEN - zentriert */
  [data-preset="boutique"] .bq-cats { padding: 40px 0; }
  [data-preset="boutique"] .bq-cats-inner {
    padding: 0 20px;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  [data-preset="boutique"] .bq-cats-scroll { justify-content: center; }
  [data-preset="boutique"] .bq-cats-info { max-width: 100%; text-align: center; align-items: center; }
  [data-preset="boutique"] .bq-cats-info-btn { align-self: center; }
  [data-preset="boutique"] .bq-cat-link { flex: 0 0 140px; }

  /* CATBLOCKS - zentriert */
  [data-preset="boutique"] .bq-catblock { padding: 40px 0; }
  [data-preset="boutique"] .bq-catblock-inner { padding: 0 20px; }
  [data-preset="boutique"] .bq-catblock-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  [data-preset="boutique"] .bq-catblock-split--reverse {
    grid-template-columns: 1fr;
  }
  [data-preset="boutique"] .bq-catblock-split--reverse .bq-catblock-img { order: 0; }
  [data-preset="boutique"] .bq-catblock-split--reverse .bq-catblock-slider-wrap { order: 0; }
  [data-preset="boutique"] .bq-catblock-img, [data-preset="boutique"] .bq-catblock-img img { min-height: 240px; }

  /* Slider zentriert */
  [data-preset="boutique"] .bq-catblock-slider-nav { justify-content: center; }
  [data-preset="boutique"] .bq-catblock-slider { justify-content: center; }
  [data-preset="boutique"] .bq-prod-slide { flex: 0 0 170px; }
  [data-preset="boutique"] .bq-slider-dots { justify-content: center; align-self: center; }
  [data-preset="boutique"] .bq-catblock-viewall { align-self: center; }

  /* Kategorie-Bild Overlay zentriert */
  [data-preset="boutique"] .bq-catblock-img-overlay { text-align: center; align-items: center; display: flex; flex-direction: column; }
  [data-preset="boutique"] .bq-catblock-img-btn { align-self: center; }

  /* STORY - zentriert */
  [data-preset="boutique"] .bq-story {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 32px;
    text-align: center;
  }
  [data-preset="boutique"] .bq-story-img img { min-height: 280px; }

  /* ABOUT - zentriert */
  [data-preset="boutique"] .bq-about .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  [data-preset="boutique"] .bq-about .section-inner,
  [data-preset="boutique"] .bq-faq .section-inner {
    padding: 0 20px;
  }
  [data-preset="boutique"] .bq-about .section-title,
  [data-preset="boutique"] .bq-faq .section-title {
    text-align: center;
  }
  [data-preset="boutique"] .bq-about .cta-btn {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 240px;
  }
  [data-preset="boutique"] .bq-about, [data-preset="boutique"] .bq-faq { padding: 48px 0; }

  /* Produkt-Info zentriert */
  [data-preset="boutique"] .bq-prod-info { text-align: center; }
  [data-preset="boutique"] .bq-prod-swatches { justify-content: center; }
}

@media (max-width: 480px) {
  [data-preset="boutique"] .bq-hero { min-height: 65vh; }
  [data-preset="boutique"] .bq-hero .hero-title { font-size: 36px; }
  [data-preset="boutique"] .bq-cat-link { flex: 0 0 130px; }
  [data-preset="boutique"] .bq-prod-slide { flex: 0 0 150px; }
  [data-preset="boutique"] .bq-catblock-slider { justify-content: flex-start; }
  [data-preset="boutique"] .bq-hero .hero-cta-btn { max-width: 100%; }
}

@keyframes bq-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}