/* ============================================================
   Lucky & Honey — Haupt-CSS Design System
   ============================================================ */

/* --- CSS Variablen (Brand Colors) --- */
:root {
  --black:       #0D0D0D;
  --gold:        #C8920A;
  --amber:       #E8A020;
  --dark-amber:  #A86800;
  --offwhite:    #F7F6F2;
  --white:       #FFFFFF;
  --gray-100:    #F0EFE9;
  --gray-200:    #E0DDD4;
  --gray-300:    #C8C5BC;
  --gray-400:    #9B9890;
  --gray-500:    #6B6866;
  --gray-600:    #4A4845;
  --gray-700:    #2E2D2A;

  --text-primary:   var(--black);
  --text-secondary: var(--gray-500);
  --text-light:     var(--gray-400);
  --bg-main:        var(--offwhite);
  --bg-card:        var(--white);
  --border:         var(--gray-200);

  --font-main:  'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill:999px;

  --shadow-sm:  0 1px 3px rgba(13,13,13,.06), 0 1px 2px rgba(13,13,13,.04);
  --shadow-md:  0 4px 12px rgba(13,13,13,.08), 0 2px 4px rgba(13,13,13,.05);
  --shadow-lg:  0 10px 30px rgba(13,13,13,.12), 0 4px 8px rgba(13,13,13,.06);
  --shadow-gold:0 4px 20px rgba(200,146,10,.25);

  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;

  --container: 1200px;
  --container-narrow: 800px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--black);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-main); font-weight: 600; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: var(--container-narrow); }

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

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

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-secondary); font-size: 0.9em; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn:disabled { opacity: .55; cursor: not-allowed; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover:not(:disabled) {
  background: var(--dark-amber);
  border-color: var(--dark-amber);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--gold);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover:not(:disabled) {
  background: var(--gray-700);
  border-color: var(--gray-700);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}
.btn-ghost:hover:not(:disabled) {
  background: var(--gray-100);
  color: var(--text-primary);
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.btn-icon:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-sale    { background: var(--amber); color: var(--white); }
.badge-new     { background: var(--black); color: var(--white); }
.badge-out     { background: var(--gray-300); color: var(--white); }
.badge-gold    { background: var(--gold); color: var(--white); }

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* --- Form Elements --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.form-group label .required { color: var(--gold); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,10,.15);
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
textarea { min-height: 120px; resize: vertical; }
select { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-hint { font-size: 0.82rem; color: var(--text-muted); margin-top: 5px; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  margin-top: 2px;
}

/* --- Messages --- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-success { background: #ecf9f0; border: 1px solid #6fcf97; color: #1b6e3a; }
.alert-error   { background: #fef0f0; border: 1px solid #f5c2c2; color: #c0392b; }
.alert-warning { background: #fff8e1; border: 1px solid #ffe082; color: #7a5a00; }
.alert-info    { background: #e8f4fd; border: 1px solid #90caf9; color: #1565c0; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  border-bottom: 1px solid #f0ede8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  height: 72px;
  width: auto;
  max-width: 380px;
  display: block;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}
.logo-text .amp { color: var(--amber); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: #333333;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(200,146,10,.07);
}

/* Nav Dropdown */
.nav-item { position: relative; }
.nav-item > a::after {
  content: '▾';
  font-size: 0.7rem;
  margin-left: 4px;
  opacity: .7;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-dropdown a:hover { background: var(--gray-100); color: var(--gold); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-bar {
  display: flex;
  align-items: center;
  background: #f4f2ee;
  border-radius: var(--radius-pill);
  padding: 0 14px;
  gap: 8px;
  transition: background var(--transition);
}
.search-bar:focus-within { background: #ede9e2; }
.search-bar input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--black);
  font-size: 0.88rem;
  width: 160px;
  padding: 8px 0;
  box-shadow: none;
}
.search-bar input::placeholder { color: #999; }
.search-bar button {
  background: none;
  border: none;
  color: #777;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color var(--transition);
}
.search-bar button:hover { color: var(--gold); }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: none;
  background: #f4f2ee;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.cart-btn:hover { color: var(--gold); background: #ede9e2; }
.cart-count {
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-300);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Top Bar */
.top-bar {
  background: var(--gold);
  text-align: center;
  padding: 7px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: var(--gray-300);
  margin-top: 80px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand .logo-text { font-size: 1.6rem; }
.footer-brand p {
  color: var(--gray-400);
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--amber); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--white); }

/* Trust Icons */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-item span { font-size: 1.2rem; }

/* ============================================================
   HOMEPAGE
   ============================================================ */
.hero {
  background: var(--black);
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,146,10,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  padding: 80px 64px 80px 0;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-desc {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  height: 100%;
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}
.hero-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, var(--black), transparent);
}

/* Section Layouts */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 500px;
  margin-inline: auto;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-100);
  cursor: pointer;
  display: block;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.category-card:hover img { transform: scale(1.05); }
.category-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,13,13,.85) 0%, transparent 60%);
  padding: 24px 18px 20px;
}
.category-card-overlay h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.category-card-overlay span {
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 600;
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--gray-100);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-action-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition);
  color: var(--gold);
  font-size: 1.1rem;
}
.product-card:hover .product-action-btn {
  opacity: 1;
  transform: translateY(0);
}
.product-action-btn:hover { background: var(--gold); color: var(--white); }

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info .category-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.product-info h3 {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 10px;
  flex: 1;
}
.product-info h3 a:hover { color: var(--gold); }
.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}
.price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.price-original {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-sale .price-current { color: #c0392b; }

.product-card .add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background var(--transition);
}
.product-card .add-to-cart:hover { background: var(--gold); }
.product-card .add-to-cart.out-of-stock {
  background: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
}

/* ============================================================
   SHOP / CATEGORY PAGE
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}
.shop-sidebar { position: sticky; top: 88px; }
.sidebar-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-box h4 {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-secondary);
}
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  padding: 4px 0;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.filter-item:hover, .filter-item.active { color: var(--gold); }
.filter-item input { accent-color: var(--gold); }

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-count { font-size: 0.9rem; color: var(--text-secondary); }
.shop-sort select {
  width: auto;
  padding: 8px 14px;
  font-size: 0.88rem;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 48px 0;
}
.product-gallery .main-img {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 14px;
}
.product-gallery .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-thumbs .thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-thumbs .thumb.active { border-color: var(--gold); }
.product-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.product-detail-info .breadcrumb a:hover { color: var(--gold); }
.product-detail-info .breadcrumb span { color: var(--gray-300); }
.product-detail-info h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.product-detail-price .current {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--black);
}
.product-detail-price .original {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.product-detail-price .tax-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.product-detail-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.75;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}
.qty-selector button {
  width: 42px;
  height: 44px;
  background: var(--gray-100);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: background var(--transition);
}
.qty-selector button:hover { background: var(--gold); color: var(--white); }
.qty-selector input {
  width: 56px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
}
.qty-selector input:focus { box-shadow: none; border-color: var(--border); }

.product-add-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.product-meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-meta span { font-weight: 600; color: var(--text-primary); }

/* Tabs */
.product-tabs { margin-top: 60px; }
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
}
.tab-btn {
  padding: 10px 22px;
  background: none;
  border: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p, .tab-content li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}
.tab-content ul { list-style: disc; padding-left: 20px; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}
.cart-items { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.cart-item-name a:hover { color: var(--gold); }
.cart-item-price { font-size: 0.88rem; color: var(--text-secondary); }
.cart-item-subtotal {
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
}
.cart-remove {
  display: block;
  margin-top: 8px;
  color: var(--gray-400);
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  background: none;
  transition: color var(--transition);
}
.cart-remove:hover { color: #c0392b; }

.cart-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 88px;
}
.cart-summary h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text-secondary);
}
.summary-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}
.summary-row.free-shipping { color: #2e7d32; font-weight: 600; }
.free-shipping-notice {
  background: #ecf9f0;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.83rem;
  color: #2e7d32;
  margin: 14px 0;
}
.coupon-form {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.coupon-form input { padding: 10px 12px; font-size: 0.88rem; }
.coupon-form button { padding: 10px 14px; white-space: nowrap; font-size: 0.85rem; }

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}
.empty-cart .icon { font-size: 4rem; margin-bottom: 20px; }
.empty-cart h2 { margin-bottom: 10px; }
.empty-cart p { color: var(--text-secondary); margin-bottom: 28px; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}
.checkout-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.checkout-section-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  color: var(--black);
}
.checkout-section-title span {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 0.85rem;
  margin-right: 10px;
}
.diff-shipping-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin: 12px 0;
  cursor: pointer;
}

.checkout-order-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 88px;
}
.order-item-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.order-item-row:last-of-type { border-bottom: none; }
.order-item-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--gray-100);
  flex-shrink: 0;
}
.order-item-name { font-size: 0.88rem; font-weight: 600; flex: 1; }
.order-item-qty { font-size: 0.8rem; color: var(--text-secondary); }
.order-item-price { font-size: 0.9rem; font-weight: 700; }

.paypal-btn-wrap {
  margin-top: 20px;
}
#paypal-button-container { min-height: 50px; }

/* Payment section */
.payment-method-info {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #7a5a00;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

/* ============================================================
   ORDER CONFIRMATION PAGE
   ============================================================ */
.order-confirm {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  padding: 60px 24px;
}
.confirm-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ecf9f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
  border: 3px solid #a5d6a7;
}
.order-confirm h1 { margin-bottom: 12px; }
.order-confirm .subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 36px;
}
.order-details-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  margin-bottom: 24px;
}
.order-details-box h3 { margin-bottom: 16px; font-size: 1rem; }
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-row .label { color: var(--text-secondary); }

/* ============================================================
   PAGE HEADER (Breadcrumb Banner)
   ============================================================ */
.page-header {
  background: var(--black);
  padding: 40px 0;
  margin-bottom: 48px;
}
.page-header h1 { color: var(--white); font-size: 2rem; margin-bottom: 8px; }
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-400);
}
.page-header .breadcrumb a { color: var(--amber); }
.page-header .breadcrumb span { color: var(--gray-600); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.pagination a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.pagination .current { background: var(--gold); border-color: var(--gold); color: var(--white); }
.pagination .disabled { opacity: .4; cursor: default; pointer-events: none; }

/* ============================================================
   CART NOTIFICATION (Toast)
   ============================================================ */
.cart-toast {
  position: fixed;
  top: 90px;
  right: 24px;
  max-width: min(320px, calc(100vw - 48px));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 9999;
  transform: translateX(calc(100% + 30px));
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
  border-left: 4px solid var(--gold);
}
.cart-toast.show { transform: translateX(0); }
.cart-toast .toast-icon { font-size: 1.5rem; }
.cart-toast .toast-msg { font-size: 0.9rem; }
.cart-toast .toast-title { font-weight: 700; margin-bottom: 2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 80px 0; text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --container: 100%; }

  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #f0ede8;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    padding: 12px;
    z-index: 999;
    gap: 4px;
  }
  .main-nav.open a { padding: 12px 16px; color: #333; }
  .main-nav.open a:hover, .main-nav.open a.active { color: var(--gold); background: rgba(200,146,10,.07); }
  .menu-toggle { display: flex; }
  .search-bar { display: none; }
  .site-logo img { height: 44px; max-width: 210px; }
  .cart-btn span:not(.cart-count) { display: none; }

  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .trust-items { gap: 20px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item-subtotal { display: none; }
}

/* Utility classes */
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px;  }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
