/* =========================================================
   ORIYOMI FASHION
   MASTER STYLESHEET
   Storefront + Cart + Checkout + Tracking + Admin
========================================================= */


/* =========================================================
   1. GLOBAL RESET
========================================================= */

* {
  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,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

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


/* =========================================================
   2. STOREFRONT 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 {
  color: #d8d8d8;

  font-size: 0.95rem;

  transition: 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;

  gap: 10px;
}

.icon-button,
.cart-button {
  padding: 10px 14px;

  border: 1px solid #333333;
  border-radius: 999px;

  background: transparent;
  color: #ffffff;
}

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

.cart-count {
  width: 22px;
  height: 22px;

  margin-left: 6px;

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

  border-radius: 50%;

  background: #d4af37;
  color: #111111;

  font-weight: 800;
}


/* =========================================================
   3. 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 {
  padding: 90px 0;

  display: grid;
  grid-template-columns:
    1.15fr 0.85fr;

  align-items: center;

  gap: 60px;
}

.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 {
  min-height: 52px;

  padding: 0 24px;

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

  border: none;
  border-radius: 8px;

  font-weight: 700;

  transition: 0.2s ease;
}

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

.btn-primary:hover {
  transform: translateY(-2px);

  background: #e2c45c;
}

.btn-secondary {
  border: 1px solid #4b4b4b;

  background: #171717;
  color: #ffffff;
}

.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: #ffffff;

  font-size: 1rem;
}

.hero-highlights span {
  color: #888888;

  font-size: 0.85rem;
}

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

.hero-image-placeholder {
  width: min(440px, 100%);

  aspect-ratio: 4 / 5;

  padding: 34px;

  display: flex;
  flex-direction: column;
  justify-content: end;

  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);
}

.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: #aaaaaa;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


/* =========================================================
   4. 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: #666666;
}

.product-grid {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 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;

  overflow: hidden;

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

  background:
    radial-gradient(
      circle at center,
      rgba(212, 175, 55, 0.22),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #111111,
      #282828
    );
}

.product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.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;

  border-radius: 999px;

  background: #d4af37;
  color: #111111;

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

.product-info {
  padding: 22px;
}

.product-category {
  color: #9d7a13;

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

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.product-info h3 {
  margin-top: 7px;

  font-size: 1.25rem;
}

.product-description {
  min-height: 65px;

  margin-top: 10px;

  color: #666666;

  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 {
  padding: 11px 15px;

  border: none;
  border-radius: 8px;

  background: #111111;
  color: #ffffff;

  font-weight: 700;

  transition: 0.2s ease;
}

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


/* =========================================================
   5. CUSTOM TAILORING STOREFRONT
========================================================= */

.custom-section {
  padding: 110px 0;

  background: #101010;
}

.custom-content {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 70px;

  align-items: center;
}

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

.custom-content
> div:first-child
> p:not(.eyebrow) {
  max-width: 600px;

  margin: 20px 0 28px;

  color: #adadad;
}

.measurement-card {
  padding: 34px;

  border: 1px solid #2e2e2e;
  border-radius: 22px;

  background: #151515;
}

.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: #999999;

  font-size: 0.92rem;
}


/* =========================================================
   6. FOOTER
========================================================= */

.footer {
  padding: 60px 0;

  border-top: 1px solid #222222;

  background: #070707;

  text-align: center;
}

.footer h2 {
  color: #d4af37;

  letter-spacing: 0.12em;
}

.footer p {
  margin-top: 6px;

  color: #777777;
}


/* =========================================================
   7. SHOPPING CART
========================================================= */

.cart-overlay {
  position: fixed;

  inset: 0;

  z-index: 2000;

  visibility: hidden;

  opacity: 0;

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

  transition: 0.25s ease;
}

.cart-overlay.active {
  visibility: visible;

  opacity: 1;
}

.cart-panel {
  position: absolute;

  top: 0;
  right: 0;

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

  padding: 28px;

  display: flex;
  flex-direction: column;

  background: #ffffff;
  color: #111111;

  transform:
    translateX(100%);

  transition: 0.3s ease;
}

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

.cart-header {
  padding-bottom: 20px;

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

  border-bottom:
    1px solid #e5e5e5;
}

.cart-header p {
  color: #9d7a13;

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

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

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

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

  border: none;
  border-radius: 50%;

  background: #111111;
  color: #ffffff;
}

.cart-items {
  flex: 1;

  padding: 20px 0;

  overflow-y: auto;
}

.cart-item {
  padding: 18px 0;

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

  gap: 15px;

  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: #aa3333;

  font-weight: 700;
}

.cart-empty {
  padding: 30px 0;

  color: #777777;

  text-align: center;
}

.cart-summary {
  padding-top: 22px;

  border-top:
    1px solid #e5e5e5;
}

.cart-total-row {
  margin-bottom: 18px;

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

.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;
}

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


/* =========================================================
   8. CHECKOUT
========================================================= */

.checkout-page {
  min-height: 100vh;

  padding: 70px 0 100px;

  background: #f6f3eb;
  color: #111111;
}

.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: #666666;
}

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

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

.checkout-form .form-group label {
  display: block;

  margin-bottom: 8px;

  color: #111111;

  font-weight: 700;
}

.checkout-form
.form-group label span {
  color: #888888;

  font-size: 0.85rem;
  font-weight: 400;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;

  padding: 15px 16px;

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

  outline: none;

  background: #ffffff;
  color: #111111;

  font-size: 1rem;
}

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

.delivery-message {
  display: block;

  margin-top: 8px;

  color: #8a6b11;

  font-size: 0.82rem;
}

.checkout-form .form-row {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 18px;
}

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

  margin-top: 10px;

  border: none;
  border-radius: 9px;

  background: #111111;
  color: #ffffff;

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

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

.checkout-summary-card {
  position: sticky;

  top: 110px;

  padding: 30px;

  border-radius: 20px;

  background: #111111;
  color: #ffffff;
}

.summary-label {
  color: #d4af37;

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

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

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

.checkout-product {
  padding: 16px 0;

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

  gap: 15px;

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

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

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

.checkout-empty {
  padding: 25px 0;

  color: #888888;

  text-align: center;
}

.summary-row,
.summary-total {
  margin-top: 20px;

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

  gap: 20px;
}

.summary-row {
  color: #aaaaaa;
}

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

  border-top:
    1px solid #333333;

  font-size: 1.25rem;
}

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


/* =========================================================
   9. PAYMENT SUCCESS
========================================================= */

.payment-success-card {
  max-width: 720px;

  margin: 48px auto;

  padding: 40px 28px;

  border-radius: 28px;

  background: #111111;
  color: #ffffff;

  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;

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

  border: 3px solid #d4af37;
  border-radius: 50%;

  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 {
  padding: 18px 0;

  display: flex;
  justify-content: space-between;

  gap: 20px;
}

.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 {
  min-height: 54px;

  padding: 0 26px;

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

  border-radius: 999px;

  background: #d4af37;
  color: #111111;

  font-weight: 800;
}

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


/* =========================================================
   10. ORDER TRACKING
========================================================= */

.order-tracking-section {
  padding: 80px 0;

  background: #f7f2e8;
}

.order-tracking-card {
  max-width: 760px;

  margin: 0 auto;

  padding: 42px;

  border-radius: 28px;

  background: #111111;
  color: #ffffff;

  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;

  color: #ffffff;

  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;
}

.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-weight: 800;
}

.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);

  animation:
    trackingFadeIn
    0.35s ease;
}

@keyframes trackingFadeIn {
  from {
    opacity: 0;

    transform:
      translateY(10px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }
}

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

  padding-bottom: 18px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.12);
}

.tracking-result-header h3 {
  margin:
    6px 0 0;

  color: #ffffff;

  font-size:
    clamp(
      24px,
      4vw,
      34px
    );

  letter-spacing: 0.02em;
}

.tracking-status-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 14px;
}

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

  overflow: hidden;

  padding: 18px;

  border: 1px solid #2d2d2d;
  border-radius: 16px;

  background: #181818;
}

.tracking-status-grid
> div::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 4px;
  height: 100%;

  background: #d4af37;
}

.tracking-status-grid span {
  display: block;

  margin-bottom: 6px;

  color: #a8a8a8;

  font-size: 14px;
}

.tracking-status-grid strong {
  display: block;

  margin-top: 4px;

  color: #ffffff;

  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;

  color: #d4af37;

  font-size: 18px;

  letter-spacing: 0.04em;
}

.tracking-item {
  min-height: 56px;

  padding: 14px 0;

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

  gap: 18px;

  border-bottom:
    1px solid #2d2d2d;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

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

.tracking-item strong {
  color: #ffffff;

  line-height: 1.4;
}

.tracking-item span {
  color: #bcbcbc;

  font-size: 14px;
}

.tracking-item:last-child {
  margin-top: 6px;

  padding: 16px;

  border:
    1px solid
    rgba(212, 175, 55, 0.5);

  border-radius: 14px;

  background:
    rgba(212, 175, 55, 0.08);
}

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

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


/* =========================================================
   11. 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;

  padding: 30px;

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

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

  padding: 42px;

  border-radius: 22px;

  background: #ffffff;
  color: #111111;

  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: #777777;
}

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

.admin-login-card
.form-group label {
  display: block;

  margin-bottom: 8px;

  color: #111111;

  font-weight: 700;
}

.admin-login-card input {
  width: 100%;

  min-height: 50px;

  padding: 12px 15px;

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

  background: #ffffff;
  color: #111111;

  outline: none;
}

.admin-login-card
input:focus {
  border-color: #d4af37;
}

.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: #111111;
  color: #ffffff;

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

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

.admin-login-back {
  display: block;

  margin-top: 22px;

  color: #8a6b11;

  text-align: center;

  font-weight: 700;
}


/* =========================================================
   12. ADMIN DASHBOARD
========================================================= */

.admin-body {
  min-height: 100vh;

  margin: 0;

  background: #0b0b0b;
  color: #f5f5f5;
}

.admin-header {
  position: sticky;

  top: 0;

  z-index: 100;

  background: #111111;

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

.admin-navbar {
  min-height: 92px;

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

  gap: 24px;
}

.admin-navbar h1 {
  margin:
    4px 0 0;

  color: #ffffff;

  font-size: 26px;
}

.admin-eyebrow {
  margin: 0;

  color: #d4af37;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.admin-store-link {
  min-height: 44px;

  padding: 0 18px;

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

  border: 1px solid #d4af37;
  border-radius: 10px;

  color: #d4af37;

  font-weight: 700;
}

.admin-store-link:hover {
  background: #d4af37;
  color: #111111;
}

.admin-main {
  padding: 36px 0 70px;
}

.admin-layout {
  display: grid;

  grid-template-columns:
    230px
    minmax(0, 1fr);

  gap: 32px;

  align-items: start;
}

.admin-sidebar {
  position: sticky;

  top: 126px;

  padding: 16px;

  display: grid;

  gap: 10px;

  border: 1px solid #272727;
  border-radius: 18px;

  background: #111111;
}

.admin-nav-button {
  width: 100%;
  min-height: 46px;

  padding: 0 16px;

  border: 0;
  border-radius: 10px;

  background: transparent;
  color: #d7d7d7;

  text-align: left;

  font-size: 15px;
  font-weight: 700;
}

.admin-nav-button:hover,
.admin-nav-button.active {
  background: #d4af37;
  color: #111111;
}

.admin-content {
  min-width: 0;
}

.admin-dashboard-section,
.admin-products-section,
.admin-orders-section,
.admin-tailoring-section,
.admin-settings-section {
  padding: 28px;

  border: 1px solid #272727;
  border-radius: 20px;

  background: #111111;
  color: #f5f5f5;
}

.admin-dashboard-section h1,
.admin-section-header h2 {
  margin:
    8px 0 10px;

  color: #ffffff;
}

.admin-dashboard-section
> p:not(.admin-eyebrow),
.admin-section-header
p:not(.admin-eyebrow) {
  color: #a8a8a8;

  line-height: 1.6;
}


/* =========================================================
   13. ADMIN DASHBOARD STATS
========================================================= */

.admin-stats {
  margin-top: 28px;

  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap: 16px;
}

.admin-stats > p,
.admin-stat-card {
  margin: 0;

  padding: 20px;

  border: 1px solid #2e2e2e;
  border-radius: 16px;

  background: #171717;
  color: #bcbcbc;
}

.admin-stats strong,
.admin-stat-card strong {
  display: block;

  margin:
    10px 0 6px;

  color: #ffffff;

  font-size: 26px;
}

.admin-stats span,
.admin-stat-card small {
  color: #808080;
}

.admin-section-header {
  margin-bottom: 26px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 24px;
}

.admin-primary-button {
  min-height: 44px;

  padding: 0 20px;

  border: 0;
  border-radius: 10px;

  background: #d4af37;
  color: #111111;

  font-size: 14px;
  font-weight: 800;
}

.admin-primary-button:hover {
  background: #e2c45c;
}

.admin-primary-button:disabled {
  opacity: 0.55;

  cursor: not-allowed;
}


/* =========================================================
   14. ADMIN PRODUCTS
========================================================= */

.admin-product-list,
.admin-order-list,
.admin-tailoring-list {
  display: grid;

  gap: 14px;
}

.admin-product-row {
  padding: 18px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  gap: 20px;

  align-items: center;

  border: 1px solid #2b2b2b;
  border-radius: 14px;

  background: #171717;
}

.admin-product-details h3 {
  margin:
    8px 0;

  color: #ffffff;
}

.admin-product-details p {
  margin:
    5px 0;

  color: #b9b9b9;
}

.admin-product-category {
  color: #d4af37;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}

.admin-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;

  gap: 9px;
}

.admin-status-badge {
  min-height: 30px;

  padding: 0 10px;

  display: inline-flex;
  align-items: center;

  border-radius: 999px;

  background: #292929;
  color: #dedede;

  font-size: 12px;
  font-weight: 800;
}

.admin-status-badge.active {
  background: #17381e;
  color: #8ee09b;
}

.admin-status-badge.inactive {
  background: #3b2020;
  color: #ff9b9b;
}

.admin-edit-button,
.admin-toggle-button,
.admin-order-quick-button {
  min-height: 38px;

  padding: 0 13px;

  border: 1px solid #3a3a3a;
  border-radius: 8px;

  background: #202020;
  color: #ffffff;

  font-weight: 700;
}

.admin-edit-button:hover,
.admin-toggle-button:hover,
.admin-order-quick-button:hover {
  border-color: #d4af37;

  color: #d4af37;
}


/* =========================================================
   15. ADMIN ORDERS
========================================================= */

.admin-order-row {
  padding: 18px;

  display: grid;

  grid-template-columns:
    1.3fr
    1fr
    0.8fr
    0.8fr;

  gap: 20px;

  align-items: center;

  border: 1px solid #2b2b2b;
  border-radius: 14px;

  background: #171717;
  color: #ffffff;
}

.admin-order-row p {
  margin:
    5px 0;

  color: #b9b9b9;
}

.admin-order-number {
  color: #d4af37;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.8px;

  text-transform: uppercase;
}

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

.admin-order-total {
  color: #ffffff;

  font-weight: 800;
}

.admin-order-status {
  width: fit-content;

  padding: 7px 12px;

  display: inline-flex;
  align-items: center;

  border-radius: 999px;

  background: #f5a623;
  color: #111111;

  font-size: 12px;
  font-weight: 800;

  text-transform: capitalize;
}

.admin-order-quick-actions {
  margin:
    18px 0;

  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}


/* =========================================================
   16. ADMIN TAILORING
========================================================= */

.admin-tailoring-summary {
  margin-bottom: 24px;

  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap: 16px;
}

.admin-product-placeholder,
.admin-loading-message {
  padding: 24px;

  border: 1px dashed #343434;
  border-radius: 14px;

  background: #171717;
  color: #9f9f9f;
}


/* =========================================================
   17. ADMIN MODAL
   SINGLE AUTHORITATIVE VERSION
========================================================= */

.admin-modal-overlay {
  position: fixed;

  inset: 0;

  z-index: 3000;

  padding: 24px;

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

  overflow-y: auto;

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

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

.admin-modal {
  width: min(760px, 100%);
  max-height:
    calc(100vh - 48px);

  padding: 26px;

  overflow-y: auto;

  border: 1px solid #313131;
  border-radius: 20px;

  background: #111111;
  color: #f5f5f5;

  box-shadow:
    0 24px 80px
    rgba(0, 0, 0, 0.55);
}

.admin-product-modal {
  width: min(900px, 100%);
}

.admin-modal-header {
  margin-bottom: 26px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 18px;
}

.admin-modal-header h2 {
  margin:
    6px 0;

  color: #ffffff;
}

.admin-modal-header p {
  color: #999999;
}

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

  flex-shrink: 0;

  border: 1px solid #343434;
  border-radius: 50%;

  background: #1c1c1c;
  color: #ffffff;
}

.admin-modal-close:hover {
  border-color: #d4af37;

  color: #d4af37;
}

.admin-modal h2,
.admin-modal h3,
.admin-modal h4 {
  color: #ffffff;
}

.admin-modal p {
  color: #c7c7c7;
}

.admin-modal strong {
  color: #ffffff;
}


/* =========================================================
   18. ORDER + TAILORING MODAL DETAILS
========================================================= */

#orderDetailsContent,
#tailoringDetailsContent {
  color: #f5f5f5;
}

#orderDetailsContent
> div,
#tailoringDetailsContent
> div {
  margin-bottom: 0 !important;

  padding: 18px 0;

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

#orderDetailsContent
> div:last-child,
#tailoringDetailsContent
> div:last-child {
  border-bottom: none;
}

#orderDetailsContent h3,
#tailoringDetailsContent h3 {
  margin-bottom: 12px;

  color: #d4af37;

  font-size: 17px;
}

#orderDetailsContent p,
#tailoringDetailsContent p {
  margin:
    7px 0;

  color: #c7c7c7;

  line-height: 1.6;
}

#orderDetailsContent strong,
#tailoringDetailsContent strong {
  color: #ffffff;
}


/* =========================================================
   19. ADMIN FORMS
========================================================= */

.admin-modal .form-group {
  margin-bottom: 18px;

  display: grid;

  gap: 8px;
}

.admin-modal
.form-group label {
  margin: 0;

  color: #ffffff;

  font-weight: 700;
}

.admin-modal input,
.admin-modal textarea,
.admin-modal select {
  width: 100%;

  min-height: 46px;

  padding: 11px 13px;

  border: 1px solid #363636;
  border-radius: 10px;

  outline: none;

  background: #181818;
  color: #ffffff;
}

.admin-modal input:focus,
.admin-modal textarea:focus,
.admin-modal select:focus {
  border-color: #d4af37;
}

.admin-modal
.form-group textarea,
.admin-modal textarea {
  min-height: 110px;

  resize: vertical;
}

.admin-modal
.form-group small {
  color: #838383;
}

.admin-modal .form-row {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 16px;
}

.admin-form-section {
  margin-bottom: 28px;

  padding-bottom: 24px;

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

.admin-checkbox-grid {
  margin:
    15px 0 25px;

  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}

.admin-checkbox-grid label {
  padding: 11px 14px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  border: 1px solid #303030;
  border-radius: 10px;

  background: #181818;
  color: #e0e0e0;

  font-weight: 700;
}

.admin-checkbox-grid input {
  width: auto;
  min-height: auto;
}

.admin-form-message {
  min-height: 22px;

  margin-bottom: 12px;

  color: #d4af37;

  font-weight: 700;
}

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


/* =========================================================
   20. ADMIN PRODUCT IMAGE UPLOAD
========================================================= */

.admin-image-preview-grid {
  margin-top: 14px;

  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap: 14px;
}

.admin-image-preview-card {
  position: relative;

  overflow: hidden;

  padding: 10px;

  border: 1px solid #303030;
  border-radius: 14px;

  background: #181818;
}

.admin-image-preview-card img {
  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  border-radius: 10px;
}

.admin-image-preview-card button {
  width: 100%;

  margin-top: 8px;

  padding: 8px;

  border: 1px solid #3b3b3b;
  border-radius: 8px;

  background: #222222;
  color: #ffffff;

  font-weight: 700;
}

.admin-image-preview-card
button:hover {
  border-color: #d4af37;

  color: #d4af37;
}


/* =========================================================
   21. TAILORING PROGRESS
========================================================= */

#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;

  min-height: 54px;

  margin-bottom: 8px;

  display: flex;
  align-items: center;

  gap: 16px;
}

.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 {
  width: 30px;
  height: 30px;

  flex-shrink: 0;

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

  border:
    2px solid
    rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  font-size: 13px;
  font-weight: 700;
}

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

  background: #16a34a;
  color: #ffffff;
}

.tailoring-progress-step.current
.tailoring-progress-indicator {
  border-color: #f59e0b;

  background: #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;
}


/* =========================================================
   22. TABLET RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;

    grid-template-columns:
      repeat(
        5,
        minmax(120px, 1fr)
      );

    overflow-x: auto;
  }

  .admin-stats,
  .admin-tailoring-summary {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }

}


/* =========================================================
   23. STOREFRONT TABLET
========================================================= */

@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,
        minmax(0, 1fr)
      );
  }

}


/* =========================================================
   24. MOBILE
========================================================= */

@media (max-width: 700px) {

  .admin-navbar {
    padding-top: 18px;
    padding-bottom: 18px;

    flex-direction: column;
    align-items: flex-start;
  }

  .admin-sidebar {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }

  .admin-dashboard-section,
  .admin-products-section,
  .admin-orders-section,
  .admin-tailoring-section,
  .admin-settings-section {
    padding: 20px;
  }

  .admin-section-header {
    flex-direction: column;
  }

  .admin-stats,
  .admin-tailoring-summary,
  .admin-modal .form-row {
    grid-template-columns: 1fr;
  }

  .admin-order-row,
  .admin-product-row {
    grid-template-columns: 1fr;
  }

  .admin-product-actions {
    justify-content: flex-start;
  }

  .admin-image-preview-grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }

  .admin-modal-overlay {
    padding: 12px;
  }

  .admin-modal {
    width: 100%;
    max-height:
      calc(100vh - 24px);

    padding: 20px;

    border-radius: 16px;
  }

}


/* =========================================================
   25. SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

  .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;
  }

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

  .product-image {
    height: 360px;
  }

  .checkout-form .form-row {
    grid-template-columns: 1fr;
  }

  .admin-checkbox-grid {
    flex-direction: column;
  }

  .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%;
  }

  .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;
    align-items: flex-start;

    gap: 6px;
  }

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

  .tracking-result-header h3 {
    font-size: 24px;
  }

}
/* TRACK ORDER MOBILE HEADER */

.track-order-page .site-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 20px;
  gap: 18px;
}

.track-order-page .site-header .brand {
  width: 100%;
}

.track-order-page .site-header nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  overflow: visible;
  white-space: normal;
}

.track-order-page .site-header nav a {
  width: 100%;
  padding: 8px 0;
  font-size: 15px;
}


/* =========================================================
   END OF ORIYOMI FASHION MASTER STYLESHEET
========================================================= */
/* =========================================================
   CUSTOM TAILORING FORM
========================================================= */

.custom-order-card {
  width: 100%;
  max-width: 720px;

  padding: 34px;

  border: 1px solid #2e2e2e;
  border-radius: 22px;

  background: #151515;
  color: #ffffff;

  box-shadow:
    0 20px 55px
    rgba(0, 0, 0, 0.22);
}

.custom-order-card > h2 {
  margin: 6px 0 10px;

  color: #ffffff;

  font-size:
    clamp(
      1.8rem,
      3vw,
      2.5rem
    );

  line-height: 1.15;
}

.custom-order-card
> p:not(.eyebrow) {
  margin-bottom: 28px;

  color: #aaaaaa;
}


/* FORM */

.custom-order-card form {
  width: 100%;
}

.custom-order-card .form-group {
  width: 100%;

  margin-bottom: 20px;

  display: block;
}

.custom-order-card .form-group label {
  display: block;

  margin-bottom: 8px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;
}

.custom-order-card input,
.custom-order-card select,
.custom-order-card textarea {
  display: block;

  width: 100%;
  max-width: none;

  min-height: 50px;

  padding: 13px 15px;

  border: 1px solid #383838;
  border-radius: 11px;

  outline: none;

  background: #1c1c1c;
  color: #ffffff;

  font-size: 15px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.custom-order-card textarea {
  min-height: 120px;

  resize: vertical;

  line-height: 1.5;
}

.custom-order-card input::placeholder,
.custom-order-card textarea::placeholder {
  color: #777777;
}

.custom-order-card input:focus,
.custom-order-card select:focus,
.custom-order-card textarea:focus {
  border-color: #d4af37;

  box-shadow:
    0 0 0 3px
    rgba(212, 175, 55, 0.12);
}

.custom-order-card select {
  appearance: auto;
}


/* MEASUREMENT ROWS */

.custom-order-card .form-row {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 16px;
}

.custom-order-card .form-row .form-group {
  min-width: 0;
}


/* SUBMIT BUTTON */

.custom-order-card
button[type="submit"] {
  width: 100%;
  min-height: 54px;

  margin-top: 6px;

  border: none;
  border-radius: 10px;

  background: #d4af37;
  color: #111111;

  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.custom-order-card
button[type="submit"]:hover {
  transform: translateY(-1px);

  background: #e2c45c;
}


/* STATUS / ERROR MESSAGE */

.custom-order-card
.admin-form-message {
  min-height: 22px;

  margin: 8px 0 12px;

  color: #d4af37;

  font-size: 14px;
  font-weight: 700;
}


/* =========================================================
   CUSTOM TAILORING DESKTOP LAYOUT
========================================================= */

#custom .custom-content {
  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  align-items: start;
}

#custom .measurement-card {
  width: 100%;
}


/* =========================================================
   TAILORING TRACKER CARD
========================================================= */

#track-tailoring .custom-order-card {
  max-width: 760px;

  margin: 0 auto;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  #custom .custom-content {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .custom-order-card {
    max-width: 100%;
  }

}

@media (max-width: 600px) {

  .custom-order-card {
    padding: 24px 18px;

    border-radius: 18px;
  }

  .custom-order-card .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .custom-order-card input,
  .custom-order-card select,
  .custom-order-card textarea {
    font-size: 16px;
  }

}
/* =========================================
   TAILORING UPDATE HISTORY
   ========================================= */

.tailoring-update-history {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.tailoring-update-history h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
}

.tailoring-history-item {
  position: relative;
  padding: 0 0 22px 24px;
  margin-bottom: 18px;
  border-left: 2px solid rgba(255, 174, 0, 0.35);
}

.tailoring-history-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.tailoring-history-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffae00;
}

.tailoring-history-item strong {
  display: block;
  margin-bottom: 6px;
}

.tailoring-history-item p {
  margin: 0 0 8px;
  line-height: 1.6;
}

.tailoring-history-item small {
  opacity: 0.7;
}
/* ===================================== */
/* PRODUCT DETAILS MODAL */
/* ===================================== */

.product-details-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.product-details-overlay.is-open {
  display: flex;
}

.product-details-modal {
  position: relative;
  width: min(1100px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid rgba(214, 158, 46, 0.35);
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.product-details-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: #1f2937;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.product-details-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding: 42px;
}

.product-details-gallery {
  min-width: 0;
}

.product-details-main-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background: #0b1220;
}

.product-details-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-details-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-details-thumbnail {
  flex: 0 0 82px;
  width: 82px;
  height: 100px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #0b1220;
  cursor: pointer;
}

.product-details-thumbnail.is-active {
  border-color: #d89b2b;
}

.product-details-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-details-category {
  margin: 0 0 10px;
  color: #d89b2b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-details-info h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.product-details-description {
  margin: 0 0 22px;
  color: #cbd5e1;
  line-height: 1.75;
}

.product-details-price {
  margin: 0 0 24px;
  color: #d89b2b;
  font-size: 28px;
  font-weight: 800;
}

.product-details-options {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.product-details-option-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 700;
}

.product-details-option-group select,
.product-details-option-group input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: #1f2937;
  color: #ffffff;
}

#productDetailsAddToCart {
  width: 100%;
  min-height: 50px;
}

@media (max-width: 800px) {
  .product-details-overlay {
    padding: 12px;
  }

  .product-details-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 20px 24px;
  }

  .product-details-main-image {
    aspect-ratio: 1 / 1.15;
  }

  .product-details-info h2 {
    font-size: 32px;
  }
}
/* =========================================
   ORDER TRACKING PROGRESS
========================================= */

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

.order-progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  opacity: 0.55;
}

.order-progress-marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.order-progress-step.completed {
  opacity: 1;
}

.order-progress-step.completed
.order-progress-marker {
  font-weight: 700;
}

.order-progress-step.current {
  opacity: 1;
  font-weight: 700;
}

.order-progress-step.current
.order-progress-marker {
  transform: scale(1.08);
}
/* =========================================
   TRACK ORDER - MOBILE
========================================= */

@media (max-width: 600px) {

  .track-order-page {
    padding: 24px 16px 60px;
  }

  .track-order-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 18px;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .track-order-card h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .track-order-card p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .track-order-card form {
    display: grid;
    gap: 14px;
    width: 100%;
  }

  .track-order-card label {
    display: block;
    width: 100%;
  }

  .track-order-card input {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
  }

  .track-order-card button {
    width: 100%;
    min-height: 50px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
  }

  .track-order-result {
    width: 100%;
    max-width: 100%;
    margin-top: 22px;
    box-sizing: border-box;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 16px;
  }

  .site-header nav {
    width: 100%;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
  }

  .site-header nav a {
    flex: 0 0 auto;
  }

  .brand {
    min-width: 110px;
  }
}
/* =========================================
   TRACK ORDER RESULT - PROFESSIONAL UI
========================================= */

.track-order-result {
  margin-top: 28px;
  padding: 28px;
  background: #111111;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.track-order-result h2 {
  margin: 0 0 22px;
  color: #d4af37;
  font-size: 1.8rem;
  line-height: 1.2;
}

.track-order-result > p {
  margin: 10px 0;
  color: #ffffff;
  font-size: 1rem;
}

.track-order-result strong {
  color: #d4af37;
}

.order-progress {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.order-progress-step {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #b9b9b9;
}

.order-progress-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #666666;
  border-radius: 50%;
  font-weight: 700;
}

.order-progress-step.completed {
  color: #ffffff;
}

.order-progress-step.completed .order-progress-marker {
  border-color: #d4af37;
  color: #d4af37;
}

.order-progress-step.current {
  color: #ffffff;
  font-weight: 700;
}

.order-progress-step.current .order-progress-marker {
  border-color: #d4af37;
  background: #d4af37;
  color: #111111;
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.12);
}

.order-progress-step > span:last-child {
  font-size: 0.85rem;
  font-weight: 700;
  color: #8f8f8f;
}

.order-progress-step.completed > span:last-child {
  color: #d4af37;
}

.order-progress-step.current > span:last-child {
  color: #d4af37;
}

@media (max-width: 600px) {
  .track-order-result {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .track-order-result h2 {
    font-size: 1.45rem;
  }

  .order-progress-step {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .order-progress-marker {
    width: 30px;
    height: 30px;
  }

  .order-progress-step > span:last-child {
    grid-column: 2;
    margin-top: -6px;
  }
}
/* =========================
   ORIYOMI POLICY PAGES
========================= */

.policy-header {
  background: #0a0a0a;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.policy-logo {
  color: #d4af37;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.policy-page {
  min-height: 100vh;
  background: #f7f5f0;
  padding: 50px 20px;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.policy-label {
  color: #b08d2f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.policy-container h1 {
  font-size: 38px;
  margin-bottom: 10px;
  color: #111111;
}

.policy-updated {
  color: #777777;
  margin-bottom: 30px;
}

.policy-container h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  color: #111111;
  font-size: 22px;
}

.policy-container p {
  line-height: 1.8;
  color: #444444;
  margin-bottom: 15px;
}

.policy-contact {
  margin-top: 20px;
  padding: 22px;
  background: #faf7ee;
  border-left: 4px solid #d4af37;
  border-radius: 10px;
}

.policy-contact strong {
  color: #111111;
  font-size: 18px;
}

.policy-back {
  display: inline-block;
  margin-top: 35px;
  color: #111111;
  font-weight: 600;
  text-decoration: none;
}

.policy-back:hover {
  color: #b08d2f;
}

@media (max-width: 700px) {
  .policy-page {
    padding: 25px 12px;
  }

  .policy-container {
    padding: 28px 20px;
  }

  .policy-container h1 {
    font-size: 29px;
  }

  .policy-container h2 {
    font-size: 20px;
  }

  .policy-logo {
    font-size: 18px;
  }
}
/* =========================
   ORIYOMI WEBSITE FOOTER
========================= */

.site-footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 45px 20px 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer-brand {
  margin-bottom: 25px;
}

.site-footer-brand h3 {
  color: #d4af37;
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: 2px;
}

.site-footer-brand p {
  color: #cfcfcf;
  margin: 0;
  line-height: 1.7;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 28px 0;
}

.site-footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

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

.site-footer-contact {
  color: #cfcfcf;
  line-height: 1.7;
  margin-top: 20px;
}

.site-footer-contact p {
  margin: 8px 0;
}

.site-footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-bottom p {
  color: #8f8f8f;
  margin: 0;
  font-size: 13px;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 35px 18px 18px;
  }

  .site-footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .site-footer-brand h3 {
    font-size: 19px;
  }
}
/* Fix policy page lists */

.policy-container ul,
.policy-container ol {
  margin: 12px 0 22px;
  padding-left: 24px;
}

.policy-container li {
  color: #444444;
  line-height: 1.8;
  margin-bottom: 8px;
  opacity: 1;
}

.policy-container ul li::marker,
.policy-container ol li::marker {
  color: #b08d2f;
}
/* ==================================================
   ORIYOMI FASHION - PRODUCT DETAILS PAGE
================================================== */

.product-page {
  padding: 60px 0 90px;
  background: #f7f4ec;
  min-height: 100vh;
}

.product-page-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.product-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 56px;
  align-items: start;
}


/* ==================================================
   PRODUCT GALLERY
================================================== */

.product-gallery {
  display: grid;
  gap: 18px;
}

.product-main-image-wrapper {
  width: 100%;
  min-height: 620px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-image {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: contain;
  background: #ffffff;
}

.product-thumbnail-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.product-thumbnail-button {
  appearance: none;
  border: 2px solid transparent;
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.product-thumbnail-button:hover {
  transform: translateY(-2px);
}

.product-thumbnail-button.active,
.product-thumbnail-button.is-active {
  border-color: #d59620;
}

.product-thumbnail-button img {
  display: block;
  width: 100%;
  height: 105px;
  object-fit: cover;
}


/* ==================================================
   PRODUCT INFORMATION
================================================== */

.product-details-panel {
  position: sticky;
  top: 110px;

  background: #171717;
  color: #ffffff;

  border-radius: 20px;
  padding: 32px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.product-collection-name,
.product-details-collection {
  margin: 0 0 6px;
  color: #d7a333;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-details-category {
  margin: 0 0 12px;
  color: #e0aa38;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-details-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: #ffffff;
}

.product-details-price {
  margin: 18px 0 12px;
  color: #f3ad27;
  font-size: 1.8rem;
  font-weight: 800;
}

.product-stock-message,
.product-details-stock {
  margin: 0 0 24px;
  font-weight: 700;
  color: #eeeeee;
}

.product-details-description {
  margin: 0 0 28px;
  color: #d5d5d5;
  line-height: 1.75;
}


/* ==================================================
   PRODUCT OPTIONS
================================================== */

.product-options {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.product-option-group {
  display: grid;
  gap: 8px;
}

.product-option-group label {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
}

.product-option-group select,
.product-option-group input,
.product-option-group textarea {
  width: 100%;
  min-height: 48px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;

  background: #242424;
  color: #ffffff;

  padding: 11px 13px;

  font: inherit;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-option-group textarea {
  min-height: 110px;
  resize: vertical;
}

.product-option-group select:focus,
.product-option-group input:focus,
.product-option-group textarea:focus {
  border-color: #e0aa38;
  box-shadow: 0 0 0 3px rgba(224, 170, 56, 0.14);
}


/* ==================================================
   CUSTOMIZATION NOTE
================================================== */

.product-customization {
  margin-top: 22px;
}

.product-customization label {
  display: block;
  margin-bottom: 8px;

  color: #ffffff;
  font-weight: 700;
}

.product-customization textarea {
  width: 100%;
  min-height: 110px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;

  background: #242424;
  color: #ffffff;

  padding: 13px;

  resize: vertical;

  font: inherit;
}

.product-customization textarea:focus {
  outline: none;
  border-color: #e0aa38;
  box-shadow: 0 0 0 3px rgba(224, 170, 56, 0.14);
}


/* ==================================================
   ADD TO CART
================================================== */

.product-page-add-cart,
.product-add-cart-button {
  width: 100%;

  margin-top: 24px;
  min-height: 54px;

  border: none;
  border-radius: 12px;

  background: #e4ab31;
  color: #111111;

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

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.product-page-add-cart:hover,
.product-add-cart-button:hover {
  background: #f1bb48;
  transform: translateY(-1px);
}

.product-page-add-cart:disabled,
.product-add-cart-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 900px) {
  .product-page {
    padding: 30px 0 60px;
  }

  .product-page-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-details-panel {
    position: static;
    padding: 24px;
  }

  .product-main-image-wrapper {
    min-height: 460px;
  }

  .product-main-image {
    height: 460px;
  }
}


/* ==================================================
   SMALL PHONES
================================================== */

@media (max-width: 600px) {
  .product-page-container {
    width: min(94%, 100%);
  }

  .product-main-image-wrapper {
    min-height: 390px;
    border-radius: 14px;
  }

  .product-main-image {
    height: 390px;
  }

  .product-thumbnail-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-thumbnail-button img {
    height: 80px;
  }

  .product-details-panel {
    border-radius: 14px;
    padding: 20px;
  }

  .product-details-title {
    font-size: 2rem;
  }

  .product-details-price {
    font-size: 1.55rem;
  }
}
/* ==================================================
   ORIYOMI FASHION - PRODUCT PAGE FINAL POLISH
================================================== */

.product-page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  gap: 48px;
}

.product-details-panel {
  padding: 36px;
}

.product-details-panel h1,
.product-details-title {
  margin-bottom: 14px;
}

.product-details-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-options,
.product-details-options {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.product-option-group,
.product-details-option-group {
  display: grid;
  gap: 8px;
}

.product-option-group label,
.product-details-option-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-option-group select,
.product-option-group input,
.product-details-option-group select,
.product-details-option-group input {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 1rem;
}

.product-option-group textarea,
.product-details-option-group textarea,
.product-customization textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  font-size: 1rem;
  line-height: 1.5;
}

.product-customization {
  margin-top: 24px;
}

.product-customization label {
  margin-bottom: 8px;
}

.product-page-add-cart,
.product-add-cart-button,
#addToCartButton {
  width: 100%;
  min-height: 56px;
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
}

.product-thumbnail-list {
  margin-top: 14px;
}

.product-thumbnail-button {
  min-height: 100px;
}

@media (max-width: 1000px) {
  .product-page-grid {
    grid-template-columns: 1fr;
  }

  .product-details-panel {
    position: static;
  }
}

@media (max-width: 600px) {
  .product-details-panel {
    padding: 22px;
  }

  .product-option-group select,
  .product-option-group input,
  .product-details-option-group select,
  .product-details-option-group input {
    min-height: 48px;
  }

  .product-main-image {
    height: 420px;
  }

  .product-main-image-wrapper {
    min-height: 420px;
  }
}
/* ==================================================
   ORIYOMI FASHION - REAL PRODUCT PAGE POLISH
================================================== */

.product-details-page {
  padding: 56px 0 80px;
  background: #0f1419;
  min-height: 100vh;
}

.product-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 52px;
  align-items: start;
}


/* ==================================================
   PRODUCT GALLERY
================================================== */

.product-gallery {
  display: grid;
  gap: 18px;
}

.product-main-image-wrapper {
  width: 100%;
  min-height: 620px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-image {
  width: 100%;
  height: 620px;
  display: block;
  object-fit: contain;
  background: #ffffff;
}

.product-thumbnail-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.product-thumbnail-list button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.product-thumbnail-list button:hover {
  transform: translateY(-2px);
}

.product-thumbnail-list button.active,
.product-thumbnail-list button.is-active {
  border-color: #e4a72c;
}

.product-thumbnail-list img {
  width: 100%;
  height: 105px;
  display: block;
  object-fit: cover;
}


/* ==================================================
   PRODUCT INFORMATION
================================================== */

.product-details-info {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: 18px;
  background: #171c22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.product-details-collection {
  margin: 0 0 6px;
  color: #e6a72b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-details-category {
  margin: 0 0 14px;
  color: #f0b339;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-details-info h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.product-details-price {
  margin: 18px 0 10px;
  color: #f0aa29;
  font-size: 1.8rem;
  font-weight: 800;
}

.product-stock-status {
  margin-bottom: 24px;
  color: #f2f2f2;
  font-size: 0.95rem;
  font-weight: 700;
}


/* ==================================================
   DESCRIPTION
================================================== */

.product-description-section {
  margin-bottom: 28px;
}

.product-description-section h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
}

.product-description-section p {
  margin: 0;
  color: #d7d9dc;
  font-size: 0.98rem;
  line-height: 1.7;
}


/* ==================================================
   OPTIONS
================================================== */

.product-option-section {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.product-option-section label {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-option-section select,
.product-option-section input,
.product-option-section textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: #242a31;
  color: #ffffff;
  padding: 12px 14px;
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-option-section select,
.product-option-section input {
  min-height: 50px;
}

.product-option-section textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.product-option-section select:focus,
.product-option-section input:focus,
.product-option-section textarea:focus {
  border-color: #e4a72c;
  box-shadow: 0 0 0 3px rgba(228, 167, 44, 0.14);
}


/* ==================================================
   MESSAGE
================================================== */

.product-details-message {
  margin: 12px 0;
  color: #f0b339;
  font-size: 0.95rem;
}


/* ==================================================
   ADD TO CART
================================================== */

.product-add-to-cart-button {
  width: 100%;
  min-height: 56px;
  margin-top: 10px;
  border: none;
  border-radius: 12px;
  background: #e4a72c;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.product-add-to-cart-button:hover {
  background: #f2bb45;
  transform: translateY(-1px);
}

.product-add-to-cart-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {
  .product-details-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-details-info {
    position: static;
  }

  .product-main-image-wrapper {
    min-height: 520px;
  }

  .product-main-image {
    height: 520px;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {
  .product-details-page {
    padding: 28px 0 50px;
  }

  .product-details-layout {
    gap: 24px;
  }

  .product-main-image-wrapper {
    min-height: 390px;
    border-radius: 14px;
  }

  .product-main-image {
    height: 390px;
  }

  .product-thumbnail-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-thumbnail-list img {
    height: 82px;
  }

  .product-details-info {
    padding: 22px;
    border-radius: 14px;
  }

  .product-details-info h1 {
    font-size: 2rem;
  }

  .product-details-price {
    font-size: 1.5rem;
  }

  .product-option-section select,
  .product-option-section input {
    min-height: 48px;
  }

  .product-add-to-cart-button {
    min-height: 52px;
  }
}
/* ==================================================
   ORIYOMI FASHION - PROFESSIONAL ADMIN ORDER DETAILS
================================================== */

.admin-order-detail-wrapper {
  display: grid;
  gap: 22px;
}

.admin-order-loading,
.admin-order-empty {
  padding: 20px;
  border-radius: 14px;
  background: #f6f3eb;
  color: #333333;
  font-weight: 600;
}


/* ==================================================
   ORDER SECTION CARD
================================================== */

.admin-order-section-card {
  background: #ffffff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 18px;
  padding: 22px;
}

.admin-order-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-order-section-heading h3 {
  margin: 4px 0 0;
  font-size: 1.15rem;
  color: #171717;
}


/* ==================================================
   CUSTOMER / DELIVERY INFORMATION
================================================== */

.admin-order-info-list {
  display: grid;
  gap: 14px;
}

.admin-order-info-list > div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: #f8f7f3;
  border-radius: 12px;
}

.admin-order-info-list span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #777777;
}

.admin-order-info-list strong {
  color: #181818;
  line-height: 1.5;
  word-break: break-word;
}


/* ==================================================
   ORDER ITEMS
================================================== */

.admin-order-items {
  display: grid;
  gap: 16px;
}

.admin-order-item-card {
  border: 1px solid rgba(20, 20, 20, 0.09);
  border-radius: 16px;
  padding: 18px;
  background: #fbfaf7;
}

.admin-order-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.admin-order-item-header h4 {
  margin: 4px 0 0;
  color: #111111;
  font-size: 1.1rem;
}

.admin-order-item-number {
  display: block;
  color: #b27a10;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-order-item-total {
  color: #b27a10;
  font-size: 1rem;
  white-space: nowrap;
}


/* ==================================================
   PRODUCT DETAIL GRID
================================================== */

.admin-order-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-order-detail-box {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(20, 20, 20, 0.06);
}

.admin-order-detail-box span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7a7a7a;
}

.admin-order-detail-box strong {
  color: #171717;
}


/* ==================================================
   CUSTOMIZATION
================================================== */

.admin-order-customization-box {
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: #fff7df;
  border: 1px solid rgba(194, 137, 27, 0.18);
}

.admin-order-customization-box span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9a690d;
}

.admin-order-customization-box p {
  margin: 0;
  color: #2c2c2c;
  line-height: 1.55;
}


/* ==================================================
   PAYMENT SUMMARY
================================================== */

.admin-order-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-order-payment-grid > div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 12px;
  background: #f8f7f3;
}

.admin-order-payment-grid span,
.admin-order-payment-meta span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #777777;
}

.admin-order-payment-grid strong {
  color: #171717;
  font-size: 1rem;
}


/* ==================================================
   PAYMENT META
================================================== */

.admin-order-payment-meta {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e6e1d8;
}

.admin-order-payment-meta > div {
  display: grid;
  gap: 4px;
}

.admin-order-payment-meta strong {
  color: #171717;
}

.admin-order-reference {
  word-break: break-all;
}


/* ==================================================
   CURRENT STATUS
================================================== */

.admin-order-current-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #171717;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}


/* ==================================================
   MODAL IMPROVEMENT
================================================== */

#orderDetailsModal .admin-modal {
  width: min(760px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
}

#orderDetailsModal .form-group {
  margin-top: 20px;
}

#orderDetailsModal #orderStatusSelect {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 1rem;
}

#orderDetailsModal #updateOrderStatusButton {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {
  .admin-order-section-card {
    padding: 16px;
  }

  .admin-order-section-heading {
    flex-direction: column;
    gap: 10px;
  }

  .admin-order-detail-grid,
  .admin-order-payment-grid {
    grid-template-columns: 1fr;
  }

  .admin-order-item-header {
    flex-direction: column;
  }

  .admin-order-item-total {
    white-space: normal;
  }

  #orderDetailsModal .admin-modal {
    width: 96vw;
    padding: 18px;
  }
}
/* ==================================================
   ORIYOMI ADMIN ORDER DETAILS
   DARK THEME FIX
================================================== */

#orderDetailsModal .admin-order-section-card {
  background: #1d1f20;
  border: 1px solid rgba(255, 179, 0, 0.22);
  color: #ffffff;
}

#orderDetailsModal .admin-order-section-heading h3 {
  color: #ffffff;
}

#orderDetailsModal .admin-order-info-list > div {
  background: #292c2d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#orderDetailsModal .admin-order-info-list span {
  color: #c7c7c7;
}

#orderDetailsModal .admin-order-info-list strong {
  color: #ffffff;
}


/* ORDER ITEMS */

#orderDetailsModal .admin-order-item-card {
  background: #242627;
  border: 1px solid rgba(255, 179, 0, 0.2);
}

#orderDetailsModal .admin-order-item-header h4 {
  color: #ffffff;
}

#orderDetailsModal .admin-order-item-number {
  color: #ffb000;
}

#orderDetailsModal .admin-order-item-total {
  color: #ffb000;
}


/* QUANTITY / PRICE / SIZE / COLOR */

#orderDetailsModal .admin-order-detail-box {
  background: #303334;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#orderDetailsModal .admin-order-detail-box span {
  color: #bdbdbd;
}

#orderDetailsModal .admin-order-detail-box strong {
  color: #ffffff;
}


/* CUSTOMIZATION */

#orderDetailsModal .admin-order-customization-box {
  background: rgba(255, 176, 0, 0.1);
  border: 1px solid rgba(255, 176, 0, 0.3);
}

#orderDetailsModal .admin-order-customization-box span {
  color: #ffb000;
}

#orderDetailsModal .admin-order-customization-box p {
  color: #ffffff;
}


/* PAYMENT */

#orderDetailsModal .admin-order-payment-grid > div {
  background: #292c2d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#orderDetailsModal .admin-order-payment-grid span,
#orderDetailsModal .admin-order-payment-meta span {
  color: #bdbdbd;
}

#orderDetailsModal .admin-order-payment-grid strong,
#orderDetailsModal .admin-order-payment-meta strong {
  color: #ffffff;
}

#orderDetailsModal .admin-order-payment-meta {
  border-top:
    1px solid rgba(255, 255, 255, 0.12);
}


/* CURRENT STATUS */

#orderDetailsModal .admin-order-current-status {
  background: #ffb000;
  color: #151515;
}


/* LOADING / EMPTY */

#orderDetailsModal .admin-order-loading,
#orderDetailsModal .admin-order-empty {
  background: #292c2d;
  color: #ffffff;
}


/* MODAL BACKGROUND */

#orderDetailsModal .admin-modal {
  background: #17191a;
  color: #ffffff;
}
/* ==================================================
   ORIYOMI FASHION - ADMIN ORDER STATUS HISTORY
================================================== */

.admin-order-history-list {
  display: grid;
  gap: 0;
}

.admin-order-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding-bottom: 22px;
}

.admin-order-history-item:last-child {
  padding-bottom: 0;
}

.admin-order-history-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: rgba(255, 176, 0, 0.22);
}

.admin-order-history-item:last-child::before {
  display: none;
}

.admin-order-history-marker {
  position: relative;
  z-index: 2;

  width: 34px;
  height: 34px;

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

  border-radius: 50%;

  background: #ffb000;
  color: #171717;

  font-size: 0.85rem;
  font-weight: 900;

  box-shadow:
    0 0 0 4px rgba(255, 176, 0, 0.10);
}

.admin-order-history-content {
  background: #292c2d;

  border:
    1px solid rgba(255, 255, 255, 0.08);

  border-radius: 14px;

  padding: 15px 16px;
}

.admin-order-history-content > strong {
  display: block;

  color: #ffffff;

  font-size: 1rem;

  margin-bottom: 5px;
}

.admin-order-history-content > p {
  margin: 0;

  color: #d5d5d5;

  line-height: 1.55;
}

.admin-order-history-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;

  margin-top: 10px;
}

.admin-order-history-meta span {
  color: #a9a9a9;

  font-size: 0.76rem;

  line-height: 1.45;
}


/* ==================================================
   HISTORY MOBILE
================================================== */

@media (max-width: 600px) {
  .admin-order-history-item {
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }

  .admin-order-history-marker {
    width: 30px;
    height: 30px;
    font-size: 0.76rem;
  }

  .admin-order-history-item::before {
    left: 14px;
    top: 29px;
  }

  .admin-order-history-content {
    padding: 13px;
  }

  .admin-order-history-meta {
    flex-direction: column;
    gap: 4px;
  }
}
/* ==================================================
   ORIYOMI FASHION - CUSTOMER ORDER TRACKING
================================================== */

.customer-order-section {
  margin-top: 22px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(20, 20, 20, 0.08);
}

.customer-order-section:first-child {
  margin-top: 0;
}

.customer-order-eyebrow {
  margin: 0 0 6px;
  color: #b27a10;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.customer-order-section h2,
.customer-order-section h3,
.customer-order-section h4 {
  color: #171717;
}

.customer-order-section h2 {
  margin: 0 0 18px;
}

.customer-order-section h3 {
  margin: 0 0 16px;
}


/* ==================================================
   ORDER SUMMARY
================================================== */

.customer-order-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.customer-order-summary-grid > div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 12px;
  background: #f7f5ef;
}

.customer-order-summary-grid span {
  color: #777777;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.customer-order-summary-grid strong {
  color: #171717;
  font-size: 1rem;
}


/* ==================================================
   ORDER ITEMS
================================================== */

.customer-order-items {
  display: grid;
  gap: 14px;
}

.customer-order-item {
  padding: 16px;
  border-radius: 14px;
  background: #f8f7f3;
  border: 1px solid rgba(20, 20, 20, 0.07);
}

.customer-order-item-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.customer-order-item-header h4 {
  margin: 4px 0 0;
}

.customer-order-item-number {
  color: #b27a10;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.customer-order-item-header > strong {
  color: #b27a10;
  white-space: nowrap;
}

.customer-order-item-variant {
  margin: 12px 0 8px;
  color: #555555;
}

.customer-order-customization {
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  background: #fff7df;
}

.customer-order-customization span {
  display: block;
  margin-bottom: 4px;
  color: #9a690d;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.customer-order-customization p {
  margin: 0;
}


/* ==================================================
   ORDER PROGRESS
================================================== */

.order-progress {
  display: grid;
  gap: 0;
}

.order-progress-step {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.order-progress-step:last-child {
  border-bottom: none;
}

.order-progress-marker {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eeeeea;
  color: #777777;
  font-weight: 800;
}

.order-progress-step.completed .order-progress-marker,
.order-progress-step.current .order-progress-marker {
  background: #f6b21a;
  color: #171717;
}

.order-progress-label {
  color: #171717;
  font-weight: 700;
}

.order-progress-state {
  color: #777777;
  font-size: 0.82rem;
}

.order-progress-step.current .order-progress-state {
  color: #b27a10;
  font-weight: 700;
}


/* ==================================================
   ORDER UPDATE HISTORY
================================================== */

.customer-order-history-list {
  display: grid;
  gap: 0;
}

.customer-order-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding-bottom: 22px;
}

.customer-order-history-item:last-child {
  padding-bottom: 0;
}

.customer-order-history-item::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: rgba(178, 122, 16, 0.25);
}

.customer-order-history-item:last-child::after {
  display: none;
}

.customer-order-history-marker {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f6b21a;
  color: #171717;
  font-weight: 900;
}

.customer-order-history-content {
  padding-top: 3px;
}

.customer-order-history-content > strong {
  display: block;
  color: #171717;
  margin-bottom: 5px;
}

.customer-order-history-content > p {
  margin: 0 0 8px;
  color: #555555;
  line-height: 1.5;
}

.customer-order-history-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
}

.customer-order-history-meta span {
  color: #8a8a8a;
  font-size: 0.78rem;
}

.customer-order-history-empty {
  padding: 14px;
  border-radius: 10px;
  background: #f7f5ef;
  color: #666666;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {
  .customer-order-section {
    padding: 16px;
  }

  .customer-order-summary-grid {
    grid-template-columns: 1fr;
  }

  .customer-order-item-header {
    flex-direction: column;
  }

  .customer-order-item-header > strong {
    white-space: normal;
  }

  .order-progress-step {
    grid-template-columns: 34px 1fr;
  }

  .order-progress-state {
    grid-column: 2;
  }

  .customer-order-history-item {
    grid-template-columns: 32px 1fr;
    gap: 11px;
  }

  .customer-order-history-marker {
    width: 32px;
    height: 32px;
  }

  .customer-order-history-item::after {
    left: 15px;
    top: 32px;
  }

  .customer-order-history-meta {
    display: grid;
    gap: 5px;
  }
}
/* ==================================================
   ORIYOMI FASHION - TRACK ORDER V6
   PROFESSIONAL CUSTOMER TRACKING EXPERIENCE
================================================== */


/* ==================================================
   PAGE
================================================== */

.track-order-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top right,
      rgba(218, 165, 32, 0.08),
      transparent 34%
    ),
    #080808;
  color: #f6f1e7;
}


/* ==================================================
   HEADER
================================================== */

.track-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid rgba(212, 160, 23, 0.22);
  backdrop-filter: blur(16px);
}


.track-header-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}


.track-brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: #f5b936;
  line-height: 1;
  letter-spacing: 0.12em;
}


.track-brand span {
  font-size: 1.05rem;
  font-weight: 800;
}


.track-brand small {
  margin-top: 5px;
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
}


.track-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}


.track-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}


.track-nav a:hover {
  color: #f5b936;
  transform: translateY(-1px);
}


.track-nav a.active {
  color: #f5b936;
}


.track-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: #f5b936;
}


/* ==================================================
   MAIN
================================================== */

.track-order-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 80px;
}


/* ==================================================
   HERO
================================================== */

.track-order-hero {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(360px, 0.92fr);
  gap: 52px;
  align-items: center;
}


.track-order-hero-copy {
  max-width: 650px;
}


.track-order-kicker {
  margin: 0 0 14px;
  color: #f5b936;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}


.track-order-hero h1 {
  margin: 0;
  max-width: 720px;

  font-size: clamp(
    2.8rem,
    6vw,
    5.6rem
  );

  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #fff;
}


.track-order-hero-text {
  margin: 28px 0 0;
  max-width: 610px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.04rem;
  line-height: 1.8;
}


.track-order-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}


.track-order-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 10px 14px;
  border: 1px solid rgba(212, 160, 23, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}


.track-order-trust-item span {
  color: #f5b936;
  font-weight: 900;
}


.track-order-trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}


/* ==================================================
   FORM CARD
================================================== */

.track-order-form-card {
  padding: 30px;
  border: 1px solid rgba(212, 160, 23, 0.26);
  border-radius: 26px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.022)
    );

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.36);
}


.track-order-form-heading {
  margin-bottom: 24px;
}


.track-order-form-eyebrow {
  margin: 0 0 8px;
  color: #f5b936;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}


.track-order-form-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 1.7rem;
}


.track-order-form-heading p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}


.track-order-field {
  margin-top: 18px;
}


.track-order-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}


.track-order-field input {
  width: 100%;
  min-height: 54px;
  box-sizing: border-box;

  padding: 0 16px;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 14px;

  background:
    rgba(255, 255, 255, 0.055);

  color: #fff;

  font: inherit;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


.track-order-field input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}


.track-order-field input:focus {
  border-color:
    rgba(245, 185, 54, 0.72);

  background:
    rgba(255, 255, 255, 0.075);

  box-shadow:
    0 0 0 4px
    rgba(245, 185, 54, 0.09);
}


.track-order-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border: 0;
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #f6c24a,
      #d69a16
    );

  color: #14100a;

  font-size: 0.95rem;
  font-weight: 900;

  cursor: pointer;

  box-shadow:
    0 14px 34px
    rgba(214, 154, 22, 0.22);

  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}


.track-order-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);

  box-shadow:
    0 18px 38px
    rgba(214, 154, 22, 0.29);
}


.track-order-submit:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}


.track-order-message {
  min-height: 22px;
  margin: 15px 0 0;
  color: #f5b936;
  font-size: 0.88rem;
  line-height: 1.5;
}


/* ==================================================
   RESULT SHELL
================================================== */

.track-order-result-shell {
  margin-top: 56px;
}


.track-order-result[hidden] {
  display: none !important;
}


.track-order-result {
  display: grid;
  gap: 20px;
}


/* ==================================================
   RESULT SECTIONS
================================================== */

.track-order-result
.customer-order-section {
  padding: 26px;

  border:
    1px solid
    rgba(212, 160, 23, 0.22);

  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.024)
    );

  box-shadow:
    0 18px 45px
    rgba(0, 0, 0, 0.18);
}


.track-order-result
.customer-order-eyebrow {
  margin: 0 0 7px;
  color: #f5b936;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


.track-order-result h2,
.track-order-result h3,
.track-order-result h4 {
  color: #fff;
}


.track-order-result h2 {
  margin: 0;
  font-size: clamp(
    1.8rem,
    4vw,
    2.7rem
  );
}


.track-order-result h3 {
  margin:
    0
    0
    18px;

  font-size: 1.2rem;
}


/* ==================================================
   ORDER SUMMARY
================================================== */

.customer-order-summary-grid {
  display: grid;
  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );
  gap: 14px;
  margin-top: 22px;
}


.customer-order-summary-grid > div {
  min-height: 105px;
  padding: 16px;

  border:
    1px solid
    rgba(255, 255, 255, 0.09);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.035);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.customer-order-summary-grid span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.customer-order-summary-grid strong {
  color: #fff;
  font-size: 1.03rem;
}


/* ==================================================
   ORDER ITEMS
================================================== */

.customer-order-items {
  display: grid;
  gap: 14px;
}


.customer-order-item {
  padding: 18px;

  border:
    1px solid
    rgba(255, 255, 255, 0.085);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.025);
}


.customer-order-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}


.customer-order-item-number {
  display: block;
  margin-bottom: 5px;
  color: #f5b936;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.customer-order-item h4 {
  margin: 0;
  font-size: 1.06rem;
}


.customer-order-item-header > strong {
  color: #f5b936;
  white-space: nowrap;
}


.customer-order-item-variant {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}


.customer-order-item > p {
  margin:
    8px
    0
    0;

  color:
    rgba(
      255,
      255,
      255,
      0.58
    );
}


.customer-order-customization {
  margin-top: 14px;
  padding: 12px 14px;

  border-left:
    3px solid
    #f5b936;

  border-radius:
    0
    10px
    10px
    0;

  background:
    rgba(
      245,
      185,
      54,
      0.055
    );
}


.customer-order-customization span {
  display: block;
  color: #f5b936;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}


.customer-order-customization p {
  margin:
    5px
    0
    0;

  color:
    rgba(
      255,
      255,
      255,
      0.78
    );
}


/* ==================================================
   ORDER PROGRESS
================================================== */

.order-progress {
  position: relative;
  display: grid;
  gap: 0;
}


.order-progress-step {
  position: relative;

  display: grid;

  grid-template-columns:
    42px
    minmax(0, 1fr)
    auto;

  align-items: center;

  min-height: 72px;

  border-bottom:
    1px solid
    rgba(
      255,
      255,
      255,
      0.075
    );
}


.order-progress-step:last-child {
  border-bottom: 0;
}


.order-progress-marker {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.24
    );

  border-radius: 50%;

  color:
    rgba(
      255,
      255,
      255,
      0.4
    );

  font-size: 0.76rem;
}


.order-progress-step.completed
.order-progress-marker,
.order-progress-step.current
.order-progress-marker {
  border-color: #f5b936;
  background: #f5b936;
  color: #151009;
}


.order-progress-label {
  color:
    rgba(
      255,
      255,
      255,
      0.7
    );

  font-weight: 700;
}


.order-progress-step.completed
.order-progress-label,
.order-progress-step.current
.order-progress-label {
  color: #fff;
}


.order-progress-state {
  color:
    rgba(
      255,
      255,
      255,
      0.36
    );

  font-size: 0.76rem;
}


.order-progress-step.completed
.order-progress-state {
  color: #82d68a;
}


.order-progress-step.current
.order-progress-state {
  color: #f5b936;
  font-weight: 800;
}


/* ==================================================
   UPDATE HISTORY
================================================== */

.customer-order-history-list {
  position: relative;
  display: grid;
  gap: 0;
}


.customer-order-history-item {
  position: relative;

  display: grid;

  grid-template-columns:
    38px
    minmax(0, 1fr);

  gap: 12px;

  padding-bottom: 24px;
}


.customer-order-history-item:last-child {
  padding-bottom: 0;
}


.customer-order-history-item::before {
  content: "";

  position: absolute;

  left: 13px;
  top: 28px;
  bottom: 0;

  width: 1px;

  background:
    rgba(
      245,
      185,
      54,
      0.26
    );
}


.customer-order-history-item:last-child::before {
  display: none;
}


.customer-order-history-marker {
  position: relative;
  z-index: 1;

  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f5b936;
  color: #161006;

  font-size: 0.76rem;
  font-weight: 900;
}


.customer-order-history-content {
  padding:
    2px
    0
    0;
}


.customer-order-history-content > strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
}


.customer-order-history-content > p {
  margin:
    6px
    0
    0;

  color:
    rgba(
      255,
      255,
      255,
      0.62
    );

  line-height: 1.55;
}


.customer-order-history-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;

  margin-top: 8px;

  color:
    rgba(
      255,
      255,
      255,
      0.38
    );

  font-size: 0.72rem;
}


.customer-order-history-empty {
  padding: 16px;

  border:
    1px dashed
    rgba(
      255,
      255,
      255,
      0.14
    );

  border-radius: 14px;

  color:
    rgba(
      255,
      255,
      255,
      0.48
    );

  background:
    rgba(
      255,
      255,
      255,
      0.02
    );
}


/* ==================================================
   HELP SECTION
================================================== */

.track-order-help {
  margin-top: 34px;

  padding: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border:
    1px solid
    rgba(
      212,
      160,
      23,
      0.18
    );

  border-radius: 22px;

  background:
    rgba(
      255,
      255,
      255,
      0.026
    );
}


.track-order-help h2 {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
}


.track-order-help p:not(
  .track-order-kicker
) {
  max-width: 700px;
  margin:
    10px
    0
    0;

  color:
    rgba(
      255,
      255,
      255,
      0.58
    );

  line-height: 1.65;
}


.track-order-help-link {
  flex: 0 0 auto;

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

  min-height: 46px;

  padding:
    0
    18px;

  border:
    1px solid
    rgba(
      245,
      185,
      54,
      0.42
    );

  border-radius: 12px;

  color: #f5b936;

  text-decoration: none;
  font-weight: 800;
}


/* ==================================================
   FOOTER
================================================== */

.track-order-footer {
  border-top:
    1px solid
    rgba(
      212,
      160,
      23,
      0.16
    );

  background: #050505;
}


.track-order-footer-inner {
  width:
    min(
      1180px,
      calc(100% - 40px)
    );

  margin: 0 auto;

  padding:
    42px
    0
    30px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}


.track-order-footer-brand strong {
  color: #f5b936;
  letter-spacing: 0.11em;
}


.track-order-footer-brand p {
  max-width: 420px;
  margin:
    10px
    0
    0;

  color:
    rgba(
      255,
      255,
      255,
      0.48
    );

  line-height: 1.65;
}


.track-order-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}


.track-order-footer-links a {
  color:
    rgba(
      255,
      255,
      255,
      0.58
    );

  text-decoration: none;

  font-size: 0.82rem;
}


.track-order-footer-links a:hover {
  color: #f5b936;
}


.track-order-footer-bottom {
  width:
    min(
      1180px,
      calc(100% - 40px)
    );

  margin: 0 auto;

  padding:
    18px
    0
    28px;

  border-top:
    1px solid
    rgba(
      255,
      255,
      255,
      0.06
    );

  color:
    rgba(
      255,
      255,
      255,
      0.34
    );

  font-size: 0.76rem;
}


/* ==================================================
   TABLET
================================================== */

@media (
  max-width: 980px
) {

  .track-header-inner {
    min-height: auto;
    padding:
      18px
      0;

    align-items:
      flex-start;
  }


  .track-nav {
    max-width: 650px;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px 18px;
  }


  .track-nav a.active::after {
    bottom: -5px;
  }


  .track-order-main {
    padding-top: 54px;
  }


  .track-order-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }


  .track-order-hero-copy {
    max-width: 760px;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (
  max-width: 700px
) {

  .track-header-inner {
    width:
      min(
        100% - 28px,
        1180px
      );

    display: block;
  }


  .track-brand {
    margin-bottom: 20px;
  }


  .track-nav {
    display: grid;

    grid-template-columns:
      repeat(
        2,
        minmax(
          0,
          1fr
        )
      );

    gap: 8px;
  }


  .track-nav a {
    padding:
      10px
      12px;

    border:
      1px solid
      rgba(
        255,
        255,
        255,
        0.07
      );

    border-radius: 10px;

    background:
      rgba(
        255,
        255,
        255,
        0.025
      );

    font-size: 0.82rem;
  }


  .track-nav a.active {
    border-color:
      rgba(
        245,
        185,
        54,
        0.32
      );

    background:
      rgba(
        245,
        185,
        54,
        0.06
      );
  }


  .track-nav a.active::after {
    display: none;
  }


  .track-order-main {
    width:
      min(
        100% - 28px,
        1180px
      );

    padding:
      42px
      0
      56px;
  }


  .track-order-hero h1 {
    font-size:
      clamp(
        2.4rem,
        13vw,
        4.3rem
      );
  }


  .track-order-hero-text {
    margin-top: 20px;
    font-size: 0.95rem;
  }


  .track-order-trust-row {
    display: grid;
  }


  .track-order-trust-item {
    width: fit-content;
  }


  .track-order-form-card {
    padding: 22px;
    border-radius: 20px;
  }


  .track-order-result-shell {
    margin-top: 34px;
  }


  .track-order-result
  .customer-order-section {
    padding: 20px;
    border-radius: 18px;
  }


  .customer-order-summary-grid {
    grid-template-columns: 1fr;
  }


  .customer-order-summary-grid > div {
    min-height: 86px;
  }


  .customer-order-item-header {
    display: block;
  }


  .customer-order-item-header > strong {
    display: block;
    margin-top: 10px;
  }


  .order-progress-step {
    grid-template-columns:
      38px
      minmax(0, 1fr);

    min-height: 68px;
  }


  .order-progress-state {
    grid-column: 2;
    margin-top: -14px;
    padding-bottom: 12px;
  }


  .customer-order-history-item {
    grid-template-columns:
      34px
      minmax(0, 1fr);
  }


  .track-order-help {
    display: block;
    padding: 22px;
  }


  .track-order-help-link {
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
  }


  .track-order-footer-inner {
    width:
      min(
        100% - 28px,
        1180px
      );

    display: block;
  }


  .track-order-footer-links {
    margin-top: 26px;
    justify-content: flex-start;
  }


  .track-order-footer-bottom {
    width:
      min(
        100% - 28px,
        1180px
      );
  }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (
  max-width: 420px
) {

  .track-nav {
    grid-template-columns: 1fr;
  }


  .track-order-form-card {
    padding: 18px;
  }


  .track-order-result
  .customer-order-section {
    padding: 18px;
  }


  .track-order-hero h1 {
    font-size: 2.6rem;
  }

}
/* ==================================================
   TRACK ORDER V6 - FINAL DESKTOP POLISH
================================================== */

@media (min-width: 981px) {

  .track-order-result-shell {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
  }

  .track-order-result {
    gap: 18px;
  }

  .track-order-result
  .customer-order-section {
    padding: 24px 26px;
  }

  .customer-order-summary-grid {
    gap: 12px;
  }

  .customer-order-summary-grid > div {
    min-height: 96px;
  }

  .order-progress-step {
    min-height: 66px;
  }

  .track-order-help {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ==================================================
   TRACK ORDER V6 - FINAL MOBILE POLISH
================================================== */

@media (max-width: 700px) {

  .track-order-main {
    padding-top: 34px;
  }

  .track-order-hero {
    gap: 28px;
  }

  .track-order-hero h1 {
    line-height: 1.02;
  }

  .track-order-form-card {
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.3);
  }

  .track-order-result {
    gap: 14px;
  }

  .track-order-result
  .customer-order-section {
    padding: 18px;
  }

  .order-progress-step {
    min-height: 62px;
  }

  .customer-order-history-content > p {
    font-size: 0.9rem;
  }

  .customer-order-history-meta {
    font-size: 0.68rem;
  }
}
@media (min-width: 1100px) {

  .track-order-result-shell {
    max-width: 1080px;
  }

  .track-order-help {
    max-width: 1080px;
  }

}
/* ==================================================
   HOMEPAGE TRACK ORDER CTA - PREMIUM POLISH
================================================== */

.order-tracking-section {
  padding: 96px 20px;
  background:
    radial-gradient(
      circle at top right,
      rgba(245, 185, 54, 0.10),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #0a0a0a,
      #111111
    );
}


.order-tracking-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 48px;

  position: relative;
  overflow: hidden;

  border:
    1px solid
    rgba(245, 185, 54, 0.30);

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.40);
}


.order-tracking-card::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  top: -100px;
  right: -70px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(245, 185, 54, 0.20),
      transparent 70%
    );

  pointer-events: none;
}


.order-tracking-card::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  top: 0;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #f5b936,
      transparent
    );
}


.order-tracking-card .section-label {
  margin: 0 0 14px;

  color: #f5b936;

  font-size: 0.76rem;
  font-weight: 900;

  letter-spacing: 0.20em;

  text-transform: uppercase;
}


.order-tracking-card h2 {
  margin: 0;

  max-width: 620px;

  color: #ffffff;

  font-size:
    clamp(
      2.3rem,
      5vw,
      4rem
    );

  line-height: 1.02;

  letter-spacing: -0.035em;
}


.order-tracking-card p {
  max-width: 620px;

  margin:
    22px
    0
    0;

  color:
    rgba(
      255,
      255,
      255,
      0.68
    );

  font-size: 1rem;

  line-height: 1.75;
}


.order-tracking-card .track-order-cta,
.order-tracking-card a {
  display: inline-flex;

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

  min-height: 54px;

  margin-top: 28px;

  padding:
    0
    24px;

  border:
    1px solid
    rgba(245, 185, 54, 0.55);

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #f6c24a,
      #d99c18
    );

  color: #171006;

  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 900;

  box-shadow:
    0 14px 36px
    rgba(217, 156, 24, 0.26);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}


.order-tracking-card .track-order-cta:hover,
.order-tracking-card a:hover {
  transform:
    translateY(-2px);

  filter:
    brightness(1.05);

  box-shadow:
    0 18px 42px
    rgba(217, 156, 24, 0.34);
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

  .order-tracking-section {
    padding:
      60px
      16px;
  }


  .order-tracking-card {
    padding:
      30px
      24px;

    border-radius:
      22px;
  }


  .order-tracking-card h2 {
    font-size:
      clamp(
        2rem,
        11vw,
        3rem
      );
  }


  .order-tracking-card p {
    font-size:
      0.94rem;
  }


  .order-tracking-card .track-order-cta,
  .order-tracking-card a {
    width: 100%;

    box-sizing:
      border-box;
  }

}
/* ==================================================
   ADMIN WHATSAPP TEST
================================================== */

.admin-product-placeholder {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
}

.admin-product-placeholder h3 {
  margin: 0;
  font-size: 22px;
}

.admin-product-placeholder > p {
  margin: 0;
  opacity: 0.8;
}

.admin-product-placeholder label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

#whatsappTestPhone,
#whatsappTestMessage {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: #161616;
  color: #ffffff;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

#whatsappTestPhone {
  min-height: 48px;
}

#whatsappTestMessage {
  min-height: 120px;
  resize: vertical;
}

#whatsappTestPhone:focus,
#whatsappTestMessage:focus {
  border-color: #d4af37;
}

#sendWhatsappTestButton {
  align-self: flex-start;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #d4af37;
  border-radius: 10px;
  background: #d4af37;
  color: #111111;
  font-weight: 700;
  cursor: pointer;
}

#sendWhatsappTestButton:hover {
  opacity: 0.9;
}

#sendWhatsappTestButton:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

#whatsappTestResult {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 700px) {
  .admin-product-placeholder {
    padding: 20px;
  }

  #sendWhatsappTestButton {
    width: 100%;
  }
}
.admin-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 179, 0, 0.65);
  border-radius: 12px;
  background: transparent;
  color: #f7b500;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.admin-logout-button:hover {
  background: #f7b500;
  color: #111111;
  border-color: #f7b500;
  transform: translateY(-1px);
}

.admin-logout-button:focus-visible {
  outline: 3px solid rgba(247, 181, 0, 0.35);
  outline-offset: 3px;
}

.admin-logout-button:active {
  transform: translateY(0);
}
.admin-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .admin-header-actions {
    width: 100%;
    justify-content: flex-start;
    margin-top: 14px;
  }
}
.admin-collection-edit-button,
.admin-collection-toggle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.admin-collection-edit-button {
  background: transparent;
  border: 1px solid rgba(230, 184, 42, 0.75);
  color: #e6b82a;
}

.admin-collection-edit-button:hover {
  background: #e6b82a;
  color: #111111;
  transform: translateY(-1px);
}

.admin-collection-toggle-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #f3f3f3;
}

.admin-collection-toggle-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.admin-edit-button,
.admin-product-toggle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.admin-edit-button {
  background: transparent;
  border: 1px solid rgba(230, 184, 42, 0.75);
  color: #e6b82a;
}

.admin-edit-button:hover {
  background: #e6b82a;
  color: #111111;
  transform: translateY(-1px);
}

.admin-product-toggle-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #f4f4f4;
}

.admin-product-toggle-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.admin-order-row {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.admin-order-row:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(230, 184, 42, 0.25);
  transform: translateY(-1px);
}

.admin-order-number {
  display: block;
  margin-bottom: 5px;
  color: #e6b82a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.admin-order-customer {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

.admin-order-total {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.admin-order-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(230, 184, 42, 0.12);
  border: 1px solid rgba(230, 184, 42, 0.3);
  color: #e6b82a;
  font-size: 12px;
  font-weight: 800;
}

.admin-order-row small {
  display: inline-block;
  margin-top: 5px;
  color: #a9a9a9;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .admin-order-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .admin-order-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.admin-payment-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.admin-payment-status.paid {
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.admin-payment-status.pending {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

.admin-payment-status.failed {
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
}
.admin-order-tools {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(150px, 0.7fr) minmax(170px, 0.8fr);
  gap: 12px;
  margin: 18px 0 22px;
}

.admin-order-search,
.admin-order-filter {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #141414;
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.admin-order-search::placeholder {
  color: #8d8d8d;
}

.admin-order-search:focus,
.admin-order-filter:focus {
  border-color: rgba(230, 184, 42, 0.75);
  box-shadow: 0 0 0 3px rgba(230, 184, 42, 0.08);
}

.admin-order-filter {
  cursor: pointer;
}

@media (max-width: 800px) {
  .admin-order-tools {
    grid-template-columns: 1fr;
  }
}