* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 30%),
    linear-gradient(180deg, #0f0f10 0%, #111 100%);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 16, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-topline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.header-topline-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #cfcfcf;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #d4af37, #f0d36a);
  color: #111;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
}

.logo-subtitle {
  color: #c1c1c1;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.header-contact-pill:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: #f0d36a;
}

.shipping-note {
  background: linear-gradient(135deg, #d4af37, #f0d36a);
  color: #111;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.18);
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.premium-nav-shell {
  display: grid;
  gap: 14px;
  padding: 0 0 18px;
}

.premium-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
}

.premium-links a {
  color: #d9d9d9;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.premium-links a:hover {
  color: #f0d36a;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
  font-size: 14px;
  font-weight: 700;
}

.nav-btn:hover,
.nav-btn.active {
  background: linear-gradient(135deg, #d4af37, #f0d36a);
  color: #111;
  border-color: #d4af37;
}

.section-kicker {
  color: #f0d36a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* HERO */
.luxury-hero {
  padding: 56px 0 36px;
}

.luxury-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.luxury-hero-content h1 {
  margin: 0 0 18px;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -1.3px;
}

.luxury-hero-content p {
  margin: 0 0 26px;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: #f0d36a;
  border: 1px solid rgba(212, 175, 55, 0.22);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #d4af37, #f0d36a);
  color: #111;
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-feature-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px;
}

.hero-feature-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.hero-feature-card span {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.5;
}

.luxury-hero-visual {
  position: relative;
}

.hero-visual-card {
  position: relative;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  background: #0b0b0c;
}

.category-hero-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  filter: brightness(0.72);
}

.hero-overlay-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.62);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.hero-overlay-label {
  display: block;
  color: #f0d36a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 6px;
}

.hero-overlay-card strong {
  font-size: 28px;
  line-height: 1.1;
}

/* BRAND STRIP */
.brand-strip {
  padding: 8px 0 28px;
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brand-strip-inner div {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  color: #d4d4d4;
  font-weight: 700;
}

/* STORY */
.story-section {
  padding: 0 0 18px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 28px;
}

.story-card h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.15;
}

.story-card p {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.7;
  font-size: 16px;
}

.gold-card {
  background:
    linear-gradient(180deg, rgba(212,175,55,0.14), rgba(255,255,255,0.03)),
    #111;
}

/* SERVICE */
.service-section {
  padding: 14px 0 26px;
}

.service-head {
  align-items: end;
  margin-bottom: 24px;
}

.service-intro {
  max-width: 520px;
  color: #c9c9c9;
  line-height: 1.7;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 16px 35px rgba(0,0,0,0.18);
}

.service-card-large {
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.16), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.service-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.24);
  color: #f0d36a;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.7;
  font-size: 15px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.service-btn-primary {
  background: linear-gradient(135deg, #d4af37, #f0d36a);
  color: #111;
}

.service-btn-secondary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

/* SHOP */
.shop-section {
  padding: 10px 0 60px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: #0f0f10;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
  min-height: 390px;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.26);
}

.product-image-wrap {
  position: relative;
  background: #000;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.product-info {
  padding: 16px 16px 18px;
}

.product-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f0d36a;
  margin-bottom: 8px;
  font-weight: 800;
}

.product-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
  min-height: 46px;
}

.product-description {
  color: #c8c8c8;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
  min-height: 66px;
}

.product-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-size: 20px;
  font-weight: 900;
}

.product-action {
  color: #f0d36a;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.empty-state {
  color: #bbb;
  font-size: 18px;
  padding: 20px 0;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,8,8,0.9);
  padding: 46px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 24px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-text {
  color: #c8c8c8;
  line-height: 1.7;
  max-width: 420px;
}

.site-footer h3 {
  margin: 0 0 14px;
  font-size: 16px;
  color: #f0d36a;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: #d7d7d7;
}

.footer-links a:hover {
  color: #f0d36a;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #9f9f9f;
  font-size: 14px;
}

/* LEGAL PAGES */
.legal-page {
  padding: 48px 0 70px;
}

.legal-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 34px;
}

.legal-wrap h1 {
  margin-top: 0;
  font-size: 42px;
  line-height: 1.1;
}

.legal-wrap h2 {
  margin-top: 30px;
  font-size: 24px;
  color: #f0d36a;
}

.legal-wrap p,
.legal-wrap li {
  color: #d0d0d0;
  line-height: 1.8;
  font-size: 16px;
}

.legal-wrap ul {
  padding-left: 20px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 20px;
  color: #f0d36a;
  font-weight: 700;
}

/* CART */
.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.cart-toggle:hover {
  border-color: rgba(212,175,55,0.5);
  color: #f0d36a;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f0d36a);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 120;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100vh;
  background: #0d0d0e;
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -20px 0 60px rgba(0,0,0,0.35);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 130;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-drawer-header h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.cart-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.cart-empty {
  padding: 24px 0;
  color: #cfcfcf;
  line-height: 1.7;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-item-image-wrap {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.cart-item-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.cart-item-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.cart-item-meta {
  color: #c7c7c7;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 12px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.cart-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.cart-qty-value {
  min-width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.cart-remove-btn {
  border: none;
  background: transparent;
  color: #f0d36a;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 0;
}

.cart-summary {
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #d8d8d8;
}

.cart-summary-total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 18px;
  color: #fff;
}

.cart-free-shipping-progress {
  margin: 14px 0 18px;
}

.cart-free-shipping-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  margin-bottom: 10px;
}

.cart-free-shipping-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f0d36a);
  transition: width 0.25s ease;
}

.cart-summary-note {
  color: #f0d36a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.cart-summary-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.cart-continue-btn,
.cart-checkout-btn {
  min-height: 54px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.cart-continue-btn {
  flex: 1;
  background: rgba(255,255,255,0.03);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}

.cart-checkout-btn {
  flex: 1.2;
  background: linear-gradient(135deg, #d4af37, #f0d36a);
  color: #111;
}

.cart-checkout-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.added-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  background: linear-gradient(135deg, #d4af37, #f0d36a);
  color: #111;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* ADMIN */
.admin-body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 35%),
    linear-gradient(180deg, #090909 0%, #111111 100%);
  color: #f5f5f5;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.75);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.admin-header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.admin-eyebrow {
  margin: 0 0 6px;
  color: #d4af37;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.admin-header h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}

.admin-header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-btn {
  border: none;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.secondary-btn {
  background: #1c1c1c;
  color: #f5f5f5;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.danger-btn {
  background: #2a1111;
  color: #ffb1b1;
  border: 1px solid rgba(255, 120, 120, 0.25);
}

.admin-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 28px 20px 50px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.admin-stat-card {
  background: linear-gradient(180deg, rgba(22,22,22,0.96), rgba(14,14,14,0.96));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.admin-stat-label {
  display: block;
  font-size: 13px;
  color: #9a9a9a;
  margin-bottom: 10px;
}

.admin-stat-card strong {
  font-size: 28px;
  color: #ffffff;
}

.admin-orders-head h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.orders-empty-card {
  background: linear-gradient(180deg, rgba(22,22,22,0.96), rgba(14,14,14,0.96));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  padding: 34px;
  text-align: center;
}

.orders-list {
  display: grid;
  gap: 18px;
}

.order-card {
  background: linear-gradient(180deg, rgba(22,22,22,0.98), rgba(13,13,13,0.98));
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.32);
}

.order-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.order-number {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.order-date {
  margin: 6px 0 0;
  color: #999999;
  font-size: 14px;
}

.order-status {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-paid {
  background: rgba(51, 173, 105, 0.14);
  color: #62e196;
  border: 1px solid rgba(98, 225, 150, 0.25);
}

.status-pending {
  background: rgba(212, 175, 55, 0.12);
  color: #f0cb62;
  border: 1px solid rgba(240, 203, 98, 0.22);
}

.status-shipped {
  background: rgba(79, 155, 255, 0.12);
  color: #84bbff;
  border: 1px solid rgba(132, 187, 255, 0.22);
}

.status-cancelled {
  background: rgba(255, 80, 80, 0.12);
  color: #ff9a9a;
  border: 1px solid rgba(255, 154, 154, 0.24);
}

.order-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 0.8fr;
  gap: 18px;
  margin-bottom: 20px;
}

.order-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.order-label {
  display: block;
  font-size: 12px;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.order-products {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.order-products ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-products li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #f1f1f1;
}

.order-products li:last-child {
  border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .luxury-hero-grid,
  .story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-card,
  .category-hero-image {
    min-height: 520px;
    height: 520px;
  }
}

@media (max-width: 980px) {
  .admin-stats,
  .order-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .luxury-hero-content h1 {
    font-size: 42px;
  }

  .hero-features,
  .brand-strip-inner,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .premium-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .premium-links.open {
    display: flex;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-topline-inner {
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-right {
    width: 100%;
    flex-wrap: wrap;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-image-wrap {
    height: 210px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-wrap h1 {
    font-size: 34px;
  }

  .service-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual-card,
  .category-hero-image {
    min-height: 430px;
    height: 430px;
  }

  .cart-toggle {
    order: 2;
  }

  .cart-summary-actions {
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .logo-subtitle {
    letter-spacing: 1.4px;
  }

  .luxury-hero-content h1 {
    font-size: 34px;
  }

  .legal-wrap {
    padding: 24px;
  }

  .shipping-note {
    font-size: 13px;
  }

  .header-contact-pill {
    font-size: 13px;
  }

  .hero-visual-card,
  .category-hero-image {
    min-height: 360px;
    height: 360px;
  }

  .hero-overlay-card strong {
    font-size: 22px;
  }
}
/* SUCCESS / CANCEL PAGE HELPERS */
.break-anywhere {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.status-success {
  background: rgba(51, 173, 105, 0.14);
  color: #62e196;
  border: 1px solid rgba(98, 225, 150, 0.25);
}

.status-danger {
  background: rgba(255, 80, 80, 0.12);
  color: #ff9a9a;
  border: 1px solid rgba(255, 154, 154, 0.24);
}

.info-card {
  background: linear-gradient(180deg, rgba(22,22,22,0.96), rgba(14,14,14,0.96));
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.26);
}

.info-card-label {
  display: block;
  margin-bottom: 10px;
  color: #d4af37;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.info-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.45;
}

.info-card p {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.7;
}

/* ADMIN IMPROVEMENTS */
.orders-empty-state {
  margin-top: 10px;
}

.orders-empty-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
}

.orders-empty-card p {
  margin: 0;
  color: #c9c9c9;
  line-height: 1.7;
}

.order-block strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.4;
}

.order-block p {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.order-products {
  margin-top: 4px;
}

.order-products ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-products li span:first-child {
  flex: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.order-products li span:last-child {
  white-space: nowrap;
  font-weight: 700;
}

.admin-btn:hover,
.secondary-btn:hover,
.danger-btn:hover {
  transform: translateY(-1px);
}

.secondary-btn:hover {
  border-color: rgba(212, 175, 55, 0.45);
}

.danger-btn:hover {
  border-color: rgba(255, 120, 120, 0.45);
}

.admin-stat-card strong,
.order-number,
.order-block strong {
  text-shadow: 0 0 1px rgba(255,255,255,0.04);
}

/* PREMIUM PAGE BUTTON FEEL */
.btn,
.hero-btn,
.service-btn,
.cart-continue-btn,
.cart-checkout-btn,
.admin-btn {
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover,
.hero-btn:hover,
.service-btn:hover,
.cart-continue-btn:hover,
.cart-checkout-btn:hover,
.admin-btn:hover {
  transform: translateY(-1px);
}

.btn-primary:hover,
.hero-btn-primary:hover,
.service-btn-primary:hover,
.cart-checkout-btn:hover {
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.22);
}

.btn-secondary:hover,
.hero-btn-secondary:hover,
.service-btn-secondary:hover,
.cart-continue-btn:hover {
  border-color: rgba(212, 175, 55, 0.32);
}

/* SUCCESS / CANCEL CONSISTENCY */
.success-card,
.cancel-card {
  position: relative;
  overflow: hidden;
}

.success-card::before,
.cancel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.06), transparent 28%);
  pointer-events: none;
}

.success-card > *,
.cancel-card > * {
  position: relative;
  z-index: 1;
}

.order-item {
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.order-item:hover {
  border-color: rgba(212, 175, 55, 0.22);
  transform: translateY(-1px);
}

.address-card,
.summary-card,
.order-item,
.hint-box,
.loading-card,
.error-card {
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* BETTER MOBILE SPACING */
@media (max-width: 900px) {
  .order-card {
    padding: 20px;
  }

  .order-block,
  .order-products,
  .summary-card,
  .address-card,
  .order-item,
  .hint-box {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .order-number {
    font-size: 18px;
  }

  .order-date {
    font-size: 13px;
  }

  .order-status {
    font-size: 12px;
    padding: 8px 12px;
  }

  .admin-header h1 {
    font-size: 28px;
  }

  .admin-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-header-actions {
    width: 100%;
  }

  .admin-btn {
    width: 100%;
  }

  .order-products li {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-products li span:last-child {
    white-space: normal;
  }
}
.admin-shell-hidden {
  display: none;
}

.admin-login-screen {
  min-height: 100vh;
}

.admin-login-card h1 {
  text-shadow: 0 0 1px rgba(255,255,255,0.04);
}