/* ==========================================================================
   1. OFFLINE LOCAL FONTS DECLARATIONS (/public/assets/fonts/)
   ========================================================================== */
@font-face {
  font-family: "GH Guardian Headline";
  src: url('/public/assets/fonts/GHGuardianHeadlineLight.woff2') format('woff2'),
       url('/public/assets/fonts/GHGuardianHeadlineLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GH Guardian Headline";
  src: url('/public/assets/fonts/GHGuardianHeadlineMedium.woff2') format('woff2'),
       url('/public/assets/fonts/GHGuardianHeadlineMedium.woff') format('woff'),
       url('/public/assets/fonts/GHGuardianHeadlineMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GH Guardian Headline";
  src: url('/public/assets/fonts/GHGuardianHeadlineBold.woff2') format('woff2'),
       url('/public/assets/fonts/GHGuardianHeadlineBold.woff') format('woff'),
       url('/public/assets/fonts/GHGuardianHeadlineBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Guardian Text Egyptian";
  src: url('/public/assets/fonts/GuardianTextEgyptianRegular.woff2') format('woff2'),
       url('/public/assets/fonts/GuardianTextEgyptianRegular.woff') format('woff'),
       url('/public/assets/fonts/GuardianTextEgyptianRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Guardian Text Sans";
  src: url('/public/assets/fonts/GuardianTextSansRegular.woff2') format('woff2'),
       url('/public/assets/fonts/GuardianTextSansRegular.woff') format('woff'),
       url('/public/assets/fonts/GuardianTextSansRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Guardian Text Sans";
  src: url('/public/assets/fonts/GuardianTextSansBold.woff2') format('woff2'),
       url('/public/assets/fonts/GuardianTextSansBold.woff') format('woff'),
       url('/public/assets/fonts/GuardianTextSansBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   2. ROYAL HERITAGE THEME VARIABLES & BASE ENGINE
   ========================================================================== */
:root {
  --heritage-navy: #1b120c;
  --heritage-terracotta: #8e2b19;
  --heritage-gold: #b88a38;
  --heritage-gold-light: #d8b46e;
  --heritage-paper: #fbf8f1;
  --heritage-card-bg: #ffffff;
  --heritage-border: #dfd3be;
  --heritage-text: #2c221e;
  --heritage-muted: #6e6259;
  --amazon-green: #0a7a3b;
  --amazon-orange: #b12704;
  --alert-crimson: #c02b12;
  --star-yellow: #f59e0b;
}

body {
  font-family: "Guardian Text Egyptian", Georgia, serif;
  background-color: var(--heritage-paper);
  color: var(--heritage-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Global Animations */
@keyframes craftRoundSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInContent {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-reveal {
  animation: fadeInContent 0.35s ease-in-out forwards;
}

/* Standardized Circular Craft Spinners */
.craft-round-spinner,
.craft-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid #dfd3be;
  border-top: 3px solid var(--heritage-terracotta);
  border-right: 3px solid var(--heritage-gold);
  border-radius: 50%;
  animation: craftRoundSpin 0.75s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  display: inline-block;
  vertical-align: middle;
}

.craft-spinner-sm {
  width: 22px;
  height: 22px;
  border-width: 2px;
  border-top-width: 2px;
  border-right-width: 2px;
  display: inline-block;
  vertical-align: middle;
}

.masthead-center-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

.pdp-loader-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: opacity 0.25s ease;
}

.loader-text {
  margin-top: 8px;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heritage-muted);
}

/* ==========================================================================
   3. HEADER & MASTHEAD NAVIGATION
   ========================================================================== */
.heritage-top-strip {
  background: linear-gradient(180deg, #fbf7ee 0%, #f4ecdc 100%);
  border-bottom: 1px solid var(--heritage-border);
  padding: 6px 0;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 11px;
  color: #5d4e43;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.heritage-top-strip .top-strip-link {
  color: #5d4e43;
  text-decoration: none;
  margin-left: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.heritage-top-strip .top-strip-link:hover {
  color: var(--heritage-terracotta);
  text-decoration: none;
}
.heritage-badge-gold {
  background: linear-gradient(135deg, #b88a38, #8e2b19);
  color: #ffffff !important;
  padding: 3px 10px;
  border-radius: 2px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(142, 43, 25, 0.18);
}
.heritage-badge-gold:hover {
  background: var(--heritage-navy);
  color: #ffffff !important;
  text-decoration: none;
}

.heritage-masthead {
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 55%, #f7f0e1 100%);
  color: var(--heritage-navy);
  padding: 22px 0 0 0;
  position: relative;
  border-bottom: 1px solid var(--heritage-border);
  box-shadow: 0 4px 20px rgba(44, 34, 30, 0.04);
}
.masthead-ornament {
  font-size: 10px;
  color: var(--heritage-gold);
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-weight: 700;
}

.heritage-menu-btn {
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  border-radius: 3px;
  color: var(--heritage-navy);
  padding: 7px 16px;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.heritage-menu-btn:hover {
  background: var(--heritage-terracotta);
  color: #ffffff;
  border-color: var(--heritage-terracotta);
}
.heritage-menu-btn i { color: var(--heritage-gold); }
.heritage-menu-btn:hover i { color: #ffffff; }

.heritage-logo-center {
  display: inline-block;
  text-decoration: none;
  color: var(--heritage-navy);
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  transition: color 0.2s;
}
.heritage-logo-center:hover { color: var(--heritage-terracotta); text-decoration: none; }
.heritage-logo-center img { max-height: 52px; margin: 0 auto; display: block; }

.tagline-sub {
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 10px;
  color: var(--heritage-gold);
  letter-spacing: 0.22em;
  margin-top: 6px;
  text-transform: uppercase;
  font-weight: 700;
}

.masthead-right-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.header-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  border-radius: 3px;
  color: var(--heritage-navy);
  text-decoration: none !important;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  cursor: pointer;
}
.header-cart-link:hover {
  border-color: var(--heritage-terracotta);
  color: var(--heritage-terracotta);
  background: #fff8f7;
  transform: translateY(-1px);
}
.header-cart-link i { font-size: 14px; color: var(--heritage-terracotta); }
.cart-badge-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--heritage-terracotta);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffffff;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  box-shadow: 0 2px 4px rgba(142, 43, 25, 0.3);
}
.header-account-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  color: var(--heritage-navy);
  text-decoration: none !important;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.header-account-link:hover { color: var(--heritage-terracotta); }
.header-account-link i { font-size: 15px; color: var(--heritage-gold); }
.search-trigger-btn {
  width: 38px; height: 38px;
  border-radius: 3px;
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  color: var(--heritage-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}
.search-trigger-btn:hover {
  background: var(--heritage-terracotta);
  color: #ffffff;
  border-color: var(--heritage-terracotta);
  transform: translateY(-1px);
}

.heritage-pillars-bar {
  margin-top: 18px;
  background: #ffffff;
  border-top: 1px solid var(--heritage-border);
  border-bottom: 2px solid var(--heritage-gold);
}
.pillar-nav {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow-x: auto;
  white-space: nowrap;
}
.pillar-nav > li > a {
  display: block;
  padding: 12px 22px;
  color: var(--heritage-navy);
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.pillar-nav > li > a:hover,
.pillar-nav > li.active > a {
  color: var(--heritage-terracotta);
  background: #faf6ee;
  border-bottom-color: var(--heritage-terracotta);
  text-decoration: none;
}

.sub-craft-strip {
  background: #fbf7ee;
  border-bottom: 1px solid var(--heritage-border);
  padding: 8px 0;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 12px;
}
.sub-craft-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 22px;
  overflow-x: auto;
}
.sub-craft-links li a { color: var(--heritage-text); font-weight: 700; text-decoration: none; }
.sub-craft-links li a:hover { color: var(--heritage-terracotta); border-bottom: 1px solid var(--heritage-terracotta); }

/* Minimalist Centered Header for Auth & Checkout */
.checkout-light-header,
.success-light-header,
.failed-light-header {
  background: #ffffff;
  border-bottom: 1px solid var(--heritage-border);
  box-shadow: 0 4px 20px rgba(44, 34, 30, 0.04);
  padding: 18px 0 16px;
  position: relative;
}
.checkout-light-header::after,
.success-light-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--heritage-gold) 50%, transparent 100%);
}
.failed-light-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--heritage-terracotta) 50%, transparent 100%);
}
.header-gold-kicker {
  font-size: 10px;
  font-weight: 700;
  color: var(--heritage-gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.checkout-center-brand,
.header-center-brand {
  display: inline-block;
  text-decoration: none;
  color: var(--heritage-navy);
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  transition: color 0.2s ease;
}
.checkout-center-brand:hover,
.header-center-brand:hover { color: var(--heritage-terracotta); text-decoration: none; }
.checkout-center-brand img,
.header-center-brand img { max-height: 48px; margin: 0 auto; }
.header-back-home {
  position: absolute;
  left: 25px; top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 700;
  color: var(--heritage-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.header-back-home:hover { color: var(--heritage-terracotta); text-decoration: none; }
.header-ssl-pill {
  position: absolute;
  right: 25px; top: 50%;
  transform: translateY(-50%);
  color: var(--amazon-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #cce8d6;
  padding: 6px 14px;
  border-radius: 20px;
  background: #f2f9f4;
}

/* ==========================================================================
   4. MODALS & DRAWERS
   ========================================================================== */
.guardian-search-modal {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(22, 14, 10, 0.98);
  backdrop-filter: blur(8px);
  z-index: 99999;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
  padding-top: 80px;
}
.guardian-search-modal.active { opacity: 1; visibility: visible; transform: translateY(0); }
.search-modal-close {
  position: absolute; top: 30px; right: 40px;
  background: transparent;
  border: 1px solid var(--heritage-gold);
  color: var(--heritage-gold);
  width: 44px; height: 44px;
  border-radius: 2px;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.search-big-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--heritage-gold);
  color: #ffffff;
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 38px;
  padding: 12px 60px 16px 0;
  outline: none;
}
.search-tag-item {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 2px;
  background: rgba(193, 154, 77, 0.15);
  color: #f7ede0;
  border: 1px solid rgba(193, 154, 77, 0.3);
  font-size: 12px;
  margin-right: 8px; margin-bottom: 8px;
  text-decoration: none;
}
.search-tag-item:hover { background: var(--heritage-gold); color: var(--heritage-navy); text-decoration: none; }

.guardian-drawer-backdrop {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(22, 14, 10, 0.7);
  z-index: 2000; opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.guardian-drawer-backdrop.active { opacity: 1; visibility: visible; }
.guardian-drawer {
  position: fixed; top: 0; left: 0;
  width: 380px; max-width: 85vw; height: 100vh;
  background-color: #ffffff;
  color: var(--heritage-navy); z-index: 2001;
  box-shadow: 6px 0 25px rgba(0,0,0,0.2);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column;
  border-right: 2px solid var(--heritage-gold);
}
.guardian-drawer.active { transform: translateX(0); }
.drawer-top {
  padding: 18px 20px;
  background: #fbf7ee;
  border-bottom: 1px solid var(--heritage-border);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-content { flex: 1; overflow-y: auto; padding: 20px; font-family: "Guardian Text Sans", Arial, sans-serif; }
.drawer-heading {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 18px; font-weight: 700;
  color: var(--heritage-terracotta);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--heritage-border);
  padding-bottom: 6px;
}
.drawer-links-grid { list-style: none; padding: 0; margin: 0 0 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
.drawer-links-grid li a { color: var(--heritage-navy); font-size: 13px; text-decoration: none; }
.drawer-links-grid li a:hover { color: var(--heritage-terracotta); text-decoration: underline; }

/* Slide-out Cart Drawer */
.fixed-floating-cart-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--heritage-navy);
  color: var(--heritage-gold);
  border: 2px solid var(--heritage-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 9990;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.fixed-floating-cart-btn:hover {
  transform: scale(1.08) translateY(-2px);
  background: var(--heritage-terracotta);
  color: #ffffff;
  border-color: #ffffff;
}
.fixed-floating-cart-btn i { font-size: 22px; }
.floating-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--heritage-terracotta);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #ffffff;
  font-family: "Guardian Text Sans", Arial, sans-serif;
}
.cart-drawer-backdrop {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(27, 18, 12, 0.7);
  backdrop-filter: blur(3px);
  z-index: 99998;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.cart-drawer-backdrop.active { opacity: 1; visibility: visible; }
.cart-drawer-panel {
  position: fixed; top: 0; right: 0;
  width: 400px; max-width: 90vw; height: 100vh;
  background: #ffffff;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.25);
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column;
  font-family: "Guardian Text Sans", Arial, sans-serif;
}
.cart-drawer-panel.active { transform: translateX(0); }
.cart-drawer-header {
  background: var(--heritage-navy);
  color: #ffffff;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--heritage-gold);
}
.cart-drawer-title {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 19px; font-weight: 700;
  color: #ffffff; margin: 0;
}
.cart-close-btn {
  background: transparent;
  border: 1px solid rgba(193, 154, 77, 0.4);
  color: var(--heritage-gold);
  width: 32px; height: 32px;
  border-radius: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px;
  transition: all 0.2s;
}
.cart-close-btn:hover { background: var(--heritage-gold); color: var(--heritage-navy); }
.shipping-progress-strip {
  background: #fbf7ee;
  padding: 12px 20px;
  border-bottom: 1px solid var(--heritage-border);
  font-size: 12px;
  color: var(--heritage-navy);
}
.progress-bar-wrap {
  width: 100%; height: 6px;
  background: #e2d7c5;
  border-radius: 3px;
  margin-top: 6px; overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--heritage-terracotta);
  width: 100%;
  transition: width 0.3s ease;
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #ffffff;
}
.cart-item-row {
  display: flex; gap: 12px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid #f1e7d8;
  position: relative;
}
.cart-item-img {
  width: 70px; height: 70px;
  border: 1px solid var(--heritage-border);
  border-radius: 2px;
  object-fit: cover; flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-title {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 14px; font-weight: 700;
  color: var(--heritage-navy);
  line-height: 1.25; margin: 0 0 4px 0;
}
.cart-item-variant { font-size: 11px; color: var(--heritage-muted); margin-bottom: 6px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--heritage-terracotta); }
.qty-counter-box {
  display: inline-flex; align-items: center;
  border: 1px solid var(--heritage-border);
  background: #fbf7ee;
  border-radius: 2px;
  margin-top: 6px;
}
.btn-qty {
  background: transparent;
  border: none;
  width: 26px; height: 26px;
  font-size: 12px; font-weight: 700;
  color: var(--heritage-navy);
  cursor: pointer;
}
.btn-qty:hover { background: #eedcc6; }
.qty-number { width: 26px; text-align: center; font-size: 12px; font-weight: 700; }
.btn-remove-item {
  position: absolute; top: 0; right: 0;
  background: transparent; border: none;
  color: #999; font-size: 14px; cursor: pointer;
}
.btn-remove-item:hover { color: var(--heritage-terracotta); }
.cart-empty-view { text-align: center; padding: 60px 20px; display: none; }
.cart-empty-view i { font-size: 48px; color: var(--heritage-border); margin-bottom: 12px; }
.cart-drawer-footer {
  background: #fbf7ee;
  border-top: 1px solid var(--heritage-border);
  padding: 20px;
}
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; margin-bottom: 8px;
  color: var(--heritage-muted);
}
.summary-total {
  font-size: 16px; font-weight: 700;
  color: var(--heritage-navy);
  border-top: 1px solid #e5dac9;
  padding-top: 8px; margin-top: 8px;
}
.btn-drawer-checkout {
  width: 100%;
  background: var(--heritage-terracotta);
  color: #ffffff !important;
  border: none;
  padding: 13px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 12px;
  display: block; text-align: center;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(142, 43, 25, 0.25);
  transition: background 0.2s;
}
.btn-drawer-checkout:hover { background: var(--heritage-navy); }

/* ==========================================================================
   5. LANDING & CATEGORY GRID COMPONENTS
   ========================================================================== */
.dropship-hero-section {
  background: linear-gradient(135deg, #1b120c 0%, #2c221e 100%);
  color: #ffffff;
  padding: 60px 0;
  position: relative;
}
.hero-badge-tag {
  background: rgba(193, 154, 77, 0.2);
  border: 1px solid var(--heritage-gold);
  color: var(--heritage-gold);
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
}
.hero-main-heading {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 38px; font-weight: 700;
  line-height: 1.2; color: #ffffff;
  margin: 0 0 16px 0;
}
.hero-subtext {
  font-family: "Guardian Text Egyptian", Georgia, serif;
  font-size: 16px; color: #dfd3be;
  line-height: 1.6; margin-bottom: 24px;
}
.hero-timer-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(223, 211, 190, 0.2);
  padding: 8px 16px;
  border-radius: 2px;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 13px;
}
.timer-label { color: #dfd3be; }
.countdown-digits { color: var(--heritage-gold); font-weight: 700; }
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--heritage-terracotta);
  color: #ffffff;
  border: 1px solid var(--heritage-terracotta);
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}
.btn-hero-primary:hover { background: #6d2012; color: #ffffff; text-decoration: none; }
.btn-hero-secondary {
  background: transparent;
  color: #dfd3be;
  border: 1px solid #dfd3be;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.08); color: #ffffff; text-decoration: none; }
.hero-banner-container {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
  background: #2a2421;
  min-height: 360px;
}
.hero-banner-container img { width: 100%; height: 360px; object-fit: cover; display: block; }
.hero-floating-offer {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(27, 18, 12, 0.88);
  backdrop-filter: blur(4px);
  border-left: 3px solid var(--heritage-gold);
  padding: 12px 18px;
  z-index: 6;
}
.floating-offer-title { font-family: "GH Guardian Headline", Georgia, serif; font-size: 18px; font-weight: 700; color: var(--heritage-gold); margin: 0; }
.floating-offer-sub { font-family: "Guardian Text Sans", Arial, sans-serif; font-size: 11px; color: #dfd3be; margin: 4px 0 0 0; }

.dropship-features-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--heritage-border);
  padding: 18px 0;
}
.feature-box { display: flex; align-items: center; gap: 12px; }
.feature-icon-circle {
  width: 40px; height: 40px;
  background: #fbf7ee;
  border: 1px solid var(--heritage-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--heritage-terracotta);
  font-size: 16px; flex-shrink: 0;
}
.feature-title { font-family: "GH Guardian Headline", Georgia, serif; font-size: 14px; font-weight: 700; color: var(--heritage-navy); }
.feature-desc { font-family: "Guardian Text Sans", Arial, sans-serif; font-size: 11px; color: var(--heritage-muted); margin: 0; }

.dropship-categories-sec { padding: 48px 0; background: var(--heritage-paper); }
.sec-heading-strip {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--heritage-border);
  padding-bottom: 10px;
}
.sec-heading-title { font-family: "GH Guardian Headline", Georgia, serif; font-size: 22px; font-weight: 700; color: var(--heritage-navy); margin: 0; }
.sec-heading-link { font-family: "Guardian Text Sans", Arial, sans-serif; font-size: 12px; font-weight: 700; color: var(--heritage-terracotta); text-decoration: none; }
.category-tile {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 20px;
  background: #2a2421;
}
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.category-tile:hover img { transform: scale(1.05); }
.category-tile-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 12px;
  background: linear-gradient(0deg, rgba(27, 18, 12, 0.95) 0%, transparent 100%);
  color: #ffffff; z-index: 6;
}
.category-tile-title { font-family: "GH Guardian Headline", Georgia, serif; font-size: 16px; font-weight: 700; margin: 0 0 2px 0; color: #ffffff; }
.category-tile-count { font-family: "Guardian Text Sans", Arial, sans-serif; font-size: 11px; color: var(--heritage-gold); }

.dropship-products-sec { padding: 36px 0 54px; background: var(--heritage-paper); }
.product-card {
  background: var(--heritage-card-bg);
  border: 1px solid var(--heritage-border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 24px);
}
.product-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: var(--heritage-gold);
  transform: translateY(-2px);
}
.product-thumb-wrap { position: relative; height: 200px; overflow: hidden; background: #f4ecdc; }
.product-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.badge-discount {
  position: absolute; top: 10px; left: 10px;
  background: var(--heritage-terracotta);
  color: #ffffff;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-weight: 700; font-size: 10px;
  padding: 2px 7px; border-radius: 2px; z-index: 6;
}
.badge-hot, .badge-tag-alt {
  position: absolute; top: 10px; right: 10px;
  background: var(--heritage-navy);
  color: var(--heritage-gold);
  border: 1px solid var(--heritage-gold);
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-weight: 700; font-size: 9px;
  padding: 2px 6px; border-radius: 2px;
  text-transform: uppercase; z-index: 6;
}
.product-details { padding: 14px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.product-category { font-family: "Guardian Text Sans", Arial, sans-serif; font-size: 10px; color: var(--heritage-muted); text-transform: uppercase; margin-bottom: 4px; }
.product-title { font-family: "GH Guardian Headline", Georgia, serif; font-size: 14px; font-weight: 700; margin: 0 0 6px 0; min-height: 38px; line-height: 1.3; }
.product-title a { color: var(--heritage-navy); text-decoration: none; }
.product-ratings { color: #eab308; font-size: 11px; margin-bottom: 8px; font-family: "Guardian Text Sans", Arial, sans-serif; }
.product-ratings span { color: var(--heritage-muted); margin-left: 3px; font-size: 11px; }
.price-action-row { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid #f1e7d8; margin-top: 6px; }
.product-price { font-family: "Guardian Text Sans", Arial, sans-serif; font-size: 15px; font-weight: 700; color: var(--heritage-terracotta); }
.product-price del { font-size: 11px; color: var(--heritage-muted); margin-left: 4px; font-weight: 400; }
.btn-quick-cart {
  background: var(--heritage-navy);
  color: var(--heritage-gold);
  border: 1px solid var(--heritage-gold);
  padding: 5px 12px;
  border-radius: 2px;
  font-size: 11px; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-quick-cart:hover { background: var(--heritage-terracotta); color: #ffffff; border-color: var(--heritage-terracotta); }

.deal-spotlight-sec { background: #231b17; color: #ffffff; padding: 48px 0; }
.deal-box-badge { color: var(--heritage-gold); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.deal-title { font-family: "GH Guardian Headline", Georgia, serif; font-size: 26px; font-weight: 700; margin: 0 0 12px 0; color: #ffffff; }
.deal-desc { font-family: "Guardian Text Egyptian", Georgia, serif; font-size: 14px; color: #dfd3be; line-height: 1.6; margin-bottom: 16px; }
.deal-img-container { border: 1px solid var(--heritage-gold); padding: 6px; background: rgba(0,0,0,0.3); min-height: 320px; position: relative; }
.deal-img-container img { width: 100%; height: 320px; object-fit: cover; display: block; }

.reviews-section { padding: 48px 0; background: #ffffff; }
.review-card { background: var(--heritage-paper); border: 1px solid var(--heritage-border); padding: 18px; border-radius: 2px; height: calc(100% - 20px); margin-bottom: 20px; }
.review-stars { color: #eab308; font-size: 12px; margin-bottom: 8px; }
.review-quote { font-family: "Guardian Text Egyptian", Georgia, serif; font-size: 13px; color: #4a3d35; font-style: italic; line-height: 1.5; margin-bottom: 14px; min-height: 54px; }
.reviewer-info { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar-wrap { position: relative; width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: #dfd3be; flex-shrink: 0; }
.reviewer-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-name { font-family: "GH Guardian Headline", Georgia, serif; font-size: 13px; font-weight: 700; color: var(--heritage-navy); }
.reviewer-badge { font-family: "Guardian Text Sans", Arial, sans-serif; font-size: 10px; color: #007600; font-weight: 600; }

.dropship-newsletter-strip { background: #f4ecdc; border-top: 1px solid var(--heritage-border); padding: 36px 0; text-align: center; }
.newsletter-title { font-family: "GH Guardian Headline", Georgia, serif; font-size: 22px; font-weight: 700; color: var(--heritage-navy); margin: 0 0 6px 0; }
.newsletter-sub { font-family: "Guardian Text Egyptian", Georgia, serif; font-size: 13px; color: var(--heritage-muted); margin-bottom: 16px; }
.newsletter-form { display: inline-flex; max-width: 440px; width: 100%; gap: 6px; }
.newsletter-input { flex: 1; height: 38px; border: 1px solid var(--heritage-border); padding: 0 12px; font-size: 12px; outline: none; border-radius: 2px; }
.btn-newsletter { background: var(--heritage-navy); color: var(--heritage-gold); border: 1px solid var(--heritage-gold); font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 0 16px; border-radius: 2px; cursor: pointer; }

.category-header-wrap {
  background: #f4ecdc;
  border-bottom: 1px solid var(--heritage-border);
  padding: 24px 0;
}
.cat-breadcrumb {
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 8px;
  color: var(--heritage-muted);
}
.cat-breadcrumb a { color: var(--heritage-terracotta); text-decoration: none; }
.cat-main-title {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 32px; font-weight: 700;
  color: var(--heritage-navy); margin: 0 0 6px 0;
}
.cat-sub-desc {
  font-family: "Guardian Text Egyptian", Georgia, serif;
  font-size: 15px; color: #4a3d35; margin: 0;
}

.top-filter-bar {
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  padding: 16px 20px;
  margin-top: 24px; margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.filter-group-label {
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; color: var(--heritage-navy);
  letter-spacing: 0.05em; margin-bottom: 4px; display: block;
}
.filter-select {
  width: 100%; height: 36px;
  border: 1px solid var(--heritage-border);
  background: var(--heritage-paper);
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 12px; color: var(--heritage-text);
  padding: 0 10px; border-radius: 2px; outline: none;
}
.filter-select:focus { border-color: var(--heritage-terracotta); }
.filter-active-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid #f1e7d8; align-items: center;
}
.pill-tag {
  background: #f4ecdc;
  border: 1px solid var(--heritage-border);
  color: var(--heritage-navy);
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 11px; padding: 3px 10px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 6px;
}
.pill-tag a { color: var(--heritage-terracotta); text-decoration: none; font-weight: 700; }
.pill-clear-all {
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 11px; color: var(--heritage-terracotta);
  font-weight: 700; text-decoration: underline; margin-left: 6px;
}

.dropship-grid-section { padding-bottom: 60px; background-color: var(--heritage-paper); }
.load-more-container { text-align: center; padding: 20px 0 30px; }
.btn-load-more {
  background: #ffffff;
  border: 2px solid var(--heritage-terracotta);
  color: var(--heritage-terracotta);
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 12px 36px; border-radius: 2px;
  cursor: pointer; transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-load-more:hover { background: var(--heritage-terracotta); color: #ffffff; }
.product-count-summary {
  font-family: "Guardian Text Sans", Arial, sans-serif;
  font-size: 12px; color: var(--heritage-muted); margin-top: 10px;
}

/* ==========================================================================
   6. PDP SPECIFIC STYLES
   ========================================================================== */
.pdp-wrapper {
  background-color: var(--heritage-paper);
  padding: 24px 0 60px;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  color: var(--heritage-text);
}
.pdp-breadcrumb {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--heritage-muted);
  min-height: 18px;
}
.pdp-breadcrumb a { color: var(--heritage-terracotta); text-decoration: none; }
.gallery-container { display: flex; gap: 12px; }
.thumb-vertical-list {
  width: 68px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 240px;
}
.thumb-box {
  width: 68px; height: 68px;
  border: 1px solid var(--heritage-border);
  background: #ffffff;
  cursor: pointer; overflow: hidden;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.thumb-box.active, .thumb-box:hover {
  border-color: var(--heritage-terracotta);
  box-shadow: 0 0 0 1px var(--heritage-terracotta);
}
.thumb-box img { width: 100%; height: 100%; object-fit: cover; }
.main-image-zoom-box {
  flex: 1;
  position: relative;
  border: 1px solid var(--heritage-border);
  background: #ffffff;
  overflow: hidden;
  cursor: crosshair;
  height: 480px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.main-image-zoom-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
}
.zoom-lens-hint {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(27, 18, 12, 0.8);
  color: #ffffff; font-size: 10px;
  padding: 3px 8px; border-radius: 2px;
  pointer-events: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pdp-title {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 26px; font-weight: 700;
  line-height: 1.25; color: var(--heritage-navy);
  margin: 0 0 8px 0; min-height: 32px;
}
.pdp-artisan-brand { font-size: 12px; color: var(--heritage-muted); margin-bottom: 10px; }
.pdp-artisan-brand a { color: var(--heritage-terracotta); font-weight: 700; text-decoration: none; }
.pdp-rating-strip {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--heritage-border);
  margin-bottom: 14px; font-size: 13px;
}
.star-icons { color: var(--star-yellow); font-size: 13px; }
.rating-count { color: var(--heritage-terracotta); text-decoration: underline; cursor: pointer; }
.price-box { margin-bottom: 16px; position: relative; }
.price-deal-badge {
  background: var(--heritage-terracotta);
  color: #ffffff; font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 2px;
  text-transform: uppercase; display: inline-block;
  margin-bottom: 6px;
}
.current-price {
  font-size: 28px; font-weight: 700;
  color: var(--heritage-navy); line-height: 1;
}
.current-price .currency { font-size: 18px; vertical-align: top; }
.mrp-strike { font-size: 13px; color: var(--heritage-muted); margin-left: 6px; }
.tax-notice { font-size: 11px; color: var(--heritage-muted); display: block; margin-top: 4px; }
.offers-box {
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  border-left: 4px solid var(--heritage-gold);
  padding: 12px 16px; margin-bottom: 20px; font-size: 12px;
}
.offers-box strong { color: var(--heritage-navy); }
.bullet-specs-list {
  padding-left: 0; list-style: none;
  font-family: "Guardian Text Egyptian", Georgia, serif;
  font-size: 14px; line-height: 1.6;
  color: #3b2f28; margin-bottom: 20px; min-height: 60px;
}
.sticky-buy-box {
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  padding: 20px; border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
}
.stock-status { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.stock-in { color: var(--amazon-green); }
.stock-out { color: var(--amazon-orange); }
.delivery-time-text { font-size: 12px; color: var(--heritage-text); margin-bottom: 14px; }
.pincode-checker { display: flex; gap: 6px; margin-bottom: 16px; }
.pincode-input {
  flex: 1; height: 34px;
  border: 1px solid var(--heritage-border);
  padding: 0 10px; font-size: 12px;
  outline: none; border-radius: 2px;
}
.btn-check-pin {
  background: var(--heritage-navy);
  color: #ffffff; border: none;
  padding: 0 12px; font-size: 11px; font-weight: 700;
  cursor: pointer; border-radius: 2px;
}
.qty-dropdown-wrap { margin-bottom: 16px; }
.qty-select {
  width: 100%; height: 36px;
  border: 1px solid var(--heritage-border);
  padding: 0 10px; font-size: 13px; font-weight: 600;
  border-radius: 2px; outline: none;
  background: #fbf7ee;
}
.btn-add-cart {
  width: 100%;
  background: var(--heritage-gold);
  color: var(--heritage-navy);
  border: 1px solid #b89139;
  padding: 10px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: 2px; cursor: pointer;
  margin-bottom: 10px; transition: background 0.2s;
}
.btn-add-cart:hover { background: #d4af37; }
.btn-buy-now {
  width: 100%;
  background: var(--heritage-terracotta);
  color: #ffffff; border: none;
  padding: 10px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: 2px; cursor: pointer;
  transition: background 0.2s;
}
.btn-buy-now:hover { background: var(--heritage-navy); }
.secure-badge-box {
  margin-top: 14px; font-size: 11px;
  color: var(--heritage-muted); text-align: center;
  border-top: 1px solid #f1e7d8; padding-top: 10px;
}
.pdp-tabs-section {
  margin-top: 40px; background: #ffffff;
  border: 1px solid var(--heritage-border);
  padding: 24px; position: relative; min-height: 160px;
}
.nav-pdp-tabs > li > a {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 16px; font-weight: 700;
  color: var(--heritage-navy); border-radius: 0;
}
.nav-pdp-tabs > li.active > a {
  border-top: 3px solid var(--heritage-terracotta) !important;
  color: var(--heritage-terracotta) !important;
  background: #ffffff !important;
}
.tab-pane {
  padding-top: 20px;
  font-family: "Guardian Text Egyptian", Georgia, serif;
  font-size: 15px; line-height: 1.7; color: #3b2f28;
}
.reviews-container {
  margin-top: 40px; background: #ffffff;
  border: 1px solid var(--heritage-border);
  padding: 30px; position: relative; min-height: 180px;
}
.user-review-item { border-bottom: 1px solid #f1e7d8; padding: 18px 0; }
.user-review-item:last-child { border-bottom: none; }
.reviewer-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.reviewer-name { font-weight: 700; font-size: 13px; color: var(--heritage-navy); }
.verified-badge { color: var(--amazon-green); font-size: 11px; font-weight: 600; }
.review-text { font-family: "Guardian Text Egyptian", Georgia, serif; font-size: 14px; color: #4a3d35; line-height: 1.5; }
.btn-write-review {
  background: transparent;
  border: 1px solid var(--heritage-border);
  color: var(--heritage-navy);
  padding: 8px 18px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px; cursor: pointer;
  transition: all 0.2s;
}
.btn-write-review:hover { background: var(--heritage-terracotta); color: #ffffff; border-color: var(--heritage-terracotta); }
.related-sec { margin-top: 40px; position: relative; min-height: 180px; }
.mini-product-card {
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  padding: 12px; text-align: center;
  margin-bottom: 20px; border-radius: 2px;
  transition: all 0.2s ease;
}
.mini-product-card:hover {
  border-color: var(--heritage-gold);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.mini-product-card img { width: 100%; height: 180px; object-fit: cover; margin-bottom: 8px; }
.mini-title {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 13px; font-weight: 700;
  color: var(--heritage-navy);
  margin: 0 0 4px 0; height: 36px; overflow: hidden;
}
.mini-price { font-size: 14px; font-weight: 700; color: var(--heritage-terracotta); }

/* ==========================================================================
   7. AUTH PAGES (LOGIN / SIGNUP)
   ========================================================================== */
.auth-split-wrapper {
  min-height: 100vh;
  display: flex;
  flex: 1;
}
.auth-left-pane {
  width: 50%;
  background: #ffffff;
  padding: 40px 60px;
  display: flex; flex-direction: column;
  justify-content: center; position: relative;
}
.auth-inner-box { max-width: 440px; width: 100%; margin: 0 auto; }
.auth-brand-logo {
  display: inline-block; text-decoration: none !important;
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 28px; font-weight: 700;
  color: var(--heritage-navy); margin-bottom: 24px;
  letter-spacing: -0.5px; line-height: 1.1;
}
.auth-brand-logo:hover { color: var(--heritage-terracotta); }
.auth-brand-logo img { max-height: 52px; width: auto; display: block; margin-bottom: 6px; }
.auth-brand-kicker {
  font-size: 10px; font-weight: 700;
  color: var(--heritage-gold); letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 6px; display: block;
}
.auth-switch-tabs {
  display: flex;
  border-bottom: 2px solid #f1e7d8;
  margin-bottom: 24px; gap: 20px;
}
.tab-switch-btn {
  background: transparent; border: none;
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 18px; font-weight: 700;
  color: var(--heritage-muted); padding: 0 0 10px 0;
  cursor: pointer; position: relative;
  transition: color 0.2s;
}
.tab-switch-btn.active { color: var(--heritage-terracotta); }
.tab-switch-btn.active::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--heritage-terracotta);
}
.auth-heading {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 24px; font-weight: 700;
  color: var(--heritage-navy); margin: 0 0 6px 0;
}
.auth-subtext {
  font-family: "Guardian Text Egyptian", Georgia, serif;
  font-size: 14px; color: var(--heritage-muted);
  margin-bottom: 20px;
}
.form-group-custom { margin-bottom: 16px; position: relative; }
.field-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--heritage-navy); margin-bottom: 6px; display: block;
}
.input-custom {
  width: 100%; height: 44px;
  border: 1px solid var(--heritage-border);
  background: #faf8f5; padding: 0 14px;
  font-size: 13px; color: var(--heritage-text);
  border-radius: 2px; outline: none; transition: all 0.2s;
}
.input-custom:focus {
  border-color: var(--heritage-terracotta);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(142, 43, 25, 0.08);
}
.pwd-toggle-btn {
  position: absolute; right: 12px; top: 32px;
  background: none; border: none;
  color: var(--heritage-muted); cursor: pointer;
}
.form-extras-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; margin-bottom: 18px;
}
.form-extras-row a { color: var(--heritage-terracotta); font-weight: 600; text-decoration: none; }
.form-extras-row a:hover { text-decoration: underline; }
.btn-auth-submit {
  width: 100%;
  background: var(--heritage-terracotta);
  color: #ffffff; border: none; padding: 13px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 2px; cursor: pointer;
  box-shadow: 0 4px 14px rgba(142, 43, 25, 0.25);
  transition: background 0.2s, transform 0.1s;
}
.btn-auth-submit:hover { background: var(--heritage-navy); transform: translateY(-1px); }
.auth-divider { text-align: center; position: relative; margin: 20px 0; }
.auth-divider::before {
  content: ''; position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px; background: #eee4d5;
}
.auth-divider span {
  background: #ffffff; padding: 0 12px;
  position: relative; font-size: 11px;
  color: var(--heritage-muted); text-transform: uppercase;
  font-weight: 600; letter-spacing: 0.05em;
}
.social-auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-social {
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  padding: 10px; font-size: 12px; font-weight: 700;
  color: var(--heritage-navy); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; transition: all 0.2s;
}
.btn-social:hover { border-color: var(--heritage-terracotta); background: #faf7f2; }

.auth-right-pane {
  width: 50%;
  background: var(--heritage-navy);
  position: relative; overflow: hidden;
}
.auth-carousel,
.auth-carousel .carousel-inner,
.auth-carousel .item {
  height: 100%; min-height: 100vh;
}
.carousel-item-bg {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  position: absolute; top: 0; left: 0;
  transform: scale(1); transition: transform 6s ease;
}
.auth-carousel .item.active .carousel-item-bg { transform: scale(1.06); }
.carousel-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(27, 18, 12, 0.3) 0%, rgba(27, 18, 12, 0.88) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 60px; color: #ffffff;
}
.carousel-quote-badge {
  display: inline-block;
  background: rgba(184, 138, 56, 0.25);
  border: 1px solid var(--heritage-gold);
  color: var(--heritage-gold); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px; width: fit-content;
}
.carousel-quote-title {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 32px; font-weight: 700;
  line-height: 1.2; margin: 0 0 10px 0; color: #ffffff;
}
.carousel-quote-text {
  font-family: "Guardian Text Egyptian", Georgia, serif;
  font-size: 16px; color: #e5dac9;
  line-height: 1.6; max-width: 500px; margin-bottom: 20px;
}
.auth-carousel .carousel-indicators {
  bottom: 25px; left: 60px;
  margin: 0; width: auto; text-align: left;
}
.auth-carousel .carousel-indicators li {
  width: 24px; height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.4); border: none;
  margin-right: 6px;
}
.auth-carousel .carousel-indicators li.active { background: var(--heritage-gold); width: 32px; }

/* ==========================================================================
   8. CHECKOUT, SUCCESS & FAILURE PAGES
   ========================================================================== */
.checkout-main-wrapper { padding: 36px 0 70px; }
.checkout-stepper {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-bottom: 34px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.step-unit { display: inline-flex; align-items: center; gap: 6px; color: var(--heritage-muted); }
.step-unit.active { color: var(--heritage-terracotta); }
.step-unit.completed { color: var(--amazon-green); }
.step-bullet {
  width: 22px; height: 22px; border-radius: 50%;
  background: #eee4d5; color: var(--heritage-navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.step-unit.active .step-bullet { background: var(--heritage-terracotta); color: #ffffff; }
.step-unit.completed .step-bullet { background: var(--amazon-green); color: #ffffff; }

.checkout-panel {
  background: var(--heritage-card-bg);
  border: 1px solid var(--heritage-border);
  padding: 24px; border-radius: 4px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(44, 34, 30, 0.03);
}
.panel-title {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 18px; font-weight: 700;
  color: var(--heritage-navy); margin: 0 0 16px 0;
  padding-bottom: 10px; border-bottom: 1px solid var(--heritage-border);
  display: flex; align-items: center; gap: 8px;
}
.panel-title i { color: var(--heritage-terracotta); }

.custom-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--heritage-navy); margin-bottom: 6px; display: block;
}
.custom-input {
  width: 100%; height: 42px;
  border: 1px solid var(--heritage-border);
  background: #faf8f5; padding: 0 12px;
  font-size: 13px; color: var(--heritage-text);
  border-radius: 3px; outline: none; transition: all 0.2s;
}
.custom-input:focus {
  border-color: var(--heritage-terracotta);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(142, 43, 25, 0.1);
}

.payment-option-card {
  border: 1px solid var(--heritage-border);
  padding: 14px 16px; border-radius: 3px;
  margin-bottom: 12px; cursor: pointer;
  background: #ffffff;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.2s ease;
}
.payment-option-card.active {
  border-color: var(--heritage-terracotta);
  background: #fdf7f5;
  box-shadow: 0 2px 8px rgba(142, 43, 25, 0.08);
}
.payment-left { display: flex; align-items: center; gap: 12px; }
.payment-heading { font-weight: 700; font-size: 13px; color: var(--heritage-navy); }
.payment-subtext { font-size: 11px; color: var(--heritage-muted); margin-top: 2px; }
.badge-reward {
  background: #e6f4ea; color: var(--amazon-green);
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 12px;
  text-transform: uppercase;
}

.summary-card {
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  padding: 24px; border-radius: 4px;
  box-shadow: 0 6px 20px rgba(44, 34, 30, 0.04);
}
.summary-item-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid #f1e7d8;
}
.summary-thumb {
  position: relative; width: 60px; height: 60px;
  border: 1px solid var(--heritage-border);
  border-radius: 3px; flex-shrink: 0; overflow: visible;
}
.summary-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.summary-qty-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--heritage-navy);
  color: var(--heritage-gold);
  border: 1px solid var(--heritage-gold);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.summary-title {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 13px; font-weight: 700;
  color: var(--heritage-navy); line-height: 1.25; margin: 0 0 2px 0;
}
.summary-meta { font-size: 11px; color: var(--heritage-muted); }
.summary-price { font-size: 14px; font-weight: 700; color: var(--heritage-terracotta); margin-left: auto; }

.coupon-box-wrap { display: flex; gap: 6px; margin-bottom: 18px; }
.coupon-input-field {
  flex: 1; height: 38px;
  border: 1px solid var(--heritage-border);
  background: #faf8f5; padding: 0 10px;
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.05em; outline: none; border-radius: 3px;
}
.btn-apply-coupon {
  background: #f4ecdc;
  color: var(--heritage-navy);
  border: 1px solid var(--heritage-border);
  padding: 0 14px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; border-radius: 3px;
  cursor: pointer; transition: all 0.2s;
}
.btn-apply-coupon:hover {
  background: var(--heritage-terracotta);
  color: #ffffff; border-color: var(--heritage-terracotta);
}

.calc-line { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; color: var(--heritage-muted); }
.calc-grand-total {
  font-size: 19px; font-weight: 700;
  color: var(--heritage-navy);
  border-top: 2px solid var(--heritage-border);
  padding-top: 12px; margin-top: 10px;
}
.btn-confirm-order {
  width: 100%;
  background: var(--heritage-terracotta);
  color: #ffffff; border: none; padding: 14px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 3px; cursor: pointer; margin-top: 18px;
  box-shadow: 0 4px 14px rgba(142, 43, 25, 0.25);
  transition: all 0.2s;
}
.btn-confirm-order:hover { background: var(--heritage-navy); transform: translateY(-1px); }

/* Success & Confirmation Styles */
.success-hero-box, .failed-hero-box { text-align: center; padding: 36px 15px 22px; }
.success-icon-wrap {
  width: 72px; height: 72px;
  background: #e6f4ea; color: var(--amazon-green);
  border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 34px; margin-bottom: 14px;
  border: 2px solid #b7dfc3;
}
.failed-icon-wrap {
  width: 72px; height: 72px;
  background: #fdf2f0; color: var(--alert-crimson);
  border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 34px; margin-bottom: 14px;
  border: 2px solid #f6c8c2;
}
.success-heading, .failed-heading {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 30px; font-weight: 700;
  color: var(--heritage-navy); margin: 0 0 8px 0;
}
.success-sub, .failed-sub {
  font-family: "Guardian Text Egyptian", Georgia, serif;
  font-size: 15px; color: var(--heritage-muted);
  max-width: 620px; margin: 0 auto;
}

.tracking-timeline-box {
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  border-radius: 4px; padding: 22px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(44, 34, 30, 0.03);
}
.track-step-row { display: flex; justify-content: space-between; position: relative; }
.track-step-row::before {
  content: ''; position: absolute;
  top: 15px; left: 30px; right: 30px;
  height: 2px; background: #e6dcce; z-index: 1;
}
.track-node { position: relative; z-index: 2; background: #ffffff; padding: 0 10px; text-align: center; }
.track-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f4ecdc; color: var(--heritage-muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; margin-bottom: 6px;
  border: 2px solid #e6dcce;
}
.track-node.active .track-circle { background: var(--amazon-green); color: #ffffff; border-color: var(--amazon-green); }
.track-node.in-progress .track-circle { background: var(--heritage-gold); color: #ffffff; border-color: var(--heritage-gold); }
.track-text {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--heritage-navy); display: block;
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--heritage-border);
  padding: 22px; border-radius: 4px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(44, 34, 30, 0.03);
}
.card-title-bar {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 17px; font-weight: 700;
  color: var(--heritage-navy); margin: 0 0 14px 0;
  padding-bottom: 8px; border-bottom: 1px solid var(--heritage-border);
  display: flex; align-items: center; gap: 8px;
}
.meta-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.meta-label { color: var(--heritage-muted); }
.meta-val { font-weight: 700; color: var(--heritage-navy); }

.receipt-item {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid #f1e7d8;
}
.receipt-thumb {
  width: 54px; height: 54px;
  border: 1px solid var(--heritage-border);
  border-radius: 3px; overflow: hidden; flex-shrink: 0;
}
.receipt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.receipt-title {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 13px; font-weight: 700;
  color: var(--heritage-navy); margin: 0 0 2px 0;
}
.receipt-desc { font-size: 11px; color: var(--heritage-muted); }
.receipt-price { margin-left: auto; font-size: 14px; font-weight: 700; color: var(--heritage-terracotta); }

.whatsapp-box {
  background: #f0faf3;
  border: 1px solid #b7dfc3;
  border-left: 4px solid var(--amazon-green);
  padding: 12px 14px; border-radius: 2px;
  font-size: 12px; color: #1b4b2c; margin-bottom: 20px;
}
.btn-return-shop, .btn-retry-primary {
  background: var(--heritage-terracotta);
  color: #ffffff; border: none;
  padding: 12px 24px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 3px; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.btn-return-shop:hover, .btn-retry-primary:hover { background: var(--heritage-navy); color: #ffffff; text-decoration: none; }
.btn-print-invoice, .btn-choose-cod {
  background: #ffffff;
  color: var(--heritage-navy);
  border: 1px solid var(--heritage-border);
  padding: 12px 20px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 3px; margin-left: 8px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-print-invoice:hover, .btn-choose-cod:hover { background: #f4ecdc; color: var(--heritage-navy); text-decoration: none; }
.failure-notice-box {
  background: #fdf6f5;
  border: 1px solid #f5cfca;
  border-left: 4px solid var(--alert-crimson);
  padding: 14px 16px; border-radius: 2px;
  font-size: 13px; color: #63170c; margin-bottom: 22px;
  line-height: 1.5;
}
.troubleshoot-list { padding-left: 20px; margin: 0 0 14px 0; font-size: 13px; line-height: 1.6; color: var(--heritage-text); }
.troubleshoot-list li { margin-bottom: 6px; }

/* ==========================================================================
   9. ROYAL & MINIMAL FOOTERS
   ========================================================================== */
.heritage-footer {
  background-color: var(--heritage-navy);
  background-image: radial-gradient(circle at 50% 20%, #291a12 0%, #120905 100%);
  color: #e5dac9;
  padding-top: 54px; padding-bottom: 30px;
  font-family: "Guardian Text Sans", Arial, sans-serif;
  border-top: 3px double var(--heritage-gold);
  position: relative; overflow: hidden;
}
.footer-top-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(193, 154, 77, 0.3);
  margin-bottom: 36px;
}
.footer-brand {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 30px; font-weight: 700;
  color: #ffffff; text-decoration: none !important;
  letter-spacing: -0.5px; transition: color 0.2s ease;
  display: inline-block;
}
.footer-brand:hover { color: var(--heritage-gold); }
.footer-brand img { max-height: 46px; width: auto; display: block; }
.back-to-top-btn {
  color: var(--heritage-gold);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none !important;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s ease;
}
.back-to-top-btn:hover { color: #ffffff; }
.back-to-top-circle {
  width: 34px; height: 34px;
  border: 1px solid var(--heritage-gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  background: rgba(193, 154, 77, 0.05);
}
.back-to-top-btn:hover .back-to-top-circle {
  background: var(--heritage-gold);
  color: var(--heritage-navy);
  transform: translateY(-2px);
}
.footer-col-title {
  font-family: "GH Guardian Headline", Georgia, serif;
  font-size: 16px; font-weight: 700;
  color: var(--heritage-gold);
  margin-bottom: 16px; padding-bottom: 6px;
  border-bottom: 1px solid rgba(193, 154, 77, 0.25);
  letter-spacing: 0.02em;
}
.footer-links-list { list-style: none; padding: 0; margin: 0 0 24px 0; }
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list li a {
  color: #cfbfab; font-size: 13px;
  text-decoration: none !important;
  transition: all 0.2s ease; display: inline-block;
}
.footer-links-list li a:hover {
  color: var(--heritage-gold);
  transform: translateX(4px);
}
.footer-trust-card {
  background: rgba(193, 154, 77, 0.08);
  border: 1px solid rgba(193, 154, 77, 0.35);
  padding: 16px; border-radius: 2px;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.2);
}
.footer-bottom-legal {
  border-top: 1px solid rgba(193, 154, 77, 0.2);
  padding-top: 22px; margin-top: 18px;
}
.legal-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.legal-links li a { color: #a89a88; font-size: 11px; text-decoration: none !important; transition: color 0.2s ease; }
.legal-links li a:hover { color: var(--heritage-gold); }

.minimal-checkout-footer {
  background: #ffffff;
  border-top: 1px solid var(--heritage-border);
  padding: 24px 0; font-size: 11px;
  color: var(--heritage-muted); text-align: center;
}
.minimal-checkout-footer a { color: var(--heritage-navy); margin: 0 8px; text-decoration: none; }
.minimal-checkout-footer a:hover { color: var(--heritage-terracotta); }

#tabTechSpecs table {
    width: 100%;
}

#tabTechSpecs table td {
    border: 1px solid #ddd;
    padding: 5px 10px;
}
a:focus {
    outline: none;
}

/* ==========================================================================
   10. RESPONSIVE MEDIA QUERIES (CONSOLIDATED AT THE END)
   ========================================================================== */
@media (max-width: 991px) {
  .heritage-logo-center { font-size: 28px; }
  .gallery-container { flex-direction: column-reverse; }
  .thumb-vertical-list { flex-direction: row; width: 100%; overflow-x: auto; min-height: auto; }
  .main-image-zoom-box { height: 340px; }
  .sticky-buy-box { margin-top: 24px; }
  .auth-split-wrapper { flex-direction: column; }
  .auth-left-pane { width: 100%; padding: 40px 20px; }
  .auth-right-pane { display: none; }
}

@media (max-width: 767px) {
  .heritage-footer { padding-top: 40px; }
  .footer-brand { font-size: 24px; }
  .footer-col-title { margin-top: 14px; }
  .footer-bottom-legal .text-right { text-align: left !important; margin-top: 10px; }
  .hero-main-heading { font-size: 26px; }
  .hero-banner-container { min-height: 260px; }
  .hero-banner-container img { height: 260px; }
  .newsletter-form { flex-direction: column; }
  .btn-newsletter { height: 38px; }
  .cat-main-title { font-size: 24px; }
  .product-thumb-wrap { height: 180px; }
  .header-ssl-pill, .header-back-home { display: none; }
  .checkout-center-brand, .header-center-brand { font-size: 22px; }
  .checkout-light-header, .success-light-header, .failed-light-header { text-align: center; }
  .track-text { font-size: 9px; }
  .track-circle { width: 26px; height: 26px; font-size: 11px; }
  .success-heading, .failed-heading { font-size: 24px; }
  .btn-choose-cod { margin-left: 0; margin-top: 10px; display: block; text-align: center; }
  .btn-retry-primary { display: block; text-align: center; }
}


