/* ===== Variables & Reset ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8d090;
  --dark: #111111;
  --dark-card: #1c1c1c;
  --gray: #666666;
  --gray-light: #f7f5f2;
  --border: #e5e0d8;
  --white: #ffffff;
  --admin-bg: #f4f4f5;
  --admin-sidebar: #1a1a2e;
  --admin-sidebar-text: #c8c8d8;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #222;
  background: #fff;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 500;
  line-height: 1.2;
}

/* ===== Buttons ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 0.85rem 2.25rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-gold.btn-full { display: block; width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 0.85rem 2.25rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--dark);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-outline.btn-full { display: block; width: 100%; text-align: center; }

.btn-outline-sm {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--dark);
  transition: background 0.2s, color 0.2s;
}
.btn-outline-sm:hover { background: var(--dark); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 80px;
  border-bottom: 1px solid #2a2a2a;
}

.logo img { height: 52px; width: auto; }

.main-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.25rem;
}

.main-nav a {
  color: #bbb;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #bbb;
  transition: all 0.3s;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
}

/* ===== Hero Slider ===== */
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.2); }
  50%       { opacity: 1; transform: scale(1); }
}
@keyframes sparkle-spin {
  0%        { opacity: 0; transform: scale(0.2) rotate(0deg); }
  50%       { opacity: 1; transform: scale(1)   rotate(45deg); }
  100%      { opacity: 0; transform: scale(0.2) rotate(90deg); }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: var(--dark);
}

.star-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 8%;
  color: #fff;
}

.slide-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.slide-overlay h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 20px rgba(0,0,0,0.3);
}

.gold-text { color: var(--gold); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
  z-index: 10;
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: var(--gold); }

/* ===== Sections ===== */
.section {
  padding: 5rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark);
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  margin-bottom: 3rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ===== Product Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.card-image {
  overflow: hidden;
  height: 280px;
  background: var(--gray-light);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .card-image img { transform: scale(1.05); }

.card-body { padding: 1.25rem; }

.card-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0.4rem 0 0.5rem;
  font-family: 'Cormorant Garamond', serif;
}
.card-body h3 a { color: var(--dark); }
.card-body h3 a:hover { color: var(--gold); }

.price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.btn-cart {
  display: block;
  width: 100%;
  background: var(--dark);
  color: #fff;
  padding: 0.75rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid var(--dark);
  transition: background 0.2s, color 0.2s;
}
.btn-cart:hover { background: var(--gold); border-color: var(--gold); }

/* ===== About Teaser ===== */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: var(--dark);
  color: #fff;
}

.about-teaser-image { overflow: hidden; }
.about-teaser-image img { width: 100%; height: 100%; object-fit: cover; }

.about-teaser-content {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-teaser-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 1.25rem;
}
.about-teaser-content p { color: #ccc; margin-bottom: 1rem; font-size: 0.95rem; }
.about-teaser-content .quote {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.about-teaser-content .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  align-self: flex-start;
}
.about-teaser-content .btn-outline:hover { background: var(--gold); color: #fff; }

/* ===== Services Mini Grid ===== */
.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.service-mini {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-mini:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.service-mini img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.service-mini h3 { font-size: 1rem; font-weight: 500; }
.service-mini p { font-size: 0.85rem; color: var(--gray); margin-top: 0.25rem; }

/* ===== Page Hero ===== */
.page-hero {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 2px;
}
.page-hero p {
  color: #aaa;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* ===== Shop Page ===== */
.shop-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--gray);
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--gray);
}
.empty-state svg { margin: 0 auto 1.5rem; }
.empty-state h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.empty-state p { margin-bottom: 2rem; }

/* ===== Product Detail ===== */
.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-detail-image img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
}
.product-detail-info h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.product-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin: 1rem 0 0.5rem;
}
.product-price-range {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.product-description {
  color: #444;
  font-size: 0.95rem;
  margin: 1.25rem 0;
  line-height: 1.8;
}

.size-select-row, .qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.size-select-row label, .qty-row label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 60px;
  flex-shrink: 0;
}
.size-select-row select, .qty-row input {
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 0.9rem;
  background: #fff;
  flex: 1;
}
.qty-row input { width: 80px; flex: none; }

.add-to-cart-form { margin-top: 1.5rem; }

.product-meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.product-meta p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray);
  text-transform: uppercase;
}
.back-link:hover { color: var(--gold); }

/* ===== Cart ===== */
.cart-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0.75rem 0;
  border-bottom: 1.5px solid var(--border);
}
.cart-table td {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 0.95rem;
}
.cart-product-cell { display: flex; align-items: center; gap: 1rem; }
.cart-product-cell img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}
.qty-form { display: inline; }
.qty-input {
  width: 60px;
  padding: 0.4rem;
  border: 1.5px solid var(--border);
  text-align: center;
  font-family: inherit;
}
.remove-btn {
  font-size: 1.2rem;
  color: var(--gray);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.remove-btn:hover { background: #fee; color: #c00; border-color: #c00; }

.cart-summary {
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.cart-summary h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.6rem 0;
  color: var(--gray);
}
.summary-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  border-top: 1.5px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}

/* ===== Checkout ===== */
.checkout-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}
.checkout-form-col h2, .checkout-summary-col h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem; }
.paypal-wrap { margin-top: 2rem; }
.paypal-note { font-size: 0.85rem; color: var(--gray); margin-bottom: 1rem; }
.form-error { color: #c00; font-size: 0.85rem; margin-top: 0.5rem; }
#paypal-button-container { min-height: 60px; }

.checkout-summary-col {
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.checkout-items { margin-bottom: 1.5rem; }
.checkout-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.checkout-item img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  flex-shrink: 0;
}
.checkout-item-info { flex: 1; }
.checkout-item-name { display: block; font-size: 0.9rem; font-weight: 600; }
.checkout-item-qty { font-size: 0.8rem; color: var(--gray); }
.checkout-item-price { font-weight: 600; font-size: 0.95rem; flex-shrink: 0; }

/* ===== Order Success ===== */
.success-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}
.success-card {
  text-align: center;
  max-width: 560px;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gold);
  color: #fff;
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.success-card h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.success-subtitle { color: var(--gray); margin-bottom: 2rem; }
.order-confirm-details {
  background: var(--gray-light);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
.order-confirm-details p { margin-bottom: 0.4rem; font-size: 0.95rem; }
.success-next { font-size: 0.9rem; color: var(--gray); margin: 1.5rem 0 2rem; }
.success-next a { color: var(--gold); }

/* ===== Services Page ===== */
.services-section { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.services-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 0.95rem;
  color: #444;
}
.services-intro .btn-gold { margin-top: 1.5rem; }
.services-blocks { display: flex; flex-direction: column; gap: 0; }
.services-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.services-block-reverse { direction: rtl; }
.services-block-reverse > * { direction: ltr; }
.services-block-image { overflow: hidden; }
.services-block-image img { width: 100%; height: 100%; object-fit: cover; }
.services-block-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gray-light);
}
.services-block:nth-child(even) .services-block-content { background: var(--dark); color: #fff; }
.services-block:nth-child(even) .services-block-content h2 { color: #fff; }
.services-block-content h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.price-table tr { border-bottom: 1px solid rgba(0,0,0,0.08); }
.services-block:nth-child(even) .price-table tr { border-color: rgba(255,255,255,0.1); }
.price-table td { padding: 0.6rem 0; font-size: 0.95rem; }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--gold); }
.services-note { font-size: 0.85rem; color: var(--gray); margin-top: 1rem; }
.services-note a { color: var(--gold); }
.services-cta {
  background: var(--dark);
  text-align: center;
  padding: 5rem 2rem;
  color: #fff;
}
.services-cta h2 { font-size: 2.2rem; color: #fff; margin-bottom: 1rem; }
.services-cta p { color: #aaa; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== About Page ===== */
.about-section { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about-portrait { width: 100%; object-fit: cover; max-height: 600px; }
.about-text-col h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.about-text-col p { font-size: 0.95rem; color: #444; margin-bottom: 1rem; line-height: 1.8; }
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}
.about-gallery img { width: 100%; height: 280px; object-fit: cover; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
}
.value-icon {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--gray); }
.about-cta {
  background: var(--gray-light);
  text-align: center;
  padding: 5rem 2rem;
}
.about-cta h2 { font-size: 2rem; margin-bottom: 2rem; }

/* ===== Contact Page ===== */
.contact-section { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 1rem; }
.contact-info > p { color: #444; margin-bottom: 2.5rem; font-size: 0.95rem; }
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.contact-item a { color: var(--gold); font-size: 0.95rem; }
.contact-item p { font-size: 0.875rem; color: var(--gray); margin-top: 0.2rem; }
.contact-image img { width: 100%; object-fit: cover; max-height: 580px; }

/* ===== Footer ===== */
.site-footer { background: var(--dark); color: #bbb; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
}
.footer-logo { height: 48px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: #888; }
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a, .footer-col p a { color: #888; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover, .footer-col p a:hover { color: var(--gold); }
.footer-col p { font-size: 0.875rem; color: #888; margin-bottom: 0.5rem; }
.instagram-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.875rem;
  transition: color 0.2s;
  margin-top: 0.5rem;
}
.instagram-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: #555;
}

/* ===== Admin Panel ===== */
.admin-body { background: var(--admin-bg); font-family: 'Raleway', sans-serif; }

.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 240px;
  background: var(--admin-sidebar);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar-logo img { height: 32px; }
.admin-sidebar-logo span { color: #fff; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; }

.admin-nav {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  color: var(--admin-sidebar-text);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.admin-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.admin-nav a.active { background: rgba(201,168,76,0.15); color: var(--gold); border-left: 3px solid var(--gold); }
.admin-nav a svg { flex-shrink: 0; }
.admin-logout { margin-top: auto; border-top: 1px solid rgba(255,255,255,0.08); }

.admin-main { flex: 1; padding: 2.5rem; overflow-x: auto; }

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.admin-header h1 {
  font-size: 1.8rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}
.admin-welcome { font-size: 0.85rem; color: var(--gray); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.stat-card {
  background: #fff;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.25rem;
}

.admin-section { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.admin-section-header h2 { font-size: 1rem; font-family: 'Raleway', sans-serif; font-weight: 700; }
.admin-empty { padding: 2rem 1.5rem; color: var(--gray); font-size: 0.9rem; }
.admin-empty-state { text-align: center; padding: 5rem 2rem; color: var(--gray); }

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.admin-table th {
  text-align: left;
  padding: 0.875rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tfoot td {
  padding: 1rem;
  font-weight: 600;
  border-top: 2px solid var(--border);
}

.table-thumb { width: 50px; height: 50px; object-fit: cover; }
.table-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-right: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.table-link:hover { text-decoration: underline; }
.table-link-danger { color: #c00; }
.actions-cell { white-space: nowrap; }
.paypal-id { font-size: 0.75rem; color: var(--gray); max-width: 140px; overflow: hidden; text-overflow: ellipsis; }

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.status-completed { background: #e8f5e9; color: #2e7d32; }
.status-pending { background: #fff8e1; color: #e65100; }

.admin-alert {
  background: #ffeee8;
  border-left: 3px solid #c00;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: #c00;
  margin-bottom: 1.5rem;
}

.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 2rem;
}
.admin-login-card {
  background: #fff;
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.admin-logo { height: 56px; margin: 0 auto 1.5rem; }
.admin-login-card h1 {
  font-size: 1.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 1.75rem;
}
.admin-form .form-group { text-align: left; }
.admin-form .form-group label { text-align: left; }
.admin-back-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}
.admin-back-link:hover { color: var(--gold); }

.admin-form-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.5rem;
  max-width: 760px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-checkbox { display: flex; align-items: center; gap: 0.75rem; }
.form-checkbox input { width: auto; }
.form-checkbox label { text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 0.9rem; }
.form-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.image-preview { margin-top: 0.75rem; }
.image-preview img { width: 80px; height: 80px; object-fit: cover; border: 1px solid var(--border); }

.admin-success {
  background: #e8f5e9;
  border-left: 3px solid #2e7d32;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: #2e7d32;
  margin-bottom: 1.5rem;
}

.settings-section { margin-bottom: 2rem; }
.settings-section h2 {
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.settings-desc { font-size: 0.875rem; color: var(--gray); margin-bottom: 1.75rem; line-height: 1.7; }

.radio-group { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.radio-label:hover { border-color: var(--gold); }
.radio-label input[type="radio"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.radio-label strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
.radio-label small { font-size: 0.8rem; color: var(--gray); }

.field-hint { display: block; font-size: 0.78rem; color: var(--gray); margin-top: 0.4rem; }

.toggle-secret {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.75rem;
  background: none;
  cursor: pointer;
}

.settings-warning {
  background: #fff8e1;
  border-left: 3px solid #f59e0b;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: #92400e;
  margin-top: 1.25rem;
}
.settings-ok {
  background: #e8f5e9;
  border-left: 3px solid #2e7d32;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: #2e7d32;
  margin-top: 1.25rem;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.order-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.order-detail-card h2 {
  font-size: 0.8rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.order-detail-card p { font-size: 0.9rem; margin-bottom: 0.25rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser-content { padding: 3rem 2rem; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .about-main { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-values { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .services-block { grid-template-columns: 1fr; min-height: auto; }
  .services-block-image { height: 280px; }
  .services-block-reverse { direction: ltr; }
  .order-detail-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .site-header { padding: 0 1.25rem; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 300;
    transition: right 0.3s;
    padding: 5rem 2rem 2rem;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 0.875rem 0; border-bottom: 1px solid #2a2a2a; color: #ddd; }
  .nav-overlay.open { display: block; }

  .hero-slider { height: 480px; }
  .slide-overlay h1 { font-size: 2rem; }
  .section { padding: 3.5rem 1.25rem; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .cart-table th:nth-child(2), .cart-table td:nth-child(2) { display: none; }
}

@media (max-width: 480px) {
  .hero-slider { height: 400px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .services-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser-content { padding: 2rem 1.25rem; }
  .cart-summary { position: static; }
  .checkout-summary-col { position: static; }
}

/* ── Error Page ─────────────────────────────────────────────────────────────── */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}
.error-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
}
.error-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid #c9a84c;
  color: #c9a84c;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.error-card h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}
.error-card p {
  color: #aaa;
  margin-bottom: 2rem;
  line-height: 1.7;
}
