/* ===========================
   ECHTSTOFF – PREMIUM DESIGN
   =========================== */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --darker: #0d0d0d;
  --card: #161616;
  --border: #2a2a2a;
  --border-light: #333;
  --accent: #e8c547;
  --accent-dark: #c9a830;
  --accent-glow: rgba(232,197,71,0.15);
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --text: #e8e8e8;
  --text-muted: #999;
  --green: #4caf50;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--black);
  border: none; border-radius: 50px;
  padding: 14px 32px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,197,71,0.3); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(10,10,10,0.98); box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; gap: 32px;
}
.logo { text-decoration: none; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; }
.logo-echt { color: var(--white); }
.logo-stoff { color: var(--accent); }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { color: var(--gray-light); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition); letter-spacing: 0.3px; }
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative; background: var(--card); border: 1px solid var(--border);
  color: var(--white); width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.cart-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent); color: var(--black);
  font-size: 11px; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; padding: 16px 24px; border-top: 1px solid var(--border); flex-direction: column; gap: 16px; }
.mobile-menu a { color: var(--gray-light); text-decoration: none; font-size: 16px; font-weight: 500; }
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--darker);
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(232,197,71,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(232,197,71,0.05) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: 80px 24px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-glow); border: 1px solid rgba(232,197,71,0.3);
  color: var(--accent); padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 20px;
  letter-spacing: -2px;
}
.hero-highlight { color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--gray-light); margin-bottom: 40px; font-weight: 400; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num { font-size: 28px; font-weight: 900; color: var(--white); }
.stat-label { font-size: 12px; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray); font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{opacity:0.3;transform:scaleY(0.5);} 50%{opacity:1;transform:scaleY(1);} }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
  display: inline-block;
  background: var(--accent-glow); border: 1px solid rgba(232,197,71,0.3);
  color: var(--accent); padding: 6px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: var(--white); line-height: 1.15;
  margin-bottom: 12px;
}
.highlight { color: var(--accent); }
.section-sub { font-size: 16px; color: var(--gray); max-width: 500px; margin: 0 auto; }

/* ---- FILTER ---- */
.filter-section { padding: 80px 0 40px; }
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px;
}
.filter-btn {
  background: var(--card); border: 1px solid var(--border);
  color: var(--gray-light); padding: 10px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); border-color: var(--accent); color: var(--black); font-weight: 700;
}
.search-bar {
  position: relative; max-width: 400px; margin: 0 auto;
}
.search-bar input {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  color: var(--white); padding: 12px 44px 12px 18px; border-radius: 50px;
  font-size: 14px; outline: none; transition: var(--transition);
}
.search-bar input:focus { border-color: var(--accent); }
.search-bar input::placeholder { color: var(--gray); }
.search-bar svg { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--gray); pointer-events: none; }

/* ---- PRODUCTS ---- */
.products-section { padding: 0 0 80px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,197,71,0.1);
}
.product-img-wrap {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: #1a1a1a;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: var(--black);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 12px; border-radius: 50px;
  text-transform: uppercase;
}
.product-badge.football { background: #2196f3; color: #fff; }
.product-quick-add {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--black); color: var(--white);
  border: 1px solid var(--border-light);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; opacity: 0; transform: translateY(8px);
  transition: var(--transition); cursor: pointer;
}
.product-card:hover .product-quick-add { opacity: 1; transform: translateY(0); }
.product-quick-add:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }
.product-info { padding: 18px 20px 20px; }
.product-club { font-size: 11px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-name { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.product-desc { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 20px; font-weight: 800; color: var(--accent); }
.product-color {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border-light);
}

/* ---- FOOTBALL SECTION ---- */
.fussball-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--black) 0%, #0f1318 50%, var(--black) 100%);
  position: relative;
}
.fussball-section::before {
  content: '⚽';
  position: absolute; font-size: 300px; opacity: 0.03;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}

/* ---- USP ---- */
.usp-section { padding: 80px 0; border-top: 1px solid var(--border); }
.usp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.usp-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; transition: var(--transition);
}
.usp-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.usp-icon { font-size: 40px; margin-bottom: 16px; }
.usp-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.usp-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ---- ABOUT ---- */
.about-section { padding: 80px 0; border-top: 1px solid var(--border); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-badge { margin-bottom: 12px; }
.about-text p { color: var(--gray); margin-bottom: 18px; font-size: 15px; line-height: 1.8; }
.about-text .btn-primary { margin-top: 8px; }
.about-visual { display: flex; align-items: center; justify-content: center; }
.about-badge-big {
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--accent-glow); border: 2px solid rgba(232,197,71,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 900; color: var(--accent);
}

/* ---- CONTACT ---- */
.contact-section { padding: 80px 0; border-top: 1px solid var(--border); }
.contact-form-wrap { max-width: 640px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--white); padding: 14px 18px; font-size: 15px; font-family: inherit;
  outline: none; transition: var(--transition); width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--gray); }
.contact-form textarea { resize: vertical; }

/* ---- FOOTER ---- */
.footer { background: var(--darker); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-top { display: flex; gap: 60px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .logo { margin-bottom: 12px; display: block; }
.footer-brand p { color: var(--gray); font-size: 14px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.footer-col a { color: var(--gray); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-bottom p { color: var(--gray); font-size: 13px; }

/* ---- CART ---- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1100;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; right: -420px; top: 0; bottom: 0; width: 420px;
  background: var(--dark); border-left: 1px solid var(--border);
  z-index: 1101; transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 20px; font-weight: 700; color: var(--white); }
.cart-header button { background: none; border: none; color: var(--gray); font-size: 20px; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { color: var(--gray); text-align: center; padding: 48px 0; font-size: 15px; }
.cart-item {
  display: flex; gap: 14px; align-items: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px;
}
.cart-item img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: var(--gray); }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--accent); }
.cart-item-remove { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 18px; transition: var(--transition); }
.cart-item-remove:hover { color: #e74c3c; }
.cart-footer { padding: 24px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total span:first-child { font-size: 16px; color: var(--gray); }
.cart-total span:last-child { font-size: 22px; font-weight: 800; color: var(--white); }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  z-index: 1200; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.product-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-48%) scale(0.96);
  background: var(--dark); border: 1px solid var(--border); border-radius: 24px;
  z-index: 1201; width: 90%; max-width: 820px; max-height: 90vh;
  overflow-y: auto; opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.product-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--card); border: 1px solid var(--border); border-radius: 50%;
  width: 40px; height: 40px; color: var(--white); font-size: 18px;
  cursor: pointer; transition: var(--transition); z-index: 1;
}
.modal-close:hover { background: var(--border-light); }
.modal-content { display: grid; grid-template-columns: 1fr 1fr; }
.modal-img-wrap { background: #1a1a1a; border-radius: 24px 0 0 24px; overflow: hidden; aspect-ratio: 1; }
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 40px 36px; }
.modal-badge { display: inline-block; margin-bottom: 12px; background: var(--accent-glow); border: 1px solid rgba(232,197,71,0.3); color: var(--accent); padding: 4px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.modal-info h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); margin-bottom: 12px; }
.modal-info p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.modal-price { font-size: 32px; font-weight: 900; color: var(--accent); margin-bottom: 24px; }
.size-selector { margin-bottom: 24px; }
.size-selector label { font-size: 13px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 12px; }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  width: 48px; height: 48px; border: 1px solid var(--border);
  background: var(--card); color: var(--white); border-radius: 10px;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.size-btn:hover, .size-btn.active { background: var(--accent); color: var(--black); border-color: var(--accent); }

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--white); color: var(--black);
  padding: 14px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  z-index: 2000; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4); pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
  .modal-content { grid-template-columns: 1fr; }
  .modal-img-wrap { border-radius: 24px 24px 0 0; }
  .cart-sidebar { width: 100%; right: -100%; }
  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 32px; }
}
@media (max-width: 480px) {
  .hero-title { letter-spacing: -1px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-name { font-size: 14px; }
  .product-price { font-size: 16px; }
}

/* ===========================
   CHECKOUT MODAL
   =========================== */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }

.checkout-modal {
  background: #1a1a2e; color: #f0ece4;
  border: 1px solid rgba(232,197,71,0.25);
  border-radius: 24px; width: 95%; max-width: 700px;
  max-height: 90vh; overflow-y: auto;
  padding: 40px; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: slideUp 0.35s ease;
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.checkout-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,0.08); border: none; color: #aaa;
  font-size: 18px; width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; transition: all 0.2s;
}
.checkout-close:hover { background: #e8c547; color: #000; }

.checkout-header { text-align: center; margin-bottom: 28px; }
.checkout-header h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: #e8c547; margin-bottom: 6px; }
.checkout-header p { color: #aaa; font-size: 14px; }

.checkout-body { display: grid; gap: 28px; }

/* Order summary */
.co-summary {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px;
}
.co-summary h3, .co-form-grid h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #e8c547; margin-bottom: 14px; }
.co-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.co-item:last-child { border-bottom: none; }
.co-item-name { flex: 1; font-weight: 600; font-size: 14px; }
.co-item-meta { font-size: 12px; color: #888; }
.co-item-price { font-weight: 700; color: #e8c547; font-size: 14px; }
.co-total-row { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(232,197,71,0.3); font-size: 16px; font-weight: 700; }
.co-total-price { color: #e8c547; font-size: 22px; }

/* Form */
#coForm h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #e8c547; margin-bottom: 14px; }
.co-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-field { display: flex; flex-direction: column; gap: 6px; }
.co-field-full { grid-column: 1 / -1; }
.co-field-small { grid-column: span 1; }
.co-field label { font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; }
.co-field input, .co-field select {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 12px 14px; color: #f0ece4; font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.co-field input:focus, .co-field select:focus { border-color: #e8c547; background: rgba(232,197,71,0.06); }
.co-field select option { background: #1a1a2e; }

/* PayPal + Card buttons container */
#paypal-button-container { margin-top: 20px; min-height: 50px; }
.co-pay-btn {
  width: 100%; padding: 16px; border: none; border-radius: 12px;
  background: #0070ba; color: #fff; font-size: 16px; font-weight: 700;
  cursor: pointer; margin-top: 20px; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.co-pay-btn:hover { background: #005ea6; }
.co-pay-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.co-secure-note { text-align: center; font-size: 12px; color: #888; margin-top: 10px; }

/* Card logos */
.co-card-logos { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; }
.co-card-logos img { height: 24px; border-radius: 4px; opacity: 0.8; }

/* Step 2 success */
.co-success { text-align: center; padding: 60px 20px; }
.co-success-icon { font-size: 64px; margin-bottom: 20px; }
.co-success h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: #e8c547; margin-bottom: 10px; }
.co-success p { color: #aaa; font-size: 15px; }
.co-spinner {
  width: 40px; height: 40px; border: 3px solid rgba(232,197,71,0.2);
  border-top-color: #e8c547; border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 24px auto 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 600px) {
  .checkout-modal { padding: 24px 16px; }
  .co-form-grid { grid-template-columns: 1fr; }
  .co-field-full, .co-field-small { grid-column: 1; }
}

/* ---- WHR SECTION ---- */
.whr-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0a1a 0%, #0d0d20 100%);
}
.whr-section .section-badge {
  background: linear-gradient(135deg, #7b2fff, #00c6ff);
  color: #fff;
}
.whr-section .section-title .highlight {
  background: linear-gradient(135deg, #7b2fff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-badge.whr {
  background: linear-gradient(135deg, #7b2fff, #00c6ff);
  color: #fff;
}
