/* ================================================================
   Unique Store — Luxury Fashion Storefront (2026 Modern Edition)
   Font: Tajawal | Palette: Obsidian (#0f172a) + Warm Amber (#d97706)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
  --sf-bg: #f8fafc;
  --sf-surface: #ffffff;
  --sf-border: #e2e8f0;
  --sf-border-light: #f1f5f9;
  
  --sf-dark: #0f172a;
  --sf-dark-hover: #1e293b;
  --sf-dark-subtle: #334155;
  
  --sf-gold: #d97706;
  --sf-gold-hover: #b45309;
  --sf-gold-subtle: #fef3c7;
  --sf-gold-text: #92400e;
  
  --sf-emerald: #10b981;
  --sf-emerald-hover: #059669;
  --sf-emerald-subtle: #ecfdf5;
  --sf-emerald-text: #065f46;
  
  --sf-rose: #e11d48;
  --sf-rose-subtle: #ffe4e6;
  
  --sf-text: #0f172a;
  --sf-text-muted: #64748b;
  --sf-text-light: #94a3b8;
  
  --sf-radius: 16px;
  --sf-radius-sm: 10px;
  --sf-radius-lg: 24px;
  --sf-radius-full: 9999px;
  
  --sf-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --sf-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --sf-shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --sf-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--sf-bg);
  color: var(--sf-text);
  font-family: 'Tajawal', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ==================== Top Announcement Bar ==================== */
.sf-announcement {
  background-color: var(--sf-dark);
  color: #f1f5f9;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sf-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.sf-announcement-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sf-announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
}

.sf-announcement-item i {
  color: #fbbf24;
  font-size: 14px;
}

.sf-announcement-contact a {
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  text-decoration: none;
}

.sf-announcement-contact a:hover {
  color: #fbbf24;
}

/* ==================== Luxury Header / Navbar ==================== */
.sf-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sf-border);
  box-shadow: var(--sf-shadow-sm);
  transition: all 0.2s ease;
}

.sf-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.sf-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.sf-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.sf-brand-text {
  display: flex;
  flex-direction: column;
}

.sf-brand-text strong {
  font-size: 18px;
  font-weight: 900;
  color: var(--sf-dark);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.sf-brand-text small {
  font-size: 11px;
  font-weight: 700;
  color: var(--sf-gold);
  letter-spacing: 0.5px;
}

.sf-desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 32px;
}

.sf-nav-link {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--sf-dark-subtle);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.15s ease;
}

.sf-nav-link:hover, .sf-nav-link.active {
  color: var(--sf-dark);
}

.sf-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  background-color: var(--sf-dark);
  border-radius: 2px;
}

.sf-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sf-btn-contact-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #f1f5f9;
  color: var(--sf-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--sf-border);
  transition: all 0.15s ease;
}

.sf-btn-contact-header:hover {
  background-color: #e2e8f0;
  color: #000;
}

.sf-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--sf-border);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 20px;
  color: var(--sf-dark);
  cursor: pointer;
}

/* ==================== Mobile Navigation Drawer ==================== */
.sf-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
}

.sf-mobile-drawer.is-open {
  display: block;
}

.sf-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}

.sf-drawer-content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  background: #ffffff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.25s ease-out;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.sf-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sf-border);
}

.sf-drawer-close {
  background: transparent;
  border: 0;
  font-size: 24px;
  color: var(--sf-text-muted);
  cursor: pointer;
}

.sf-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sf-drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sf-dark);
  text-decoration: none;
  transition: background 0.15s ease;
}

.sf-drawer-nav a:hover, .sf-drawer-nav a.active {
  background-color: #f1f5f9;
}

/* ==================== Hero Section ==================== */
.sf-hero {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #fef3c7 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sf-border);
}

.sf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--sf-gold-subtle);
  color: var(--sf-gold-text);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid #fde68a;
  margin-bottom: 16px;
}

.sf-hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--sf-dark);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.sf-hero h1 span {
  color: var(--sf-gold);
}

.sf-hero p {
  font-size: 17px;
  color: var(--sf-text-muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 28px;
}

.sf-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.sf-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--sf-dark);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: var(--sf-radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
  transition: all 0.15s ease;
}

.sf-btn-primary:hover {
  background-color: var(--sf-dark-hover);
  transform: translateY(-1px);
}

.sf-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
  color: var(--sf-dark) !important;
  font-size: 15px;
  font-weight: 800;
  padding: 13px 24px;
  border-radius: var(--sf-radius-sm);
  border: 1px solid var(--sf-border);
  text-decoration: none;
  transition: all 0.15s ease;
}

.sf-btn-outline:hover {
  background-color: #f1f5f9;
}

.sf-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sf-text-muted);
}

.sf-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sf-hero-trust i {
  color: var(--sf-emerald);
}

.sf-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-hero-image-wrap {
  width: 100%;
  max-width: 440px;
  border-radius: var(--sf-radius-lg);
  overflow: hidden;
  box-shadow: var(--sf-shadow-lg);
  border: 4px solid #ffffff;
}

.sf-hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================== Value Propositions / Trust Bar ==================== */
.sf-trust-bar {
  padding: 30px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--sf-border);
}

.sf-trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
}

.sf-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--sf-bg);
  border: 1px solid var(--sf-border);
  color: var(--sf-gold);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.sf-trust-info strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--sf-dark);
}

.sf-trust-info span {
  display: block;
  font-size: 12.5px;
  color: var(--sf-text-muted);
  margin-top: 1px;
}

/* ==================== Section Headers ==================== */
.sf-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sf-border);
}

.sf-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sf-gold);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.sf-section-header h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--sf-dark);
  margin: 0;
}

.sf-view-all-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--sf-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sf-view-all-link:hover {
  color: var(--sf-gold);
}

/* ==================== Product Card ==================== */
.sf-product-card {
  background-color: #ffffff;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sf-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.sf-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sf-shadow-md);
  border-color: #cbd5e1;
}

.sf-product-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  background-color: #f1f5f9;
  overflow: hidden;
}

.sf-product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sf-product-card:hover .sf-product-card-thumb img {
  transform: scale(1.05);
}

.sf-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  z-index: 2;
}

.sf-badge-gold {
  background-color: #d97706;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.35);
}

.sf-badge-dark {
  background-color: var(--sf-dark);
  color: #ffffff;
}

.sf-badge-green {
  background-color: var(--sf-emerald);
  color: #ffffff;
}

.sf-product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.sf-product-card-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--sf-dark);
  margin: 0 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sf-product-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.sf-price-main {
  font-size: 20px;
  font-weight: 900;
  color: var(--sf-dark);
}

.sf-price-currency {
  font-size: 12px;
  font-weight: 700;
  color: var(--sf-text-muted);
}

.sf-product-card-cta {
  margin-top: 12px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background-color: #f8fafc;
  color: var(--sf-dark);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-sm);
  font-size: 13px;
  font-weight: 800;
  transition: all 0.15s ease;
}

.sf-product-card:hover .sf-product-card-cta {
  background-color: var(--sf-dark);
  color: #ffffff;
  border-color: var(--sf-dark);
}

/* ==================== Wholesale Banner ==================== */
.sf-wholesale-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--sf-radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: var(--sf-shadow-lg);
}

.sf-wholesale-card h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.sf-wholesale-card p {
  font-size: 16px;
  color: #94a3b8;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ==================== Product Detail & COD Funnel ==================== */
.sf-product-layout {
  background-color: #ffffff;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-lg);
  padding: 32px;
  margin: 24px 0 40px;
  box-shadow: var(--sf-shadow-sm);
}

.sf-gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  background-color: #f8fafc;
  border-radius: var(--sf-radius);
  overflow: hidden;
  border: 1px solid var(--sf-border);
  display: grid;
  place-items: center;
}

.sf-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.sf-gallery-thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  border: 2px solid #86efac;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background-color: #f8fafc;
  transition: border-color 0.15s ease;
}

.sf-gallery-thumb.active, .sf-gallery-thumb:hover {
  border-color: var(--sf-dark);
}

.sf-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Purchase section */
.sf-product-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--sf-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.sf-price-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.sf-price-display .main-val {
  font-size: 32px;
  font-weight: 900;
  color: var(--sf-dark);
}

.sf-price-display .savings-pill {
  background-color: var(--sf-emerald-subtle);
  color: var(--sf-emerald-text);
  border: 1px solid #a7f3d0;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Offer bundle cards */
.sf-bundle-section {
  margin-bottom: 24px;
}

.sf-bundle-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--sf-dark);
  margin-bottom: 10px;
}

.sf-bundle-options {
  display: grid;
  gap: 10px;
}

.sf-bundle-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 2px solid #86efac;
  border-radius: var(--sf-radius-sm);
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.15s ease;
}

.sf-bundle-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sf-bundle-card:hover {
  border-color: #22c55e;
  background-color: #f0fdf4;
}

.sf-bundle-card.is-selected {
  border-color: #16a34a;
  background-color: #f0fdf4;
  box-shadow: 0 0 0 1px #16a34a, 0 4px 14px rgba(22, 163, 74, 0.16);
}

.sf-bundle-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-bundle-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #86efac;
  display: grid;
  place-items: center;
}

.sf-bundle-card.is-selected .sf-bundle-indicator {
  border-color: #16a34a;
}

.sf-bundle-card.is-selected .sf-bundle-indicator::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #16a34a;
}

.sf-bundle-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--sf-dark);
}

.sf-bundle-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  background-color: var(--sf-gold-subtle);
  color: var(--sf-gold-text);
  border: 1px solid #fde68a;
}

.sf-bundle-price {
  font-size: 15px;
  font-weight: 900;
  color: #15803d;
  white-space: nowrap !important;
  flex-shrink: 0;
  text-align: left;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.sf-bundle-price .sf-price-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap !important;
}

.sf-bundle-price .sf-price-num {
  font-size: 16px;
  font-weight: 900;
  color: var(--sf-dark);
}

.sf-bundle-price .sf-price-curr {
  font-size: 13px;
  font-weight: 800;
}

.sf-bundle-price .sf-price-unit {
  font-size: 11.5px;
  font-weight: 700;
  color: #166534;
  white-space: nowrap !important;
}

/* Piece selection cards (sizes and colors) */
.sf-piece-card {
  background-color: #f8fafc;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-sm);
  padding: 14px;
  margin-bottom: 12px;
}

.sf-piece-header {
  font-size: 13px;
  font-weight: 800;
  color: var(--sf-dark);
  margin-bottom: 10px;
}

/* Delivery Type Cards */
.sf-delivery-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.sf-delivery-card {
  border: 2px solid #86efac;
  border-radius: var(--sf-radius-sm);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.15s ease;
  position: relative;
}

.sf-delivery-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sf-delivery-card:hover {
  border-color: #cbd5e1;
}

.sf-delivery-card.is-selected {
  border-color: #dc2626 !important;
  background-color: #dc2626 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.32) !important;
}

.sf-delivery-card.is-selected i {
  color: #ffffff !important;
}

.sf-delivery-card i {
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
  color: var(--sf-dark);
}

.sf-delivery-card strong {
  display: block;
  font-size: 13.5px;
}

/* Live COD Summary Card */
.sf-cod-summary {
  background-color: #ffffff;
  border: 2px dashed #cbd5e1;
  border-radius: var(--sf-radius);
  padding: 18px 20px;
  margin: 20px 0;
}

.sf-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 13.5px;
  color: var(--sf-text-muted);
}

.sf-summary-row.grand-total {
  border-top: 1px solid var(--sf-border);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 18px;
  font-weight: 900;
  color: var(--sf-dark);
}

.sf-summary-row.grand-total strong {
  font-size: 24px;
  color: #16a34a !important;
}

/* CTA Buttons */
.sf-btn-order-cta {
  width: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff !important;
  border: 0;
  border-radius: var(--sf-radius-sm);
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  cursor: pointer;
  transition: all 0.15s ease;
}

.sf-btn-order-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.3);
}

.sf-btn-whatsapp-order {
  width: 100%;
  background-color: #25d366;
  color: #ffffff !important;
  border: 0;
  border-radius: var(--sf-radius-sm);
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.15s ease;
}

.sf-btn-whatsapp-order:hover {
  background-color: #1eb956;
}

.sf-guarantees-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--sf-border);
  font-size: 12px;
  font-weight: 700;
  color: var(--sf-text-muted);
}

/* ==================== Footer ==================== */
.sf-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sf-footer h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

.sf-footer p {
  font-size: 13.5px;
  line-height: 1.8;
  color: #94a3b8;
}

.sf-footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.15s ease;
}

.sf-footer a:hover {
  color: #fbbf24;
}

.sf-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.sf-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.sf-footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 17px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.sf-footer-social-btn:hover {
  background-color: var(--sf-gold);
  color: #fff;
}

.sf-footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12.5px;
  color: #64748b;
}

/* ==================== Responsive ==================== */
@media (max-width: 992px) {
  .sf-desktop-nav {
    display: none !important;
  }
  .sf-mobile-toggle {
    display: block !important;
  }
  .sf-product-layout {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .sf-announcement-items span:nth-child(2),
  .sf-announcement-items span:nth-child(3) {
    display: none;
  }
  .sf-hero {
    padding: 36px 0;
  }
  .sf-hero h1 {
    font-size: 32px;
  }
  .sf-wholesale-card {
    padding: 24px;
  }
}

/* ==================== Shipping & Carrier Dropdowns ==================== */
.picker-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.dropdown-picker {
  position: relative;
  width: 100%;
  z-index: 20;
}

.dropdown-current {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  direction: rtl;
  border: 1.5px solid var(--sf-border);
  border-radius: var(--sf-radius-sm);
  padding: 8px 12px;
  background: #ffffff;
  color: var(--sf-dark);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.dropdown-current:hover, .dropdown-current[aria-expanded="true"] {
  border-color: var(--sf-dark);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.08);
}

.dropdown-current-info, .dropdown-option-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.dropdown-current-info strong, .dropdown-option-info strong {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--sf-dark);
  line-height: 1.3;
}

.dropdown-current-info small, .dropdown-option-info small {
  color: var(--sf-text-muted);
  font-size: 11px;
  font-weight: 600;
}

.dropdown-logo {
  width: 44px;
  height: 32px;
  flex: 0 0 44px;
  object-fit: contain;
  border: 1px solid var(--sf-border);
  border-radius: 6px;
  background: #ffffff;
  padding: 2px;
}

.dropdown-current-price, .dropdown-option-price {
  color: var(--sf-dark);
  font-size: 13px;
  font-weight: 900;
  margin-right: auto;
}

.dropdown-arrow {
  font-size: 16px;
  color: var(--sf-text-muted);
  transition: transform 0.2s ease;
}

.dropdown-current[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--sf-dark);
}

.shipping-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  max-height: 260px;
  overflow-y: auto;
  background: #ffffff;
  border: 1.5px solid var(--sf-border);
  border-radius: var(--sf-radius-sm);
  padding: 4px;
  box-shadow: var(--sf-shadow-lg);
  z-index: 50;
}

.shipping-dropdown-menu[hidden] {
  display: none;
}

.dropdown-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  direction: rtl;
  border: 0;
  border-bottom: 1px solid var(--sf-border-light);
  border-radius: 8px;
  padding: 10px 12px;
  background: #ffffff;
  color: var(--sf-dark);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}

.dropdown-option:last-child {
  border-bottom: 0;
}

.dropdown-option:hover, .dropdown-option[aria-selected="true"] {
  background: #f8fafc;
}

.dropdown-option.is-cheapest-option {
  background: #fffdf2;
  border-right: 3px solid #d97706;
}

.dropdown-option.is-cheapest-option:hover,
.dropdown-option.is-cheapest-option[aria-selected="true"] {
  background: #fef3c7;
}

.dropdown-current.is-cheapest-current {
  border-color: #f59e0b;
  background: #fffdf5;
}

.dropdown-cheapest-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff !important;
  border: 1px solid #b45309;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 900;
  padding: 2px 8px;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.25);
  animation: cheapestPulse 2s ease-in-out infinite;
}

@keyframes cheapestPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

.dropdown-check {
  color: var(--sf-emerald);
  font-weight: 900;
  font-size: 16px;
  visibility: hidden;
}

.dropdown-option[aria-selected="true"] .dropdown-check {
  visibility: visible;
}

.delivery-office-details {
  font-size: 11.5px;
  color: var(--sf-text-muted);
  margin-top: 4px;
}

.field-modern label {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--sf-dark);
  margin-bottom: 6px;
}

.field-modern input, .field-modern select {
  width: 100%;
  border: 1.5px solid var(--sf-border);
  border-radius: var(--sf-radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  color: var(--sf-dark);
  transition: border-color 0.15s ease;
}

.field-modern input:focus, .field-modern select:focus {
  outline: none;
  border-color: var(--sf-dark);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.08);
}

/* ============================================================
   PIECE SELECTOR & VARIANT CHIPS (LUXURY ATELIER STYLE)
   ============================================================ */
.sf-pieces-section {
  background: #ffffff;
}

.piece-card-modern {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--sf-radius);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: all 0.2s ease;
  position: relative;
}

.piece-card-modern:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.piece-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.piece-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0f172a;
  color: #f8fafc;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.piece-remove-modern {
  font-size: 12px;
  font-weight: 700;
  color: #ef4444 !important;
  text-decoration: none !important;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.piece-remove-modern:hover {
  background: #fef2f2;
}

.variant-group-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 800;
  color: #475569;
  margin-bottom: 8px;
}

.variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sf-chip {
  appearance: none;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-family: inherit;
}

.sf-chip:hover:not(:disabled) {
  border-color: #94a3b8;
  background: #ffffff;
  transform: translateY(-1px);
}

.sf-chip.is-active {
  background: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.22);
}

.sf-color-chip {
  padding: 6px 14px;
  gap: 8px;
  background: #ffffff;
}

.sf-color-chip.is-active {
  background: #fffdf5 !important;
  color: #0f172a !important;
  border-color: #d97706 !important;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  display: inline-block;
  flex-shrink: 0;
}

.border-dashed {
  border: 1.5px dashed #cbd5e1;
}

.sf-add-piece-btn {
  border: 1.5px dashed #94a3b8;
  background: #ffffff;
  color: #334155;
  font-weight: 800;
  transition: all 0.2s ease;
}

.sf-add-piece-btn:hover {
  background: #f8fafc;
  border-color: #0f172a;
  color: #0f172a;
}

