/* ============================================
   MOBILYA - COMPONENT STYLES
   Referans: ouma.com.tr tarzı navbar + coverflow hero + AIR minimal mega menu
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

/* Hide WP Admin Bar gap if present */
#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ============================================
   HEADER / NAVBAR
   - Transparan, hero üzerinde beyaz yazı
   - Çizgi tamamen KALDIRILDI!
   - Scroll'da beyaz arka plan, siyah yazı
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  transition: background var(--transition-base), box-shadow var(--transition-base);
  border: none;
  border-bottom: 1px solid transparent !important;
  box-sizing: border-box !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
}

.site-header * {
  box-shadow: none !important;
}

/* Scrolled state — solid white */
.site-header.scrolled {
  background: var(--color-white) !important;
  box-shadow: var(--shadow-sm) !important;
  border-bottom: 1px solid var(--color-border) !important;
}

/* Inner Pages / Category Pages / Single Product Pages — Solid White Navbar with Black Text */
body:not(.home) .site-header,
body.single-product .site-header,
body.inner-page .site-header,
.site-header.header--solid {
  position: sticky !important;
  top: 0 !important;
  background: var(--color-white) !important;
  border-bottom: 1px solid var(--color-border) !important;
  box-shadow: none !important;
  z-index: 1000 !important;
}

/* Scrolled state — add subtle bottom border on scroll */
body:not(.home) .site-header.scrolled,
body.single-product .site-header.scrolled,
body.inner-page .site-header.scrolled,
.site-header.scrolled {
  background: var(--color-white) !important;
  box-shadow: var(--shadow-sm) !important;
  border-bottom: 1px solid var(--color-border) !important;
}

body:not(.home) .site-header .navbar__link,
body.single-product .site-header .navbar__link,
body.inner-page .site-header .navbar__link,
.site-header.header--solid .navbar__link {
  color: var(--color-text) !important;
}

body:not(.home) .site-header .logo,
body.single-product .site-header .logo,
body.inner-page .site-header .logo,
.site-header.header--solid .logo {
  color: var(--color-black) !important;
}

body:not(.home) .site-header .icon-btn svg,
body.single-product .site-header .icon-btn svg,
body.inner-page .site-header .icon-btn svg,
.site-header.header--solid .icon-btn svg {
  stroke: var(--color-black) !important;
}

body:not(.home) .site-header .mobile-menu-toggle span,
body:not(.home) .site-header .mobile-menu-toggle span::before,
body:not(.home) .site-header .mobile-menu-toggle span::after,
body.single-product .site-header .mobile-menu-toggle span,
body.single-product .site-header .mobile-menu-toggle span::before,
body.single-product .site-header .mobile-menu-toggle span::after,
body.inner-page .site-header .mobile-menu-toggle span,
body.inner-page .site-header .mobile-menu-toggle span::before,
body.inner-page .site-header .mobile-menu-toggle span::after,
.site-header.header--solid .mobile-menu-toggle span,
.site-header.header--solid .mobile-menu-toggle span::before,
.site-header.header--solid .mobile-menu-toggle span::after {
  background: var(--color-black) !important;
}

/* Navbar */
.navbar {
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  max-width: 100%;
  position: relative;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar::before,
.navbar::after,
.site-header::before,
.site-header::after {
  display: none !important;
  content: none !important;
  border: none !important;
}

.navbar__left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex: 1;
}

.navbar__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 1;
  justify-content: flex-end;
}

/* Links — white by default (on hero) */
.navbar__link {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-white);
  padding: var(--space-xs) 0;
  position: relative;
  transition: opacity var(--transition-fast);
  white-space: nowrap;
  border: none !important;
  outline: none !important;
  background: none !important;
}

.navbar__link::before,
.navbar__link::after {
  display: none !important;
  content: none !important;
}

.navbar__link:hover {
  opacity: 0.6;
}

.navbar__link--all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Scrolled — black text */
.site-header.scrolled .navbar__link {
  color: var(--color-text);
}

.site-header.scrolled .navbar__link:hover {
  opacity: 0.5;
}

/* Logo */
.logo {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color var(--transition-base);
  white-space: nowrap;
}

.site-header.scrolled .logo {
  color: var(--color-black);
}

/* Icon Buttons */
.icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: opacity var(--transition-fast);
  position: relative;
}

.icon-btn:hover {
  opacity: 0.6;
}

/* Minimal Fullscreen Language Transition Overlay (Expanding Minimal Wipe) */
.lang-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  clip-path: circle(0% at 88% 3%);
  transition: opacity 0.15s ease;
}

.lang-transition-overlay.active {
  pointer-events: all;
  opacity: 1;
}

.lang-transition-box {
  text-align: center;
}

.lang-transition-code {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #111111;
  text-transform: uppercase;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-white);
  stroke-width: 1.5;
  fill: none;
  transition: stroke var(--transition-base);
}

.site-header.scrolled .icon-btn svg {
  stroke: var(--color-text);
}

.icon-btn__badge {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--color-white);
  color: var(--color-black);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease;
}

.site-header.scrolled .icon-btn__badge {
  background: var(--color-black);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Animated Floating Quick Add Button (Pure Frameless, Icon Fixed on Far Right) */
.cat-product-card__img-wrap {
  position: relative;
}

.quick-add-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 10;
  height: 32px;
  padding: 0;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  color: #111111;
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse; /* Icon her zaman en sağda kalır! */
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.quick-add-btn__icon {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: #111111;
  transition: transform 0.25s ease;
  display: inline-block;
  min-width: 24px;
  text-align: center;
}

.quick-add-btn__text {
  font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111111;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.95);
}

/* Hover over + icon: Text fades in smoothly to the LEFT of the icon */
.quick-add-btn:hover .quick-add-btn__text {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quick-add-btn:hover .quick-add-btn__icon {
  transform: rotate(90deg);
}

/* Added state: Saf şeffaf metin (Kaplamasız, çerçevesiz) */
.quick-add-btn.added {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.quick-add-btn.added .quick-add-btn__text {
  opacity: 1 !important;
  transform: translateX(0) !important;
  color: #111111 !important;
}

.quick-add-btn.added .quick-add-btn__icon {
  transform: rotate(0deg) !important;
  color: #111111 !important;
}

/* ==========================================
   Language Selector (Sade Metin TR / EN / RU / IT)
   ========================================== */
.lang-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-selector__btn {
  background: none !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
}

.lang-selector__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 50%;
  transform: translateX(50%) translateY(4px);
  min-width: 50px;
  background: #111;
  border-radius: 4px;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .lang-selector__dropdown {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.lang-selector.active .lang-selector__dropdown,
.lang-selector:hover .lang-selector__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}

.lang-selector__item {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 4px 12px;
  width: 100%;
  text-align: center;
  transition: color var(--transition-fast);
}

.site-header.scrolled .lang-selector__item {
  color: rgba(0, 0, 0, 0.6);
}

.lang-selector__item:hover {
  color: var(--color-white);
}

.lang-selector__mobile-flat {
  display: none;
}

.site-header.scrolled .lang-selector__item:hover {
  color: var(--color-black);
}

/* ============================================
   MINIMAL MEGA MENU MODAL ("TÜMÜ" Penceresi)
   ============================================ */
.mega-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mega-menu-overlay.open {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}

.mega-menu-modal {
  width: 90%;
  max-width: 1000px;
  background: rgba(245, 245, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform: scale(0.95);
  transition: transform var(--transition-slower);
  padding: var(--space-3xl);
}

.mega-menu-overlay.open .mega-menu-modal {
  transform: scale(1);
}

.mega-menu-modal__close {
  position: absolute;
  top: var(--space-xl);
  left: var(--space-xl);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-black);
  color: var(--color-white);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.mega-menu-modal__close:hover {
  opacity: 0.8;
}

.mega-menu-modal__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-xl);
}

.mega-menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mega-menu-nav__item {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  color: var(--color-black);
  line-height: var(--leading-tight);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mega-menu-nav__item:hover {
  transform: translateX(8px);
  opacity: 0.7;
}

.mega-menu-modal__sublinks {
  margin-top: var(--space-3xl);
  display: flex;
  gap: var(--space-lg);
}

.mega-menu-modal__sublinks a {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.mega-menu-modal__sublinks a:hover {
  color: var(--color-black);
}

/* Right side cards */
.mega-menu-modal__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mega-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all var(--transition-base);
  min-height: 180px;
}

.mega-card:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.mega-card__title {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text);
}

.mega-card__plus {
  align-self: flex-end;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--color-black);
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
/* ============================================
   LUXURY DESKTOP SEARCH OVERLAY & RESULTS
   ============================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.search-overlay.open {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

.search-overlay__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem 2rem;
}

.search-overlay__form {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.search-overlay__form:focus-within {
  border-bottom-color: #ffffff;
}

.search-overlay__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Space Grotesk', var(--font-primary);
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
  outline: none;
}

.search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.search-overlay__close {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.search-overlay__close:hover {
  background: #ffffff;
  color: #000000;
  transform: scale(1.08);
}

/* Live Search Results Dropdown */
.search-results {
  margin-top: 1.5rem;
  max-height: 420px;
  overflow-y: auto;
  display: none;
}

.search-results__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.6rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.search-results__item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.search-results__image {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.search-results__info {
  flex: 1;
}

.search-results__title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.search-results__price {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.search-results__empty {
  padding: 2rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

/* ============================================
   SEARCH RESULTS PAGE (search.php) STYLING
   ============================================ */
.search-page-wrapper {
  background: #ffffff;
  min-height: 80vh;
}

.search-refine-bar {
  background: #f9f9f9;
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.search-refine-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 40px;
  padding: 0.4rem 0.5rem 0.4rem 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.search-refine-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: #111111;
  outline: none;
  font-family: inherit;
}

.search-refine-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 0.65rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.search-refine-btn:hover {
  background: #333333;
}

/* Search Empty State */
.search-empty-state {
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 580px;
  margin: 0 auto;
}

.search-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.search-empty-title {
  font-family: 'Space Grotesk', var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.8rem;
}

.search-empty-desc {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.search-empty-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.btn-primary-custom {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.25s ease;
}

.btn-primary-custom:hover {
  background: #333333;
  transform: translateY(-2px);
}

.search-empty-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sec-label {
  font-size: 0.8rem;
  color: #888888;
  margin-right: 0.4rem;
}

.sec-chip {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: #f2f2f2;
  border-radius: 20px;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sec-chip:hover {
  background: #111111;
  color: #ffffff;
}

.search-results__price {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: 2px;
}

.search-results__empty {
  padding: var(--space-xl) 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

/* ============================================
   HERO - Full-screen with Coverflow Carousel
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* Coverflow Carousel */
.hero__carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48vh;
  min-height: 320px;
  perspective: 1200px;
  margin-top: 50px;
  margin-bottom: var(--space-sm);
}

.hero__carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero__card {
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  backface-visibility: hidden;
}

.hero__card-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: #fff;
}

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

.hero__card-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background var(--transition-fast);
}

.hero__card-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.hero__card-title {
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

.hero__card-sub {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* Card positions */
.hero__card[data-pos="-2"] {
  transform: translateX(-520px) scale(0.65) rotateY(25deg);
  opacity: 0.4;
  z-index: 1;
}

.hero__card[data-pos="-1"] {
  transform: translateX(-300px) scale(0.8) rotateY(15deg);
  opacity: 0.7;
  z-index: 2;
}

.hero__card[data-pos="0"] {
  transform: translateX(0) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 3;
  width: 320px;
  height: 420px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero__card[data-pos="1"] {
  transform: translateX(300px) scale(0.8) rotateY(-15deg);
  opacity: 0.7;
  z-index: 2;
}

.hero__card[data-pos="2"] {
  transform: translateX(520px) scale(0.65) rotateY(-25deg);
  opacity: 0.4;
  z-index: 1;
}

/* Carousel Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero__arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-white);
  stroke-width: 2;
  fill: none;
}

.hero__arrow--left {
  left: var(--space-xl);
}

.hero__arrow--right {
  right: var(--space-xl);
}

/* Hero Text */
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--container-padding);
}

.hero__title {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: 400;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-xs);
  font-style: normal;
  color: var(--color-white);
}

.hero__subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* Hero Bottom Bar */
.hero__bottom-bar {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.hero__bottom-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-fast);
}

.hero__bottom-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero__bottom-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-white);
  stroke-width: 1.5;
  fill: none;
}

.hero__bottom-progress {
  width: 200px;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
}

.hero__bottom-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  overflow: hidden;
}

.hero__bottom-progress-fill {
  height: 100%;
  background: var(--color-white);
  border-radius: 1px;
  width: 33%;
  transition: width var(--transition-base);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1 0 auto;
  min-height: 100vh;
  position: relative;
  z-index: 20;
  background: var(--color-bg);
}

.site-footer {
  flex-shrink: 0;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-4xl) 0;
}

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

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  color: var(--color-text);
}

.section__title strong {
  font-weight: var(--font-weight-semibold);
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-card);
  margin-bottom: var(--space-md);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-black);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.product-card__quick-add {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-white);
  color: var(--color-black);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--color-black);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.product-card:hover .product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-card__quick-add:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.product-card__info {
  padding: 0 var(--space-xs);
}

.product-card__category {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.product-card__name {
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  line-height: var(--leading-snug);
}

.product-card__price,
.cat-product-card__price-box,
.cat-product-card__price,
.featured-duo-card__price,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price-normal,
.woocommerce ul.products li.product .price-regular,
.woocommerce ul.products li.product .price-sale,
.woocommerce ul.products li.product .discount-tag {
  display: none !important;
}

.product-card__price del {
  font-weight: var(--font-weight-regular);
  color: var(--color-text-muted);
  margin-right: var(--space-sm);
  font-size: var(--text-sm);
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.category-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__image {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  transition: background var(--transition-base);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.category-card__content {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
}

.category-card__name {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-xs);
}

.category-card__count {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-wide);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn--primary {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn--primary:hover {
  background: transparent;
  color: var(--color-black);
}

.btn--outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

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

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.promo-banner__image {
  position: relative;
  overflow: hidden;
}

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

.promo-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-4xl);
  background: var(--color-bg-alt);
}

.promo-banner__label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.promo-banner__title {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
}

.promo-banner__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
  max-width: 400px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  text-align: center;
  padding: var(--space-4xl) 0;
}

.newsletter__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  margin-bottom: var(--space-md);
}

.newsletter__form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid var(--color-border-dark);
}

.newsletter__input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  border: none;
  background: transparent;
  font-size: var(--text-sm);
}

.newsletter__btn {
  padding: var(--space-md) var(--space-xl);
  background: var(--color-black);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  border: none;
  transition: background var(--transition-fast);
}

.newsletter__btn:hover {
  background: var(--color-text-secondary);
}

/* ============================================
   EDITORIAL DARK FOOTER (Minimal & Thin Typography Architecture)
   ============================================ */
.site-footer {
  background: #0D0D0D !important;
  color: #FFFFFF !important;
  padding: 80px 0 40px 0 !important;
  position: relative;
  z-index: 100;
  display: block !important;
}

body.home .site-footer,
body.front-page .site-footer,
html body .site-footer {
  display: block !important;
}

/* Hide ONLY on cart & checkout pages */
body.woocommerce-cart .site-footer,
body.woocommerce-checkout .site-footer {
  display: none !important;
}

/* Override if on home page */
body.home.woocommerce-checkout .site-footer,
body.front-page.woocommerce-checkout .site-footer {
  display: block !important;
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__top-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .footer__top-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.footer__newsletter-title {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.footer__newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  max-width: 480px;
  margin-bottom: 48px;
  transition: border-color 0.3s ease;
}

.footer__newsletter-form:focus-within {
  border-color: #FFFFFF;
}

.footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
  font-family: inherit;
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer__newsletter-submit {
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0 8px;
  transition: transform 0.2s ease;
}

.footer__newsletter-submit:hover {
  transform: translateX(4px);
}

.footer__contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .footer__contact-info {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.info-item__label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.info-item__value {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

.info-item__value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-item__value a:hover {
  color: #FFFFFF;
}

.footer__right-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .footer__right-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .footer__right-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Thinner, Minimalist Typography for Navigation Links */
.footer__nav-link {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer__nav-link:hover {
  color: #FFFFFF;
  opacity: 1;
}

/* Square Social Media Buttons in Footer */
.footer__social-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social-squares {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social-square-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 !important;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.footer__social-square-btn:hover {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.footer__social-square-btn svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.footer__social-square-btn:hover svg {
  transform: scale(1.1);
}

.footer__brand-huge {
  font-family: 'Cinzel', serif;
  font-size: clamp(60px, 13vw, 180px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 40px 0 40px -6px;
  user-select: none;
}

.footer__bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 991px) {
  .footer__bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer__legal-link:hover {
  color: #FFFFFF;
}

.footer__copyright-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer__copyright-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.footer__powered-by {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  font-family: var(--font-primary), sans-serif;
}

.footer__powered-link {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-decoration: none;
  margin-left: 7px;
  text-transform: uppercase;
  font-family: var(--font-primary), sans-serif;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer__powered-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}


/* Legal Modal Overlay */
.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.legal-modal-container {
  background: #181818;
  color: #FFFFFF;
  width: 100%;
  max-width: 680px;
  max-height: 80vh;
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.legal-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.legal-modal-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-modal-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-white);
  position: relative;
  transition: background var(--transition-fast);
}

.site-header.scrolled .mobile-menu-toggle span,
.site-header.scrolled .mobile-menu-toggle span::before,
.site-header.scrolled .mobile-menu-toggle span::after {
  background: var(--color-black);
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transition: all var(--transition-base);
}

.mobile-menu-toggle span::before {
  top: -6px;
}

.mobile-menu-toggle span::after {
  bottom: -6px;
}

.mobile-menu-toggle.active span {
  background: transparent;
}

.mobile-menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--color-black);
}

.mobile-menu-toggle.active span::after {
  bottom: 0;
  transform: rotate(-45deg);
  background: var(--color-black);
}

.mobile-menu {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: var(--z-overlay);
  display: none;
  transform: translateX(-100%);
  transition: transform var(--transition-slower);
  overflow-y: auto;
  padding: var(--space-xl);
}

.mobile-menu.open {
  display: block !important;
  transform: translateX(0);
}

.mobile-menu__link {
  display: block;
  padding: var(--space-md) 0;
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  border-bottom: 1px solid var(--color-border);
  letter-spacing: var(--tracking-wide);
  color: var(--color-text);
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--color-black) !important;
  color: var(--color-white) !important;
  border-radius: 0 !important;
  font-family: var(--font-primary) !important;
  font-weight: var(--font-weight-medium) !important;
  letter-spacing: var(--tracking-wider) !important;
  text-transform: uppercase !important;
  font-size: var(--text-sm) !important;
  padding: var(--space-md) var(--space-xl) !important;
  transition: all var(--transition-base) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--color-text-secondary) !important;
}

/* Stacking Context & Sticky Pinning for Editorial Banner Stream (No Bleed) */
.hero {
  position: sticky;
  top: 0;
  z-index: 5;
  height: 100vh;
  min-height: 600px;
  background: #0f0e0d;
  width: 100%;
  overflow: hidden;
}

.ai-curation-section {
  position: relative;
  z-index: 25;
}

.editorial-banner {
  position: sticky;
  top: var(--navbar-height);
  z-index: 10;
  width: 100%;
  height: calc(100vh - var(--navbar-height));
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
  background: #111111;
}

.normal-page-flow {
  position: relative;
  z-index: 20;
  background: var(--color-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ============================================
   FEATURES BAR (Gumastore Style 3 Column Bar)
   ============================================ */
.features-bar {
  background: var(--color-white);
  padding: var(--space-4xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.features-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--space-xl);
  position: relative;
}

.features-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--color-border);
}

.features-bar__icon {
  color: var(--color-black);
  margin-bottom: var(--space-md);
  opacity: 0.85;
}

.features-bar__title {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  color: var(--color-black);
  margin: 0;
}

/* ============================================
   UNFOLDING REVEAL FOOTER (Gumastore Style)
   ============================================ */
@media (min-width: 1025px) {
  .site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: var(--color-black);
    color: var(--color-white);
    box-sizing: border-box;
  }
}

body.woocommerce-cart .site-footer,
body.woocommerce-checkout .site-footer {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
  z-index: 100 !important;
}

.editorial-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.editorial-banner__bg picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.editorial-banner__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

.editorial-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.25) 100%);
}

.editorial-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--space-xl);
}

.editorial-banner__tag {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
  background: none;
  border: none;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.editorial-banner__btn {
  display: inline-block;
  padding: 14px 44px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition-base);
}

.editorial-banner__btn:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* ============================================
/* ============================================
   FEATURED DUO PRODUCTS & MARQUEE TICKERS (Gumastore Style)
   ============================================ */
.featured-duo-section {
  background: var(--color-white);
  padding: 0;
}

.featured-duo-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: var(--space-2xl);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  align-items: stretch;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Çerçevesiz, Temiz Ürün Kartı */
.featured-duo-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0; /* Remove vertical padding to align perfectly */
  transition: all var(--transition-base);
}

.featured-duo-card:hover {
  transform: translateY(-4px);
}

/* Featured Duo Row & Cat Product Card Alignment */
.featured-duo-row .cat-product-card {
  flex: 1;
  min-width: 0;
  border-bottom: 1px solid var(--color-border);
  padding: 0 0 36px 0 !important; /* Generous 36px whitespace gap below text before border line */
  margin-bottom: var(--space-xl);
}

.featured-duo-row .cat-product-card::after {
  display: none !important;
  content: none !important; /* Removes vertical border line next to price */
}

.featured-duo-row .cat-product-card__img-wrap {
  height: 480px;
  background: #ffffff;
  border-radius: 0;
}

.featured-duo-row .cat-product-card__img {
  object-fit: cover;
}

.featured-duo-card__img-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: var(--space-xl); /* Add space inside the card instead of outside */
}

.featured-duo-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-duo-card:hover .featured-duo-card__img-wrap img {
  transform: scale(1.04);
}

.featured-duo-card__info {
  padding-top: var(--space-md);
  padding-bottom: var(--space-xl);
  text-align: left;
}

.featured-duo-card__cat {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.featured-duo-card__title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-black);
  margin: 4px 0;
}

.featured-duo-card__price {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-black);
}

.featured-duo-card__price del {
  color: var(--color-text-muted);
  margin-right: 8px;
  font-weight: 400;
}

/* Vertical Marquee Column - Keskin Kenarlı & Tek Satır Dikey Yazı */
.vertical-marquee-col {
  width: 40px;
  background: #111111;
  color: #ffffff;
  position: relative; /* Make it a positioning context */
  overflow: hidden;
  border-radius: 0 !important;
}

.vertical-marquee-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  animation: verticalMarqueeScroll 22s linear infinite;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vertical-marquee-track span {
  display: inline-block;
  padding: 10px 0;
}

@keyframes verticalMarqueeScroll {
  0% { transform: rotate(180deg) translateY(0%); }
  100% { transform: rotate(180deg) translateY(-50%); }
}

/* Horizontal Ticker Ribbon (Görsel 2) */
.horizontal-marquee-ribbon {
  width: 100%;
  overflow: hidden;
  background: var(--color-white);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.horizontal-marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  animation: horizontalMarqueeScroll 25s linear infinite;
}

.horizontal-marquee-ribbon:hover .horizontal-marquee-track,
.horizontal-marquee-ribbon:active .horizontal-marquee-track {
  animation-play-state: paused;
}

@keyframes horizontalMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - (var(--space-xl) / 2))); }
}

.marquee-capsule {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 8px 24px 8px 12px;
  border-radius: 50px;
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.marquee-capsule--dark {
  background: #1e1e1e;
  color: #ffffff;
}

.marquee-capsule--light {
  background: #f4f4f4;
  color: #111111;
  border: 1px solid var(--color-border);
}

.marquee-capsule img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.marquee-capsule__btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid currentColor;
  margin-left: var(--space-xs);
  transition: all var(--transition-fast);
}

.marquee-capsule__btn:hover {
  background: currentColor;
}

.marquee-capsule--dark .marquee-capsule__btn:hover {
  color: #1e1e1e;
  background: #ffffff;
}

.marquee-capsule--light .marquee-capsule__btn:hover {
  color: #ffffff;
  background: #111111;
}

/* ============================================
   LEFT SIDE INTERACTIVE BANNER INDICATOR
   ============================================ */
.left-banner-indicator {
  position: fixed;
  left: var(--space-2xl);
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.left-banner-indicator.visible {
  opacity: 1;
  pointer-events: auto;
}

.left-indicator-item {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition-fast);
}

.left-indicator-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--font-primary);
}

.left-indicator-line {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: all var(--transition-fast);
  border-radius: 1px;
}

.left-indicator-item:hover,
.left-indicator-item.active {
  color: #ffffff;
}

.left-indicator-item:hover .left-indicator-line,
.left-indicator-item.active .left-indicator-line {
  width: 48px;
  background: #ffffff;
}

/* Floating Minimal Interactive Scroll To Top Glass Circular Button */
.scroll-to-top,
.scroll-to-top-minimal {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-modal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.scroll-to-top.visible,
.scroll-to-top-minimal.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover,
.scroll-to-top-minimal:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-minimal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.scroll-to-top-minimal__icon svg {
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), stroke 0.25s ease;
}

.scroll-to-top-minimal:hover .scroll-to-top-minimal__icon svg {
  transform: translateY(-2px);
  stroke: #000000;
}

/* ============================================
   AI SEARCH PILL (Brunello Cucinelli Style)
   ============================================ */
.ai-search-pill {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 90%;
  max-width: 580px;
  height: 56px;
  /* Apple Glassmorphism */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05),
    0 0 0 0.5px rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 6px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ai-search-pill:focus-within {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05),
    0 0 0 0.5px rgba(255, 255, 255, 0.12),
    0 0 20px rgba(255, 255, 255, 0.04);
}

.ai-search-pill__btn-left {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.ai-search-pill__btn-left:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.ai-search-pill__form {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--space-sm);
}

.ai-search-pill__input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-wide);
}

.ai-search-pill__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: var(--font-weight-light);
}

.ai-search-pill__clear {
  color: rgba(255, 255, 255, 0.5);
  padding: 0 var(--space-xs);
  font-size: var(--text-xs);
  transition: color var(--transition-fast);
  cursor: pointer;
}

.ai-search-pill__clear:hover {
  color: var(--color-white);
}

.ai-search-pill__submit {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.ai-search-pill__submit:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Fixed Bottom Pill Mode when scrolled into AI Results */
.ai-search-pill.is-fixed {
  position: fixed;
  bottom: var(--space-xl);
  z-index: var(--z-modal);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.07) 40%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 0.5px rgba(255, 255, 255, 0.1);
}

/* ============================================
   AI CURATION & RESULTS SECTION (100vh Full Screen Pure White)
   ============================================ */
.ai-curation-section {
  position: relative;
  background: var(--color-white);
  color: var(--color-text);
  min-height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) 0;
  border-bottom: 1px solid var(--color-border);
  box-sizing: border-box;
}

.ai-curation-section.active {
  display: flex !important;
}

.ai-curation-state {
  text-align: center;
  padding: var(--space-4xl) 0;
  width: 100%;
}

.ai-loading-bar-wrap {
  width: 240px;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  margin: 0 auto var(--space-2xl);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.ai-loading-bar {
  width: 0%;
  height: 100%;
  background: var(--color-black);
  border-radius: 1px;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.ai-curation-heading {
  font-family: var(--font-primary), 'Inter', sans-serif;
  font-size: var(--text-xl);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-black);
  margin-bottom: var(--space-sm);
  font-style: normal;
  text-transform: uppercase;
  line-height: var(--leading-snug);
}

.ai-curation-sub {
  font-family: var(--font-primary), 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #888888;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* AI Results Header & Grid */
.ai-curation-results {
  width: 100%;
}

.ai-results-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.ai-results-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.ai-results-title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 300;
  letter-spacing: var(--tracking-tight);
  color: #111;
  margin-bottom: var(--space-xs);
}

.ai-results-query {
  font-size: var(--text-xs);
  color: #888;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Luxury Product Grid Override */
.product-grid--luxury {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.product-grid--luxury .product-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  transition: all var(--transition-base);
}

.product-grid--luxury .product-card:hover {
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.product-grid--luxury .product-card__image-wrapper {
  border-radius: var(--radius-sm);
}

/* ==========================================
   Ultra-Minimal Luxury Off-Canvas Mini Cart Drawer
   ========================================== */
.mini-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(17, 17, 17, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-cart-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mini-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 92vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
}

.mini-cart-drawer.active {
  transform: translateX(0);
}

.mini-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid #111111;
}

.mini-cart-drawer__title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-cart-drawer__title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111111;
  margin: 0;
}

.mini-cart-drawer__count-badge {
  background: #111111;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  line-height: 1.2;
}

.mini-cart-drawer__close-btn {
  background: none;
  border: none;
  outline: none;
  color: #111111;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mini-cart-drawer__close-btn:hover {
  transform: rotate(90deg);
}

/* Body & Items List (Hidden Scrollbar) */
.mini-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mini-cart-drawer__body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.mini-cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px 20px;
  color: #777777;
}

.empty-state__icon {
  margin-bottom: 16px;
  color: #cccccc;
}

.empty-state__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 6px 0;
}

.empty-state__sub {
  font-size: 12px;
  color: #888888;
  margin: 0;
  max-width: 260px;
  line-height: 1.5;
}

/* Mini Cart Item Card (Solid Black Separator Line) */
.mini-cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #111111;
  position: relative;
}

.mini-cart-item__img-wrap {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #f8f8f8;
}

.mini-cart-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-cart-item__brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888888;
}

.mini-cart-item__title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}

.mini-cart-item__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  margin-top: 2px;
}

.mini-cart-item__qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

/* Square Minimal Quantity Box (Square Border, Space Grotesk Font) */
.mini-cart-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid #111111;
  border-radius: 0 !important; /* Square sharp box */
  overflow: hidden;
  height: 28px;
  background: #ffffff;
}

.mini-cart-qty-btn {
  width: 26px;
  height: 100%;
  border: none;
  background: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.mini-cart-qty-btn:hover {
  background: #111111;
  color: #ffffff;
}

.mini-cart-qty-input {
  width: 34px;
  height: 100%;
  border: none;
  border-left: 1px solid #111111;
  border-right: 1px solid #111111;
  background: #ffffff;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
}

.mini-cart-qty-input::-webkit-outer-spin-button,
.mini-cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mini-cart-item__remove {
  background: none;
  border: none;
  color: #aaaaaa;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.mini-cart-item__remove:hover {
  color: #e53935;
}

/* Footer Actions (Solid Black Top Border) */
.mini-cart-drawer__footer {
  padding: 24px 28px;
  border-top: 1px solid #111111;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subtotal-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111111;
}

.subtotal-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.mini-cart-tax-note {
  font-size: 11px;
  color: #888888;
  margin: -6px 0 0 0;
  line-height: 1.4;
}

.mini-cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  background: #111111;
  color: #ffffff !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  text-decoration: none !important;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.mini-cart-checkout-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mini-cart-continue-btn {
  background: none;
  border: none;
  color: #777777;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.mini-cart-continue-btn:hover {
  color: #111111;
}

/* Out of Stock Card & Badge Styling */
.out-of-stock-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: rgba(17, 17, 17, 0.88);
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0;
  backdrop-filter: blur(4px);
}

.cat-product-card.is-out-of-stock .cat-product-card__img {
  filter: grayscale(40%) opacity(0.85);
  transition: filter 0.4s ease;
}

.cat-product-card.is-out-of-stock:hover .cat-product-card__img {
  filter: grayscale(10%) opacity(1);
}

.quick-add-btn.is-out-of-stock {
  opacity: 0.6;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* ==========================================
   SINGLE PRODUCT PAGE & HIGH-FASHION BREADCRUMB
   ========================================== */
.single-product-page {
  position: relative;
  z-index: 5;
  background: #ffffff;
  padding-top: 50px;
  padding-bottom: 120px;
}

.single-product__breadcrumb-bar {
  padding: 16px 0 12px 0;
  border-bottom: none;
  margin-bottom: 32px;
}

.single-product__breadcrumb {
  font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  text-transform: none;
}

.single-product__breadcrumb .bc-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.single-product__breadcrumb a.bc-link {
  color: #555555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.single-product__breadcrumb a.bc-link:hover {
  color: #000000;
  opacity: 0.8;
}

.bc-home-icon {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
}

.bc-sep {
  color: #c2c2c2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bc-sep svg {
  stroke: #b0b0b0;
}

.bc-current {
  color: #111111;
  font-weight: 600;
}

/* 2-Column Hero Stage */
.single-product__hero-section {
  padding-bottom: 80px;
}

.single-product__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Gallery Stage */
.single-product__main-img-stage {
  position: relative;
  width: 100%;
  border: 1px solid #111111;
  background: #fbfbfb;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.single-product__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  background: #111111;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 0;
}

.single-product__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.single-product__main-img-stage:hover .single-product__main-img {
  transform: scale(1.04);
}

.single-product__thumbs-strip {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.single-thumb-btn {
  width: 90px;
  height: 90px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.single-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-thumb-btn.active,
.single-thumb-btn:hover {
  border-color: #111111;
  border-width: 2px;
  transform: translateY(-2px);
}

/* Info Panel (Sticky) */
.single-product__sticky-panel {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.single-product__brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #888888;
  text-transform: uppercase;
}

.single-product__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0;
  line-height: 1.1;
}

.single-product__price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #111111;
}

.single-product__price-sale {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #111111;
}

.single-product__price-old {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: #888888;
  text-decoration: line-through;
}

.single-product__discount-badge {
  background: #111111;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.1em;
}

.single-product__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555555;
  margin: 0;
}

/* Swatches */
.single-product__option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-option-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #111111;
  display: flex;
  justify-content: space-between;
}

.single-color-swatches {
  display: flex;
  gap: 14px;
}

.single-swatch-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.single-swatch-btn.active {
  transform: scale(1.15);
  border-color: #111111 !important;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #111111;
}

/* Action Row */
.single-product__action-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

.single-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid #111111;
  border-radius: 0;
  height: 52px;
  background: #ffffff;
}

.single-qty-btn {
  width: 44px;
  height: 100%;
  border: none;
  background: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.single-qty-btn:hover {
  background: #111111;
  color: #ffffff;
}

/* Force Navbar visibility matching Category Page (solid white background, sticky, subtle border) */
.single-product-active .site-header,
html.single-product-active .site-header,
body.single-product-active .site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  right: 0;
  background: #ffffff !important;
  border-bottom: 1px solid #f0f0f0 !important;
  box-shadow: none !important;
  z-index: 9999 !important;
}

.single-product-active .site-header .navbar__link,
.single-product-active .site-header .logo,
.single-product-active .site-header .lang-selector__btn {
  color: #111111 !important;
}

.single-product-active .site-header .icon-btn svg {
  stroke: #111111 !important;
}

.single-product-active .site-header .mobile-menu-toggle span,
.single-product-active .site-header .mobile-menu-toggle span::before,
.single-product-active .site-header .mobile-menu-toggle span::after {
  background: #111111 !important;
}

/* Gallery Stage (Clean Category-Card Border Type) */
.single-product__main-img-stage {
  position: relative;
  width: 100%;
  border: 1px solid #f0f0f0;
  background: #fbfbfb;
  border-radius: 4px;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
}

.single-product__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.single-product__main-img-stage:hover .single-product__main-img {
  transform: scale(1.05);
}

.single-qty-input::-webkit-outer-spin-button,
.single-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.single-qty-input {
  width: 48px;
  height: 100%;
  border: none;
  border-left: 1px solid #111111;
  border-right: 1px solid #111111;
  background: #ffffff;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}

.single-add-to-cart-btn {
  flex: 1;
  height: 52px;
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.single-add-to-cart-btn:hover {
  background: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* Clean Monochromatic Accordions (Zero Emojis, Pure Minimal Editorial) */
.single-accordions {
  margin-top: 28px;
  border-top: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
}

.single-acc-item {
  border-bottom: 1px solid #eeeeee;
}

.single-acc-summary {
  padding: 18px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #111111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.single-acc-summary::-webkit-details-marker {
  display: none;
}

.acc-icon {
  font-size: 16px;
  font-weight: 400;
  color: #888888;
  transition: transform 0.3s ease, color 0.2s ease;
}

.single-acc-item[open] .acc-icon {
  transform: rotate(45deg);
  color: #111111;
}

.single-acc-body {
  padding-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.75;
  color: #555555;
}

.spec-inline-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-inline-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555555;
  border-bottom: 1px dashed #f0f0f0;
  padding-bottom: 8px;
}

.spec-inline-row strong {
  font-family: 'Space Grotesk', sans-serif;
  color: #111111;
  font-weight: 600;
}

/* ==========================================
   FULLSCREEN PRODUCT IMAGE LIGHTBOX MODAL
   ========================================== */
.single-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.single-lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px 100px 40px;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  left: auto;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close-btn:hover {
  background: #ffffff;
  color: #111111;
  transform: scale(1.08);
}

.lightbox-close-btn:hover {
  background: #ffffff;
  color: #111111;
  transform: scale(1.08);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-prev-btn {
  left: 32px;
}

.lightbox-next-btn {
  right: 32px;
}

.lightbox-nav-btn:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-50%) scale(1.08);
}

.lightbox-image-stage {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-main-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.lightbox-bottom-bar {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.lightbox-thumbs-strip {
  display: flex;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
}

.lightbox-thumb-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.lightbox-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.lightbox-thumb-btn.active,
.lightbox-thumb-btn:hover {
  opacity: 1;
  border-color: #ffffff;
  transform: scale(1.1);
}

/* ============================================
   ABOUT US PAGE (HAKKIMIZDA) EDITORIAL STYLES
   ============================================ */
.about-page {
  background: var(--color-bg);
  min-height: 100vh;
}

.about-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
}

.about-hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.about-hero__tag {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  margin-bottom: var(--space-md);
}

.about-hero__title {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  line-height: 1.15;
  letter-spacing: var(--tracking-tight);
}

.about-hero__title strong {
  font-weight: var(--font-weight-bold);
}

/* Story Content */
.about-story {
  padding: var(--space-3xl) 0;
}

.about-story__intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about-story__p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--color-text-body);
  letter-spacing: -0.01em;
}

.about-story__p--lead {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-black);
}

.about-story__divider {
  width: 60px;
  height: 2px;
  background: var(--color-black);
  margin: var(--space-md) 0;
}

/* Stats Section */
.about-stats {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-2xl) 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.about-stat-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-lg);
  border-right: 1px solid var(--color-border);
}

.about-stat-card:last-child {
  border-right: none;
}

.about-stat-card__number {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: var(--tracking-tight);
}

.about-stat-card__label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Gallery Showcase */
.about-gallery {
  padding: var(--space-3xl) 0;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.about-gallery__item {
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.about-gallery__item:hover img {
  transform: scale(1.04);
}

/* CTA */
.about-cta {
  padding: var(--space-3xl) 0;
  background: #FAF5F2;
}

.about-cta__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-xl);
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 2.5rem;
  border-radius: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 45vh;
    min-height: 320px;
  }

  .about-hero__title {
    font-size: 2rem;
  }

  .about-story__p--lead {
    font-size: 1.15rem;
  }

  .about-story__p {
    font-size: 1rem;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-stat-card {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .about-stat-card:last-child {
    border-bottom: none;
  }

  .about-gallery__grid {
    grid-template-columns: 1fr;
  }

  .about-gallery__item {
    height: 320px;
  }
}

/* ============================================
   SORO LUXURY EDITORIAL CONTACT PAGE
   ============================================ */
.contact-hero {
  position: relative;
  padding: 120px 0 70px 0;
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: grayscale(100%);
}

.contact-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0.95) 100%);
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero__tag {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
}

.contact-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 1rem;
}

.contact-info-card {
  background: #0D0D0D;
  color: #FFFFFF;
  padding: 2.5rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-info-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-info-card__divider {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.contact-info-item {
  margin-bottom: 1.75rem;
}

.contact-info-item__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
}

.contact-info-item__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.contact-info-item__text a {
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s ease;
}

.contact-info-item__text a:hover {
  border-color: #FFFFFF;
}

.contact-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 1.4rem;
  background: #FFFFFF;
  color: #000000;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  margin-top: 2rem;
  transition: all 0.25s ease;
}

.contact-wa-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.contact-form-card {
  background: #FFFFFF;
  padding: 2.5rem 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-form-card__title {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.contact-form-card__subtitle {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.contact-alert {
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  border-radius: 0;
}

.contact-alert--error {
  background: #FFF2F2;
  border: 1px solid #FFC2C2;
  color: #C00000;
}

.contact-alert--success {
  background: #F0FFF4;
  border: 1px solid #B8F0C0;
  color: #007020;
}

.contact-form__group {
  margin-bottom: 1.4rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 0.4rem;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #FAFAFA;
  border: 1px solid var(--color-border);
  border-radius: 0 !important;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--color-text-primary);
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: #000000;
  box-shadow: 0 0 0 1px #000000;
}

.contact-form__submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1.1rem 1.8rem;
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 0 !important;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.contact-form__submit-btn:hover {
  background: #222222;
  transform: translateY(-2px);
}

.contact-form__submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.spinner-svg {
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
}

.spinner-svg .path {
  stroke: #ffffff;
  stroke-linecap: round;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .contact-hero {
    padding: 90px 0 40px 0;
  }

  .contact-hero__tag {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .contact-hero__title {
    font-size: 2rem;
    letter-spacing: 0.08em;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 0.5rem;
  }

  /* Make Info Card on Mobile borderless, frameless clean editorial text */
  .contact-info-card {
    background: transparent !important;
    color: #111111 !important;
    border: none !important;
    padding: 0.5rem 0 !important;
    box-shadow: none !important;
  }

  .contact-info-card__title {
    color: #111111;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
  }

  .contact-info-card__divider {
    background: rgba(0, 0, 0, 0.15);
    margin-bottom: 1.4rem;
  }

  .contact-info-item {
    margin-bottom: 1.25rem;
  }

  .contact-info-item__label {
    color: var(--color-text-secondary);
    font-size: 10px;
  }

  .contact-info-item__text {
    color: #111111;
    font-size: 0.9rem;
  }

  .contact-info-item__text a {
    color: #111111;
    border-color: rgba(0, 0, 0, 0.3);
  }

  .contact-wa-btn {
    background: #000000;
    color: #FFFFFF;
    margin-top: 1.4rem;
    padding: 0.9rem 1.2rem;
    font-size: 0.78rem;
  }

  .contact-form-card {
    padding: 1.75rem 1.25rem;
    border: 1px solid var(--color-border);
    box-shadow: none;
  }

  .contact-form-card__title {
    font-size: 1.35rem;
  }

  .contact-form-card__subtitle {
    font-size: 0.82rem;
    margin-bottom: 1.4rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-form__input,
  .contact-form__textarea {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .contact-form__submit-btn {
    padding: 1rem 1.4rem;
    font-size: 0.82rem;
  }
}


/* ============================================================
   SORO LUXURY EDITORIAL BLOG PAGE
   ============================================================ */

/* ── Blog Hero ─────────────────────────────────────────────── */
.blog-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0D0D0D;
}

.blog-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: grayscale(80%);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.blog-hero:hover .blog-hero__bg {
  transform: scale(1);
}

.blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0D0D0D 0%, rgba(13,13,13,0.4) 60%, transparent 100%);
}

/* Subtle decorative vertical lines */
.blog-hero__lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
}

.blog-hero__lines span {
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.04);
}

.blog-hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
}

.blog-hero__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.blog-hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 0.6rem 0;
  line-height: 1;
}

.blog-hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  letter-spacing: 0.05em;
}

/* Scroll hint animated chevron */
.blog-hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  opacity: 0.35;
}

.blog-hero__scroll-hint span {
  display: block;
  width: 14px;
  height: 1px;
  background: #FFFFFF;
  animation: scrollHint 1.5s ease-in-out infinite alternate;
}

.blog-hero__scroll-hint span:nth-child(2) {
  animation-delay: 0.15s;
  width: 8px;
}

@keyframes scrollHint {
  from { opacity: 0.3; transform: translateY(0); }
  to   { opacity: 1;   transform: translateY(4px); }
}

/* ── Category Filter Bar ────────────────────────────────────── */
.blog-cats-bar {
  background: #0D0D0D;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.blog-cats {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.blog-cats::-webkit-scrollbar { display: none; }

.blog-cat-pill {
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.blog-cat-pill:hover {
  color: #FFFFFF;
}

.blog-cat-pill.active {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}

/* ── Blog Posts Grid ────────────────────────────────────────── */
.blog-posts-section {
  background: #F7F7F5;
}

.blog-empty {
  padding: 4rem 0;
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Featured large card */
.blog-card--featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: #FFFFFF;
  margin-bottom: 2.5rem;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  display: block;
}

.blog-card--featured .blog-card__img-wrap {
  height: 480px;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.blog-card__img-wrap:hover .blog-card__img {
  transform: scale(1.06);
}

.blog-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, transparent 100%);
  transition: opacity 0.3s ease;
}

/* Category badges */
.blog-card__cat-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
}

.blog-card__cat-badge--design   { background: #1A1A1A; color: #FFFFFF; }
.blog-card__cat-badge--craft    { background: #6B4F3A; color: #FFFFFF; }
.blog-card__cat-badge--living   { background: #2E4A3A; color: #FFFFFF; }
.blog-card__cat-badge--material { background: #3A3A5C; color: #FFFFFF; }

.blog-card__featured-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid #000000;
  color: #000000;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.blog-card__body {
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card__title {
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 1rem 0;
}

.blog-card__title a {
  color: #111111;
  text-decoration: none;
  transition: opacity 0.2s;
}

.blog-card__title a:hover { opacity: 0.65; }

.blog-card__title--sm { font-size: 1.05rem; margin: 0.5rem 0 0.7rem 0; }

.blog-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555555;
  margin: 0 0 1.5rem 0;
}

.blog-card__excerpt--sm {
  font-size: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.blog-card__date,
.blog-card__read {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #999999;
  text-transform: uppercase;
}

.blog-card__dot { color: #CCCCCC; }

.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  margin-left: auto;
  transition: gap 0.2s ease;
}

.blog-card__cta:hover { gap: 9px; }

/* Overlay category badge on grid cards */
.blog-card__cat-badge--overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

/* Grid cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card--grid {
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.blog-card--grid:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.blog-card--grid .blog-card__img-wrap {
  height: 220px;
}

.blog-card--grid .blog-card__body {
  padding: 1.25rem 1.25rem 1rem;
}

/* ============================================================
   SORO BLOG SINGLE POST
   ============================================================ */

.bsingle-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.bsingle-hero__img-wrap {
  position: absolute;
  inset: 0;
}

.bsingle-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bsingle-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
}

.bsingle-hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
  color: #FFFFFF;
}

.bsingle-back {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}

.bsingle-back:hover { color: #FFFFFF; }

.bsingle-hero__cat-wrap { margin-bottom: 0.9rem; }

.bsingle-hero__title {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 1.2rem 0;
  max-width: 800px;
}

.bsingle-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bsingle-date,
.bsingle-min {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.bsingle-dot { color: rgba(255,255,255,0.3); }

/* Content Container: sidebar + article */
.bsingle-container {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  align-items: start;
}

.bsingle-sidebar {
  position: sticky;
  top: 5rem;
}

.bsingle-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.bsingle-share__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999999;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 0.5rem;
}

.bsingle-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #DDDDDD;
  color: #555555;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 0;
}

.bsingle-share__btn:hover {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
}

/* Article body */
.bsingle-body {
  max-width: 720px;
}

.bsingle-article {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333333;
}

.bsingle-article h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.85rem 0;
  color: #111111;
}

.bsingle-article p {
  margin: 0 0 1.4rem 0;
}

.bsingle-article p:first-child {
  font-size: 1.15rem;
  color: #222222;
  font-weight: 400;
}

/* Tags */
.bsingle-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #EEEEEE;
}

.bsingle-tag {
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid #CCCCCC;
  color: #555555;
}

/* Related Posts */
/* Related Posts */
.bsingle-related {
  background: #F7F7F5;
  border-top: 1px solid #EEEEEE;
  padding: 4rem 0;
}

.bsingle-related__title {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

.bsingle-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.bsingle-rel-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bsingle-rel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.bsingle-rel-card__img-wrap {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.bsingle-rel-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bsingle-rel-card:hover .bsingle-rel-card__img {
  transform: scale(1.06);
}

.bsingle-rel-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-grow: 1;
}

.bsingle-rel-card__body .blog-card__cat-badge {
  display: inline-block !important;
  width: auto !important;
  max-width: max-content !important;
  margin-bottom: 0.2rem;
}

.bsingle-rel-card__title {
  font-size: 1.15rem;
  font-weight: 400;
  color: #111111;
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s ease;
}

.bsingle-rel-card:hover .bsingle-rel-card__title {
  color: rgba(0, 0, 0, 0.6);
}

.bsingle-rel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #F2F2F2;
}

.bsingle-rel-card__date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #999999;
  text-transform: uppercase;
}

.bsingle-rel-card__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000000;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.bsingle-rel-card:hover .bsingle-rel-card__cta {
  gap: 8px;
}

/* ── Blog Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero {
    height: 50vh;
    min-height: 320px;
  }

  .blog-hero__title {
    font-size: 2.4rem;
  }

  .blog-card--featured {
    grid-template-columns: 1fr;
  }

  .blog-card--featured .blog-card__img-wrap {
    height: 260px;
  }

  .blog-card--featured .blog-card__body {
    padding: 1.5rem 1.25rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .blog-card--grid .blog-card__img-wrap { height: 200px; }

  /* Single post mobile */
  .bsingle-hero {
    height: 55vh;
    min-height: 380px;
  }

  .bsingle-hero__title {
    font-size: 1.5rem;
  }

  .bsingle-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bsingle-sidebar {
    position: static;
  }

  .bsingle-share {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .bsingle-share__label {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 0;
    margin-right: 0.25rem;
  }

  .bsingle-related__grid {
    grid-template-columns: 1fr;
  }

  .bsingle-rel-card {
    grid-template-columns: 100px 1fr;
  }

  .bsingle-rel-card__img-wrap {
    width: 100px;
    height: 80px;
  }
}

/* ============================================
   ATELIER / OFİSTEN VIDEO SECTION (Outside Title + Clean Video + Square Sound Btn)
   ============================================ */
.atelier-video-wrapper {
  max-width: 1320px;
  width: calc(100% - 48px);
  margin: var(--space-4xl) auto;
}

.atelier-section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.atelier-section-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text, #111111);
  margin: 0;
}

.atelier-video-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 440px;
  max-height: 650px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  background: #000000;
}

.atelier-video-banner__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Minimal Square Sound Button */
.atelier-video-banner__sound-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}

.atelier-video-banner__sound-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.atelier-video-banner__sound-btn .icon-unmuted {
  display: none;
}

.atelier-video-banner__sound-btn.unmuted .icon-muted {
  display: none;
}

.atelier-video-banner__sound-btn.unmuted .icon-unmuted {
  display: block;
}

@media (max-width: 768px) {
  .atelier-video-wrapper {
    width: calc(100% - 32px);
    margin: var(--space-2xl) auto;
  }
  .atelier-section-title {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
  }
  .atelier-video-banner {
    height: 45vh;
    min-height: 320px;
    border-radius: 10px;
  }
  .atelier-video-banner__sound-btn {
    right: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
  }
}

/* ============================================
   FULLSCREEN LUXURY SEARCH OVERLAY (Tam Ekran Sade & Karemsi)
   ============================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background: #ffffff;
  color: #111111;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  overflow-y: auto;
  box-sizing: border-box;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Top Navigation Bar inside Fullscreen Search */
.search-overlay__top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #f0f0f0;
}

.search-overlay__logo {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #111111;
}

.search-overlay__close {
  background: transparent;
  border: none;
  color: #111111;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.search-overlay__close:hover {
  transform: rotate(90deg) scale(1.1);
}

/* Center Container */
.search-overlay__container {
  max-width: 1100px;
  width: 90%;
  margin: 50px auto 80px;
  box-sizing: border-box;
}

/* Giant Minimal Input Wrapper */
.search-overlay__input-wrapper {
  position: relative;
  width: 100%;
  border-bottom: 2px solid #111111;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.search-overlay__input {
  width: 100%;
  height: 64px;
  border: none;
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #111111;
  outline: none;
  text-transform: uppercase;
  padding-right: 48px;
}

.search-overlay__input::placeholder {
  color: #aaaaaa;
  font-weight: 300;
}

.search-overlay__submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #111111;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.search-overlay__submit:hover {
  transform: translateY(-50%) scale(1.15);
}

/* Popular Category Chips */
.search-popular-tags {
  margin-top: 20px;
}

.search-popular-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 16px;
}

.search-popular-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pop-chip {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  color: #111111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  background: #fafafa;
}

.pop-chip:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Live Search Product Card Grid (4-Column Layout) */
.search-results {
  position: static !important;
  margin-top: 30px !important;
  width: 100% !important;
  max-height: none !important;
  overflow: visible !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  display: none;
}

.search-results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.search-card {
  display: block;
  text-decoration: none;
  color: #111111;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  padding: 12px;
  transition: all 0.25s ease;
  background: #ffffff;
}

.search-card:hover {
  border-color: #111111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.search-card__img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 2px;
  background: #f8f8f8;
  margin-bottom: 12px;
}

.search-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.search-card:hover .search-card__img-wrap img {
  transform: scale(1.06);
}

.search-card__brand {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 4px;
}

.search-card__title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #111111;
  line-height: 1.3;
}

.search-results__empty {
  text-align: center;
  padding: 60px 0;
  font-size: 15px;
  color: #666666;
}

.search-card__price {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  margin-top: 6px;
}

.search-results__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 0;
  color: #666;
  font-size: 14px;
}

.search-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  border-top-color: #111;
  border-radius: 50%;
  animation: searchSpin 0.7s linear infinite;
}

@keyframes searchSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
  .search-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .search-overlay__top-bar {
    padding: 20px 24px;
  }
  .search-overlay__container {
    margin: 30px auto;
  }
  .search-results__grid {
    grid-template-columns: 1fr;
  }
}

