/* ELINA — boutique styles (minimal, Charles & Keith-inspired structure, rose palette) */

:root {
  --bg: #FFF9F9;
  --bg-soft: #F5E3E6;
  --tile: #E8C9CE;
  --text: #2D2929;
  --text-muted: #8a7c79;
  --accent: #c06f7a;
  --price-color: #a06e56;
  --white: #ffffff;
  --border: #ece0dd;
  --img-bg: #f3ece9;
  --shadow-color: 45,41,41;
  --on-accent: #ffffff;
}

:root[data-theme="dark"] {
  --bg: #1a1614;
  --bg-soft: #241f1c;
  --tile: #3a2d2a;
  --text: #f2e9e6;
  --text-muted: #b3a29c;
  --accent: #e0a3ac;
  --price-color: #e0b08c;
  --white: #241f1c;
  --border: #3c332f;
  --img-bg: #2c2522;
  --shadow-color: 0,0,0;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  transition: background-color 0.25s ease, color 0.25s ease;
  width: 100%;
}

h1, h2, h3, .logo {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* Announcement bar */
.announce-bar {
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  display: flex;
  align-items: center;
}
.announce-marquee {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  padding: 9px 0;
}
.announce-phone {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--on-accent);
  padding: 9px 20px;
}
.announce-phone:hover { color: var(--tile); }
.announce-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: announce-scroll 22s linear infinite;
}
.announce-track span, .announce-track a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--on-accent);
}
.announce-track a:hover { color: var(--tile); }
@keyframes announce-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Icon sizing helpers */
.ico {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.ico-14 { width: 14px; height: 14px; }
.ico-16 { width: 16px; height: 16px; }
.ico-18 { width: 18px; height: 18px; }
.ico-20 { width: 20px; height: 20px; }
.ico-24 { width: 24px; height: 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  width: 230px;
  color: var(--text);
  justify-self: center;
}
.logo-img {
  height: 62px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.logo-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.logo-slide.active { opacity: 1; }
.logo-img-2 { height: 48px; }

.header-icons-left, .header-icons-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.15rem;
  min-width: 0;
}
.header-icons-left { gap: 4px; }
.header-icons-right { justify-self: end; }

.main-nav {
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 30px 24px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.main-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-panel {
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.search-panel.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.search-panel input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--text);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  padding: 8px 2px;
  color: var(--text);
  outline: none;
}

.main-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.main-nav a:hover { border-color: var(--text); }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cart-btn .snipcart-items-count {
  position: absolute;
  top: -6px;
  right: -8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  background: #2D2929;
  color: #ffffff;
  border-radius: 50%;
  min-width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-toggle, .icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.lang-switcher { position: relative; }
.lang-toggle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-width: 22px;
  justify-content: center;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(45,41,41,0.18);
  padding: 6px;
  display: flex;
  flex-direction: column;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 120;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown button {
  background: none;
  border: none;
  text-align: left;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.lang-dropdown button:hover { background: var(--bg-soft); }
.lang-dropdown button.active { color: var(--price-color); font-weight: 500; }
html[dir="rtl"] .lang-dropdown { left: auto; right: 0; text-align: right; }
html[dir="rtl"] .lang-dropdown button { text-align: right; }

.theme-icon-moon { display: none; }
html[data-theme="dark"] .theme-icon-sun { display: none; }
html[data-theme="dark"] .theme-icon-moon { display: inline-block; }

/* Hero — luxury style, centered copy over a large bag silhouette bottom-right */
.home-hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 56px 0;
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 46vh;
}
.home-hero-content { max-width: 460px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.home-hero-content h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.25;
}
.home-hero-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 26px;
  line-height: 1.6;
}
.home-hero-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--img-bg);
}
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 860px) {
  .home-hero { padding: 36px 0; }
  .home-hero-inner { grid-template-columns: 1fr; gap: 24px; min-height: auto; text-align: center; }
  .home-hero-content { max-width: none; margin: 0 auto; }
  .home-hero-media { aspect-ratio: 16 / 10; order: -1; }
}

/* Buttons — square, minimal, Charles & Keith style */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--text);
  color: var(--white);
}
.btn-primary:hover { background: transparent; color: var(--text); }

.btn-outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn-link {
  border: none;
  padding: 0;
  border-bottom: 1px solid var(--text);
}
.btn-link:hover { color: var(--accent); border-color: var(--accent); }

.btn-add {
  width: 100%;
  font-size: 0.7rem;
  padding: 12px 16px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  border: none;
  color: var(--on-accent);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.5),
    inset 0 -2px 4px rgba(80,45,30,0.3);
}
.btn-add:hover {
  background: linear-gradient(135deg, #dcb49f 0%, #bd8a70 45%, #8f5f48 100%);
  color: var(--on-accent);
}

/* Sections */
.section { padding: 90px 0; }
.section-title {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 10px;
  font-weight: 500;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 50px;
  font-size: 0.9rem;
}

/* Section header row — left-aligned title + "see all" link */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 6px;
}
.section-head .section-sub {
  text-align: left;
  margin: 0;
  max-width: none;
}
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--price-color);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.see-all:hover { border-color: var(--price-color); }
.see-all-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.see-all:hover .see-all-arrow {
  transform: translateX(10px) scale(1.12);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(45, 41, 41, 0.07);
  display: flex;
  flex-direction: column;
}

.product-card h3 a,
.product-img > a {
  color: inherit;
  text-decoration: none;
}
.product-img > a {
  display: flex;
  width: 100%;
  height: 100%;
}

.product-img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--img-bg);
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  z-index: 2;
}

.qv-trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #2D2929;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(45,41,41,0.15);
  transition: transform 0.15s ease, background 0.15s ease;
}
.qv-trigger svg { width: 16px; height: 16px; }
.qv-trigger:hover { background: #ffffff; transform: scale(1.08); }

/* Quick view modal */
.qv-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}
.qv-modal.open { display: block; }
.qv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45,41,41,0.45);
}
.qv-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 16px;
  width: min(760px, 92vw);
  max-height: 88vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 30px 70px rgba(45,41,41,0.35);
}
.qv-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.qv-image-wrap {
  background: var(--img-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.qv-image { width: 100%; height: 100%; object-fit: cover; }
.qv-info { padding: 32px 28px; display: flex; flex-direction: column; }
.qv-name { font-size: 1.2rem; font-weight: 500; margin: 0 0 12px; }
.qv-info .price-row { margin-bottom: 14px; }
.qv-color-label { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 8px; }
.qv-color-label .qv-variant-selected { color: var(--text); font-weight: 500; }
.qv-swatches { margin-bottom: 20px; }
.qv-qty-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.qv-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text);
}
.qv-qty-btn:hover { background: var(--bg-soft); }
.qv-qty-value { font-size: 0.95rem; font-weight: 500; min-width: 20px; text-align: center; }
.qv-actions { display: flex; flex-direction: column; gap: 10px; }
.qv-actions .btn { text-align: center; border-radius: 8px; }
.qv-buy {
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  border: none;
}
.qv-buy:hover { background: linear-gradient(135deg, #dcb49f 0%, #bd8a70 45%, #8f5f48 100%); }

@media (max-width: 640px) {
  .qv-panel {
    grid-template-columns: 1fr;
    width: calc(100vw - 32px);
    max-width: 420px;
    max-height: 85vh;
  }
  .qv-image-wrap { aspect-ratio: 1/1; }
  .qv-actions { flex-direction: row; }
  .qv-actions .btn { flex: 1; padding: 12px 8px; font-size: 0.7rem; }
}

.product-info {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-info h3 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
}
.delivery-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--price-color);
  text-transform: uppercase;
  margin: 0 0 4px;
}

.product-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.price-sale {
  font-size: 1rem;
  font-weight: 600;
  color: var(--price-color);
}

.bundle-offer {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin: 0;
}

.swatches {
  display: flex;
  gap: 7px;
  margin: 2px 0 4px;
}
.swatches span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(45,41,41,0.12);
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 0 0 1px transparent;
  transition: box-shadow 0.15s ease;
}
.swatches span.active {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--text);
}

.product-info .btn-add {
  margin-top: 6px;
  border-radius: 8px;
}

/* Best sellers — compact cards */
.best-sellers-section { background: var(--bg-soft); padding-bottom: 50px; }
.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.bs-card .swatches { justify-content: center; }

/* UGC video carousel */
.ugc-section { background: var(--bg-soft); padding-top: 50px; }
.ugc-carousel {
  overflow-x: auto;
  padding: 0 24px;
  scrollbar-width: thin;
}
.ugc-track {
  display: flex;
  gap: 18px;
  width: max-content;
  margin: 0 auto;
  padding-bottom: 8px;
}
.ugc-card {
  flex: 0 0 220px;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  background: #2b2929;
  position: relative;
}
.ugc-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ugc-sound-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ugc-sound-btn:hover { background: rgba(0,0,0,0.7); }

.ugc-shop-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 54px;
  padding: 8px 12px;
  border-radius: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(255,255,255,0.92);
  color: #2D2929;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}
.ugc-shop-btn:hover { background: #ffffff; }

/* Testimonials — auto-scrolling marquee */
.testimonials-section { padding-top: 24px; }
.testimonials-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 24px;
  animation: testimonials-scroll 130s linear infinite;
}
.testimonials-marquee:hover .testimonials-track { animation-play-state: paused; }

@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(45,41,41,0.07);
}
.testimonial-card .stars {
  color: #d99a3f;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.testimonial-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 14px;
  color: var(--text);
}
.testimonial-name {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--price-color);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About */
.about-section { background: var(--bg-soft); }
.about-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.about-inner p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.contact-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.contact-section { padding-top: 20px; padding-bottom: 50px; }
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
}
.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f2d9c9 0%, #e8c6b4 30%, #c99a80 60%, #a06e56 100%);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 3px 4px rgba(255,255,255,0.65),
    inset 0 -4px 7px rgba(70,38,26,0.4),
    0 3px 6px rgba(120,72,50,0.25),
    0 10px 18px rgba(120,72,50,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-icon:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    inset 0 3px 4px rgba(255,255,255,0.7),
    inset 0 -4px 7px rgba(70,38,26,0.35),
    0 4px 8px rgba(120,72,50,0.3),
    0 14px 22px rgba(120,72,50,0.35);
}

/* SEO article section — wide, left-aligned, internal vertical scroll */
.seo-article-section {
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--border);
}
.seo-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  text-align: left;
  margin: 0 0 24px;
  line-height: 1.3;
}
.seo-scrollbox {
  max-height: 140px;
  overflow-y: auto;
  padding-right: 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--price-color) var(--bg-soft);
}
.seo-scrollbox::-webkit-scrollbar { width: 8px; }
.seo-scrollbox::-webkit-scrollbar-track { background: var(--bg-soft); border-radius: 4px; }
.seo-scrollbox::-webkit-scrollbar-thumb { background: var(--price-color); border-radius: 4px; }
.seo-scrollbox h2 {
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  margin: 22px 0 8px;
}
.seo-scrollbox h2:first-child { margin-top: 0; }
.seo-scrollbox h3 {
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--price-color);
  margin: 14px 0 6px;
}
.seo-scrollbox p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: left;
  margin: 0 0 10px;
}
.seo-scrollbox strong { color: var(--text); font-weight: 600; }
.seo-scrollbox ul {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 10px;
  padding-left: 20px;
}

/* ===== Product Page ===== */
.pd-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 18px 0 0;
}
.pd-breadcrumb a { color: var(--text-muted); }
.pd-breadcrumb a:hover { color: var(--price-color); }

.pd-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 32px 0 70px;
  align-items: start;
}

/* Gallery */
.pd-gallery { position: sticky; top: 96px; }
.pd-main-image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--img-bg);
  cursor: zoom-in;
}
.pd-main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}
.pd-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D2929;
  pointer-events: none;
}
.pd-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: #2D2929;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.pd-nav-btn:hover { background: #ffffff; }
.pd-nav-prev { left: 12px; }
.pd-nav-next { right: 12px; }
.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.pd-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--img-bg);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.15s ease;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active { border-color: var(--price-color); }

/* Lightbox */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  background: rgba(20,17,17,0.94);
}
.pd-lightbox.open { display: flex; align-items: center; justify-content: center; }
.pd-lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.pd-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
}
.pd-lightbox .pd-nav-btn { background: rgba(255,255,255,0.15); color: #ffffff; }
.pd-lightbox .pd-nav-btn:hover { background: rgba(255,255,255,0.3); }

/* Info panel */
.pd-info { padding-top: 4px; }
.pd-promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.pd-name { font-size: 1.7rem; font-weight: 500; margin: 0 0 10px; line-height: 1.25; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pd-price-now { font-size: 1.6rem; font-weight: 600; color: var(--price-color); }
.pd-price-old { font-size: 1.05rem; color: var(--text-muted); text-decoration: line-through; }
.pd-save { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 20px; }
.pd-save strong { color: var(--price-color); }

.pd-color-block { margin-bottom: 22px; }
.pd-color-label { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 10px; }
.pd-color-label span { color: var(--text); font-weight: 500; }
.pd-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(45,41,41,0.15);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 0 0 1px transparent;
  transition: box-shadow 0.15s ease;
}
.pd-swatch.active { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--text); }

.pd-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.pd-qty-label { font-size: 0.85rem; color: var(--text-muted); }
.pd-qty-box { display: flex; align-items: center; gap: 14px; }
.pd-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--text);
}
.pd-qty-btn:hover { background: var(--bg-soft); }
.pd-qty-value { font-weight: 500; min-width: 18px; text-align: center; }

.pd-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.pd-actions .btn { border-radius: 8px; text-align: center; }
.pd-buy-now {
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  border: none;
}
.pd-buy-now:hover { background: linear-gradient(135deg, #dcb49f 0%, #bd8a70 45%, #8f5f48 100%); }
.pd-whatsapp-btn {
  background: var(--white);
  border-color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pd-trust-list {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pd-trust-item svg { color: var(--price-color); flex-shrink: 0; }

/* Info tabs / accordion section */
.pd-details-section { border-top: 1px solid var(--border); padding: 50px 0; }
.pd-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.pd-details-grid .faq-list { max-width: none; margin: 0; }
.pd-details-block h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 14px;
}
.pd-details-block p, .pd-details-block li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.pd-details-block ul { margin: 0; padding-left: 20px; }
.pd-color-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.pd-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 5px 10px 5px 6px;
  border-radius: 20px;
}
.pd-color-chip span { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }

/* Related products */
.pd-related { padding: 60px 0 90px; }

/* Buy-now quick order fields (reused on the checkout page) */
.pd-order-field { margin-bottom: 14px; }
.pd-order-field label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 5px; }
.pd-order-field input, .pd-order-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
}
.pd-order-field input:focus, .pd-order-field select:focus { outline: 1px solid var(--price-color); }
.pd-order-cod {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.pd-order-cod svg { color: var(--price-color); flex-shrink: 0; }
.pd-order-submit { width: 100%; border-radius: 8px; }

/* ===== Checkout page ===== */
.checkout-hero,
.checkout-wrap { font-weight: 500; }
.checkout-hero { padding: 34px 0 8px; }
.checkout-title { font-size: 1.8rem; font-weight: 600; margin: 0 0 8px; }
.checkout-sub { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

.checkout-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 28px 0 90px;
}
.checkout-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.checkout-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pd-order-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  resize: vertical;
  min-height: 90px;
}
.pd-order-field textarea:focus { outline: 1px solid var(--price-color); }
.pd-order-field small { display: block; margin-top: 5px; font-size: 0.75rem; color: var(--text-muted); }

.checkout-summary {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 96px;
}
.checkout-summary h3 { font-size: 1.05rem; font-weight: 500; margin: 0 0 18px; }
.checkout-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.checkout-item img {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--img-bg);
  flex-shrink: 0;
}
.checkout-item-info { flex: 1; }
.checkout-item-info p { margin: 0; }
.checkout-item-name { font-size: 0.92rem; font-weight: 500; }
.checkout-item-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px !important; }
.checkout-item-price { font-weight: 500; color: var(--price-color); white-space: nowrap; }

.checkout-line { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; }
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
  font-size: 1.05rem;
  font-weight: 500;
}
.checkout-total span:last-child { color: var(--price-color); font-size: 1.25rem; font-weight: 600; }

/* ===== Thank-you page ===== */
.thankyou-wrap { padding: 60px 0 90px; display: flex; justify-content: center; }
.thankyou-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: min(560px, 100%);
  padding: 44px 36px;
  text-align: center;
}
.thankyou-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.thankyou-title { font-size: 1.6rem; font-weight: 500; margin: 0 0 10px; }
.thankyou-sub { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin: 0 0 28px; max-width: 420px; margin-left: auto; margin-right: auto; }
.thankyou-order {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 20px;
  text-align: start;
  margin-bottom: 20px;
}
.thankyou-order h3 { font-size: 0.95rem; font-weight: 500; margin: 0 0 14px; }
.thankyou-order .checkout-item { border-bottom: 1px solid var(--border); }
.thankyou-order .checkout-total { border-top: 1px solid var(--border); }
.pd-order-cod.thankyou-cod { text-align: start; margin-bottom: 24px; }
.thankyou-actions { display: flex; flex-direction: column; gap: 10px; }
.thankyou-actions .btn { border-radius: 8px; text-align: center; }

@media (max-width: 480px) {
  .thankyou-card { padding: 32px 20px; }
  .thankyou-title { font-size: 1.35rem; }
}

@media (max-width: 900px) {
  .pd-main { grid-template-columns: 1fr; gap: 28px; padding: 20px 0 50px; }
  .pd-gallery { position: static; }
  .pd-details-grid { grid-template-columns: 1fr; gap: 30px; }
  .checkout-wrap { grid-template-columns: 1fr; gap: 22px; padding: 20px 0 60px; }
  .checkout-summary { position: static; order: -1; }
  .checkout-form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
  .checkout-form-card { padding: 20px; }
  .checkout-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .pd-thumb { width: 56px; height: 56px; }
  .pd-name { font-size: 1.4rem; }
  .pd-price-now { font-size: 1.3rem; }
}

/* Footer */
.site-footer {
  background: #2D2929;
  color: #ffffff;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-col-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0 0 16px;
  color: #ffffff;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-col-brand {
  align-items: center;
  text-align: center;
}
.footer-col-brand .footer-social { justify-content: center; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: #ffffff; }
.footer-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}
.footer-brand {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
}
.footer-logo {
  height: 58px;
  width: auto;
  display: block;
}
.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 14px 0 18px;
  max-width: 320px;
}
.footer-social { justify-content: flex-start; }
.footer-social .social-icon { width: 38px; height: 38px; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin: 0;
}

.payment-methods { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.payment-title {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em !important;
}
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 8px 14px;
}
.faq-payment-badges {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 14px;
}
.payment-badge img {
  height: 100%;
  width: auto;
  max-width: 90px;
  object-fit: contain;
}

/* WhatsApp — rose-gold glossy style */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.55),
    inset 0 -3px 6px rgba(80,45,30,0.35),
    0 8px 18px rgba(120,72,50,0.4);
  z-index: 90;
  transition: transform 0.2s ease;
  animation: wa-float-wiggle 4s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); animation-play-state: paused; }

@keyframes wa-float-wiggle {
  0%, 78%, 100% { transform: translateY(0) rotate(0deg); }
  81% { transform: translateY(-7px) rotate(-10deg); }
  84% { transform: translateY(0) rotate(10deg); }
  87% { transform: translateY(-4px) rotate(-6deg); }
  90% { transform: translateY(0) rotate(6deg); }
  93% { transform: translateY(-2px) rotate(-2deg); }
  96%, 100% { transform: translateY(0) rotate(0deg); }
}

.contact-whatsapp {
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent) !important;
  border: none !important;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.5),
    inset 0 -2px 4px rgba(80,45,30,0.3),
    0 4px 12px rgba(120,72,50,0.3);
}
.contact-whatsapp:hover { background: linear-gradient(135deg, #dcb49f 0%, #bd8a70 45%, #8f5f48 100%); }

/* Cart drawer */
.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 100vw);
  background: var(--white);
  box-shadow: -10px 0 40px rgba(45,41,41,0.18);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
html[dir="rtl"] .cart-panel { right: auto; left: 0; box-shadow: 10px 0 40px rgba(45,41,41,0.18); }
.cart-panel h3 { font-size: 1.1rem; font-weight: 500; margin: 0 0 20px; }
.cart-empty { color: var(--text-muted); font-size: 0.9rem; text-align: center; padding: 40px 0; }
.cart-items-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.cart-item { display: flex; gap: 12px; align-items: center; }
.cart-item img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; background: var(--img-bg); flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info p { margin: 0; }
.cart-item-name { font-size: 0.88rem; font-weight: 500; }
.cart-item-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px !important; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-item-qty .pd-qty-btn { width: 24px; height: 24px; font-size: 0.85rem; }
.cart-item-qty span { font-size: 0.85rem; min-width: 14px; text-align: center; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.cart-item-price { font-size: 0.85rem; font-weight: 500; color: var(--price-color); white-space: nowrap; }
.cart-item-remove { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 0; }
.cart-item-remove:hover { color: var(--text); }
.cart-summary { border-top: 1px solid var(--border); padding-top: 16px; margin-top: auto; }
.cart-savings-line { color: var(--price-color) !important; }
.cart-savings-line span { color: var(--price-color); }
#cartCheckoutBtn { width: 100%; border-radius: 8px; margin-top: 6px; }

/* Notify-me (new arrivals) modal */
.notify-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 16px;
  width: min(380px, 92vw);
  max-height: 88vh;
  overflow: auto;
  padding: 30px;
  box-shadow: 0 30px 70px rgba(45,41,41,0.35);
}
.notify-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
}
.notify-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.notify-panel h3 { font-size: 1.15rem; font-weight: 500; margin: 0 0 6px; }
.notify-panel p.notify-sub { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 20px; }
.notify-submit { width: 100%; border-radius: 8px; margin-top: 4px; }
.notify-success { display: none; text-align: center; padding: 10px 0; }
.notify-success.show { display: block; }
.notify-success svg { color: var(--price-color); margin-bottom: 12px; }
.notify-success h3 { margin-bottom: 8px; }
.notify-success p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* WhatsApp welcome popup */
.wa-popup {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: min(310px, calc(100vw - 48px));
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(45,41,41,0.22);
  z-index: 95;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
}
.wa-popup.open { opacity: 1; visibility: visible; transform: translateY(0); }

.wa-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px 12px 16px;
  border-bottom: 1px solid var(--border);
}
.wa-popup-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-popup-online {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3fcf5d;
  border: 2px solid var(--white);
}
.wa-popup-name {
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wa-popup-logo {
  height: 0.9em;
  width: auto;
}
.wa-popup-status { font-size: 0.75rem; color: var(--text-muted); }

.wa-popup-body {
  padding: 14px 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.wa-popup-body p { margin: 0 0 8px; }
.wa-popup-body p:last-child { margin-bottom: 0; }

.wa-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 16px 16px;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8c6b4 0%, #c99a80 45%, #a06e56 100%);
  color: var(--on-accent);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}
.wa-popup-cta:hover { background: linear-gradient(135deg, #dcb49f 0%, #bd8a70 45%, #8f5f48 100%); }

@media (max-width: 480px) {
  .wa-popup { right: 12px; bottom: 84px; }
  .payment-badges {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 6px;
    width: 100%;
    padding: 0 4px;
  }
  .payment-badge {
    height: 30px;
    padding: 5px 8px;
    flex-shrink: 0;
  }
  .payment-badge img { max-width: 58px; }
}

/* Mobile */
@media (max-width: 1024px) and (min-width: 861px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .contact-section { padding-top: 16px; padding-bottom: 40px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
  .btn-add { font-size: 0.62rem; padding: 11px 6px; }
  .best-sellers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .offer-price { font-size: 2.4rem; }
  .header-inner { height: 66px; }
  .main-nav, .search-panel { top: 66px; }
  .header-icons-left, .header-icons-right { gap: 12px; font-size: 1rem; min-width: 0; }
  .header-icons-left { gap: 2px; }
  .logo { width: 150px; height: 46px; }
  .site-footer { padding: 36px 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "service inst"
      "aide aide";
    gap: 26px 18px;
    padding-bottom: 24px;
  }
  .footer-grid > .footer-col-brand { grid-area: brand; align-items: center; text-align: center; }
  .footer-grid > .footer-col:nth-child(2) { grid-area: service; }
  .footer-grid > .footer-col:nth-child(3) { grid-area: inst; }
  .footer-grid > .footer-col:nth-child(4) { grid-area: aide; }
  .footer-col { gap: 8px; }
  .footer-col-title { margin-bottom: 10px; font-size: 0.72rem; }
  .footer-col a, .footer-col .footer-note { font-size: 0.78rem; }
  .footer-tagline { max-width: none; margin: 10px 0 12px; }
  .footer-social { justify-content: center; }
  .footer-bottom { padding-top: 18px; gap: 14px; }
  .logo-img { height: 42px; }
  .logo-img-2 { height: 32px; }
  .seo-title { font-size: 1.3rem; }
  .testimonial-card { flex-basis: 240px; }
  .ugc-card { flex-basis: 170px; }
  .ugc-shop-btn { font-size: 0.62rem; padding: 6px 8px; right: 46px; white-space: nowrap; }
  .ugc-sound-btn { width: 28px; height: 28px; }
  .best-sellers-section { padding-bottom: 30px; }
  .ugc-section { padding-top: 30px; }
}

/* Small phones */
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .section { padding: 44px 0; }
  .contact-section { padding-top: 14px; padding-bottom: 32px; }
  .header-inner { height: 58px; }
  .main-nav, .search-panel { top: 58px; }
  .logo { max-width: 30vw; height: 38px; }
  .logo-img { height: 34px; }
  .logo-img-2 { height: 26px; }
  .header-icons-left, .header-icons-right { gap: 8px; font-size: 0.9rem; }
  .header-icons-left { gap: 0px; }
  .announce-track { gap: 28px; }
  .announce-track span, .announce-track a { font-size: 0.65rem; }
  .announce-phone { padding: 9px 12px; font-size: 0.65rem; }
  .best-sellers-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); gap: 12px; }
  .product-info { padding: 14px 14px 18px; }
  .btn-add { font-size: 0.6rem; padding: 10px 4px; }
  .section-head h2 { font-size: 1.3rem; }
  .footer-grid { gap: 24px; }
  .social-icon { width: 40px; height: 40px; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 16px; right: 16px; }
  .testimonial-card { flex-basis: 210px; padding: 18px; }
  .ugc-card { flex-basis: 150px; }
  .ugc-shop-btn { font-size: 0.56rem; padding: 5px 6px; left: 8px; right: 40px; }
  .ugc-sound-btn { width: 26px; height: 26px; bottom: 8px; right: 8px; }
}
