/* ============================================================
   FLORA77 - Main Stylesheet (style.css)
   Dark gaming theme with green accents
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --bg-primary: #0a0a1a;
  --bg-secondary: #111128;
  --bg-card: #1a1a2e;
  --bg-surface: #16213e;
  --bg-hover: #1e1e3a;
  --text-primary: #e8e8f0;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  --accent: #22c55e;
  --accent-light: #4ade80;
  --accent-dark: #16a34a;
  --accent-glow: rgba(34,197,94,0.3);
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #0ea5e9;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.12);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-light); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Topbar ── */
.topbar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
  padding: 6px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar a { color: var(--text-secondary); font-size: 12px; }
.topbar a:hover { color: var(--accent); }

/* ── Navbar ── */
.navbar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.navbar-logo {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.logo img { height: 36px; }
.logo-mobile { display: none; }

/* ── Search ── */
.search {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  position: relative;
}

.search input[type="text"] {
  width: 100%;
  padding: 10px 16px 10px 44px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search input[type="text"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.search input[type="text"]::placeholder {
  color: var(--text-muted);
}

.search-icon-btn {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
}

/* ── Nav Actions ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}

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

.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--danger);
  color: #fff;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--accent-glow);
}

/* ── Mega Categories ── */
.mega-cats-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.mega-cats {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mega-cats::-webkit-scrollbar { display: none; }

.mega-cats a {
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: all 0.2s;
  flex-shrink: 0;
}

.mega-cats a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.mega-cats-fade {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--bg-secondary));
  pointer-events: none;
  transition: opacity 0.3s;
}

.mm-wp { flex-shrink: 0; }

.mm2-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.mm2-trigger:hover {
  background: var(--bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}

.label-cat { font-size: 13px; }

/* ── Mega Menu Panel ── */
.mm2-panel {
  position: fixed;
  inset: 0;
  top: 120px;
  z-index: 999;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: none;
  overflow-y: auto;
}

.mm2-panel.open { display: block; }

.mm2-backdrop {
  position: fixed;
  inset: 0;
  top: 120px;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  display: none;
}

.mm2-backdrop.open { display: block; }

/* ── Product Single Layout ── */
.product-single {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 0;
}

.pd-breadcrumb a { color: var(--text-secondary); }
.pd-breadcrumb a:hover { color: var(--accent); }
.pd-breadcrumb .current { color: var(--text-primary); font-weight: 500; }

.pd-top-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* ── Media Card ── */
.pd-media-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 20px;
}

.pd-main-image {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Info Card ── */
.pd-info-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Price Block ── */
.pd-price-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.pd-price-current {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.pd-price-original {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pd-discount-badge {
  background: var(--danger);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.pd-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.sold-inline {
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 500;
}

.pd-meta-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.sku { font-size: 12px; color: var(--text-muted); }

/* ── Variants ── */
.pd-variants {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.v-group { display: flex; flex-direction: column; gap: 8px; }

.v-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.v-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-surface);
  position: relative;
}

.v-chip:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.v-chip.selected {
  border-color: var(--accent);
  background: rgba(34,197,94,0.1);
  color: var(--accent);
  font-weight: 600;
}

.v-chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.v-chip .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dot, #666);
  flex-shrink: 0;
}

.v-chip.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.v-chip .chip-badge {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  background: var(--danger);
  color: #fff;
  font-weight: 600;
}

/* ── Short Description ── */
.pd-short-desc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.pd-short-desc ul { padding-left: 20px; list-style: disc; }
.pd-short-desc li { margin-bottom: 4px; }
.pd-short-desc strong { color: var(--text-primary); }

/* ── Sidebar ── */
.pd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.pd-side-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.pd-buy-card {
  padding: 20px;
}

.qty-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.pd-buy-form input[type="number"] {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
}

.pd-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-add-cart, .btn-buy {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-add-cart {
  background: var(--bg-surface);
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-add-cart:hover {
  background: var(--accent);
  color: #fff;
}

.btn-buy {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
}

.btn-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-add-cart:disabled, .btn-buy:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-chat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-chat-icon svg { width: 22px; height: 22px; }

/* ── Full Description ── */
.pd-full-description {
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.pd-full-desc-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.pd-full-desc-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.pd-full-desc-body h3 { font-size: 18px; color: var(--text-primary); margin: 20px 0 12px; }
.pd-full-desc-body h4 { font-size: 15px; color: var(--accent); margin: 16px 0 8px; }
.pd-full-desc-body p { margin-bottom: 12px; }
.pd-full-desc-body ul { padding-left: 24px; list-style: disc; margin-bottom: 16px; }
.pd-full-desc-body li { margin-bottom: 6px; }
.pd-full-desc-body strong { color: var(--accent-light); }

/* ── Related Products ── */
.pd-related-full {
  margin-top: 32px;
}

.pd-related-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.pd-related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  position: relative;
}

.pd-related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.pd-related-card .thumb {
  aspect-ratio: 1/1;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.pd-related-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.pd-related-card .info {
  padding: 12px;
}

.pd-related-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.pd-related-card .price { margin-bottom: 4px; }

.pd-related-card .final {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.pd-related-card .sold {
  font-size: 11px;
  color: var(--text-muted);
}

.stock-dot {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.stock-dot.ready { background: var(--accent); box-shadow: 0 0 6px var(--accent-glow); }
.stock-dot.low { background: var(--warning); }
.stock-dot.out { background: var(--danger); }

/* ── Mobile FAB ── */
.pd-mobile-fab {
  display: none;
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 8px 12px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.mf-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mf-btn {
  height: 44px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.ft-top {
  padding: 40px 0;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

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

.ft-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.ft-links { display: flex; flex-direction: column; gap: 8px; }

.ft-links a {
  font-size: 13px;
  color: var(--text-secondary);
}

.ft-links a:hover { color: var(--accent); }

.ft-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.ft-wa-btn:hover { transform: translateY(-1px); color: #fff; box-shadow: 0 4px 12px rgba(37,211,102,0.3); }

.ft-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.ft-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.ft-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.ft-payments { margin-top: 16px; }

.pay-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ft-bottom {
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.ft-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.ft-copy {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
}

.ft-expand-btn {
  display: none;
  width: 100%;
  padding: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Scroll Top ── */
.pd-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 998;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.pd-scroll-top.visible { opacity: 1; visibility: visible; }
.pd-scroll-top:hover { transform: translateY(-2px); }

/* ── Sticky Header ── */
.pd-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  display: none;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
}

.pd-sticky-header.visible { display: flex; }

.pd-sticky-header-container {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.pd-sticky-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-surface);
  flex-shrink: 0;
}

.pd-sticky-thumb img { width: 100%; height: 100%; object-fit: contain; }

.pd-sticky-info { flex: 1; min-width: 0; }

.pd-sticky-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.pd-sticky-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.pd-sticky-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pd-sticky-btn {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.pd-sticky-btn-cart {
  background: var(--bg-surface);
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.pd-sticky-btn-buy {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
}

.pd-sticky-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pd-sticky-btn-chat {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  background: rgba(34,197,94,0.1);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pd-top-layout {
    grid-template-columns: 1fr 1fr;
  }
  .pd-sidebar {
    grid-column: 1 / -1;
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .pd-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .pd-top-layout {
    grid-template-columns: 1fr;
  }
  .pd-sidebar {
    grid-template-columns: 1fr;
  }
  .pd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pd-sticky-header { display: none !important; }
  .container { padding: 0 12px; }
  .product-single { padding: 12px; }
  .nav-actions .login-btn { display: none; }
  .logo { display: none; }
  .logo-mobile { display: block; }
}

@media (max-width: 640px) {
  .pd-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .pd-mobile-fab { display: block; }
  .pd-scroll-top { bottom: 130px; }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ft-collapsible-content { display: none; }
  .ft-top.expanded .ft-collapsible-content { display: block; }
  .ft-expand-btn { display: flex; }
  .ft-copy { flex-direction: column; gap: 4px; }
  .pd-full-description { padding: 16px; }
  .pd-side-card { padding: 14px; }
  .pd-info-card { gap: 12px; }
  .pd-short-desc { padding: 14px; }
  .pd-variants { padding: 14px; }
}
