@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');


/* YEEZY.COM - EXACT CLONE */
:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-bg: #ffffff;
  --c-text: #1a1a1a;
  --c-text-muted: #888888;
  --c-green: #2d5a27;
  
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-height: 52px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: var(--font);
  background: var(--c-white);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  /* Removed -moz-osx-font-smoothing for SES compatibility */
}
/* Layout */
.layout {
  min-height: 100vh;
}
/* ========== HEADER - YEEZY EXACT ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--c-white);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.header-left {
  width: 100px;
  display: flex;
  align-items: center;
}
.header-menu-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--c-black);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.header-menu-btn svg {
  width: 24px;
  height: 24px;
}
.header-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}
.header-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.header-right {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-cart-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}
.header-cart-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-black);
}
.header-cart-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-cart-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}
/* ========== MAIN CONTENT ========== */
.main {
  margin-top: var(--header-height);
}
/* ========== PRODUCTS GRID ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--c-white);
  gap: 0;
}
@media (min-width: 520px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 820px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1080px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1440px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
/* Zoomed state - 2 columns, larger items */
.zoomed .products-grid {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 600px) {
  .zoomed .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ========== PRODUCT CARD ========== */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  text-decoration: none;
  color: var(--c-text);
}
.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-info {
  padding: 6px 6px 12px;
  text-align: center;
  background: var(--c-white);
}
.product-sku {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--c-text);
  text-transform: uppercase;
}
/* Zoomed state - larger items */
.zoomed .product-image-wrapper {
  aspect-ratio: 4/5;
  padding: 10%;
}
.zoomed .product-sku {
  font-size: 18px;
}
.zoomed .product-info {
  padding: 10px 12px 18px;
}
/* Hide price and name on grid */
.product-name,
.product-price {
  display: none;
}
/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail {
  min-height: calc(100vh - var(--header-height));
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.product-gallery {
  background: var(--c-white);
}
.product-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  padding: 10%;
}
.product-gallery-main img,
.product-gallery-main .optimized-image-container {
  width: 100%;
  height: 100%;
}
.product-gallery-main .optimized-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 16px;
  background: var(--c-white);
  overflow-x: auto;
}
.product-gallery-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--c-white);
  border: 1px solid transparent;
  cursor: pointer;
  padding: 4px;
}
.product-gallery-thumb.active {
  border-color: var(--c-black);
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Product Info */
.product-detail-info {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .product-detail-info {
    padding: 48px 32px;
  }
}
.product-detail-name {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-detail-price {
  font-size: 12px;
  font-weight: 400;
  color: var(--c-text);
}
.product-detail-sku {
  font-size: 10px;
  color: var(--c-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
/* Variants */
.variants {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.variant-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.variant-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-text-muted);
}
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.variant-option {
  min-width: 44px;
  height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background: var(--c-white);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.variant-option:hover {
  border-color: var(--c-black);
}
.variant-option.selected {
  background: var(--c-black);
  border-color: var(--c-black);
  color: var(--c-white);
}
.variant-option.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
/* Add to Cart Button */
.add-to-cart-btn {
  width: 100%;
  height: 44px;
  background: var(--c-black);
  color: var(--c-white);
  border: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-top: 8px;
}
.add-to-cart-btn:hover {
  opacity: 0.85;
}
.add-to-cart-btn:disabled {
  background: #ddd;
  color: #999;
  cursor: not-allowed;
}
/* ========== CART PAGE ========== */
.cart-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 16px;
}
.cart-page h1 {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 32px;
}
.cart-items {
  display: flex;
  flex-direction: column;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.cart-item-image {
  width: 80px;
  height: 80px;
  background: var(--c-white);
  object-fit: contain;
}
.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-item-name {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.cart-item-variant {
  font-size: 10px;
  color: var(--c-text-muted);
}
.cart-item-price {
  font-size: 11px;
  margin-top: 8px;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}
.quantity-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
}
.quantity-input {
  width: 36px;
  height: 28px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 11px;
  font-family: var(--font);
}
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.remove-btn {
  font-size: 10px;
  color: var(--c-text-muted);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}
/* Cart Summary */
.cart-summary {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--c-black);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.checkout-btn {
  width: 100%;
  height: 44px;
  background: var(--c-black);
  color: var(--c-white);
  border: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
.checkout-btn:hover {
  opacity: 0.85;
}
/* ========== EMPTY STATE ========== */
.empty-state {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
}
.empty-state h2 {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* ========== LOADING ========== */
.loading {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 1.5px solid #ddd;
  border-top-color: var(--c-black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* ========== UTILITIES ========== */
.fade-in {
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}
/* Product page arrow buttons */
.product-arrow-btn:hover {
  transform: translateY(-50%) scale(1.1) !important;
  opacity: 0.7;
}
/* Hide product arrows on mobile */
@media (max-width: 767px) {
  .product-arrow-btn {
    display: none !important;
  }
}
::-webkit-scrollbar {
  width: 0;
  height: 0;
}
::selection {
  background: var(--c-black);
  color: var(--c-white);
}
/* Info Transition */
.info-fade-enter {
  opacity: 0;
  transform: translateY(10px);
}
.info-fade-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.info-fade-exit {
  opacity: 1;
  transform: translateY(0);
}
.info-fade-exit-active {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
/* Ensure images don't flicker */
.product-image-slide {
  will-change: transform;
  backface-visibility: hidden;
}
/* CHECKOUT - YEEZY STYLE */
.checkout {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 12px 18px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: calc(var(--header-height, 56px) + 6px);
  padding-bottom: 18px;
  font-family: 'Inter', sans-serif;
  color: #000;
  background: #fff;
}
.checkout-content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
/* Steps */
.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.checkout-step {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e5e5e5;
  transition: all 0.3s ease;
}
.checkout-step.active {
  background: #000;
  width: 26px;
}
.checkout-step.completed {
  background: #000;
}
/* Titles */
.checkout-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 6px;
  text-align: center;
}
/* Form */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.checkout-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #ededed;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #000;
  border-radius: 8px;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.checkout-input:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.checkout-input::placeholder {
  color: #999;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.checkout-input.error {
  border-color: #ff0000;
}
.checkout-error {
  font-size: 10px;
  color: #ff0000;
  letter-spacing: 0.3px;
  margin-top: -6px;
  padding-left: 4px;
}
/* Order Summary */
.order-summary-mini {
  border: 1px solid #ededed;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-summary-thumb {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #f6f6f6;
  border-radius: 10px;
}
.order-summary-details {
  flex: 1;
}
.order-summary-name {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}
.order-summary-meta {
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
}
.order-summary-price {
  font-size: 11px;
  font-weight: 500;
}
.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-top: 1px solid #ededed;
  margin-top: 6px;
}
/* Navigation */
.checkout-nav {
  width: 100%;
  display: flex;
  gap: 10px;
  position: sticky;
  bottom: 0;
  padding: 10px 0 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, #fff 45%);
  backdrop-filter: blur(6px);
}
.checkout-btn {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 12px;
}
.checkout-btn-next {
  flex: 1;
  background: #000;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}
.checkout-btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}
.checkout-btn-next:disabled {
  background: #ededed;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
}
.checkout-btn-back {
  width: 48px;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #000;
}
.checkout-btn-back:hover {
  border-color: #000;
}
/* PVZ Styles */
.pvz-selector {
  font-family: 'Inter', sans-serif !important;
}
.pvz-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
}
.pvz-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #ededed;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  box-sizing: border-box;
  margin-bottom: 12px;
  border-radius: 10px;
}
.pvz-input:focus {
  outline: none;
  border-color: #000;
}
.pvz-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
}
.pvz-suggestion-item {
  padding: 12px 14px;
  font-size: 12px;
  cursor: pointer;
}
.pvz-suggestion-item:hover {
  background: #f6f6f6;
}
.pvz-map-container {
  width: 100%;
  height: 320px;
  background: #f9f9f9;
  margin-bottom: 16px;
  border: 1px solid #eee;
}
.pvz-list-toggle {
  width: 100%;
  padding: 14px;
  border: 1px solid #ededed;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-bottom: 12px;
  border-radius: 10px;
}
.pvz-list {
  max-height: 240px;
  overflow-y: auto;
  border: 1px solid #ededed;
  border-top: none;
  margin-top: -12px;
  margin-bottom: 12px;
  border-radius: 0 0 10px 10px;
}
.pvz-list-item {
  padding: 16px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.pvz-list-item:hover {
  background: #f9f9f9;
}
.pvz-selected {
  padding: 14px;
  border: 1px solid #000;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
}
.pvz-selected-info {
  flex: 1;
}
.pvz-selected-code {
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pvz-selected-address {
  font-size: 12px;
  line-height: 1.4;
}
.pvz-change-btn {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 16px;
  background: none;
  border: none;
  padding: 0;
}
/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-method {
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid #ededed;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}
.payment-method.selected {
  border-color: #000;
  background: #f6f6f6;
  box-shadow: inset 0 0 0 1px #000;
}
.payment-method-radio {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-method.selected .payment-method-radio {
  border-color: #000;
}
.payment-method.selected .payment-method-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
}
.payment-method-info {
  flex: 1;
}
.payment-method-name {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}
.payment-method-desc {
  font-size: 10px;
  color: #666;
}
/* Order Page (Success) */
.order-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 16px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}
.checkout-status-icon {
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.checkout-status-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.order-details {
  border: 1px solid #eee;
  padding: 24px;
  text-align: left;
  margin-bottom: 32px;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 11px;
}
.detail-label {
  color: #666;
  text-transform: uppercase;
}
.detail-value {
  font-weight: 500;
  text-align: right;
}
/* Utils */
.fade-in {
  animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* T-Bank Payment */
.tbank-container {
  width: 100%;
  background: #fff;
}
.empty-state-mini {
  padding: 32px;
  text-align: center;
  border: 1px solid #eee;
  color: #999;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.loading-state {
  padding: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #eee;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.payment-method-badge {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 9px;
  padding: 2px 4px;
  margin-left: 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tbank-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  z-index: 10;
  color: #000;
  min-height: 520px;
}
.tbank-iframe-wrapper {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #ededed;
}
.tbank-iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
  background: #fff;
}
.tbank-iframe.loading {
  opacity: 0;
}
.tbank-security {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: #666;
}
/* Order Page Sections */
.order-section {
  margin-bottom: 24px;
}
.order-section-header {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: #000;
  padding: 8px 16px;
}
.order-section-content {
  padding: 16px;
  border: 1px solid #eee;
  border-top: none;
}
.order-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.order-item:last-child {
  border-bottom: none;
}
.order-item-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  background: #f9f9f9;
  flex-shrink: 0;
}
.order-item-info {
  flex: 1;
}
.order-item-name {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.order-item-meta {
  font-size: 10px;
  color: #666;
  margin-top: 2px;
}
.order-item-price {
  font-size: 11px;
  font-weight: 500;
}
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #f9f9f9;
  margin-bottom: 24px;
}
.order-total-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
}
.order-total-value {
  font-size: 16px;
  font-weight: 600;
}
.address-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #f9f9f9;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease;
}
.address-link:hover {
  background: #eee;
}
.address-link-icon {
  font-size: 16px;
}
.address-link-text {
  flex: 1;
}
.address-link-address {
  font-size: 11px;
  margin-bottom: 2px;
}
.address-link-hint {
  font-size: 9px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-bottom: 16px;
}
.contact-btn:hover {
  opacity: 0.8;
}
.continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background: #fff;
  border: 1px solid #eee;
  color: #000;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.continue-btn:hover {
  border-color: #000;
}
