/* ========================================
   NISHIKI BOX — Global Stylesheet
   ======================================== */

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

:root {
  --bg:        #faf8f5;
  --bg-alt:    #f0ece4;
  --bg-dark:   #1b1710;
  --text:      #2c2420;
  --text-light: #6b5e54;
  --text-inv:  #faf8f5;
  --gold:      #a0802a;
  --gold-light:#c9a84c;
  --gold-dark: #7a6118;
  --accent:    #8b2f1e;
  --border:    #e0d8cc;
  --card:      #ffffff;
  --shadow:    0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --radius:    6px;
  --max-w:     1200px;
  --font:      'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5 { font-family: var(--font); font-weight: 600; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--bg-dark);
  color: var(--text-inv);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.announcement-bar strong { color: var(--gold-light); }

/* --- Navigation --- */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cart {
  position: relative;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cart:hover { color: var(--text); }
.cart-count {
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.cart-count.empty { display: none; }

/* Mobile menu */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1b1710 0%, #2c2420 50%, #1b1710 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background: url('../images/photo_2025-07-28_17-03-28.jpg') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 24px;
  margin: 0 auto 0 8%;
}
.hero h1 {
  color: var(--text-inv);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero p {
  color: rgba(250,248,245,0.8);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--text-inv);
  border: 1.5px solid rgba(250,248,245,0.4);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-dark {
  background: var(--bg-dark);
  color: var(--text-inv);
}
.btn-dark:hover { background: #2c2420; color: #fff; }
.btn-gold-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: #fff; }

/* --- Sections --- */
.section {
  padding: 80px 0;
}
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--text-inv); }
.section-dark h2, .section-dark h3 { color: var(--text-inv); }
.section-dark p { color: rgba(250,248,245,0.75); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 16px auto 0;
}
.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

/* --- Value Props --- */
.value-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.value-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
}
.value-item:last-child { border-right: none; }
.value-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.value-item h4 {
  font-family: var(--font);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.value-item p {
  font-size: 0.88rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .value-bar { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); }
  .value-item:last-child { border-bottom: none; }
}

/* --- Use Cases Grid --- */
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.use-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.use-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.use-card-img {
  height: 200px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  overflow: hidden;
}
.use-card-img img { width: 100%; height: 100%; object-fit: cover; }
.use-card-body { padding: 24px; }
.use-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.use-card-body p { font-size: 0.9rem; color: var(--text-light); }

@media (max-width: 900px) { .use-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .use-grid { grid-template-columns: 1fr; } }

/* --- Color Showcase --- */
.color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.color-card {
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition);
}
.color-card:hover { transform: scale(1.03); }
.color-card-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}
.color-card-img img { width: 100%; height: 100%; object-fit: cover; }
.color-card h4 { font-size: 1rem; margin-bottom: 4px; }
.color-card p { font-size: 0.82rem; color: var(--text-light); }

@media (max-width: 768px) {
  .color-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Product Page --- */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 48px 0 80px;
}
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
}

.product-gallery { position: sticky; top: 96px; }
.product-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
}
.product-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.product-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.product-thumb {
  width: 72px; height: 54px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color var(--transition);
  background: #fff;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 8px; }
.product-info .section-label { margin-bottom: 8px; }
.product-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.product-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
}
.product-price {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.product-price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.product-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* Color Selector */
.option-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}
.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.color-opt {
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color var(--transition);
  position: relative;
}
.color-opt:hover, .color-opt.active { border-color: var(--gold); }
.color-opt[data-color="navy-gray"]   { background: linear-gradient(135deg, #2c3e6b, #8a8a8a); }
.color-opt[data-color="blue-violet"] { background: linear-gradient(135deg, #3a4a7a, #6b4a8a); }
.color-opt[data-color="red-gold"]    { background: linear-gradient(135deg, #8b2f1e, #c9a84c); }
.color-opt[data-color="brown-gold"]  { background: linear-gradient(135deg, #5a3a20, #c9a84c); }
.color-opt-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  white-space: nowrap;
  color: var(--text-light);
  opacity: 0;
  transition: opacity var(--transition);
}
.color-opt:hover .color-opt-label, .color-opt.active .color-opt-label { opacity: 1; }

/* Quantity selector */
.qty-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.qty-opt {
  padding: 12px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  min-width: 140px;
  background: var(--card);
}
.qty-opt:hover { border-color: var(--gold); }
.qty-opt.active {
  border-color: var(--gold);
  background: rgba(160,128,42,0.06);
}
.qty-opt-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.qty-opt-price {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.qty-opt-per {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}
.qty-opt-save {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 2px;
}

.add-to-cart-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.add-to-cart {
  flex: 1;
  padding: 16px 32px;
  font-size: 1rem;
}
.qty-input {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-input button {
  width: 40px; height: 48px;
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  transition: background var(--transition);
}
.qty-input button:hover { background: var(--border); }
.qty-input input {
  width: 48px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-family: var(--font-sans);
  background: var(--card);
}
.qty-input input:focus { outline: none; }

/* Product features */
.product-features {
  list-style: none;
  margin-bottom: 24px;
}
.product-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.product-features li:last-child { border-bottom: none; }
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.product-specs { margin-top: 32px; }
.product-specs table {
  width: 100%;
  border-collapse: collapse;
}
.product-specs td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.product-specs td:first-child {
  font-weight: 600;
  width: 40%;
  color: var(--text);
}
.product-specs td:last-child { color: var(--text-light); }

/* --- Tabs --- */
.tabs { margin-top: 48px; }
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  gap: 0;
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: var(--text-light);
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font-sans);
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--gold-dark); border-bottom-color: var(--gold); }
.tab-panel { display: none; padding: 32px 0; }
.tab-panel.active { display: block; }
.tab-panel h3 { margin-bottom: 12px; font-size: 1.2rem; }
.tab-panel p { margin-bottom: 16px; font-size: 0.94rem; color: var(--text-light); line-height: 1.8; }

/* --- Wholesale Table --- */
.wholesale-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.wholesale-table th, .wholesale-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.92rem;
}
.wholesale-table thead { background: var(--bg-dark); color: var(--text-inv); }
.wholesale-table th { font-weight: 600; letter-spacing: 0.03em; }
.wholesale-table tbody tr { border-bottom: 1px solid var(--border); }
.wholesale-table tbody tr:hover { background: var(--bg-alt); }
.wholesale-table .highlight-row { background: rgba(160,128,42,0.06); }
.wholesale-table .save-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  margin-left: 8px;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  font-size: 1.3rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--gold);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: rgba(250,248,245,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer h4 {
  color: var(--text-inv);
  font-family: var(--font);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(250,248,245,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(250,248,245,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-payments {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(250,248,245,0.5);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Cart Drawer --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.3rem; }
.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
}
.cart-close:hover { color: var(--text); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--text-light);
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 72px; height: 54px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.cart-item-variant { font-size: 0.8rem; color: var(--text-light); }
.cart-item-price { font-weight: 600; font-size: 0.92rem; margin-top: 4px; }
.cart-item-remove {
  background: none; border: none;
  color: var(--text-light); cursor: pointer;
  font-size: 0.8rem; text-decoration: underline;
  margin-top: 4px;
  padding: 0;
  font-family: var(--font-sans);
}
.cart-item-remove:hover { color: var(--accent); }
.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cart-shipping-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.cart-checkout {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}
.cart-alt-pay {
  text-align: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.cart-alt-pay a { font-weight: 600; }

/* --- Checkout Page --- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 48px 0 80px;
}
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: var(--card);
  color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.order-summary {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}
.order-summary h3 { margin-bottom: 24px; }
.order-line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.order-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.payment-methods { margin-top: 32px; }
.payment-method {
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.payment-method:hover, .payment-method.active {
  border-color: var(--gold);
  background: rgba(160,128,42,0.04);
}
.payment-method input[type="radio"] { accent-color: var(--gold); }
.payment-method-label { font-weight: 600; font-size: 0.92rem; }
.payment-method-desc { font-size: 0.82rem; color: var(--text-light); }

/* --- Inspiration Grid --- */
.inspo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.inspo-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.inspo-card-img {
  height: 260px;
  background: var(--bg-alt);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inspo-card-img img { width: 100%; height: 100%; object-fit: cover; }
.inspo-card-body { padding: 28px; }
.inspo-card-body h3 { margin-bottom: 12px; }
.inspo-card-body p { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }

@media (max-width: 768px) {
  .inspo-grid { grid-template-columns: 1fr; }
}

/* --- About Page --- */
.about-hero {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-alt);
}
.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px;
}
.about-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--text-light);
}

/* --- Page Header --- */
.page-header {
  background: var(--bg-alt);
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--text-light); font-size: 1.05rem; }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* --- Newsletter --- */
.newsletter {
  text-align: center;
  padding: 64px 24px;
  background: var(--bg-alt);
}
.newsletter h2 { margin-bottom: 12px; }
.newsletter p { color: var(--text-light); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: var(--card);
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-dark);
  color: var(--text-inv);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 4000;
  transition: transform 0.4s ease;
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Print */
@media print {
  .nav, .footer, .cart-overlay, .cart-drawer, .scroll-top, .announcement-bar { display: none; }
}
