/* ============================================
   IQOS E-Commerce - Full Store Styles
   ============================================ */

/* ─── DARK THEME (Default) ─── */
:root, [data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --bg-elevated: #141414;
  --accent: #00d4aa;
  --accent-glow: rgba(0, 212, 170, 0.15);
  --accent-text: #00d4aa;
  --gold: #c4a35a;
  --gold-glow: rgba(196, 163, 90, 0.15);
  --text: #ffffff;
  --text-dim: #a0a0a0;
  --text-muted: #666666;
  --border: #2a2a2a;
  --header-bg: rgba(10, 10, 10, 0.85);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.4);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1280px;
  --danger: #ff4d4d;
  --success: #00d4aa;
  --warning: #f0ad4e;
}

/* ─── LIGHT THEME ─── */
[data-theme="light"] {
  --bg: #f5f4f0;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f7f4;
  --bg-elevated: #eeede8;
  --accent: #00b894;
  --accent-glow: rgba(0, 184, 148, 0.12);
  --accent-text: #009d7e;
  --gold: #b08d57;
  --gold-glow: rgba(176, 141, 87, 0.1);
  --text: #1a1a1a;
  --text-dim: #5a5550;
  --text-muted: #9e9890;
  --border: #e5e0da;
  --header-bg: rgba(245, 244, 240, 0.92);
  --shadow-card: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
}

/* ─── GLOBAL RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

button { border: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
}

.full { width: 100%; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-top {
  padding: 6px 24px;
  border-bottom: 1px solid rgba(128,128,128,0.1);
  text-align: center;
}

.header-top-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-main {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
}

.header-logo { cursor: pointer; }
.header-logo svg { height: 28px; }

.header-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover {
  background: var(--bg-card);
  color: var(--accent);
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.cart-badge.visible { transform: scale(1); }

/* ─── THEME TOGGLE ─── */
.theme-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-dim);
  border-radius: 50%;
  transition: var(--transition);
  cursor: pointer;
}

.theme-toggle:hover {
  background: var(--bg-card);
  color: var(--gold);
  transform: rotate(20deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

/* ─── CART OVERLAY + MINI CART ─── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.open { opacity: 1; visibility: visible; }

.minicart {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}

.minicart.open { transform: translateX(0); }

.mc-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.mc-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.mc-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--text);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.3rem;
}

.mc-close:hover { background: #ff4444; color: white; }

.mc-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 24px;
}

.mc-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mc-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.mc-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.mc-item-info { flex: 1; min-width: 0; }

.mc-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mc-item-price {
  font-size: 0.82rem;
  color: var(--accent-text);
  font-weight: 600;
}

.mc-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-size: 0.85rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.qty-btn:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }

.mc-remove {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.mc-remove:hover { background: rgba(255,68,68,0.1); color: #ff4444; }

.mc-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.mc-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.mc-total-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-text);
}

/* ─── DELIVERY BANNER ─── */
.delivery-banner {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}

.delivery-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.delivery-item svg { flex-shrink: 0; color: var(--accent); }

.delivery-sep {
  color: var(--border);
  font-size: 0.8rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 60px 24px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  line-height: 1.1;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent), #00f5c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
}

.hero-banner-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ─── SECTION COMMON ─── */
.section { padding: 80px 24px; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

/* ─── CATEGORY TABS ─── */
.category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ─── CATEGORY CARDS (Homepage) ─── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 170, 0.4);
  box-shadow: var(--shadow-hover), 0 0 40px var(--accent-glow);
}

.category-card-gold:hover {
  border-color: rgba(196, 163, 90, 0.5);
  box-shadow: var(--shadow-hover), 0 0 40px var(--gold-glow);
}

.category-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--bg-elevated);
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-img img {
  transform: scale(1.08);
}

.category-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.category-card-content {
  padding: 24px;
}

.category-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.category-card-gold .category-card-title {
  color: var(--gold);
}

.category-card-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 16px;
}

.category-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-card-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.category-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}

.category-card-gold .category-card-arrow {
  background: var(--gold-glow);
  color: var(--gold);
}

.category-card:hover .category-card-arrow {
  background: var(--accent);
  color: #0a0a0a;
}

.category-card-gold:hover .category-card-arrow {
  background: var(--gold);
  color: #0a0a0a;
}

/* ─── CATEGORY PAGE (Breadcrumb + Subtitle) ─── */
.category-breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.breadcrumb-link {
  color: var(--accent-text);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  color: var(--text-muted);
}

.breadcrumb-current {
  color: var(--text-dim);
  font-weight: 600;
}

.category-subtitle {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-top: -16px;
  margin-bottom: 40px;
}

.categories-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── PRODUCT DETAIL PAGE ─── */
.product-detail-page {
  min-height: 80vh;
  padding-bottom: 80px;
}

.product-detail-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail-img-wrap {
  position: sticky;
  top: 100px;
}

.product-detail-img {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  padding-top: 8px;
}

.product-detail-badge-limited {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-detail-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-detail-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-text);
  margin-bottom: 28px;
}

.product-detail-desc {
  margin-bottom: 28px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.product-detail-desc h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-detail-desc p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.product-detail-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.product-feature svg {
  flex-shrink: 0;
}

.product-detail-add {
  font-size: 1rem;
  padding: 16px 32px;
}

/* ─── PRODUCT THUMBS GALLERY ─── */
.product-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.6;
}

.product-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}

.product-thumb:hover {
  opacity: 1;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── ADMIN FILE UPLOAD ─── */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.file-upload-area:hover {
  border-color: var(--accent);
}

.file-upload-area input[type="file"] {
  width: 100%;
}

.file-preview-grid {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.file-preview-item {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.file-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(220,38,38,0.9);
  color: white;
  border: none;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── CHECKOUT WHATSAPP BUTTON ─── */
.btn-wa-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  margin-top: 16px;
  background: #25D366;
  color: white;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-wa-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  color: white;
}

.cat-tab {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--bg-card);
  color: var(--text-dim);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.cat-tab:hover {
  border-color: var(--accent);
  color: var(--accent-text);
}

.cat-tab.active {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

/* ─── PRODUCTS GRID ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.products-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: var(--shadow-hover), 0 0 40px var(--accent-glow);
}

.limited-card:hover {
  border-color: rgba(196, 163, 90, 0.4);
  box-shadow: var(--shadow-hover), 0 0 40px var(--gold-glow);
}

.limited-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.product-img {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.product-info { padding: 20px; }

.product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-text);
  margin-bottom: 16px;
}

.btn-add-cart {
  width: 100%;
  padding: 13px;
  background: transparent;
  color: var(--accent-text);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.btn-add-cart:hover {
  background: var(--accent);
  color: #0a0a0a;
  transform: scale(1.03);
}

.limited-card .product-price { color: var(--gold); }
.limited-card .btn-add-cart { color: var(--gold); border-color: var(--gold); }
.limited-card .btn-add-cart:hover { background: var(--gold); color: #0a0a0a; }

/* ─── WHATSAPP STRIP ─── */
.wa-strip {
  padding: 20px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wa-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wa-strip-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dim);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-wa:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

/* ─── INFO SECTION ─── */
.info-section {
  padding: 80px 24px;
  background: var(--bg-elevated);
}

.info-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-block {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.info-block p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-dim);
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 60px 24px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-link:hover { color: var(--accent-text); padding-left: 6px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 3000;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.toast.visible { transform: translateY(0); opacity: 1; }

.toast-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  flex-shrink: 0;
}

/* ─── LOADING SKELETON ─── */
.loading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.loading-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.loading-img {
  width: 100%;
  height: 240px;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.loading-info { padding: 20px; }

.loading-line {
  height: 14px;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
  margin-bottom: 12px;
}

.loading-line:nth-child(2) { width: 60%; }
.loading-line:last-child { width: 40%; margin-bottom: 0; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  min-height: 80vh;
}

/* Steps indicator */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0.4;
}

.checkout-step.active { opacity: 1; }

.checkout-step.current {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.checkout-step.current .step-num {
  background: var(--accent);
  color: #0a0a0a;
}

.checkout-step.active .step-num {
  background: var(--accent);
  color: #0a0a0a;
}

.step-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
}

.checkout-step.current .step-label { color: var(--accent-text); }

/* Form */
.checkout-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.checkout-form h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea { resize: vertical; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Delivery Info Box */
.delivery-info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.delivery-info-box.istanbul {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.delivery-info-box.other {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.delivery-info-box.info {
  border-color: var(--border);
  background: var(--bg-elevated);
}

.delivery-info-icon {
  flex-shrink: 0;
  color: var(--accent);
}

.delivery-info-box.other .delivery-info-icon { color: var(--gold); }

.delivery-info-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.delivery-info-box p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Order Summary */
.order-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.order-summary h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dim);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}

.summary-item:last-of-type { border-bottom: none; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--accent);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-text);
}

/* Payment Box */
.payment-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.payment-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.iban-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.iban-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

.iban-number {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-text);
  letter-spacing: 0.05em;
  flex: 1;
}

.iban-copy {
  padding: 8px 18px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.iban-copy:hover { transform: scale(1.05); }

.iban-name {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 20px;
}

.payment-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-dim);
}

.payment-total {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-text);
}

/* Payment Instructions */
.payment-instructions {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.payment-instructions h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.payment-instructions ol {
  padding-left: 20px;
}

.payment-instructions li {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* Confirmation */
.checkout-form.confirmation {
  text-align: center;
  padding: 48px 32px;
}

.confirm-icon {
  margin-bottom: 24px;
  animation: confirmPop 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes confirmPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.confirm-order-id {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.confirm-order-id strong {
  color: var(--accent-text);
  font-size: 1.1rem;
}

.confirm-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.confirm-box svg { flex-shrink: 0; color: var(--gold); }

.confirm-box strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.confirm-box p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.error-text {
  color: var(--danger);
  font-size: 0.85rem;
  margin-bottom: 12px;
  font-weight: 500;
}

/* =============================================
   ADMIN PAGE
   ============================================= */
.admin-page {
  min-height: 80vh;
  padding: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Admin Login */
.admin-login-box {
  max-width: 400px;
  margin: 80px auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.admin-login-box h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}

/* Admin Header */
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.admin-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Admin Tabs */
.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.admin-tab {
  padding: 12px 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text-dim);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.admin-tab:hover {
  border-color: var(--accent);
  color: var(--text);
}

.admin-tab.active {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

/* Admin Section */
.admin-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.empty-text {
  color: var(--text-muted);
  text-align: center;
  padding: 40px;
  font-size: 0.95rem;
}

/* Orders */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.order-card:hover {
  border-color: rgba(0, 212, 170, 0.2);
}

.order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.order-id {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-text);
}

.order-status {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-beklemede { background: rgba(240, 173, 78, 0.15); color: #f0ad4e; }
.status-onaylandi { background: rgba(0, 212, 170, 0.15); color: var(--accent); }
.status-hazirlaniyor { background: rgba(52, 152, 219, 0.15); color: #3498db; }
.status-kargoda { background: rgba(155, 89, 182, 0.15); color: #9b59b6; }
.status-teslim_edildi { background: rgba(46, 204, 113, 0.15); color: #2ecc71; }
.status-iptal { background: rgba(255, 77, 77, 0.15); color: #ff4d4d; }

.order-details p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 6px;
  line-height: 1.5;
}

.order-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.order-items span {
  padding: 4px 12px;
  background: var(--bg-elevated);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.order-total {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-text) !important;
  font-size: 1rem !important;
  margin-top: 8px !important;
}

.order-note {
  font-style: italic;
  color: var(--text-muted) !important;
}

.order-actions {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.order-actions select {
  padding: 10px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.order-actions select:focus {
  border-color: var(--accent);
}

/* Products List (Admin) */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.product-row:hover { border-color: rgba(0, 212, 170, 0.2); }

.product-row-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}

.product-row-info {
  flex: 1;
  min-width: 0;
}

.product-row-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-row-cat {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-row-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-text);
  white-space: nowrap;
}

.product-row-actions {
  display: flex;
  gap: 8px;
}

.btn-toggle {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-toggle.active {
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-delete {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 77, 77, 0.1);
  color: var(--danger);
  border: 1px solid rgba(255, 77, 77, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.btn-delete:hover {
  background: var(--danger);
  color: white;
}

/* Settings */
.settings-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.settings-form .form-group input {
  background: var(--bg);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .products-grid, .loading-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .product-detail-container { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-img-wrap { position: static; }
  .product-detail-img { height: 360px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-banner { height: 260px; }
  .products-grid, .loading-grid { grid-template-columns: 1fr; gap: 16px; }
  .categories-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-detail-img { height: 280px; }
  .product-detail-container { padding: 16px; gap: 24px; }
  .product-img { height: 200px; }
  .delivery-banner-inner { flex-direction: column; gap: 6px; }
  .delivery-sep { display: none; }
  .category-tabs { gap: 6px; }
  .cat-tab { padding: 8px 16px; font-size: 0.78rem; }
  .checkout-page { padding: 24px 16px 60px; }
  .checkout-form { padding: 24px 20px; }
  .checkout-steps { gap: 4px; }
  .checkout-step { padding: 8px 14px; }
  .step-label { display: none; }
  .iban-display { flex-direction: column; gap: 8px; }
  .iban-number { font-size: 0.85rem; }
  .info-grid { grid-template-columns: 1fr; gap: 16px; }
  .info-block { padding: 24px; }
  .wa-strip-inner { flex-direction: column; gap: 12px; }
  .section { padding: 50px 16px; }
  .toast { left: 16px; right: 16px; bottom: 16px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .product-row { flex-wrap: wrap; }
  .product-row-actions { width: 100%; justify-content: flex-end; }
  .admin-header h2 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .header-main { padding: 0 16px; height: 56px; }
  .hero { padding: 40px 16px 60px; }
  .hero-banner { height: 200px; border-radius: var(--radius); }
  .admin-page { padding: 16px; }
}


/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-icon {
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
}

/* =============================================
   DEKONT UPLOAD
   ============================================= */
.dekont-upload-area {
  margin-top: 32px;
  text-align: left;
}

.dekont-upload-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 20px;
  text-align: center;
}

.dekont-upload-box:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.dekont-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-weight: 600;
}

.dekont-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

.dekont-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.dekont-change {
  color: var(--accent);
  font-size: 0.8rem;
  cursor: pointer;
}

/* Verifying Spinner */
.verifying-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.spinner {
  width: 56px;
  height: 56px;
  border: 4px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Failed page */
.confirm-icon.failed {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.failed-info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  margin: 24px 0 32px;
}

.failed-info-box svg { flex-shrink: 0; }
.failed-info-box strong { display: block; margin-bottom: 8px; font-size: 0.95rem; }
.failed-info-box p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 4px; }

/* IBAN details */
.iban-details {
  margin: 16px 0 20px;
}

.iban-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.iban-detail-label {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.iban-detail-value {
  font-weight: 600;
  color: var(--text);
}

/* Order Dekont link */
.order-dekont {
  margin-top: 12px;
}

.btn-dekont {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent-text);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.btn-dekont:hover {
  background: var(--accent);
  color: #0a0a0a;
}

/* Admin Add Product Form */
.add-product-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .faq-section { padding: 50px 16px; }
  .dekont-upload-box { padding: 24px 16px; }
}
