/* NexusGoods — Physical Products Store Design System */

:root {
  --bg: #0a0a0a;
  --bg-alt: #0f0f0f;
  --surface: #141414;
  --surface2: #1e1e1e;
  --surface3: #282828;
  --border: #2a2a2a;
  --border-hover: #3a3a3a;
  --text: #f5f5f5;
  --text-muted: #888;
  --accent: #ff6b35;
  --accent-hover: #e55a2b;
  --accent2: #f7c948;
  --success: #2ecc71;
  --danger: #e74c3c;
  --warning: #f39c12;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.3);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cart {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
.nav-cart:hover { background: var(--accent-hover); }
.cart-count { background: rgba(0,0,0,0.3); border-radius: 10px; padding: 1px 6px; font-size: 12px; }

/* Hero */
.hero {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-content { max-width: 640px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(46,204,113,0.15);
  color: var(--success);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-highlight { color: var(--accent); }
.hero p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow); }

/* Sections */
.section { padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--bg-alt); max-width: 100%; }
.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,107,53,0.15);
}
.product-card-image {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.06);
}
.product-card-image .card-img-fallback {
  font-size: 56px;
  opacity: 0.6;
}
.product-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-category {
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.product-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--warning);
  margin-bottom: 8px;
}
.product-card-stars span { color: var(--text-muted); }
.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.product-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--surface3);
  color: var(--text-muted);
  white-space: nowrap;
}
.product-card-footer {
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.product-card-shipping {
  font-size: 11px;
  color: var(--text-muted);
}
.product-card .btn-primary {
  font-size: 12px;
  padding: 6px 14px;
  white-space: nowrap;
}
.product-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  text-align: center;
  padding: 32px 20px;
}
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* Cart Sidebar */
.cart-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
  display: none;
}
.cart-overlay.show { display: block; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 90vw;
  background: var(--surface);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
.cart-sidebar.show { transform: translateX(0); }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-display); font-size: 18px; }
#cart-close { background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.cart-item-remove { color: var(--danger); cursor: pointer; background: none; border: none; font-size: 16px; }
.cart-footer {
  padding: 20px; border-top: 1px solid var(--border);
}
.cart-total { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.cart-shipping-estimate { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

/* Toast */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--success); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
  z-index: 300; opacity: 0; transform: translateY(10px);
  transition: all 0.3s;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-family: var(--font-display); font-size: 14px; margin-bottom: 12px; }
.footer-grid a { display: block; color: var(--text-muted); text-decoration: none; font-size: 13px; margin: 6px 0; }
.footer-grid a:hover { color: var(--text); }
.footer-grid p { color: var(--text-muted); font-size: 13px; }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center; color: var(--text-muted); font-size: 13px;
}

/* Checkout Page */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-form { background: var(--surface); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); }
.checkout-form h2 { font-family: var(--font-display); font-size: 20px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-muted); }
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 15px; font-family: var(--font);
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.order-summary { background: var(--surface); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); position: sticky; top: 80px; }
.order-summary h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--text-muted); }
.summary-total { display: flex; justify-content: space-between; padding: 16px 0 0; border-top: 2px solid var(--border); font-size: 20px; font-weight: 700; margin-top: 8px; }
#stripe-payment-element { margin: 20px 0; }
.btn-checkout {
  width: 100%; padding: 16px; background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 18px; font-weight: 700;
  cursor: pointer; margin-top: 16px; transition: all 0.2s;
}
.btn-checkout:hover { background: var(--accent-hover); }
.btn-checkout:disabled { opacity: 0.6; cursor: not-allowed; }
.checkout-error { color: var(--danger); font-size: 13px; margin-top: 8px; display: none; }

/* Thank You Page */
.thank-you { text-align: center; padding: 80px 24px; max-width: 600px; margin: 0 auto; }
.thank-you-icon { font-size: 72px; margin-bottom: 24px; }
.thank-you h1 { font-family: var(--font-display); font-size: 36px; margin-bottom: 12px; }
.thank-you p { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; }
.order-details { background: var(--surface); border-radius: var(--radius); padding: 24px; text-align: left; margin-bottom: 32px; border: 1px solid var(--border); }
.order-details dt { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 12px; }
.order-details dd { font-size: 15px; font-weight: 500; }

/* ── Trust Bar ── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  background: var(--bg-alt);
}
.trust-item-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-icon { font-size: 18px; }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--border-hover); }
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 13px; }
.testimonial-role { font-size: 11px; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--surface2); }
.faq-q span { transition: transform 0.3s; }
.faq-item.open .faq-q span { transform: rotate(180deg); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.faq-item.open .faq-a { padding: 0 20px 16px; max-height: 300px; }

/* ── Newsletter ── */
.newsletter {
  background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(247,201,72,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter h3 { margin-bottom: 8px; font-family: var(--font-display); }
.newsletter p { color: var(--text-muted); margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 12px; max-width: 420px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
}
.newsletter-input:focus { outline: none; border-color: var(--accent); }

.badge-hot { background: rgba(231,76,60,0.2); color: var(--danger); }
.badge-new { background: rgba(46,204,113,0.2); color: var(--success); }
.badge-trend { background: rgba(247,201,72,0.2); color: var(--accent2); }

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Entry Animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease-out both; }

/* ── Contact Form ── */
.contact-form-section { max-width: 560px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .contact-form-row { grid-template-columns: 1fr; } }
.contact-form label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; }
.contact-status { font-size: 13px; display: none; margin-top: 8px; }

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ── Product Detail Enhancements ── */
.product-detail { max-width: 1000px; margin: 0 auto; padding: 60px 24px; }
.breadcrumb { margin-bottom: 32px; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .product-detail-grid { grid-template-columns: 1fr; } }
.product-detail-image {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  position: sticky;
  top: 80px;
  overflow: hidden;
  font-size: 120px;
}
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-detail-image .detail-img-fallback {
  font-size: 100px;
  opacity: 0.5;
}
.product-detail-info h1 { font-size: 2rem; margin-bottom: 4px; }
.product-detail-info .product-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.product-detail-info .product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--warning);
  margin-bottom: 16px;
}
.product-rating span { color: var(--text-muted); font-size: 13px; }
.product-price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.product-price-block .product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.product-shipping-badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(46,204,113,0.15);
  color: var(--success);
}
.product-description {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-meta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.product-meta .meta-item { font-size: 13px; color: var(--text-muted); }
.product-meta .meta-item strong { color: var(--text); }
.product-actions { display: flex; gap: 12px; margin-bottom: 16px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-secondary {
  display: inline-block;
  background: var(--surface3);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--border-hover); }
.product-trust { display: flex; gap: 20px; }
.product-trust .trust-item { font-size: 13px; color: var(--text-muted); }
.product-details-section {
  max-width: 800px;
  margin: 0 auto 48px;
}
.product-details-section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 16px;
}
.details-content { color: var(--text-muted); line-height: 1.7; }
.details-content h3 { color: var(--text); font-size: 16px; margin: 20px 0 8px; }
.details-content ul { padding-left: 20px; margin-bottom: 16px; }
.details-content ul li { padding: 4px 0; }
.details-content a { color: var(--accent); }
.related-products { border-top: 1px solid var(--border); padding-top: 32px; }
.related-products h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}

/* ── Feature List (Checkmark) ── */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.feature-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--success);
  font-weight: 700;
  font-size: 14px;
}

/* ── Glow Shadow ── */
.shadow-glow {
  box-shadow: 0 0 24px rgba(255,107,53,0.2);
}

/* ── Review Section ── */
.reviews-section { max-width: 800px; margin: 0 auto 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.reviews-section h2 { font-family: var(--font-display); font-size: 22px; margin-bottom: 20px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 12px;
}
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 13px; }
.review-date { font-size: 11px; color: var(--text-muted); margin-left: auto; }
.review-stars { color: var(--warning); font-size: 12px; margin-bottom: 6px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.review-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.review-form-box h3 { font-size: 16px; margin-bottom: 16px; }
.review-form { display: flex; flex-direction: column; gap: 12px; }
.review-form input,
.review-form textarea {
  width: 100%; padding: 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 14px; font-family: var(--font);
}
.review-form input:focus,
.review-form textarea:focus { outline: none; border-color: var(--accent); }
.review-form textarea { resize: vertical; min-height: 80px; }
.star-select { display: flex; gap: 6px; font-size: 28px; cursor: pointer; }
.star-select .star { color: var(--surface3); transition: color 0.15s; }
.star-select .star.active,
.star-select .star:hover { color: var(--warning); }
.review-status { font-size: 13px; display: none; }
