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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
  line-height: 1.6;
}

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

button {
  font: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  color: #d4af37;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-subtitle {
  margin-top: 5px;
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.45em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  color: #d8d8d8;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.cart-button {
  background: transparent;
  color: #fff;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

.cart-button {
  border-color: #d4af37;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 50%;
  background: #d4af37;
  color: #111;
  font-weight: 800;
}

/* HERO */

.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.16), transparent 28%),
    linear-gradient(135deg, #090909 0%, #111111 55%, #151515 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  padding: 90px 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  color: #d4af37;
}

.hero-description {
  max-width: 650px;
  margin-top: 24px;
  color: #bcbcbc;
  font-size: 1.05rem;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: #d4af37;
  color: #111;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #e2c45c;
}

.btn-secondary {
  border: 1px solid #4b4b4b;
  color: #fff;
  background: #171717;
}

.btn-secondary:hover {
  border-color: #d4af37;
  color: #d4af37;
}

.hero-highlights {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.hero-highlights div {
  display: flex;
  flex-direction: column;
}

.hero-highlights strong {
  color: #fff;
  font-size: 1rem;
}

.hero-highlights span {
  color: #888;
  font-size: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image-placeholder {
  width: min(440px, 100%);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.17), transparent 35%),
    linear-gradient(145deg, #171717, #090909);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 34px;
}

.hero-image-placeholder span {
  color: #d4af37;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-image-placeholder small {
  margin-top: 5px;
  color: #aaa;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* PRODUCTS */

.products-section {
  padding: 100px 0;
  background: #f6f3eb;
  color: #151515;
}

.section-heading {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading p {
  color: #9d7a13;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading span {
  display: block;
  margin-top: 12px;
  color: #666;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}

.product-image {
  position: relative;
  height: 330px;
  background:
    radial-gradient(
      circle at center,
      rgba(212, 175, 55, 0.22),
      transparent 35%
    ),
    linear-gradient(145deg, #111111, #282828);

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder {
  color: #d4af37;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  background: #d4af37;
  color: #111;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-info {
  padding: 22px;
}

.product-category {
  color: #9d7a13;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.product-info h3 {
  margin-top: 7px;
  font-size: 1.25rem;
}

.product-description {
  margin-top: 10px;
  min-height: 65px;
  color: #666;
  font-size: 0.92rem;
}

.product-bottom {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.product-bottom strong {
  font-size: 1.2rem;
}

.add-cart-btn {
  border: none;
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 11px 15px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s ease;
}

.add-cart-btn:hover {
  background: #d4af37;
  color: #111;
}

/* CUSTOM */

.custom-section {
  padding: 110px 0;
  background: #101010;
}

.custom-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.custom-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.custom-content > div:first-child > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: #adadad;
  max-width: 600px;
}

.measurement-card {
  border: 1px solid #2e2e2e;
  background: #151515;
  border-radius: 22px;
  padding: 34px;
}

.measurement-card span {
  display: inline-block;
  margin-top: 22px;
  color: #d4af37;
  font-size: 0.82rem;
  font-weight: 800;
}

.measurement-card span:first-child {
  margin-top: 0;
}

.measurement-card h3 {
  margin-top: 5px;
  font-size: 1.15rem;
}

.measurement-card p {
  margin-top: 4px;
  color: #999;
  font-size: 0.92rem;
}

/* FOOTER */

.footer {
  padding: 60px 0;
  text-align: center;
  background: #070707;
  border-top: 1px solid #222;
}

.footer h2 {
  color: #d4af37;
  letter-spacing: 0.12em;
}

.footer p {
  margin-top: 6px;
  color: #777;
}

/* CART */

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;

  background: rgba(0, 0, 0, 0.7);

  opacity: 0;
  visibility: hidden;

  transition: 0.25s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;

  width: min(440px, 100%);
  height: 100%;

  background: #ffffff;
  color: #111111;

  padding: 28px;

  display: flex;
  flex-direction: column;

  transform: translateX(100%);
  transition: 0.3s ease;
}

.cart-overlay.active .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.cart-header p {
  color: #9d7a13;
  font-size: 0.72rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cart-header h2 {
  font-size: 2rem;
}

.close-cart {
  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: #111111;
  color: #ffffff;

  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;

  padding: 20px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding: 18px 0;

  border-bottom: 1px solid #eeeeee;
}

.cart-item-info h3 {
  font-size: 1rem;
}

.cart-item-info p {
  margin-top: 4px;
  color: #777777;
}

.remove-cart-item {
  border: none;
  background: transparent;

  color: #a33;

  cursor: pointer;
  font-weight: 700;
}

.cart-empty {
  padding: 30px 0;
  text-align: center;

  color: #777777;
}

.cart-summary {
  border-top: 1px solid #e5e5e5;

  padding-top: 22px;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;
}

.cart-total-row strong {
  font-size: 1.4rem;
}

.checkout-button {
  width: 100%;
  min-height: 54px;

  border: none;
  border-radius: 9px;

  background: #d4af37;
  color: #111111;

  font-weight: 800;
  cursor: pointer;
}

.checkout-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* CHECKOUT */

.checkout-page {
  min-height: 100vh;
  padding: 70px 0 100px;
  background: #f6f3eb;
  color: #111;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.checkout-back-link {
  color: #d4af37;
  font-weight: 700;
}

.checkout-form-section h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.checkout-intro {
  margin-top: 10px;
  color: #666;
}

.checkout-form {
  margin-top: 35px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-group label span {
  color: #888;
  font-weight: 400;
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 16px;

  border: 1px solid #d6d6d6;
  border-radius: 9px;

  background: #fff;
  color: #111;

  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #d4af37;
}

.delivery-message {
  display: block;
  margin-top: 8px;

  color: #8a6b11;

  font-size: 0.82rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.checkout-submit-button {
  width: 100%;
  min-height: 56px;

  margin-top: 10px;

  border: none;
  border-radius: 9px;

  background: #111;
  color: #fff;

  font-size: 1rem;
  font-weight: 800;

  cursor: pointer;
}

.checkout-submit-button:hover {
  background: #d4af37;
  color: #111;
}

.checkout-summary-card {
  position: sticky;
  top: 110px;

  padding: 30px;

  background: #111;
  color: #fff;

  border-radius: 20px;
}

.summary-label {
  color: #d4af37;

  text-transform: uppercase;
  letter-spacing: 0.14em;

  font-size: 0.72rem;
  font-weight: 800;
}

.checkout-summary-card h2 {
  margin-top: 6px;
  margin-bottom: 25px;
}

.checkout-product {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding: 16px 0;

  border-bottom: 1px solid #2c2c2c;
}

.checkout-product h3 {
  font-size: 0.95rem;
}

.checkout-product strong {
  color: #d4af37;
}

.checkout-empty {
  padding: 25px 0;

  color: #888;
  text-align: center;
}

.summary-row,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 20px;
}

.summary-row {
  color: #aaa;
}

.summary-total {
  padding-top: 20px;

  border-top: 1px solid #333;

  font-size: 1.25rem;
}

.summary-total strong {
  color: #d4af37;
}

/* MOBILE */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
.checkout-layout {
  grid-template-columns: 1fr;
}

.checkout-summary {
  order: -1;
}

.checkout-summary-card {
  position: static;
}
  .hero-content,
  .custom-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-placeholder {
    max-width: 520px;
  }

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

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

.product-image {
  height: 360px;
}

  .icon-button {
    display: none;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero-content {
    padding: 55px 0 70px;
    gap: 35px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-highlights {
    gap: 22px;
  }

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

  .category-image {
    height: 340px;
  }

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* ADMIN LOGIN */

.admin-login-body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(212, 175, 55, 0.18),
      transparent 30%
    ),
    #090909;
}

.admin-login-page {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;
}

.admin-login-card {
  width: min(460px, 100%);

  padding: 42px;

  background: #ffffff;
  color: #111;

  border-radius: 22px;

  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.35);
}

.admin-login-card h1 {
  margin-top: 8px;

  font-size: 2.3rem;
}

.admin-login-intro {
  margin-top: 8px;
  margin-bottom: 30px;

  color: #777;
}

.admin-login-error {
  min-height: 24px;

  margin-bottom: 12px;

  color: #b42318;

  font-size: 0.9rem;
  font-weight: 700;
}

.admin-login-button {
  width: 100%;
  min-height: 54px;

  border: none;
  border-radius: 9px;

  background: #111;
  color: #fff;

  font-size: 1rem;
  font-weight: 800;

  cursor: pointer;
}

.admin-login-button:hover {
  background: #d4af37;
  color: #111;
}

.admin-login-back {
  display: block;

  margin-top: 22px;

  text-align: center;

  color: #8a6b11;

  font-weight: 700;
}
/* ADMIN PRODUCT MODAL */

.admin-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 25px;

  background: rgba(0, 0, 0, 0.72);
}

.admin-modal-overlay.active {
  display: flex;
}

.admin-modal {
  width: min(650px, 100%);
  max-height: 90vh;
  overflow-y: auto;

  padding: 30px;

  background: #fff;
  color: #111;

  border-radius: 20px;
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
  margin-bottom: 28px;
}

.admin-modal-close {
  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: #111;
  color: #fff;

  cursor: pointer;
}

.admin-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin: 15px 0 25px;
}

.admin-checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 12px;

  background: #f5f5f5;
  border-radius: 9px;

  font-weight: 700;
}

.admin-form-message {
  min-height: 24px;
  margin-bottom: 12px;

  color: #8a6b11;
  font-weight: 700;
}

.admin-save-product {
  width: 100%;
}

@media (max-width: 600px) {
  .admin-checkbox-grid {
    grid-template-columns: 1fr;
  }
}
.admin-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 18px 0;

  border-bottom: 1px solid #eee;
}

.admin-product-row:last-child {
  border-bottom: none;
}

.admin-product-details h3 {
  margin-top: 4px;
}

.admin-product-details p {
  margin-top: 6px;
  color: #666;
}

.admin-product-category {
  color: #9d7a13;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.admin-product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-status-badge {
  padding: 7px 10px;
  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 800;
}

.admin-status-badge.active {
  background: #e7f7ec;
  color: #18794e;
}

.admin-status-badge.inactive {
  background: #f5e8e8;
  color: #9b2c2c;
}

.admin-edit-button,
.admin-toggle-button {
  border: none;
  border-radius: 8px;

  padding: 9px 12px;

  cursor: pointer;
  font-weight: 700;
}

.admin-edit-button {
  background: #111;
  color: #fff;
}

.admin-toggle-button {
  background: #d4af37;
  color: #111;
}

@media (max-width: 700px) {
  .admin-product-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-product-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}
/* ADMIN ORDERS */

.admin-orders-section {
  margin-top: 30px;
  padding: 30px;

  background: #fff;

  border-radius: 20px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05);
}

.admin-order-row {
  display: grid;

  grid-template-columns:
    1.2fr 1fr 1fr 1fr;

  gap: 20px;

  align-items: center;

  padding: 20px 0;

  border-bottom: 1px solid #eee;
}

.admin-order-row:last-child {
  border-bottom: none;
}

.admin-order-number {
  font-weight: 800;
}

.admin-order-customer {
  color: #666;
}

.admin-order-total {
  font-weight: 800;
}

.admin-order-status {
  display: inline-flex;

  width: fit-content;

  padding: 7px 10px;

  border-radius: 999px;

  background: #fff4cc;

  color: #7a5b00;

  font-size: 0.75rem;

  font-weight: 800;

  text-transform: capitalize;
}

@media (max-width: 800px) {
  .admin-order-row {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   ADMIN CUSTOMER ORDERS - DARK DESIGN
======================================== */

#adminOrdersSection {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #333333;
  border-radius: 20px;
  padding: 24px;
  margin-top: 20px;
}

#adminOrdersSection h1,
#adminOrdersSection h2,
#adminOrdersSection h3,
#adminOrdersSection p,
#adminOrdersSection span,
#adminOrdersSection div {
  color: #ffffff;
}

#adminOrderList {
  background: #181818 !important;
  color: #ffffff !important;
  border: 1px solid #333333;
  border-radius: 16px;
  padding: 10px 20px;
  margin-top: 15px;
}

.admin-order-row {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr 0.8fr;
  gap: 20px;
  align-items: center;

  background: #181818;
  color: #ffffff !important;

  padding: 18px 10px;
  border-bottom: 1px solid #3a3a3a;
}

.admin-order-row:last-child {
  border-bottom: none;
}

.admin-order-number {
  color: #ffffff !important;
  font-weight: 700;
}

.admin-order-customer {
  color: #dddddd !important;
  margin-top: 6px;
}

.admin-order-total {
  color: #ffffff !important;
  font-weight: 700;
}

.admin-order-status {
  display: inline-block;
  background: #f5a623 !important;
  color: #111111 !important;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
}
/* ==================================================
   TAILORING PROGRESS TRACKER
================================================== */

#tailoringProgressTracker {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}


#tailoringProgressTracker h3 {
  margin-bottom: 24px;
}


.tailoring-progress-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  margin-bottom: 8px;
}


.tailoring-progress-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 38px;
  width: 2px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}


.tailoring-progress-indicator {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
}


.tailoring-progress-step.complete
.tailoring-progress-indicator {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}


.tailoring-progress-step.current
.tailoring-progress-indicator {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #111111;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.15);
}


.tailoring-progress-step.current strong {
  color: #f59e0b;
}


.tailoring-progress-step.complete strong {
  color: #ffffff;
}


.tailoring-progress-step.upcoming {
  opacity: 0.5;
}


.tailoring-progress-step p {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.75;
}


@media (max-width: 700px) {

  #tailoringProgressTracker {
    padding: 18px;
  }

  .tailoring-progress-step {
    gap: 12px;
  }

}
/* =====================================================
   PAYMENT SUCCESS CARD
===================================================== */

.payment-success-card {
  max-width: 720px;
  margin: 48px auto;
  padding: 40px 28px;
  background: #111111;
  color: #ffffff;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.payment-success-card[hidden] {
  display: none;
}

.payment-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #d4af37;
  color: #d4af37;
  font-size: 36px;
  font-weight: 800;
}

.payment-success-label {
  margin: 0 0 12px;
  color: #d4af37;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.payment-success-card h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.05;
}

.payment-success-text {
  max-width: 520px;
  margin: 0 auto 28px;
  color: #cfcfcf;
  line-height: 1.7;
}

.payment-success-details {
  margin: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.payment-success-details > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.payment-success-details > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-success-details span {
  color: #a9a9a9;
}

.payment-success-details strong {
  color: #ffffff;
  text-align: right;
}

.payment-success-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: #d4af37;
  color: #111111;
  text-decoration: none;
  font-weight: 800;
}

.payment-success-button:hover {
  opacity: 0.92;
}

@media (max-width: 640px) {
  .payment-success-card {
    margin: 28px 16px;
    padding: 32px 20px;
    border-radius: 22px;
  }

  .payment-success-details > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .payment-success-details strong {
    text-align: left;
  }

  .payment-success-button {
    width: 100%;
  }
}
/* =====================================================
   STORE ORDER TRACKING
===================================================== */

.order-tracking-section {
  padding: 80px 0;
  background: #f7f2e8;
}

.order-tracking-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  background: #111111;
  color: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.order-tracking-card h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 48px);
}

.order-tracking-intro {
  margin: 0 0 30px;
  color: #cfcfcf;
  line-height: 1.7;
}

.order-tracking-card .form-group {
  margin-bottom: 20px;
}

.order-tracking-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.order-tracking-card input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #383838;
  border-radius: 14px;
  background: #1a1a1a;
  color: #ffffff;
  font: inherit;
}

.order-tracking-card input::placeholder {
  color: #8e8e8e;
}

.tracking-submit-button {
  width: 100%;
  min-height: 56px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: #d4af37;
  color: #111111;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tracking-submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.tracking-message {
  margin: 18px 0 0;
  color: #d4af37;
  font-weight: 700;
}

.tracking-result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tracking-result-header {
  margin-bottom: 24px;
}

.tracking-result-header h3 {
  margin: 6px 0 0;
  font-size: 28px;
}

.tracking-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tracking-status-grid > div {
  padding: 18px;
  border: 1px solid #2d2d2d;
  border-radius: 16px;
  background: #181818;
}

.tracking-status-grid span {
  display: block;
  margin-bottom: 6px;
  color: #a8a8a8;
  font-size: 14px;
}

.tracking-status-grid strong {
  color: #ffffff;
  font-size: 17px;
}

.tracking-items-list {
  margin-top: 24px;
}

.tracking-items-list h4 {
  margin-bottom: 12px;
  color: #d4af37;
}

.tracking-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #2d2d2d;
}

.tracking-item span {
  color: #bcbcbc;
}

@media (max-width: 640px) {
  .order-tracking-section {
    padding: 50px 16px;
  }

  .order-tracking-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .tracking-status-grid {
    grid-template-columns: 1fr;
  }

  .tracking-item {
    flex-direction: column;
    gap: 6px;
  }
}
/* =====================================================
   ORDER TRACKING — PROFESSIONAL PROGRESS STYLE
===================================================== */

.tracking-result {
  animation: trackingFadeIn 0.35s ease;
}

@keyframes trackingFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tracking-result-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tracking-result-header h3 {
  color: #ffffff;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: 0.02em;
}

.tracking-status-grid > div {
  position: relative;
  overflow: hidden;
}

.tracking-status-grid > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #d4af37;
}

.tracking-status-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.tracking-items-list {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tracking-items-list h4 {
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.tracking-item {
  align-items: center;
  min-height: 56px;
}

.tracking-item strong {
  color: #ffffff;
}

.tracking-item span {
  font-size: 14px;
}

/* Completed progress row */
.tracking-item:has(strong:first-child) {
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.tracking-item:hover {
  transform: translateX(3px);
}

/* Make completed checkmarks feel more premium */
.tracking-item strong {
  line-height: 1.4;
}

/* Current final/current stage */
.tracking-item:last-child {
  padding: 16px;
  margin-top: 6px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
}

.tracking-item:last-child strong {
  color: #d4af37;
}

.tracking-item:last-child span {
  color: #d4af37;
  font-weight: 800;
}

/* Mobile polish */
@media (max-width: 640px) {
  .tracking-result-header h3 {
    font-size: 24px;
  }

  .tracking-status-grid > div {
    padding: 16px;
  }

  .tracking-items-list {
    margin-top: 22px;
  }

  .tracking-item:last-child {
    padding: 14px;
  }
}