:root {
  color-scheme: dark;
  --bg: #0f141f;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f3ee;
  --muted: #d7d2c4;
  --gold: #d6b36d;
  --gold-soft: rgba(214, 179, 109, 0.18);
  --accent: #9c7c4c;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(214, 179, 109, 0.14), transparent 25%),
    linear-gradient(135deg, #141b29 0%, #0b1019 35%, #0f141f 100%);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  line-height: 1.7;
}

/* Background video styles: ensure full-viewport coverage and smooth parallax */
.video-parallax {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  will-change: transform, opacity;
  filter: saturate(0.95) contrast(0.95) brightness(0.9);
  opacity: 0.95;
}

/* Ensure main content sits above video */
main, .solo-product, .container {
  position: relative;
  z-index: 1;
}

/* Subtle parallax container transform */
.video-parallax { transform: translateY(0); transition: transform 0.15s linear; }

@media (max-width: 600px) {
  .video-parallax { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .video-parallax, .bg-video { transition: none; transform: none !important; }
}

/* Cart drawer and button styles */
.cart-btn {
  position: fixed;
  top: 1rem;
  left: 1rem; /* LTR left but since RTL, visually left is fine for a cart */
  z-index: 1200;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  cursor: pointer;
}
.cart-badge {
  background: var(--accent, #b9772a);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0; /* drawer slides from right to respect RTL */
  width: min(420px, 90vw);
  background: linear-gradient(180deg, rgba(11,13,18,0.98), rgba(13,16,22,0.99));
  box-shadow: -24px 0 60px rgba(2,6,10,0.6);
  z-index: 1250;
  transform: translateX(110%);
  transition: transform 280ms cubic-bezier(.2,.9,.2,1);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  color: var(--text);
}
.cart-drawer.open { transform: translateX(0); }
.ai-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(420px, 90vw);
  background: linear-gradient(180deg, rgba(11,13,18,0.98), rgba(13,16,22,0.99));
  box-shadow: 24px 0 60px rgba(2,6,10,0.6);
  z-index: 1260;
  transform: translateX(-110%);
  transition: transform 280ms cubic-bezier(.2,.9,.2,1);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  color: var(--text);
}
.ai-drawer.open { transform: translateX(0); }
.ai-chat {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0;
  display: grid;
  gap: 0.85rem;
}
.ai-message {
  padding: 0.95rem 1rem;
  border-radius: 20px;
  max-width: 100%;
  line-height: 1.6;
}
.ai-message.bot {
  background: rgba(255,255,255,0.08);
  align-self: start;
}
.ai-message.user {
  background: rgba(214, 179, 109, 0.18);
  align-self: end;
  text-align: right;
}
.ai-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.ai-input-wrap input {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.ai-input-wrap input:focus {
  outline: none;
  border-color: rgba(214, 179, 109, 0.5);
}
.cart-header { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding-bottom:0.5rem; border-bottom:1px solid rgba(255,255,255,0.03); }
.cart-items { overflow:auto; flex:1; padding:0.5rem 0; }
.cart-item { display:flex; gap:0.75rem; align-items:center; padding:0.5rem 0; border-bottom:1px dashed rgba(255,255,255,0.03); }
.cart-item img { width:64px; height:64px; object-fit:cover; border-radius:8px; }
.cart-item .meta { flex:1; }
.cart-footer { padding-top:0.75rem; border-top:1px solid rgba(255,255,255,0.03); }
.cart-empty { text-align:center; opacity:0.7; padding:2rem 0; }
.cart-actions { display:flex; gap:0.5rem; margin-top:0.5rem; }
.btn-ghost { background:transparent; border:1px solid rgba(255,255,255,0.06); padding:0.5rem 0.8rem; border-radius:8px; color:var(--text); }
.btn-checkout { background:var(--accent, #b9772a); color:#fff; padding:0.6rem 0.9rem; border-radius:10px; border:none; }

/* Small adjustments for product buttons to be interactive */
.add-to-cart { display:inline-block; }

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a.btn {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 20, 31, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.announcement-bar {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 50;
  background: rgba(18, 25, 38, 0.98);
  border-bottom: 1px solid rgba(214, 179, 109, 0.12);
  color: var(--gold);
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 45;
  background: rgba(15, 20, 31, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 250ms ease, opacity 250ms ease;
}

.top-header.hide-header {
  transform: translateY(-100%);
  opacity: 0;
}

.top-header .top-header-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(380px, 2fr) minmax(280px, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.search-wrap {
  position: relative;
}

.search-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.search-field {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr auto;
}

.search-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.search-input:focus {
  outline: none;
  border-color: rgba(214, 179, 109, 0.5);
}

.search-suggestions {
  position: absolute;
  inset: auto 0 0 0;
  margin-top: 0.75rem;
  background: rgba(15,20,31,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 60;
}

.suggestion-item,
.search-suggestions .suggestion-empty {
  width: 100%;
  text-align: right;
  padding: 0.95rem 1.1rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
}

.suggestion-item:hover,
.search-suggestions .suggestion-empty {
  background: rgba(255,255,255,0.03);
}

.top-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.85rem;
}

.icon-btn,
.cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}

.icon-btn:hover,
.cart-btn:hover {
  background: rgba(214,179,109,0.12);
}

.top-actions .cart-badge {
  margin: 0;
}

.site-header {
  position: sticky;
  top: calc(2.6rem + 4.2rem);
  z-index: 42;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.8rem 0;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
  min-height: calc(100vh - 16rem);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  color: var(--muted);
  margin: 1.5rem 0 2rem;
  font-size: 1.1rem;
  max-width: 44rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  min-height: 520px;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-tag {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(214, 179, 109, 0.15);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-image {
  width: 100%;
  height: 340px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(214, 179, 109, 0.25), rgba(156, 124, 76, 0.12)), url("../media/foto/v60 1.jpg") center/cover no-repeat;
}

.value-strip {
  padding: 2.5rem 0 1.5rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem 1.3rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: right;
}

.value-card span {
  display: inline-flex;
  font-size: 1.6rem;
}

.value-card strong {
  display: block;
  font-size: 1rem;
  margin-top: 0.2rem;
}

.categories-section,
.products-section,
.promo-banner,
.reviews-section,
.social-section,
.newsletter-section {
  padding: 4rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.category-card {
  padding: 1.8rem 1.5rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
  text-align: right;
}

.category-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(214,179,109,0.15);
  font-size: 1.5rem;
}

.category-card h3 {
  margin: 1rem 0 0.4rem;
}

.category-card p {
  margin: 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 179, 109, 0.3);
}

.product-details {
  padding: 1.3rem 1.5rem 1.5rem;
  display: grid;
  gap: 1rem;
}

.product-details h3 {
  margin: 0;
  font-size: 1.1rem;
}

.product-details p {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}

.product-meta {
  color: var(--muted);
}

.section-intro {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 720px;
}

.promo-banner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2.5rem;
}

.countdown-panel {
  background: rgba(15,20,31,0.95);
  padding: 1.8rem 1.6rem;
  border-radius: 24px;
  text-align: center;
}

.countdown-timer {
  margin-top: 1rem;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.review-card {
  padding: 1.8rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  display: grid;
  gap: 1rem;
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

.review-card strong {
  font-size: 0.98rem;
}

.review-card span {
  color: var(--gold);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.social-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.4rem;
  border-radius: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.newsletter-form input {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.email-login-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.email-login-modal {
  width: min(460px, 100%);
  border-radius: 28px;
  background: rgba(12, 16, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
  padding: 2rem;
}

.email-login-modal h2 {
  margin: 0 0 0.8rem;
  font-size: 1.45rem;
}

.email-login-modal p {
  margin: 0 0 1.4rem;
  color: var(--muted);
  line-height: 1.7;
}

.email-login-modal input {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  margin-bottom: 1rem;
}

.email-login-modal button {
  width: 100%;
}

.login-hint {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.login-toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  background: rgba(19, 28, 39, 0.97);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 42px rgba(0,0,0,0.28);
  z-index: 1500;
}

.hidden {
  display: none !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.payment-icons {
  text-align: right;
}

@media (max-width: 920px) {
  .top-header .top-header-grid,
  .promo-grid,
  .newsletter-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .categories-grid,
  .reviews-list,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  body {
    padding-top: 5rem;
  }

  .top-header {
    top: 0;
  }

  .header-inner,
  .main-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .top-header .top-header-grid,
  .product-grid,
  .categories-grid,
  .reviews-list,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .search-field {
    grid-template-columns: 1fr;
  }

  .search-input {
    width: 100%;
  }
}

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

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: inline-grid;
  gap: 0.15rem;
  text-align: right;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.nav-cta {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  font-weight: 700;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #d6b36d, #b48a45);
  color: #111219;
  box-shadow: 0 18px 40px rgba(214, 179, 109, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(15, 20, 31, 0.7), rgba(15, 20, 31, 0.4) 45%, rgba(15, 20, 31, 0.9) 100%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  align-items: center;
  gap: 2rem;
}

.hero-content {
  max-width: 34rem;
}

.eyebrow {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy {
  color: var(--muted);
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  min-height: 460px;
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(214, 179, 109, 0.18), transparent 35%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(214, 179, 109, 0.15);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 320px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(214, 179, 109, 0.25), rgba(156, 124, 76, 0.12)),
    url("../media/foto/v60 1.jpg") center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.hero-item-info {
  position: relative;
  z-index: 1;
  margin-top: 1.75rem;
}

.hero-item-info h2 {
  margin: 0;
  font-size: 1.6rem;
}

.hero-item-info p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.products-section {
  padding: 4rem 0 2rem;
}

.section-header {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 179, 109, 0.3);
}

.product-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.image-1 { background-image: url('https://images.unsplash.com/photo-1511920170033-f8396924c348?auto=format&fit=crop&w=900&q=60'); }
.image-2 { background-image: url('https://images.unsplash.com/photo-1488747279002-c8523379faaa?auto=format&fit=crop&w=900&q=60'); }
.image-3 { background-image: url('https://images.unsplash.com/photo-1517685352821-92cf88aee5a5?auto=format&fit=crop&w=900&q=60'); }
.image-4 { background-image: url('https://images.unsplash.com/photo-1511920170033-f8396924c348?auto=format&fit=crop&w=900&q=60'); }

.product-details {
  padding: 1.45rem 1.5rem 1.8rem;
}

.product-details h3 {
  margin: 0;
  font-size: 1.2rem;
}

.product-details p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.about-section {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.about-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.about-panel h2 {
  margin-top: 0;
  font-size: 2rem;
}

.about-panel p {
  color: var(--muted);
  margin: 1.25rem 0 0;
}

.about-features {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.feature-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: rgba(214, 179, 109, 0.08);
  border: 1px solid rgba(214, 179, 109, 0.15);
}

.feature-card strong {
  color: var(--gold);
}

.about-visual {
  min-height: 340px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(156, 124, 76, 0.24), rgba(214, 179, 109, 0.12)),
    url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=crop&w=900&q=60') center/cover no-repeat;
  box-shadow: var(--shadow);
}

/* Product detail styles */
.product-detail {
  padding: 3.5rem 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 1rem;
}

.detail-gallery img {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  height: 320px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.detail-info .product-desc {
  color: var(--muted);
  margin: 0.6rem 0 1rem;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: grid;
  gap: 0.6rem;
}

.product-features li {
  background: rgba(255,255,255,0.02);
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
}

.buy-actions {
  display: flex;
  gap: 0.9rem;
  margin: 1rem 0 1.5rem;
}

.brew-guide h3 {
  margin: 0 0 0.5rem 0;
}

.brew-guide ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.brew-guide li {
  margin: 0.45rem 0;
}


.site-footer {
  padding: 3rem 0 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
}

.site-footer p {
  color: var(--muted);
  max-width: 35rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

@media (max-width: 920px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav {
    justify-content: center;
  }

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

  .hero {
    padding-top: 3rem;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-image {
    height: 260px;
  }
}

/* Mobile navigation and enhanced responsiveness */
.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  color: var(--muted);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; }
  .nav-cta { display: none; }
  header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: stretch;
    padding: 1rem 0;
    background: rgba(15,20,31,0.96);
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  header.nav-open .nav-cta { display: inline-flex; margin-top: 0.6rem; }
}

@media (max-width: 600px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-gallery img { height: 220px; }
  .hero h1 { font-size: 2rem; }
  .hero-copy { font-size: 0.98rem; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-video { display: none; }
}

/* Improve tap targets and readability on small screens */
.btn { padding: 0.85rem 1.25rem; }
.brand-mark { width: 2.6rem; height: 2.6rem; font-size: 1.1rem; }

