/* ==========================================================================
   HĀNIM ACCESSORIES - LUXURY MINIMALIST STYLESHEET
   Clean, aesthetic, boutique-grade design system
   ========================================================================== */

:root {
  --bg-main: #fcfaf7;
  --bg-surface: #ffffff;
  --bg-subtle: #f6f2ec;
  --bg-accent: #ece5db;

  --text-dark: #201c1a;
  --text-body: #524b45;
  --text-muted: #847a72;
  --text-light: #ffffff;

  --accent-gold: #b38640;
  --accent-gold-hover: #9c712f;
  --accent-soft: #f4ece1;
  --badge-rose: #d9786a;
  --badge-green: #4f8762;
  --badge-blue: #3d7899;

  --wa-green: #25d366;
  --wa-green-hover: #20ba59;
  --daraz-orange: #f85606;
  --daraz-hover: #e04600;

  --border-subtle: #ece5dc;
  --border-strong: #dcd3c7;

  --shadow-sm: 0 2px 8px rgba(32, 28, 26, 0.04);
  --shadow-md: 0 8px 24px rgba(32, 28, 26, 0.07);
  --shadow-lg: 0 16px 40px rgba(32, 28, 26, 0.12);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* Typography Helpers */
.section-header {
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(179, 134, 64, 0.3);
}

.btn-secondary {
  background-color: #22c35e;
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  border: 1.5px solid var(--border-strong);
  color: var(--text-dark);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--text-dark);
  background-color: var(--bg-surface);
  transform: translateY(-2px);
}

.btn-daraz {
  background-color: var(--daraz-orange);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.btn-daraz:hover {
  background-color: var(--daraz-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(248, 86, 6, 0.28);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background-color: #24201e;
  color: #f5ede4;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 0;
  letter-spacing: 0.2px;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.announcement-links a {
  color: #e2c088;
  font-weight: 600;
}

.announcement-links a:hover {
  text-decoration: underline;
}

.announcement-links .sep {
  opacity: 0.4;
}

/* ==========================================================================
   Site Header & Sticky Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(252, 250, 247, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 8px 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 80px;
  width: auto;
  max-height: 82px;
  object-fit: contain;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 105px;
  max-height: 110px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1) opacity(0.95);
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--text-dark);
  line-height: 1;
}

.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-dark);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.daraz-pill-btn {
  background-color: #fff4ed;
  color: var(--daraz-orange);
  border-color: #ffd8c4;
}

.daraz-pill-btn:hover {
  background-color: var(--daraz-orange);
  color: white;
  border-color: var(--daraz-orange);
}

.wa-header-btn {
  background-color: #e9f9ee;
  color: #1a9e4b;
  border-color: #b7eac7;
}

.wa-header-btn:hover {
  background-color: var(--wa-green);
  color: white;
  border-color: var(--wa-green);
}

.cart-trigger-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.cart-trigger-btn:hover {
  background-color: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent-gold);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-surface);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 56px 0 68px;
  background: linear-gradient(180deg, #fcfaf7 0%, #f7f2eb 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.sub-heading-pill {
  display: inline-block;
  background-color: var(--accent-soft);
  color: var(--accent-gold-hover);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
  border: 1px solid #ebd9c0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.14;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--text-body);
  max-width: 530px;
  margin-bottom: 32px;
  line-height: 1.68;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-perks {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-strong);
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.perk-icon {
  font-size: 1.1rem;
}

.hero-image-wrap {
  position: relative;
}

.image-card-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.8s ease;
}

.image-card-main:hover .hero-img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(179, 134, 64, 0.2);
}

.badge-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.badge-subtitle {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
}

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

.trust-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  font-size: 1.8rem;
  background-color: var(--bg-subtle);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-box h4 {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.trust-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Catalog & Category Tabs
   ========================================================================== */
.catalog-section {
  padding: 80px 0;
}

.category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  background-color: var(--bg-surface);
  color: var(--text-body);
  border: 1px solid var(--border-strong);
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.tab-btn.active {
  background-color: var(--text-dark);
  color: var(--text-light);
  border-color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(32, 28, 26, 0.16);
}

.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 0 4px;
  flex-wrap: wrap;
  gap: 16px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  width: 100%;
  max-width: 380px;
  color: var(--text-muted);
}

.search-input-wrap input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
}

.product-count-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #f7f4ef;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--text-dark);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
  text-transform: uppercase;
}

.badge-couple {
  background-color: var(--badge-rose);
}

.badge-bestseller {
  background-color: var(--accent-gold);
}

.badge-trending {
  background-color: var(--badge-green);
}

.quick-view-overlay-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
  white-space: nowrap;
}

.product-card:hover .quick-view-overlay-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 8px;
}

.card-sku-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(32, 28, 26, 0.75);
  backdrop-filter: blur(4px);
  color: #f7efe6;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  z-index: 2;
}

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

.card-discount-pill {
  background-color: #fde8e8;
  color: #d12e2e;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  border: 1px solid #f9c0c0;
}

.card-variants-tag {
  font-size: 0.76rem;
  color: var(--text-muted);
  background-color: var(--bg-subtle);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

.card-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.card-price {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-dark);
}

.card-original-price {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.btn-card-wa {
  background-color: #e9f9ee;
  color: #14803c;
  border: 1px solid #bcecc9;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-card-wa:hover {
  background-color: var(--wa-green);
  color: white;
  border-color: var(--wa-green);
}

.card-secondary-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.btn-card-bag {
  background-color: var(--bg-subtle);
  color: var(--text-dark);
  border: 1px solid var(--border-subtle);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-card-bag:hover {
  background-color: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

.btn-card-daraz {
  background-color: #fff4ed;
  color: var(--daraz-orange);
  border: 1px solid #ffd8c4;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-card-daraz:hover {
  background-color: var(--daraz-orange);
  color: white;
  border-color: var(--daraz-orange);
}

/* ==========================================================================
   Feature Section (Wrist Stacking)
   ========================================================================== */
.feature-section {
  padding: 90px 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.feature-media {
  position: relative;
}

.feature-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-quote-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background-color: #24201e;
  color: #f7efe6;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}

.feature-quote-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 8px;
}

.feature-quote-card span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.feature-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}

.feature-points {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-points li {
  position: relative;
  padding-left: 28px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.feature-points li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.feature-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   How To Order Section (Luxury 3-Step Guide)
   ========================================================================== */
.how-order-section {
  padding: 96px 0;
  background-color: var(--bg-main);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 52px;
  position: relative;
}

.step-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(32, 28, 26, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(32, 28, 26, 0.09);
  border-color: #ded0bc;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -1px;
}

.step-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fbf7f1;
  border: 1px solid #ebdccb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transition: var(--transition);
}

.step-icon-bubble.wa-bubble {
  background: #eefcf3;
  border-color: #c4f3d2;
  color: #1faa53;
}

.step-icon-bubble.delivery-bubble {
  background: #f0f6ff;
  border-color: #cfdff5;
  color: #2b6cb0;
}

.step-card:hover .step-icon-bubble {
  transform: scale(1.1) rotate(4deg);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
  flex-grow: 1;
}

.step-card p strong {
  color: var(--text-dark);
  font-weight: 600;
}

.step-card-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--border-subtle);
  display: flex;
  align-items: center;
}

.step-pill {
  font-size: 0.76rem;
  font-weight: 700;
  color: #7b581d;
  background: #faf4eb;
  border: 1px solid #ede1d1;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Luxury Alternative Box (Daraz) */
.order-alternative-box {
  background: linear-gradient(135deg, #fff9f5 0%, #fff1e7 100%);
  border: 1px solid #fedbc8;
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: 0 6px 24px rgba(248, 86, 6, 0.06);
  position: relative;
  overflow: hidden;
}

.order-alternative-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #f85606, #ff7a38);
}

.alt-box-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}

.alt-daraz-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #ffd8c0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f85606;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(248, 86, 6, 0.12);
}

.alt-text-group h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #3b1807;
  margin-bottom: 4px;
}

.alt-text-group p {
  font-size: 0.92rem;
  color: #7b4a2f;
  line-height: 1.5;
  margin: 0;
}

.btn-daraz {
  background: linear-gradient(135deg, #f85606 0%, #ff6f24 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(248, 86, 6, 0.28);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-daraz:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248, 86, 6, 0.4);
  background: linear-gradient(135deg, #e04600 0%, #f85606 100%);
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */
.ig-section {
  padding: 80px 0;
  background-color: var(--bg-surface);
}

.ig-profile-card {
  max-width: 860px;
  margin: 0 auto 36px;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}

.ig-profile-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ig-avatar-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  flex-shrink: 0;
}

.ig-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--text-dark);
  border: 2px solid var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  overflow: hidden;
}

.ig-avatar-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.95);
  display: block;
}

.ig-profile-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ig-handle-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ig-handle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.ig-verified-badge {
  display: inline-flex;
  align-items: center;
}

.ig-bio {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.45;
  margin: 2px 0 6px;
}

.ig-stats-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.ig-stat strong {
  color: var(--text-dark);
  font-weight: 700;
}

.ig-stat-sep {
  color: var(--border-subtle);
}

.btn-ig-follow {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.25);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-ig-follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ig-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ig-media-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}

.ig-item:hover .ig-media-badge {
  opacity: 0;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 21, 0.65);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  font-size: 0.86rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
}

.ig-item:hover .ig-overlay {
  opacity: 1;
}

.ig-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 840px) {
  .ig-profile-card {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .ig-profile-left {
    flex-direction: column;
    text-align: center;
  }

  .ig-handle-row,
  .ig-stats-row {
    justify-content: center;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-main);
}

.faq-container {
  max-width: 820px;
}

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

.accordion-item {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
}

.accordion-header:hover {
  color: var(--accent-gold);
}

.acc-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.accordion-item.open .acc-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.accordion-item.open .accordion-content {
  padding-bottom: 22px;
}

.accordion-content p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-body);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #1d1a18;
  color: #bfb7ae;
  padding: 68px 0 0;
  border-top: 1px solid #2d2825;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid #2d2825;
}

.footer-logo .logo-title {
  color: #f7efe6;
}

.footer-bio {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 16px 0 24px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2b2623;
  color: #f7efe6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--accent-gold);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #f7efe6;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li a,
.footer-col li span {
  font-size: 0.88rem;
  color: #a89f95;
  transition: var(--transition);
}

.footer-col li a:hover {
  color: #f7efe6;
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  font-size: 0.82rem;
  color: #797168;
}

.bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--wa-green);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  background-color: var(--wa-green-hover);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background-color: var(--text-dark);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Slide-in Cart Drawer
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 17, 15, 0.5);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background-color: var(--bg-surface);
  box-shadow: var(--shadow-lg);
  z-index: 160;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

.drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title-group h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-dark);
}

.drawer-item-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.close-drawer-btn {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  padding: 4px;
}

.close-drawer-btn:hover {
  color: var(--text-dark);
}

.drawer-body {
  padding: 24px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.empty-cart-state {
  text-align: center;
  padding: 50px 20px;
  margin: auto 0;
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.empty-cart-state h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.empty-cart-state p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Drawer Item */
.drawer-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background-color: #f5f0ea;
  flex-shrink: 0;
}

.drawer-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.drawer-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 2px;
}

.drawer-item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.drawer-item-sku {
  font-weight: 700;
  color: var(--text-dark);
}

.drawer-item-variant {
  color: var(--accent-gold);
  font-weight: 600;
}

.drawer-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.drawer-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background-color: var(--bg-subtle);
  color: var(--text-dark);
}

.qty-btn:hover {
  background-color: var(--border-strong);
}

.qty-num {
  width: 30px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.remove-item-btn {
  font-size: 0.76rem;
  font-weight: 600;
  color: #c94a4a;
  text-decoration: underline;
}

.remove-item-btn:hover {
  color: #a32222;
}

/* Drawer Footer */
.drawer-footer {
  padding: 20px 24px;
  background-color: #fcfbf9;
  border-top: 1px solid var(--border-subtle);
}

.drawer-delivery-progress {
  margin-bottom: 16px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background-color: var(--border-subtle);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--wa-green) 100%);
  width: 0%;
  transition: width 0.4s ease;
}

.drawer-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-body);
}

.total-row {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-dark);
  padding-top: 8px;
  border-top: 1px dashed var(--border-strong);
}

.order-notes-wrap {
  margin-bottom: 16px;
}

.order-notes-wrap label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.order-notes-wrap input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.84rem;
  background: white;
  outline: none;
}

.btn-whatsapp-order {
  width: 100%;
  background-color: var(--wa-green);
  color: white;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp-order:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.drawer-hint {
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   Quick View Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 17, 15, 0.65);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: var(--bg-surface);
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 30;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  line-height: 0;
}

.modal-close-btn svg {
  display: block;
  margin: auto;
  pointer-events: none;
}

.modal-close-btn:hover {
  background-color: var(--text-dark);
  color: white;
  transform: scale(1.06);
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  width: 100%;
  box-sizing: border-box;
}

.modal-grid>* {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Gallery & Thumbnails */
.modal-gallery {
  background-color: #f7f4ef;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-subtle);
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.modal-main-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f7f4ef;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.modal-discount-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #d12e2e;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(209, 46, 46, 0.3);
}

.modal-thumbnails-track {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  overflow-x: auto;
  background-color: #faf6f0;
  border-top: 1px solid var(--border-subtle);
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.modal-thumb-btn {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  cursor: pointer;
  opacity: 0.65;
  transition: var(--transition);
}

.modal-thumb-btn:hover {
  opacity: 1;
}

.modal-thumb-btn.active {
  opacity: 1;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(179, 134, 64, 0.25);
}

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

/* Modal Details */
.modal-details {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.modal-header-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
  padding-right: 56px;
  /* Crucial: Prevents overlap with close button! */
}

.modal-tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-gold);
}

.modal-daraz-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--daraz-orange);
  background-color: #fff4ed;
  border: 1px solid #ffd8c4;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.modal-daraz-badge:hover {
  background-color: var(--daraz-orange);
  color: white;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--text-dark);
  line-height: 1.28;
  margin-bottom: 12px;
}

.modal-price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.modal-original-price {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.modal-save-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: #c93b3b;
  background-color: #fde8e8;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.modal-section-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Variants Chips */
.modal-variants-block {
  margin-bottom: 16px;
}

.variants-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-chip {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-strong);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--bg-surface);
  cursor: pointer;
  transition: var(--transition);
}

.variant-chip:hover {
  border-color: var(--accent-gold);
}

.variant-chip.selected {
  background-color: var(--text-dark);
  color: white;
  border-color: var(--text-dark);
}

/* Highlights */
.modal-highlights-block {
  margin-bottom: 16px;
}

.modal-spec-list {
  list-style: none;
  font-size: 0.84rem;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 14px;
  background-color: var(--bg-subtle);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

/* Specifications Table */
.modal-specs-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding: 10px 14px;
  background-color: #fcfbf9;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.spec-key {
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
}

.spec-val {
  color: var(--text-body);
  text-align: right;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
  flex-shrink: 1;
}

/* Actions */
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.btn-modal-wa {
  width: 100%;
  padding: 13px;
  font-size: 0.95rem;
  box-sizing: border-box;
  min-width: 0;
}

.modal-secondary-buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.btn-modal-bag {
  width: 100%;
  padding: 11px;
  box-sizing: border-box;
  min-width: 0;
}

.btn-modal-daraz {
  width: 100%;
  padding: 11px;
  font-size: 0.86rem;
  text-align: center;
  box-sizing: border-box;
  min-width: 0;
  white-space: normal;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background-color: var(--text-dark);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 250;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-quote-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-col {
    grid-column: span 2;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .announcement-inner {
    justify-content: center;
    text-align: center;
  }

  .announcement-links {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .nav-container {
    min-height: 72px;
    padding: 6px 16px;
    box-sizing: border-box;
    width: 100%;
  }

  .brand-logo-img {
    height: 52px;
    max-width: 52px;
  }

  .header-actions {
    gap: 8px;
  }

  .action-btn {
    padding: 8px 10px;
  }

  .action-btn span {
    display: none;
  }

  .cart-trigger-btn {
    width: 40px;
    height: 40px;
  }

  .footer-logo-img {
    height: 84px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .modal-overlay {
    padding: 10px;
    overflow-x: hidden;
  }

  .modal-card {
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-sizing: border-box;
  }

  .modal-grid {
    grid-template-columns: minmax(0, 1fr);
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .modal-gallery {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .modal-main-image-wrap {
    aspect-ratio: 16 / 10;
    max-height: 240px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

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

  .modal-thumbnails-track {
    padding: 8px 10px;
    gap: 6px;
    overflow-x: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }

  .modal-thumb-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .modal-details {
    padding: 16px 16px 22px;
    max-height: none;
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .modal-header-meta {
    padding-right: 48px;
    margin-bottom: 6px;
    width: 100%;
    min-width: 0;
  }

  .modal-title {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 8px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .modal-price-box {
    margin-bottom: 12px;
    padding-bottom: 10px;
    width: 100%;
  }

  .modal-price {
    font-size: 1.35rem;
  }

  .modal-close-btn {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .modal-close-btn svg {
    width: 16px;
    height: 16px;
  }

  .modal-secondary-buttons {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    width: 100%;
  }

  .btn-modal-wa {
    padding: 12px;
    font-size: 0.92rem;
    width: 100%;
  }

  .btn-modal-bag,
  .btn-modal-daraz {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-col {
    grid-column: span 1;
  }
}