/* ============================================
   CSS VARIABLES - PREMIUM DARK THEME (StockX Inspired)
   ============================================ */
:root {
  /* Brand Colors */
  --bg-body: #111111;
  /* Deep Black/Dark Grey */
  --bg-card: #1E1E1E;
  /* Slightly lighter for panels */
  --bg-glass: rgba(17, 17, 17, 0.85);
  /* Dark Glass */
  --bg-white: #FFFFFF;
  /* Pure white for image containers */

  /* Text Colors */
  --text-primary: #FFFFFF;
  /* White */
  --text-dark: #FFFFFF;
  /* Overriding previous dark text to white */
  --text-secondary: #AAAAAA;
  /* Light Grey */
  --text-muted: #666666;
  /* Medium Grey */

  /* Action Colors */
  --action-primary: #FFFFFF;
  /* Solid White Buttons */
  --action-hover: #E0E0E0;
  --action-text: #111111;
  /* Black text on white buttons */
  --accent-green: #006340;
  /* StockX Green */

  /* Borders & Dividers */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  /* Border Radius - Softer & Friendlier */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows - Soft & Diffused */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 800;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Softer spring */
  --transition-bounce: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
  font-family: var(--font-heading);
}

/* ===== HEADER ===== */
header {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -8px;
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
}

.search-container {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.search-container input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  box-shadow: none;
  color: var(--text-primary);
}

.search-container input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px var(--border-hover);
}

.search-container::before {
  content: '🔍';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.4;
  filter: grayscale(100%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-btn {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
}

.cart-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--text-primary);
  color: var(--bg-body);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 12px;
  min-width: 20px;
  border: 2px solid var(--bg-body);
}

.header-utility-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.header-utility-link:hover {
  opacity: 0.7;
}

.login-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.login-btn.outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.login-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.login-btn.solid {
  background: var(--text-primary);
  color: var(--bg-body);
  border: 1px solid var(--text-primary);
}

.login-btn.solid:hover {
  opacity: 0.9;
}

/* ===== NAVIGATION ===== */
nav {
  background: transparent;
  padding: 16px 0 24px 0;
  display: flex;
  justify-content: center;
}

.nav-container {
  display: inline-flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  border-radius: 100px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
  max-width: 1400px;
}

.nav-link {
  padding: 10px 24px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: var(--bg-body);
  background: var(--text-primary);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.nav-link.deals-link {
  color: #ff3b30;
}

.nav-link.deals-link:hover {
  background: rgba(255, 59, 48, 0.15);
  color: #ff3b30;
}

.nav-link.deals-link.active {
  background: #ff3b30;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

/* ===== MAIN CONTAINER ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 32px;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-toggle {
  display: none;
}

.filter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 8px;
}

.filter-chip {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: none;
}

.filter-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.filter-chip.active {
  background: var(--text-primary);
  color: var(--bg-body);
  box-shadow: var(--shadow-md);
}

.sort-select {
  margin-left: auto;
  padding: 10px 36px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  cursor: pointer;
  appearance: none;
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFFFFF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: var(--transition-smooth);
}

.sort-select:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  /* Soft floating card style removed to match StockX flat layout */
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image-container {
  position: relative;
  width: 100%;
  padding-top: 85%;
  background: #F4F5F5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.product-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  max-height: 85%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-image {
  transform: translate(-50%, -55%) scale(1.05);
}

.product-info {
  padding: 4px 0;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-category {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 400;
  display: block;
  /* To sit on its own line like "Lowest Ask" */
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.price-row {
  display: flex;
  flex-direction: column;
}

.product-lowest-ask {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

.quick-view-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--action-primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.quick-view-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--action-hover);
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* ===== HERO BANNER ===== */
.hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--bg-card) 0%, #e0f2f1 100%);
  border-radius: 24px;
  padding: 40px 60px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.hero-banner:hover {
  box-shadow: var(--shadow-md);
}

.hero-content {
  flex: 1;
  max-width: 500px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-mint);
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 46px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-btn {
  padding: 16px 32px;
  background: var(--action-primary);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn:hover {
  background: var(--action-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.hero-btn:active {
  transform: translateY(0);
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.hero-image {
  max-width: 500px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(-10px 20px 20px rgba(0, 0, 0, 0.2));
  transform: rotate(-12deg) translateY(-10px) scale(1.05);
  transition: var(--transition-bounce);
  pointer-events: none;
}

.hero-banner:hover .hero-image {
  transform: rotate(-6deg) translateY(-20px) scale(1.1);
  filter: drop-shadow(-15px 30px 25px rgba(0, 0, 0, 0.25));
}

/* Background decoration for Hero */
.hero-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--bg-white);
  border-radius: 24px;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--bg-body);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-bounce);
  color: var(--text-primary);
}

.modal-close:hover {
  background: #E5E5E5;
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.modal-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--bg-body);
  object-fit: contain;
  padding: 40px;
}

.modal-details {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-details h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.modal-category {
  font-size: 13px;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-weight: 700;
}

.modal-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-lowest-ask {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  background: var(--bg-body);
  padding: 4px 10px;
  border-radius: 20px;
}

.size-selector {
  margin-bottom: 32px;
}

.size-selector h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.size-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.size-option {
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.size-option:hover {
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.size-option.selected {
  background: var(--text-primary);
  color: white;
  border-color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.add-to-cart-btn {
  width: 100%;
  padding: 20px;
  background: var(--action-primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-hover);
  background: var(--action-hover);
}

.add-to-cart-btn:active {
  transform: scale(0.96);
}

/* ===== CART MODAL ===== */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1100;
}

.cart-modal.active {
  display: block;
}

.cart-content {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--bg-white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  animation: slideIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.cart-header {
  padding: 32px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-size: 24px;
  font-weight: 800;
}

.cart-close {
  background: var(--bg-body);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.cart-close:hover {
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  margin-bottom: 16px;
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.cart-item:hover {
  background: #FFFFFF;
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  background: white;
  padding: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-size {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  background: rgba(0, 0, 0, 0.05);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 700;
}

.remove-item {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  padding: 0;
  margin-top: 8px;
  transition: color 0.2s;
}

.remove-item:hover {
  color: #DC3545;
}

.cart-footer {
  padding: 32px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cart-total-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.cart-total-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.checkout-btn {
  width: 100%;
  padding: 20px;
  background: var(--action-primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: var(--action-hover);
}

.empty-cart {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}

.empty-cart-icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
  }

  .search-container {
    order: 3;
    max-width: 100%;
    flex-basis: 100%;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .modal-body {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .modal-image {
    min-height: 250px;
    border-radius: 24px 24px 0 0;
  }

  .modal-details {
    padding: 32px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .container {
    padding: 24px 16px;
  }
}

.logo {
  font-size: 24px;
}

.products-grid {
  gap: 8px;
}

.product-info {
  padding: 8px;
}

.product-name {
  font-size: 12px;
}

.product-price {
  font-size: 14px;
}


/* ===== UTILITIES ===== */
.hidden {
  display: none !important;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--primary-green);
  color: white;
}

/* Coming Soon Modal Styles */
.modal-content.small {
  max-width: 400px;
}

.modal-content.center {
  text-align: center;
}

.coming-soon-body {
  padding: 40px 20px;
}

.coming-soon-icon {
  font-size: 48px;
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

#comingSoonTitle {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 0%, #666 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#comingSoonMessage {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal-content.small .add-to-cart-btn {
  padding: 16px;
  font-size: 15px;
}