/* ══════════════════════════════════════════════════════════
   BOUTIQUE.CSS — YëreDesign Shop
   Style distinct : Light · Modern · Clean · Editorial
   ══════════════════════════════════════════════════════════ */

/* ── PAGE BASE ───────────────────────────────────────────── */
body.page-boutique {
  background: #fff;
  color: #000;
  overflow-x: hidden;
  font-family: var(--font-body);
}
body.page-boutique::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3; pointer-events: none; z-index: 100;
}

/* ── PILL NAVBAR — LIGHT/TRANSPARENT ──────────────────────── */
body.page-boutique .acc-nav-inner {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.page-boutique .acc-navbar.scrolled .acc-nav-inner {
  background: rgba(255,255,255,1);
  border-color: rgba(0,0,0,0.12);
  height: 58px;
  margin-top: 8px;
}

/* Logo & Links — Adapt color based on scroll */
body.page-boutique .acc-navbar:not(.scrolled) .acc-nav-logo { color: #000; }
body.page-boutique .acc-navbar.scrolled .acc-nav-logo      { color: #000; }

body.page-boutique .acc-navbar:not(.scrolled) .acc-nav-btn { color: rgba(0,0,0,0.6); }
body.page-boutique .acc-navbar.scrolled .acc-nav-btn      { color: rgba(0,0,0,0.7); }
body.page-boutique .acc-nav-btn:hover { color: var(--lux-gold) !important; }

/* Buttons Action — Adapt color */
body.page-boutique .acc-navbar:not(.scrolled) .acc-cart-btn,
body.page-boutique .acc-navbar:not(.scrolled) .acc-signin-btn,
body.page-boutique .acc-navbar:not(.scrolled) .acc-hamburger,
body.page-boutique .acc-navbar:not(.scrolled) .acc-mode-switcher-btn {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: #000;
}
body.page-boutique .acc-navbar.scrolled .acc-cart-btn,
body.page-boutique .acc-navbar.scrolled .acc-signin-btn,
body.page-boutique .acc-navbar.scrolled .acc-hamburger,
body.page-boutique .acc-navbar.scrolled .acc-mode-switcher-btn {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: #000;
}
body.page-boutique .acc-cart-btn:hover,
body.page-boutique .acc-signin-btn:hover,
body.page-boutique .acc-hamburger:hover,
body.page-boutique .acc-mode-switcher-btn:hover {
  background: var(--lux-gold) !important;
  color: #fff !important;
  border-color: var(--lux-gold) !important;
}
body.page-boutique .acc-cart-badge {
  background: #0F0F0F; color: #FAFAF8;
  border-color: #FAFAF8;
}

body.page-boutique .acc-mobile-menu {
  background: rgba(250,250,248,0.97);
  border-color: rgba(0,0,0,0.08);
}
body.page-boutique .acc-mobile-section-title { color: rgba(0,0,0,0.35); }
body.page-boutique .acc-mobile-item { color: rgba(15,15,15,0.7); }
body.page-boutique .acc-mobile-item:hover { color: #0F0F0F; background: rgba(0,0,0,0.05); }

/* ── BOUTIQUE HERO ───────────────────────────────────────── */
.boutique-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: #F2EDE6;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Diagonal bottom cut into content area */
.boutique-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100px;
  background: #FAFAF8;
  clip-path: polygon(0 100%, 100% 30%, 100% 100%);
  z-index: 10;
  pointer-events: none;
}

/* Background image */
.boutique-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?q=80&w=2000') center/cover no-repeat;
  filter: grayscale(20%) brightness(0.88);
  z-index: 0;
  transition: transform 8s ease;
}
.boutique-hero:hover::before {
  transform: scale(1.02);
}

/* Light overlay */
.boutique-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(242,237,230,0.95) 0%,
    rgba(242,237,230,0.75) 50%,
    rgba(242,237,230,0.3) 100%
  );
}

/* Hero content */
.boutique-hero-content {
  position: relative; z-index: 5;
  padding: 0 72px;
  max-width: 1300px; width: 100%; margin: 0 auto;
}
.boutique-hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(15,15,15,0.45);
  margin-bottom: 24px;
}
.boutique-hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: rgba(15,15,15,0.3);
}
.boutique-hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 400;
  color: #000;
  line-height: 0.8;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.boutique-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #888;
}
.boutique-hero-desc {
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  color: rgba(15,15,15,0.55);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 44px;
  font-weight: 300;
}
.boutique-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-boutique-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 4px;
  background: #0F0F0F; color: #FAFAF8;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.3s ease;
}
.btn-boutique-primary:hover {
  background: #2A2A2A; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-boutique-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 4px;
  background: transparent; color: #0F0F0F;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(15,15,15,0.25); cursor: pointer;
  text-decoration: none; transition: all 0.3s ease;
}
.btn-boutique-secondary:hover {
  border-color: rgba(15,15,15,0.6);
  transform: translateY(-2px);
}

/* Stats bar */
.boutique-hero-stats {
  position: absolute; bottom: 140px; right: 72px; z-index: 5;
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-end;
}
.boutique-stat {
  text-align: right;
}
.boutique-stat-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 400;
  color: #000; line-height: 1;
  display: block;
}
.boutique-stat-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.boutique-section {
  padding: 80px 48px;
  max-width: 1400px; margin: 0 auto;
}
.boutique-section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}
.boutique-section-titles { display: flex; flex-direction: column; }
.boutique-section-eyebrow {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(15,15,15,0.4);
  display: block; margin-bottom: 8px;
}
.boutique-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400; color: #000;
  letter-spacing: -0.01em; line-height: 0.95;
  text-transform: uppercase;
}
.boutique-section-count {
  font-size: 0.78rem; color: rgba(15,15,15,0.4);
  font-weight: 500; white-space: nowrap; padding-bottom: 6px;
}

/* ── FILTERS ─────────────────────────────────────────────── */
.boutique-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.boutique-filter-btn {
  padding: 8px 20px; border-radius: 50px;
  border: 1px solid rgba(15,15,15,0.15);
  background: transparent; color: rgba(15,15,15,0.6);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.boutique-filter-btn:hover {
  border-color: rgba(15,15,15,0.4); color: #0F0F0F;
}
.boutique-filter-btn.active {
  background: #0F0F0F; color: #FAFAF8; border-color: #0F0F0F;
}

/* ── PRODUCTS GRID ───────────────────────────────────────── */
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

/* Product card */
.boutique-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.1);
  position: relative;
}
.boutique-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  border-color: rgba(0,0,0,0.15);
}

/* Product image */
.boutique-card-img {
  position: relative;
  width: 100%;
  padding-top: 125%; /* 4:5 ratio */
  background: #F0EDE8;
  overflow: hidden;
}
.boutique-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.boutique-card:hover .boutique-card-img img {
  transform: scale(1.1);
}
.boutique-card-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: #F0EDE8;
  color: rgba(15,15,15,0.2);
  font-size: 3rem;
}

/* Badges on card */
.boutique-card-badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.boutique-badge {
  display: inline-block; padding: 6px 14px;
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: var(--font-display);
}
.boutique-badge-new { background: #000; color: #fff; border-color: #000; }
.boutique-badge-sold { background: #eee; color: #999; border-color: #ddd; }
.boutique-badge-promo { background: #C9A96E; color: #000; border-color: #C9A96E; }

/* Add to cart quick button */
.boutique-card-quick {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #FAFAF8; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.boutique-card:hover .boutique-card-quick {
  transform: translateY(0);
}
.boutique-card-quick:hover { background: rgba(15,15,15,0.95); }
.boutique-card-quick.sold-out {
  background: rgba(100,100,100,0.6); cursor: default;
}

/* Card body */
.boutique-card-body {
  padding: 16px 18px 20px;
}
.boutique-card-category {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: #888; margin-bottom: 8px; display: block;
  font-family: var(--font-display);
}
.boutique-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400; color: #000;
  line-height: 1.1; margin-bottom: 8px;
  text-transform: uppercase;
}
.boutique-card-desc {
  font-size: 0.75rem; color: rgba(15,15,15,0.45); line-height: 1.55;
  margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.boutique-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.boutique-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400; color: #000; line-height: 1;
}
.boutique-card-price-old {
  font-size: 0.85rem; color: rgba(15,15,15,0.3);
  text-decoration: line-through; margin-right: 6px;
  font-family: 'Rubik', sans-serif; font-weight: 400;
}
.boutique-card-stock {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(15,15,15,0.35); text-transform: uppercase;
}
.boutique-card-stock.low { color: #B45309; }
.boutique-card-stock.out { color: #9CA3AF; }

/* Cart button on card (alternative) */
.boutique-card-cart-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(15,15,15,0.15); border-radius: 50%;
  background: transparent; color: rgba(15,15,15,0.7);
  cursor: pointer; transition: all 0.2s ease;
  font-size: 0.85rem; flex-shrink: 0;
}
.boutique-card-cart-btn:hover {
  background: #0F0F0F; color: #FAFAF8; border-color: #0F0F0F;
}
.boutique-card-cart-btn:disabled {
  opacity: 0.3; cursor: not-allowed;
}

/* ── EMPTY STATE ─────────────────────────────────────────── */
.boutique-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: rgba(15,15,15,0.3);
}
.boutique-empty i {
  font-size: 3rem; display: block; margin-bottom: 16px; opacity: 0.3;
}
.boutique-empty p { font-size: 0.95rem; margin-bottom: 8px; }
.boutique-empty span { font-size: 0.82rem; }

/* Loading state */
.boutique-loading {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 80px 24px;
  color: rgba(15,15,15,0.35); font-size: 0.9rem;
}
.boutique-loading i { font-size: 1.4rem; color: rgba(15,15,15,0.2); }

/* Skeleton cards */
.boutique-skeleton {
  background: #FFFFFF; border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.05); overflow: hidden;
}
.boutique-skeleton-img {
  width: 100%; padding-top: 125%;
  background: linear-gradient(90deg, #F0EDE8 25%, #E8E4DF 50%, #F0EDE8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.boutique-skeleton-body { padding: 16px 18px; }
.boutique-skeleton-line {
  height: 12px; border-radius: 4px; margin-bottom: 8px;
  background: linear-gradient(90deg, #F0EDE8 25%, #E8E4DF 50%, #F0EDE8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.boutique-skeleton-line.short { width: 60%; }
.boutique-skeleton-line.shorter { width: 40%; }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── BOUTIQUE CART (light variant) ───────────────────────── */
body.page-boutique .acc-cart-badge {
  background: #0F0F0F; color: #FAFAF8;
}

/* ── BOUTIQUE FOOTER ─────────────────────────────────────── */
.boutique-footer {
  background: #0F0F0F;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  margin-top: 0;
}
.boutique-footer-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.boutique-footer-brand { display: flex; flex-direction: column; gap: 12px; }
.boutique-footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 400;
  color: #fff; letter-spacing: 0.05rem; text-transform: uppercase;
}
.boutique-footer-tagline {
  opacity: 0.5; font-size: 0.75rem; letter-spacing: 0.05rem;
  font-family: var(--font-display); text-transform: uppercase;
}
.boutique-footer-col { display: flex; flex-direction: column; gap: 10px; }
.boutique-footer-col-title {
  font-size: 0.6rem; font-weight: 700;
  color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.2rem;
  margin-bottom: 14px;
}
.boutique-footer-link {
  display: block; color: rgba(255,255,255,0.4);
  text-decoration: none; margin-bottom: 10px; font-size: 0.82rem;
  transition: color 0.2s ease;
}
.boutique-footer-link:hover { color: rgba(255,255,255,0.85); }
.boutique-footer-bottom {
  max-width: 1300px; margin: 36px auto 0; padding: 24px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center; font-size: 0.68rem;
  color: rgba(255,255,255,0.18); letter-spacing: 0.08rem;
}

/* ── TOAST for boutique (light) ──────────────────────────── */
body.page-boutique .acc-toast {
  border-left-color: #0F0F0F;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .boutique-hero-content { padding: 0 48px; }
  .boutique-hero-stats { right: 48px; bottom: 160px; }
  .boutique-section { padding: 64px 32px; }
}

@media (max-width: 768px) {
  .boutique-hero { min-height: 100svh; }
  .boutique-hero-content { padding: 0 28px; }
  .boutique-hero-title { font-size: 3rem; }
  .boutique-hero-stats { display: none; }
  .boutique-hero::before { filter: grayscale(30%) brightness(0.7); }
  .boutique-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(242,237,230,0.92) 0%,
      rgba(242,237,230,0.82) 100%
    );
  }
  .boutique-section { padding: 52px 20px; }
  .boutique-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .boutique-grid { gap: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   ARTISTIC FOOTER — Boutique (Light) 
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   ARTISTIC FOOTER — Boutique (Light) 
   ═══════════════════════════════════════════════════════════ */
body.page-boutique .acc-footer {
  background: #FAFAF8; color: #000;
  padding: 80px 24px 60px; position: relative; overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex; gap: 60px;
}
body.page-boutique .footer-vertical-sidebar {
  flex: 0 0 auto;
  border-right: 1px solid rgba(0,0,0,0.05);
  padding-right: 40px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
body.page-boutique .vertical-brand-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  user-select: none;
  pointer-events: none;
}

body.page-boutique .acc-footer-inner { flex: 1; max-width: 1200px; }

body.page-boutique .footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
  margin-bottom: 40px;
  flex: 1;
}
body.page-boutique .footer-col-title {
  font-family: var(--font-display); font-size: 0.9rem; color: #000;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; display: block;
}
body.page-boutique .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
body.page-boutique .footer-links a, body.page-boutique .footer-links address {
  color: rgba(0,0,0,0.5); text-decoration: none; font-size: 0.92rem;
  transition: all 0.3s ease; font-style: normal; line-height: 1.5;
}
body.page-boutique .footer-links a:hover { color: #C9A96E; transform: translateX(5px); }

body.page-boutique .footer-socials { display: flex; gap: 12px; margin-top: 12px; }
body.page-boutique .footer-socials a {
  width: 40px; height: 40px; border: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center; border-radius: 4px;
  color: #000; transition: all 0.3s ease; font-size: 1.1rem;
}
body.page-boutique .footer-socials a:hover { border-color: #C9A96E; color: #C9A96E; background: rgba(201,169,110,0.05); }

body.page-boutique .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.75rem; color: rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  body.page-boutique .acc-footer { flex-direction: column; gap: 40px; padding: 60px 20px; }
  body.page-boutique .footer-vertical-sidebar { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 0 0 40px 0; }
  body.page-boutique .vertical-brand-text { writing-mode: horizontal-tb; transform: none; font-size: 3rem; }
  body.page-boutique .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .boutique-hero-content { padding: 0 20px; }
  .boutique-hero-title { font-size: 2.4rem; }
  .boutique-hero-desc { font-size: 0.85rem; margin-bottom: 32px; }
  .boutique-hero-actions { flex-direction: column; gap: 10px; }
  .btn-boutique-primary, .btn-boutique-secondary { width: 100%; justify-content: center; }
  .boutique-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .boutique-card-body { padding: 12px 14px 16px; }
  .boutique-card-name { font-size: 0.95rem; }
  .boutique-card-price { font-size: 1.1rem; }
  .boutique-footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
  .boutique-footer-bottom { padding: 20px 20px 0; padding-bottom: max(16px, env(safe-area-inset-bottom)); }
  .boutique-filters { gap: 6px; }
  .boutique-filter-btn { padding: 6px 14px; font-size: 0.7rem; }
}

@media (max-width: 360px) {
  .boutique-grid { grid-template-columns: 1fr; }
  .boutique-hero-title { font-size: 2rem; }
}
