:root {
  --cream: #f9f4ed;
  --ivory: #fffaf4;
  --sand: #e8d9c9;
  --nude: #c9a98f;
  --champagne: #bd965a;
  --champagne-light: #e7d2a8;
  --coffee: #382b24;
  --muted: #75665d;
  --line: rgba(155, 123, 77, 0.27);
  --shadow: 0 24px 70px rgba(48, 35, 28, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  background: var(--cream);
  color: var(--coffee);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.icon-fill { fill: currentColor; stroke: none; }

/* Ortak header */
.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.home-page .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(180deg, rgba(36,25,19,.46), transparent);
  color: var(--ivory);
  backdrop-filter: none;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, 100%);
  min-height: 82px;
  margin: auto;
  padding: 10px clamp(22px, 4.5vw, 68px);
}
.site-brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.site-brand img {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(189,150,90,.45);
  border-radius: 50%;
  object-fit: cover;
}
.site-brand > span {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: .9;
  text-transform: uppercase;
}
.site-brand small {
  display: block;
  margin-top: 8px;
  color: var(--champagne);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 5px;
}
.home-page .site-brand small { color: var(--champagne-light); }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); }
.main-nav > a,
.dropdown-heading > a {
  position: relative;
  padding: 11px 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.main-nav > a::after,
.dropdown-heading > a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--champagne);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.main-nav > a:hover::after,
.dropdown-heading > a:hover::after,
.main-nav > a.is-active::after,
.nav-dropdown.is-active .dropdown-heading > a::after { transform: scaleX(1); }
.nav-instagram { display: inline-flex; align-items: center; gap: 7px; }
.nav-instagram svg { width: 15px; height: 15px; }
.nav-dropdown { position: relative; }
.dropdown-heading { display: flex; align-items: center; gap: 5px; }
.dropdown-toggle {
  display: grid;
  width: 24px;
  height: 30px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.dropdown-toggle svg { width: 9px; transition: transform 180ms ease; }
.nav-dropdown:hover .dropdown-toggle svg,
.nav-dropdown.is-open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  width: 225px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255,250,244,.98);
  box-shadow: var(--shadow);
  color: var(--coffee);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.dropdown-menu::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 20px;
  content: "";
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(155,123,77,.12);
  font-family: var(--serif);
  font-size: 16px;
  transition: padding-left 180ms ease, color 180ms ease;
}
.dropdown-menu a:last-child { border: 0; }
.dropdown-menu a:hover { padding-left: 18px; color: #9b743e; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.mobile-menu-overlay { display: none; }

/* Ana sayfa */
.home-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: 112px clamp(20px,4vw,64px) 45px;
  isolation: isolate;
  overflow: hidden;
}
.home-background { position: absolute; z-index: -2; inset: 0; overflow: hidden; background: #d9c9ba; }
.home-bg {
  position: absolute;
  inset: -30px;
  background-position: center;
  background-size: cover;
  filter: blur(13px) saturate(.72);
  transform: scale(1.08);
}
.home-bg-store {
  background-image: url("images/karaca-gulsen-magaza-konsept.jpg");
  clip-path: polygon(0 0,67% 0,54% 100%,0 100%);
}
.home-bg-fashion {
  background-image: url("images/karaca-gulsen-magaza-konsept.jpg");
  background-position: 78% center;
  clip-path: polygon(58% 0,100% 0,100% 100%,46% 100%);
  opacity: .78;
}
.home-background::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,rgba(45,33,26,.48),rgba(249,240,229,.24) 48%,rgba(45,33,26,.48)),
    linear-gradient(180deg,rgba(250,243,234,.1),rgba(74,52,39,.18));
  content: "";
}
.coming-soon {
  display: grid;
  grid-template-columns: minmax(180px,.78fr) minmax(480px,1.16fr) minmax(180px,.78fr);
  align-items: center;
  width: min(1320px,100%);
  margin: auto;
}
.content-panel {
  position: relative;
  z-index: 3;
  padding: 10px;
  background: rgba(255,250,244,.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.content-panel::before,.content-panel::after {
  position: absolute; width: 44px; height: 44px; border-color: var(--champagne); content: ""; pointer-events: none;
}
.content-panel::before { top: 20px; left: 20px; border-top: 1px solid; border-left: 1px solid; }
.content-panel::after { right: 20px; bottom: 20px; border-right: 1px solid; border-bottom: 1px solid; }
.content-panel-inner {
  display: flex;
  min-height: 620px;
  padding: 35px clamp(35px,5vw,75px);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 32%,rgba(235,207,163,.28),transparent 34%),rgba(255,250,244,.96);
  text-align: center;
}
.main-logo { width: 145px; height: 145px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 26px rgba(77,55,38,.14); }
.ornament { display: flex; align-items: center; gap: 11px; width: min(220px,60%); margin: 7px auto 16px; color: var(--champagne); }
.ornament span { width: 64px; height: 1px; background: linear-gradient(90deg,transparent,currentColor); }
.ornament span:last-child { background: linear-gradient(90deg,currentColor,transparent); }
.ornament i { font-family: var(--serif); font-size: 10px; font-style: normal; }
.eyebrow { color: #9b743e; font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; }
.content-panel h1 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(48px,5vw,75px);
  font-weight: 500;
  line-height: .88;
  text-transform: uppercase;
}
.content-panel h1 em { display: block; color: #9b7844; font-size: .59em; font-style: normal; letter-spacing: 4px; line-height: 1.65; }
.intro { max-width: 500px; margin: 16px auto 22px; color: var(--muted); font-family: var(--serif); font-size: 19px; line-height: 1.45; }
.action-group { display: flex; justify-content: center; gap: 9px; width: 100%; }
.button,.action-button {
  display: inline-flex; min-height: 44px; padding: 12px 20px; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--line); font-size: 9px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase;
  transition: transform 180ms ease,background 180ms ease,color 180ms ease,border-color 180ms ease;
}
.action-button { min-width: 126px; background: rgba(255,255,255,.46); color: #68584e; }
.button:hover,.action-button:hover { transform: translateY(-2px); border-color: var(--champagne); color: #8f6b36; }
.button-gold,.action-button-primary { border-color: #a98550; background: linear-gradient(135deg,#b18c54,#cbaa73); color: white; }
.button-gold:hover,.action-button-primary:hover { background: #98733f; color: white; }
.button-outline { border-color: var(--champagne); background: transparent; }
.button svg,.action-button svg,.text-link svg { width: 16px; height: 16px; }
.phone-number { margin-top: 14px; color: #9a887a; font-size: 9px; letter-spacing: 2.3px; }
.visual-card { position: relative; z-index: 1; height: 515px; overflow: hidden; border: 1px solid rgba(255,250,244,.55); box-shadow: var(--shadow); }
.visual-card-left { transform: translateX(22px); }
.visual-card-right { transform: translateX(-22px); }
.visual-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) sepia(.08); }
.visual-card-right img { filter: saturate(.7) sepia(.08) contrast(.94); }
.visual-collage {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: rgba(231,210,168,.75);
}
.collage-piece { min-width: 0; min-height: 0; overflow: hidden; }
.collage-piece img { transition: transform 600ms ease; }
.collage-piece:hover img { transform: scale(1.04); }
.collage-top { grid-row: 1 / -1; }
.collage-top img { object-position: 50% 8%; }
.collage-window img { object-position: 50% 50%; }
.collage-clothes img { object-position: 18% 84%; }

/* Ana sayfa kategori baloncukları */
.home-categories,.collection-section,.content-section { padding: clamp(75px,9vw,120px) clamp(20px,6vw,90px); }
.home-categories { position: relative; display: block; height: auto; background: var(--cream); overflow: visible; }
.home-categories::before { position: absolute; top: -150px; left: -100px; width: 360px; height: 360px; border: 1px solid var(--line); border-radius: 50%; content: ""; }
.section-heading { position: relative; z-index: 1; max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-heading h1,.section-heading h2 {
  margin: 9px 0 13px; font-family: var(--serif); font-size: clamp(38px,5vw,60px); font-weight: 500; line-height: 1;
}
.section-heading > p:last-child { color: var(--muted); font-family: var(--serif); font-size: 18px; line-height: 1.5; }
.category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7,minmax(0,1fr));
  gap: 24px;
  width: min(1400px,100%);
  margin: auto;
}
.category-bubble { display: flex; min-width: 0; align-items: center; flex-direction: column; text-align: center; }
.category-bubble-image {
  position: relative; aspect-ratio: 1; padding: 6px; overflow: hidden; border: 1px solid var(--champagne); border-radius: 50%;
  background: var(--ivory); box-shadow: 0 14px 35px rgba(67,48,36,.11); transition: transform 250ms ease,box-shadow 250ms ease;
}
.category-bubble-image::after { position: absolute; inset: 11px; border: 1px solid rgba(255,255,255,.66); border-radius: 50%; content: ""; pointer-events: none; }
.category-bubble-image img { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; transition: transform 450ms ease; }
.category-bubble:hover .category-bubble-image { transform: translateY(-7px); box-shadow: 0 20px 40px rgba(67,48,36,.18); }
.category-bubble:hover .category-bubble-image img { transform: scale(1.055); }
.category-bubble-title {
  display: block; margin-top: 14px; font-family: var(--serif); font-size: clamp(17px,1.6vw,23px);
  font-weight: 600; line-height: 1.05; text-align: center;
}

/* İç sayfalar */
.inner-main { min-height: 65vh; }
.inner-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; background: #eee1d3;
}
.inner-hero-image { min-height: 420px; overflow: hidden; }
.inner-hero-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); }
.inner-hero-content {
  display: flex; padding: clamp(45px,7vw,100px); align-items: flex-start; flex-direction: column; justify-content: center;
  background: radial-gradient(circle at 80% 20%,rgba(214,180,126,.27),transparent 36%),var(--ivory);
}
.inner-hero-content h1 { margin: 13px 0 18px; font-family: var(--serif); font-size: clamp(48px,7vw,82px); font-weight: 500; line-height: .95; }
.inner-lead { max-width: 540px; color: var(--muted); font-family: var(--serif); font-size: clamp(19px,2vw,24px); line-height: 1.45; }
.gold-rule { width: 75px; height: 1px; margin-top: 25px; background: var(--champagne); }
.fantasy-hero .inner-hero-image img { filter: saturate(.65) sepia(.08); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; width: min(1200px,100%); margin: auto; }
.product-card { border: 1px solid var(--line); background: var(--ivory); box-shadow: 0 14px 45px rgba(66,48,37,.07); }
.product-placeholder { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; background: var(--sand); }
.product-placeholder::after { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(50,35,27,.2)); content: ""; }
.product-placeholder img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.48) contrast(.88); transition: transform 450ms ease; }
.product-card:hover .product-placeholder img { transform: scale(1.035); }
.coming-badge { position: absolute; z-index: 2; top: 17px; right: 17px; padding: 7px 11px; background: rgba(255,250,244,.92); color: #98733f; font-size: 8px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; }
.placeholder-number { position: absolute; z-index: 2; bottom: 14px; left: 18px; color: white; font-family: var(--serif); font-size: 27px; }
.product-card-body { padding: 22px; }
.product-card-body > p { color: #a17b44; font-size: 8px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.product-card-body h2 { margin: 7px 0 17px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #8d6935; font-size: 9px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.center-actions { display: flex; justify-content: center; gap: 12px; margin-top: 45px; }
.subcategories { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; width: min(1000px,100%); margin: -20px auto 42px; }
.subcategories span { padding: 10px 16px; border: 1px solid var(--line); background: var(--ivory); color: #866b59; font-family: var(--serif); font-size: 16px; }

/* Ürünler / hakkımızda / iletişim */
.page-banner { padding: 85px 25px; background: linear-gradient(rgba(51,37,29,.48),rgba(51,37,29,.58)),url("images/karaca-gulsen-magaza-konsept.jpg") center 52%/cover; color: white; text-align: center; }
.page-banner h1 { margin: 10px 0; font-family: var(--serif); font-size: clamp(50px,8vw,88px); font-weight: 500; }
.page-banner p:last-child { max-width: 580px; margin: auto; font-family: var(--serif); font-size: 20px; }
.products-page .category-grid { grid-template-columns: repeat(4,minmax(0,1fr)); max-width: 1060px; row-gap: 40px; }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; width: min(1150px,100%); margin: auto; background: var(--ivory); box-shadow: var(--shadow); }
.story-image { min-height: 560px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); }
.story-copy { display: flex; padding: clamp(40px,7vw,90px); flex-direction: column; justify-content: center; }
.story-copy h2 { margin: 12px 0 20px; font-family: var(--serif); font-size: clamp(38px,5vw,59px); font-weight: 500; line-height: 1; }
.story-copy p { margin-bottom: 17px; color: var(--muted); font-family: var(--serif); font-size: 19px; line-height: 1.55; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; width: min(1000px,100%); margin: auto; }
.contact-card { padding: 45px 25px; border: 1px solid var(--line); background: var(--ivory); text-align: center; transition: transform 180ms ease,box-shadow 180ms ease; }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-card svg { width: 30px; height: 30px; margin: 0 auto 16px; color: var(--champagne); }
.contact-card h2 { font-family: var(--serif); font-size: 29px; font-weight: 500; }
.contact-card p { margin-top: 8px; color: var(--muted); font-size: 11px; }
.contact-note { max-width: 700px; margin: 42px auto 0; padding: 25px; border: 1px solid var(--line); text-align: center; font-family: var(--serif); font-size: 18px; }

/* Ürün detay altyapısı */
.detail-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(35px,6vw,85px); width: min(1200px,100%); margin: auto; }
.detail-gallery { display: grid; grid-template-columns: 90px 1fr; gap: 13px; }
.detail-thumbs { display: flex; flex-direction: column; gap: 12px; }
.detail-thumbs button { aspect-ratio: 1; padding: 0; overflow: hidden; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.detail-thumbs img,.detail-main-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-main-image { aspect-ratio: 4/5; overflow: hidden; background: var(--sand); }
.detail-main-image img { filter: saturate(.65); }
.detail-info { padding-top: 20px; }
.detail-info h1 { margin: 12px 0; font-family: var(--serif); font-size: clamp(44px,6vw,68px); font-weight: 500; line-height: 1; }
.detail-info > .coming-badge { position: static; display: inline-block; }
.detail-description { margin: 24px 0 30px; color: var(--muted); font-family: var(--serif); font-size: 19px; line-height: 1.55; }
.option-group { margin: 23px 0; }
.option-group h2 { margin-bottom: 11px; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; }
.options { display: flex; flex-wrap: wrap; gap: 9px; }
.options span { display: grid; min-width: 42px; height: 42px; padding: 0 12px; place-items: center; border: 1px solid var(--line); background: var(--ivory); font-size: 11px; }
.color-option i { width: 17px; height: 17px; border: 1px solid rgba(0,0,0,.12); border-radius: 50%; background: var(--swatch); }
.detail-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 32px; }
.detail-actions .button:first-child { grid-column: 1/-1; }

/* Footer */
.site-footer { padding: 48px 25px 30px; background: #342820; color: rgba(255,250,244,.78); text-align: center; }
.footer-inner { width: min(900px,100%); margin: auto; }
.footer-brand { display: block; width: 86px; height: 86px; margin: 0 auto 15px; overflow: hidden; border-radius: 50%; }
.footer-brand img { width: 100%; height: 100%; object-fit: cover; }
.site-footer > div > p { font-family: var(--serif); font-size: 17px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; margin: 22px 0; color: var(--champagne-light); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.copyright { opacity: .65; font-family: var(--sans) !important; font-size: 8px !important; letter-spacing: 1.5px; text-transform: uppercase; }
.floating-whatsapp {
  position: fixed; z-index: 90; right: 20px; bottom: 20px; display: grid; width: 54px; height: 54px; place-items: center;
  border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: #ad8751; box-shadow: 0 9px 25px rgba(60,43,32,.3); color: white;
}
.floating-whatsapp svg { width: 25px; height: 25px; }

body.is-ready .content-panel { animation: fade-up 700ms ease both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } }

@media (max-width: 1100px) {
  .coming-soon { grid-template-columns: 140px minmax(480px,1fr) 140px; }
}

@media (max-width: 1000px) {
  .category-grid,
  .products-page .category-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
    max-width: 850px;
    row-gap: 35px;
  }
}

@media (max-width: 900px) {
  [data-site-header],
  .site-header,
  .header,
  .navbar,
  .nav-wrap {
    overflow: visible;
  }

  .site-header,
  .home-page .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .desktop-nav { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 101;
    display: block;
  }
  .menu-open .menu-button {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    padding: 24px 16px;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(35,27,20,.28);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 300ms ease,visibility 300ms ease;
    overflow-y: auto;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-panel {
    position: relative;
    display: flex;
    width: min(100%,360px);
    max-height: calc(100dvh - 48px);
    margin: 0 auto;
    align-items: stretch;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(190,151,78,.5);
    background: rgba(248,242,232,.985);
    box-shadow: 0 22px 55px rgba(50,36,24,.18);
    color: var(--coffee);
    font-family: var(--serif);
    font-size: 21px;
    letter-spacing: .35px;
    transform: translateY(-15px);
    transition: transform 300ms ease;
  }

  .mobile-menu-overlay.active .mobile-menu-panel {
    transform: translateY(0);
  }

  .mobile-menu-close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 14px;
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0 0 3px;
    place-items: center;
    border: 1px solid rgba(190,151,78,.45);
    background: rgba(248,242,232,.96);
    color: #5a4635;
    font-family: var(--sans);
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-links {
    width: 100%;
    padding: 60px 22px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-panel a,
  .mobile-menu-panel button {
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
  }

  .mobile-menu-item {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 12px 48px;
    place-items: center;
    border-bottom: 1px solid rgba(190,151,78,.25);
    text-align: center;
    box-sizing: border-box;
  }

  .mobile-menu-item-label {
    display: block;
    width: 100%;
    margin: 0;
    line-height: 1.2;
    text-align: center;
  }

  .mobile-menu-item-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 12px 48px;
    place-items: center;
    text-align: center;
    box-sizing: border-box;
  }

  .mobile-menu-links > a.is-active,
  .mobile-nav-dropdown.is-active .mobile-dropdown-heading {
    color: #8d6935;
  }

  .mobile-dropdown-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mobile-dropdown-toggle {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 16px;
    display: grid;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
  }
  .mobile-dropdown-toggle svg {
    width: 10px;
    transition: transform 220ms ease;
  }
  .mobile-nav-dropdown.is-open .mobile-dropdown-toggle svg { transform: rotate(180deg); }

  .mobile-instagram .menu-item-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 16px;
    height: 16px;
    margin: 0;
    transform: translateY(-50%);
  }

  .mobile-submenu {
    width: 100%;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 260ms ease,opacity 220ms ease,visibility 0s linear 260ms;
  }
  .mobile-nav-dropdown.is-open .mobile-submenu {
    max-height: 360px;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  .mobile-submenu a {
    display: block;
    width: 100%;
    padding: 9px 8px;
    border-bottom: 1px solid rgba(190,151,78,.14);
    color: #715d4d;
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.15;
    text-align: center;
  }
  .mobile-submenu a:last-child { border-bottom: 1px solid rgba(190,151,78,.25); }

  .coming-soon { display: block; }
  .visual-card { display: none; }
  .home-hero { height: auto; min-height: 100svh; overflow: visible; }
  .content-panel { width: min(590px,100%); margin: auto; }
  .content-panel-inner { min-height: calc(100svh - 175px); }
  .home-bg-store { clip-path: polygon(0 0,100% 0,100% 62%,0 76%); }
  .home-bg-fashion { clip-path: polygon(0 68%,100% 54%,100% 100%,0 100%); }
  .inner-hero { grid-template-columns: 1fr; }
  .inner-hero-image { min-height: 390px; max-height: 480px; }
  .inner-hero-content { align-items: center; text-align: center; }
  .story-grid,.detail-layout { grid-template-columns: 1fr; }
  .story-image { min-height: 420px; }
  .product-grid,.contact-grid { grid-template-columns: 1fr; max-width: 550px; }
}

@media (max-width: 620px) {
  .nav-wrap { min-height: 72px; padding: 8px 17px; }
  .site-brand img { width: 46px; height: 46px; }
  .site-brand > span { font-size: 17px; }
  .home-hero { padding: 91px 14px 22px; }
  .content-panel { padding: 7px; }
  .content-panel-inner { min-height: calc(100svh - 125px); padding: 25px 20px; }
  .main-logo { width: 120px; height: 120px; }
  .content-panel h1 { width: 100%; font-size: clamp(40px,12vw,56px); }
  .content-panel h1 em { font-size: clamp(20px,6.1vw,29px); letter-spacing: 1px; white-space: nowrap; }
  .intro { font-size: 16px; }
  .action-group { flex-wrap: wrap; }
  .action-button { min-width: calc(50% - 5px); flex: 1; }
  .action-button-primary { min-width: 100%; }
  .home-categories,.collection-section,.content-section { padding: 70px 18px; }
  .page-banner { padding: 68px 20px; }
  .inner-hero-image { min-height: 330px; }
  .inner-hero-content { padding: 50px 22px; }
  .inner-hero-content h1 { font-size: clamp(43px,14vw,65px); }
  .center-actions { align-items: stretch; flex-direction: column; }
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-thumbs { order: 2; flex-direction: row; }
  .detail-thumbs button { width: 72px; }
  .detail-actions { grid-template-columns: 1fr; }
  .detail-actions .button:first-child { grid-column: auto; }
  .footer-links { align-items: center; flex-direction: column; gap: 12px; }
}

@media (max-width: 600px) {
  .category-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 55px 16px;
  }

  .category-grid,
  .products-page .category-grid {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 26px 14px;
    width: 100%;
    height: auto;
    overflow: visible;
    visibility: visible;
    opacity: 1;
  }

  .category-bubble {
    display: flex !important;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .category-bubble-image {
    display: block;
    width: min(38vw,155px);
    max-width: 100%;
    aspect-ratio: 1 / 1;
    padding: 5px;
    overflow: hidden;
    border: 1px solid #c6a15b;
    border-radius: 50%;
  }

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

  .category-bubble-title {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
