/*
Theme Name: FEDA Shop — Luxury Boutique
Theme URI: https://www.instagram.com/fedashop
Description: Official premium luxury theme for FEDA Shop boutique. Requires WooCommerce.
Author: FEDA Shop
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
WC requires at least: 8.0
WC tested up to: 9.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fedashop
Tags: woocommerce, luxury, boutique, dark, fashion, custom-menu, featured-images
*/

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: hsl(0, 0%, 4%);
  color: hsl(170, 10%, 85%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul { list-style: none; }

/* ── Design tokens ── */
:root {
  --jade: hsl(170, 42%, 48%);
  --jade-light: hsl(170, 55%, 62%);
  --jade-dark: hsl(170, 35%, 32%);
  --jade-dim: hsl(170, 30%, 28%);
  --bg: hsl(0, 0%, 4%);
  --bg-2: hsl(0, 0%, 6%);
  --bg-3: hsl(0, 0%, 8%);
  --border: hsl(170, 10%, 12%);
  --border-2: hsl(170, 10%, 18%);
  --text: hsl(170, 10%, 85%);
  --text-dim: hsl(170, 8%, 52%);
  --text-muted: hsl(170, 6%, 32%);
  --serif: 'Playfair Display', Georgia, serif;
  --serif-2: 'Cormorant Garamond', Georgia, serif;
}

/* ── Jade gradient text ── */
.jade-text {
  background: linear-gradient(135deg, hsl(168, 55%, 72%) 0%, hsl(170, 45%, 52%) 50%, hsl(172, 38%, 38%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--jade-dim); border-radius: 3px; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.site-header.scrolled {
  background: hsl(0, 0%, 4%, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo .wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.28em;
  border: 1px solid var(--jade-dim);
  padding: 5px 14px;
}
.site-logo .arabic {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.primary-nav ul {
  display: flex;
  gap: 32px;
}
.primary-nav a {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.primary-nav a:hover { color: var(--jade-light); }

.nav-social { display: flex; align-items: center; gap: 16px; }
.nav-social a { color: var(--text-muted); transition: color 0.2s; }
.nav-social a:hover { color: var(--jade-light); }

.nav-cart-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-cart-count:hover { color: var(--jade); }
.cart-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--jade);
  color: var(--bg);
  font-size: 9px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Mobile menu ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.menu-toggle span {
  height: 1px;
  background: var(--jade);
  display: block;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: hsl(0, 0%, 4%, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--text);
}
.mobile-menu .close-menu {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .site-header { padding: 14px 20px; }
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease-out;
}
.hero-slide.active img { transform: scale(1.04); }

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, hsl(0,0%,4%) 0%, hsl(0,0%,4%,0.55) 35%, hsl(0,0%,4%,0.3) 100%);
}
.hero-overlay-top {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, hsl(0,0%,4%,0.55) 0%, transparent 30%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 180px hsl(170,20%,3%,0.6);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 24px;
}

.hero-badge {
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: hsl(170, 50%, 60%);
  margin-bottom: 40px;
  display: block;
}

.hero-wordmark {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}
.hero-wordmark::before {
  content: '';
  position: absolute;
  inset: -14px -18px;
  border: 1px solid hsl(170, 35%, 28%);
  pointer-events: none;
}
.hero-wordmark h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.28em;
  line-height: 1;
  padding: 20px 48px;
  background: linear-gradient(135deg, hsl(168,55%,72%) 0%, hsl(170,45%,52%) 50%, hsl(172,38%,38%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--serif-2);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.05em;
  color: hsl(170, 18%, 68%);
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 480px) { .hero-ctas { flex-direction: row; justify-content: center; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--jade-light);
  color: var(--bg);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.3s;
  cursor: pointer;
}
.btn-primary:hover { background: hsl(170, 60%, 68%); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border: 1px solid var(--jade-dim);
  color: hsl(170, 60%, 52%);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: hsl(170, 60%, 50%); }

.hero-product-label {
  position: absolute;
  bottom: 110px;
  right: 32px;
  z-index: 20;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
@media (max-width: 768px) { .hero-product-label { display: none; } }

.hero-collection-badge {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--jade-dim);
  background: hsl(0,0%,0%,0.6);
  color: hsl(170, 38%, 42%);
}
.hero-product-brand {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: hsl(170, 10%, 82%);
}
.hero-product-price {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  background: linear-gradient(135deg, hsl(168,55%,72%) 0%, hsl(170,45%,52%) 50%, hsl(172,38%,38%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  height: 2px;
  border-radius: 2px;
  background: hsl(170, 12%, 22%);
  transition: all 0.5s;
  cursor: pointer;
  border: none;
  padding: 0;
  width: 6px;
}
.hero-dot.active {
  width: 28px;
  background: var(--jade);
}

/* ═══════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════ */
.section-eyebrow {
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 40px;
}
.section-divider::before, .section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(170, 35%, 35%), transparent);
}

/* ═══════════════════════════════════════
   FEATURED COLLECTION (3-CARD)
═══════════════════════════════════════ */
.featured-section {
  padding: 80px 24px;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  max-width: 1100px;
  margin: 0 auto;
}
.featured-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: var(--bg-3);
}
.featured-card:nth-child(2) { aspect-ratio: 3/4; }
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.featured-card:hover img { transform: scale(1.04); }
.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(0,0%,0%,0.8), hsl(0,0%,0%,0.1), transparent);
}
.featured-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
.featured-card-brand {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: hsl(170, 65%, 55%);
  margin-bottom: 6px;
}
.featured-card-price {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
}
.featured-card-action {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: hsl(170, 30%, 45%);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-card:first-child { grid-column: span 2; aspect-ratio: 16/9; }
}

/* ═══════════════════════════════════════
   PRODUCT GRID (WooCommerce)
═══════════════════════════════════════ */
.shop-section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.brand-filter::-webkit-scrollbar { display: none; }
.brand-btn {
  flex-shrink: 0;
  padding: 6px 16px;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.brand-btn.active,
.brand-btn:hover {
  border-color: var(--jade);
  color: var(--jade);
}

/* WooCommerce product grid override */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 2px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 640px) {
  ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

ul.products li.product,
.product-card {
  background: var(--bg-3);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
  border: 1px solid transparent;
  position: relative;
}
ul.products li.product:hover,
.product-card:hover { border-color: var(--border); }

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }

.product-card-quick-view {
  position: absolute;
  inset: 0;
  background: hsl(0,0%,0%,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-card-quick-view { opacity: 1; }
.product-card-quick-view span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: white;
  border: 1px solid hsl(170,35%,55%);
  padding: 8px 16px;
}

.product-card-info { padding: 12px; }
.product-card-brand {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(170, 8%, 45%);
  margin-bottom: 4px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card-price {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
}

/* WooCommerce price override */
ul.products li.product .price,
.woocommerce .price { color: inherit; font-size: 13px; }
.woocommerce ul.products li.product .button,
.woocommerce button.button { display: none !important; }
.woocommerce .star-rating, .woocommerce .woocommerce-loop-product__title { display: none !important; }

/* ═══════════════════════════════════════
   BRANDS SECTION
═══════════════════════════════════════ */
.brands-section {
  padding: 60px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-marquee {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-name {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: hsl(170, 12%, 38%);
  transition: color 0.3s;
  cursor: pointer;
}
.brand-name:hover { color: hsl(170, 38%, 62%); }

/* ═══════════════════════════════════════
   MEET FEDA SECTION
═══════════════════════════════════════ */
.meet-section {
  padding: 80px 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.avatar-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--jade-dim);
  margin: 0 auto 24px;
}
.meet-quote {
  font-family: var(--serif-2);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: hsl(170, 12%, 60%);
  margin-bottom: 16px;
}
.meet-attribution {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--jade);
}

/* ═══════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ */
.contact-section {
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.contact-section .section-title { margin-bottom: 12px; }
.contact-body {
  font-family: var(--serif-2);
  font-size: 17px;
  font-style: italic;
  color: hsl(170, 12%, 55%);
  margin-bottom: 48px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3em;
  border: 1px solid var(--jade-dim);
  padding: 4px 14px;
}
.footer-copy {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
}
.footer-ig {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: hsl(170, 35%, 38%);
  transition: color 0.2s;
}
.footer-ig:hover { color: hsl(170, 60%, 50%); }

/* ═══════════════════════════════════════
   PRODUCT MODAL (Quick View)
═══════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: hsl(0,0%,0%,0.8);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.modal-backdrop.open { display: flex; }
@media (min-width: 768px) { .modal-backdrop { align-items: center; padding: 32px; } }

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 780px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-top: none;
  max-height: 90vh;
  overflow: hidden;
  border-top: 1px solid var(--jade);
}
.modal-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--jade), transparent);
}
@media (min-width: 768px) { .modal-panel { border: 1px solid var(--border); } }

.modal-inner {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}
@media (min-width: 768px) { .modal-inner { flex-direction: row; } }

.modal-image {
  position: relative;
  flex-shrink: 0;
  background: var(--bg-3);
  min-height: 240px;
}
@media (min-width: 768px) { .modal-image { width: 52%; max-height: 480px; } }
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 340px;
}
@media (min-width: 768px) { .modal-image img { max-height: 480px; } }
.modal-likes {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: hsl(0,0%,0%,0.7);
  border: 1px solid var(--border);
  padding: 4px 10px;
  font-size: 9px;
  color: hsl(170, 8%, 72%);
}

.modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow-y: auto;
}
.modal-eyebrow {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 12px;
}
.modal-brand {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 30px);
  color: hsl(170, 12%, 88%);
  line-height: 1.2;
  margin-bottom: 6px;
}
.modal-type {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: hsl(170, 8%, 55%);
  margin-bottom: 16px;
  text-transform: capitalize;
}
.modal-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.modal-price {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}
.modal-currency { font-size: 13px; color: hsl(170, 10%, 45%); }

.modal-divider { height: 1px; background: var(--border); margin-bottom: 20px; }

.modal-details { margin-bottom: 24px; }
.modal-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.modal-detail-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(170, 6%, 38%);
}
.modal-detail-value { font-size: 11px; color: hsl(170, 8%, 62%); }

.modal-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--jade);
  color: var(--bg);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-bottom: 8px;
  cursor: pointer;
}
.modal-cta-primary:hover { background: var(--jade-light); color: var(--bg); }

.modal-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  color: hsl(170, 25%, 52%);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
}
.modal-cta-secondary:hover { border-color: var(--jade-dim); color: hsl(170, 38%, 58%); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 16px;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
}
.modal-close:hover { border-color: var(--jade-dim); color: white; }

/* ═══════════════════════════════════════
   FLOATING SOCIAL BUTTONS
═══════════════════════════════════════ */
.floating-social {
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  border-radius: 100px;
  box-shadow: 0 4px 20px hsl(0,0%,0%,0.4);
  transition: transform 0.3s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.05); }
.float-btn-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-btn-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: none;
}
@media (min-width: 768px) { .float-btn-label { display: block; } }
.float-wa { background: #25D366; }
.float-wa .float-btn-label { color: white; }
.float-sc { background: #FFFC00; }
.float-sc .float-btn-label { color: #000; }

/* ═══════════════════════════════════════
   WOOCOMMERCE — SINGLE PRODUCT
═══════════════════════════════════════ */
.single-product-wrapper {
  max-width: 1100px;
  margin: 120px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  .single-product-wrapper { grid-template-columns: 1fr; margin-top: 80px; }
}
.single-product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.single-product-info { padding: 20px 0; }
.single-product-brand {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 12px;
}
.single-product-title {
  font-family: var(--serif);
  font-size: 28px;
  color: hsl(170, 12%, 88%);
  margin-bottom: 16px;
  line-height: 1.2;
}
.woocommerce .price, .woocommerce-page .price {
  font-family: var(--serif) !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, hsl(168,55%,72%) 0%, hsl(170,45%,52%) 50%, hsl(172,38%,38%) 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.woocommerce-product-details__short-description {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.7;
}
.woocommerce form.cart .button,
.woocommerce button.button.alt {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 32px !important;
  background: var(--jade) !important;
  color: var(--bg) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.woocommerce form.cart .button:hover,
.woocommerce button.button.alt:hover { background: var(--jade-light) !important; }

/* ═══════════════════════════════════════
   CART & CHECKOUT (WooCommerce)
═══════════════════════════════════════ */
.woocommerce-cart-form,
.woocommerce-checkout {
  max-width: 900px;
  margin: 120px auto 80px;
  padding: 0 24px;
  color: var(--text);
}
.woocommerce table.shop_table {
  background: var(--bg-2) !important;
  border: 1px solid var(--border) !important;
  border-collapse: collapse !important;
}
.woocommerce table.shop_table th {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border) !important;
}
.woocommerce table.shop_table td {
  padding: 16px !important;
  border-bottom: 1px solid var(--border) !important;
  color: var(--text) !important;
}
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="number"],
.woocommerce textarea,
.woocommerce select {
  background: var(--bg-2) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 0 !important;
  padding: 10px 12px !important;
  font-family: 'Inter', sans-serif !important;
}
.woocommerce input:focus,
.woocommerce textarea:focus {
  border-color: var(--jade-dim) !important;
  outline: none !important;
  box-shadow: none !important;
}
label, .woocommerce label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background: var(--bg-2) !important;
  border-top-color: var(--jade) !important;
  color: var(--text) !important;
}

/* ─── Utility animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
