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

:root {
  --header-bg: #131921;
  --nav-bg: #232F3E;
  --nav-hover: #37475A;
  --accent: #FF9900;
  --cta: #FFD814;
  --cta-hover: #F7CA00;
  --cta-shadow: #C7A600;
  --buy-bg: #FFA41C;
  --buy-hover: #FA8900;
  --link: #007185;
  --link-hover: #C7511F;
  --star: #FF9900;
  --prime: #00A8E1;
  --badge-bg: #CC0C39;
  --choice-bg: #232F3E;
  --deal-bg: #CC0C39;
  --success: #067D62;
  --text: #0F1111;
  --text-muted: #565959;
  --border: #D5D9D9;
  --bg-light: #F7F8F8;
  --bg-white: #FFFFFF;
  --radius: 4px;
  --shadow: 0 2px 5px rgba(0,0,0,.09);
  --shadow-hover: 0 4px 12px rgba(0,0,0,.15);
}

body {
  font-family: "Amazon Ember", Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.5;
}

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

/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 100; }

.header-top {
  background: var(--header-bg);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  min-height: 60px;
}

.logo {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
  padding: 4px 8px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color .15s;
}
.logo:hover { border-color: white; }
.logo-text {
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
}
.logo-dot { font-size: 12px; color: var(--accent); font-weight: 700; }

.search-bar {
  flex: 1;
  display: flex;
  height: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: none;
}

.search-category {
  background: #F3F3F3;
  border: none;
  padding: 0 8px;
  font-size: 12px;
  color: #555;
  cursor: pointer;
  border-right: 1px solid #ccc;
  min-width: 60px;
}

.search-input {
  flex: 1;
  border: none;
  padding: 0 10px;
  font-size: 15px;
  outline: none;
}

.search-btn {
  background: var(--accent);
  border: none;
  padding: 0 14px;
  cursor: pointer;
  color: #111;
  transition: background .15s;
  display: flex;
  align-items: center;
}
.search-btn:hover { background: #e88a00; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  flex-shrink: 0;
}

.header-action-link {
  display: flex;
  flex-direction: column;
  padding: 4px 8px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color .15s;
  color: white;
  white-space: nowrap;
}
.header-action-link:hover { border-color: white; }
.header-action-line1 { font-size: 11px; }
.header-action-line2 { font-size: 13px; font-weight: 700; }

.cart-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color .15s;
  color: white;
}
.cart-link:hover { border-color: white; }
.cart-icon-wrap { position: relative; }
.cart-icon { display: block; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.cart-label { font-size: 13px; font-weight: 700; }

.header-nav {
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav::-webkit-scrollbar { display: none; }

.nav-link {
  color: white;
  font-size: 13px;
  padding: 8px 10px;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color .15s;
}
.nav-link:hover { border-color: white; }
.nav-link-highlight { color: var(--cta); font-weight: 600; }

/* ── ACCOUNT DROPDOWN ── */
.account-dropdown-wrap {
  position: relative;
  cursor: pointer;
}
.account-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  min-width: 200px;
  z-index: 200;
  overflow: hidden;
}
.account-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 24px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
}
.account-dropdown-wrap.open .account-dropdown { display: block; }
.account-dropdown-header {
  padding: 12px 16px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.account-dropdown-header strong { font-size: 14px; color: var(--text); }
.account-dropdown-header small { font-size: 12px; color: var(--text-muted); }
.account-dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--bg-light);
  transition: background .1s;
}
.account-dropdown-item:hover { background: var(--bg-light); color: var(--link-hover); }

/* ── SIGN-IN PAGE ── */
.signin-page { background: white; min-height: 100vh; }
.signin-header {
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.signin-header .logo-text { color: var(--text); }
.signin-wrap { max-width: 350px; margin: 24px auto; padding: 0 16px 48px; }
.signin-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.signin-box h1 { font-size: 28px; font-weight: 400; margin-bottom: 16px; }
.signin-divider {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  position: relative;
  margin: 16px 0;
}
.signin-divider::before, .signin-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}
.signin-divider::before { left: 0; }
.signin-divider::after { right: 0; }
.btn-signin {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--cta);
  border: 1px solid var(--cta-shadow);
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  color: #111;
  transition: background .15s;
  margin-top: 4px;
}
.btn-signin:hover { background: var(--cta-hover); }
.signin-legal {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}
.signin-legal a { color: var(--link); }
.signin-create {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
}
.signin-create a { color: var(--link); }
.signin-create a:hover { color: var(--link-hover); text-decoration: underline; }
.form-error {
  color: #CC0C39;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

/* ── SHIPPING OPTIONS ── */
.shipping-options { display: flex; flex-direction: column; gap: 10px; }
.shipping-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.shipping-option:has(input:checked) {
  border-color: var(--accent);
  background: #FFFBF2;
}
.shipping-option input[type="radio"] { margin-top: 2px; accent-color: var(--accent); }
.shipping-option-body { flex: 1; }
.shipping-option-name { font-weight: 600; font-size: 14px; }
.shipping-option-detail { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.shipping-option-price { font-size: 14px; font-weight: 600; flex-shrink: 0; }
.shipping-option-price.free { color: var(--success); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #232F3E 0%, #37475A 50%, #131921 100%);
  color: white;
  text-align: center;
  padding: 48px 24px;
}
.hero h1 { font-size: 36px; margin-bottom: 8px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 16px; color: #ccc; margin-bottom: 24px; }
.hero-search { display: flex; gap: 8px; max-width: 500px; margin: 0 auto; }
.hero-search input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
}
.hero-search button {
  padding: 12px 24px;
  background: var(--accent);
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* ── LAYOUT ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 16px; }

.page-section { padding: 20px 0; }
.page-section + .page-section { border-top: 1px solid var(--border); }

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

/* ── CATEGORY FILTERS ── */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.filter-btn {
  padding: 6px 16px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: all .15s;
  color: var(--text);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
  font-weight: 600;
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--badge-bg);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.badge-choice { background: var(--choice-bg); }

.product-card-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product-card-name {
  font-size: 13px;
  line-height: 1.4;
  color: var(--link);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card:hover .product-card-name { color: var(--link-hover); text-decoration: underline; }

.product-card-rating { display: flex; align-items: center; gap: 4px; }
.stars { color: var(--star); font-size: 13px; letter-spacing: -1px; }
.rating-count { color: var(--link); font-size: 12px; }

.product-card-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price { font-size: 18px; font-weight: 700; }
.original-price { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.discount { font-size: 12px; color: var(--badge-bg); font-weight: 600; }

.prime-badge {
  font-size: 11px;
  color: var(--prime);
  font-weight: 600;
  letter-spacing: .5px;
}

/* ── PRODUCT DETAIL PAGE ── */
.product-detail-layout {
  display: grid;
  grid-template-columns: 420px 1fr 280px;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
}

.product-detail-image-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.product-detail-image-wrap img {
  width: 100%;
  border-radius: var(--radius);
}

.product-detail-info { padding: 8px 0; }
.product-detail-category {
  font-size: 12px;
  color: var(--link);
  margin-bottom: 8px;
}
.product-detail-name {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
}
.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.product-detail-rating .stars { font-size: 16px; }
.product-detail-rating .rating-num { font-size: 15px; font-weight: 600; color: var(--link); }
.product-detail-rating .rating-count { color: var(--link); font-size: 14px; }

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.product-detail-price .price { font-size: 28px; }
.product-detail-price .original-price { font-size: 16px; }

.product-detail-prime { margin-bottom: 16px; font-size: 13px; color: var(--prime); font-weight: 600; }
.product-detail-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.product-detail-features { padding-left: 20px; }
.product-detail-features li { margin-bottom: 6px; font-size: 14px; }

.buy-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.buy-box-price { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.buy-box-prime { color: var(--prime); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.buy-box-delivery { font-size: 13px; margin-bottom: 12px; }
.buy-box-delivery strong { color: var(--success); }
.buy-box-stock { color: var(--success); font-size: 16px; font-weight: 600; margin-bottom: 12px; }

.quantity-select {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 10px;
  background: var(--bg-light);
}

.btn {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  margin-bottom: 8px;
}
.btn-add-cart {
  background: var(--cta);
  border-color: var(--cta-shadow);
  color: #111;
  font-weight: 500;
}
.btn-add-cart:hover { background: var(--cta-hover); }
.btn-buy-now {
  background: var(--buy-bg);
  border-color: #c45500;
  color: #111;
  font-weight: 500;
}
.btn-buy-now:hover { background: var(--buy-hover); }

/* ── SEARCH PAGE ── */
.search-layout { display: flex; gap: 24px; padding: 24px 0; }
.search-sidebar {
  flex-shrink: 0;
  width: 220px;
}
.search-sidebar h3 { font-size: 18px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.sidebar-section { margin-bottom: 20px; }
.sidebar-section h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.sidebar-section a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  color: var(--link);
}
.sidebar-section a:hover { text-decoration: underline; color: var(--link-hover); }
.sidebar-section a.active { font-weight: 700; color: var(--text); }

.search-results { flex: 1; }
.search-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.search-results-count { font-size: 18px; }
.search-results-count span { color: var(--badge-bg); }
.sort-select {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  background: white;
}

.search-product-list { display: flex; flex-direction: column; gap: 16px; }
.search-product-item {
  background: white;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
}
.search-product-item:hover { box-shadow: var(--shadow-hover); }
.search-product-thumb {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  background: #f5f5f5;
  border-radius: var(--radius);
  overflow: hidden;
}
.search-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-product-body { flex: 1; }
.search-product-name {
  font-size: 18px;
  color: var(--link);
  margin-bottom: 6px;
  line-height: 1.3;
}
.search-product-name:hover { color: var(--link-hover); text-decoration: underline; cursor: pointer; }
.search-product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.search-product-price { margin-bottom: 8px; }
.search-product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.no-results {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}
.no-results h2 { font-size: 24px; margin-bottom: 8px; color: var(--text); }

/* ── CART PAGE ── */
.cart-layout { display: flex; gap: 20px; padding: 20px 0; align-items: start; }
.cart-main { flex: 1; background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.cart-title { font-size: 28px; font-weight: 400; border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-bottom: 16px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background: #f5f5f5;
  border-radius: var(--radius);
  overflow: hidden;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body { flex: 1; }
.cart-item-name { font-size: 16px; color: var(--link); margin-bottom: 6px; line-height: 1.3; }
.cart-item-name:hover { text-decoration: underline; color: var(--link-hover); }
.cart-item-stock { color: var(--success); font-size: 13px; margin-bottom: 8px; }
.cart-item-prime { color: var(--prime); font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.cart-item-actions { display: flex; align-items: center; gap: 12px; }
.qty-controls { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-btn {
  background: var(--bg-light);
  border: none;
  width: 30px;
  height: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s;
}
.qty-btn:hover { background: var(--border); }
.qty-value {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 4px 0;
}
.cart-item-delete { color: var(--link); font-size: 13px; cursor: pointer; background: none; border: none; }
.cart-item-delete:hover { color: var(--link-hover); text-decoration: underline; }
.cart-item-price-right { font-size: 18px; font-weight: 700; flex-shrink: 0; }

.cart-empty { text-align: center; padding: 48px 24px; color: var(--text-muted); }
.cart-empty h2 { font-size: 24px; margin-bottom: 12px; color: var(--text); }
.cart-empty a { color: var(--link); }
.cart-empty a:hover { text-decoration: underline; color: var(--link-hover); }

.cart-sidebar { width: 280px; flex-shrink: 0; }
.order-summary {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.order-summary-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 6px; }
.summary-divider { border: none; border-top: 1px solid var(--border); margin: 10px 0; }
.summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.btn-checkout {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--cta);
  border: 1px solid var(--cta-shadow);
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  color: #111;
  transition: background .15s;
  text-decoration: none;
}
.btn-checkout:hover { background: var(--cta-hover); }

/* ── CHECKOUT PAGE ── */
.checkout-layout { display: flex; gap: 20px; padding: 20px 0; align-items: start; }
.checkout-main { flex: 1; }
.checkout-section {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.checkout-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-number {
  background: var(--accent);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.form-row { display: flex; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; flex: 1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input, .form-group select {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(255,153,0,.15); }

.checkout-sidebar { width: 320px; flex-shrink: 0; }
.checkout-summary {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.checkout-summary h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.checkout-item { display: flex; gap: 10px; margin-bottom: 10px; }
.checkout-item-thumb { width: 60px; height: 60px; border-radius: var(--radius); overflow: hidden; background: #f5f5f5; flex-shrink: 0; }
.checkout-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-name { font-size: 13px; line-height: 1.4; }
.checkout-item-price { font-size: 13px; font-weight: 600; }

.btn-place-order {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--cta);
  border: 1px solid var(--cta-shadow);
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  color: #111;
  margin-top: 16px;
  transition: background .15s;
}
.btn-place-order:hover { background: var(--cta-hover); }

/* ── CONFIRMATION PAGE ── */
.confirmation-wrap { max-width: 640px; margin: 40px auto; padding: 0 16px; }
.confirmation-box {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.confirmation-icon { font-size: 48px; color: var(--success); margin-bottom: 12px; }
.confirmation-box h1 { font-size: 28px; color: var(--success); margin-bottom: 8px; }
.confirmation-box p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; }
.order-id-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin: 16px 0;
  display: inline-block;
}
.order-id-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.order-id-value { font-size: 18px; font-weight: 700; color: var(--link); font-family: monospace; }

.confirmation-summary { text-align: left; margin-top: 24px; border-top: 1px solid var(--border); padding-top: 16px; }
.confirmation-summary h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }

.btn-continue {
  display: inline-block;
  padding: 10px 24px;
  background: var(--cta);
  border: 1px solid var(--cta-shadow);
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  color: #111;
  margin-top: 16px;
  transition: background .15s;
}
.btn-continue:hover { background: var(--cta-hover); }

/* ── FOOTER ── */
.site-footer { margin-top: 48px; }
.footer-back-top {
  background: #37475A;
  text-align: center;
  padding: 14px;
}
.footer-back-top a { color: white; font-size: 13px; }
.footer-back-top a:hover { text-decoration: underline; }
.footer-links {
  background: #232F3E;
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 36px 24px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { color: white; font-size: 14px; margin-bottom: 4px; }
.footer-col a { color: #DDD; font-size: 13px; }
.footer-col a:hover { color: white; text-decoration: underline; }
.footer-bottom {
  background: #131921;
  text-align: center;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-logo { color: white; font-size: 22px; font-weight: 800; }
.footer-copy { color: #888; font-size: 12px; }

/* ── MISC ── */
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.breadcrumb a { color: var(--link); }
.breadcrumb a:hover { text-decoration: underline; color: var(--link-hover); }

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #232F3E;
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  z-index: 1000;
  animation: slideIn .2s ease;
}
@keyframes slideIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 900px) {
  .product-detail-layout { grid-template-columns: 1fr; }
  .cart-layout, .checkout-layout, .search-layout { flex-direction: column; }
  .cart-sidebar, .checkout-sidebar, .search-sidebar { width: 100%; }
  .footer-links { flex-wrap: wrap; gap: 24px; }
}
