/* ========================================
   RESET & VARIABLES
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #F97316;       /* CasaMax Orange */
  --teal-dark: #EA580C;  /* CasaMax Dark Orange */
  --teal-light: #FDBA74; /* CasaMax Light Orange */
  --dark: #0a0f18;
  --dark-card: #ffffff;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-light: #6b7280;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --green-cta: #10B981;
  --green-cta-hover: #059669;
  --gold-star: #F59E0B;
  --red-price: #EF4444;
  --shadow-soft: 0 4px 20px -2px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 30px -5px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.12);
  --shadow-glow: 0 8px 25px rgba(249, 115, 22, 0.35); /* Updated glow to orange */
  --radius: 20px;
  --radius-sm: 14px;
  --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
}
@media (min-width: 1024px) {
  .container { max-width: 1100px; }
}

/* ========================================
   ICON SYSTEM (SVG inline)
======================================== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1em; /* default to font size */
  height: 1em;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* ========================================
   HEADER
======================================== */
.main-header {
  padding: 16px 20px;
  background-color: var(--bg-white);
  border-bottom: 1px solid #eaeaea;
  text-align: center;
}

/* ========================================
   TOP BANNER
======================================== */
.top-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1d2e 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.top-banner::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.top-banner span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; }
.top-banner .icon svg { fill: #fff; }

/* ========================================
   HERO SECTION
======================================== */
.hero {
  padding: 28px 0 20px;
  background: var(--bg-white);
}

.hero-image-wrap {
  position: relative;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8ecf0 100%);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.hero-image-wrap .main-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  transition: var(--transition);
  cursor: zoom-in;
}

.badge-offer {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--red-price), #ff6b6b);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1;
}

.badge-offer .icon svg { fill: #fff; }

.thumb-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.thumb-row::-webkit-scrollbar { display: none; }

.thumb-row img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.6;
  flex-shrink: 0;
}

.thumb-row img:hover, .thumb-row img.active {
  border-color: var(--teal);
  opacity: 1;
}

/* Product Info */
.product-info h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.product-info h1 .brand { 
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.product-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
}

/* Trust Reviews Block */
.trust-reviews-block {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-stars {
  display: flex;
  gap: 2px;
}

.star-box {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-box svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-star);
}

.star-box.sm { width: 18px; height: 18px; }
.star-box.sm svg { width: 16px; height: 16px; }

.trust-score {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 700;
}

.trust-count {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

/* Price */
.price-block {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 18px;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 500;
}

.price-new {
  font-size: 32px;
  font-weight: 900;
  color: var(--red-price);
}

.price-save {
  font-size: 11px;
  font-weight: 700;
  background: rgba(229,57,53,0.1);
  color: var(--red-price);
  padding: 0 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  line-height: normal;
}

/* UVPs */
.uvp-list { margin-bottom: 18px; }

.uvp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.uvp-icon {
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.uvp-icon svg { width: 11px; height: 11px; fill: #fff; }

/* Quantity + CTA */
.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 38px; height: 40px;
  border: none;
  background: var(--bg-light);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-primary);
}

.qty-btn:hover { background: #ddd; }

.qty-input {
  width: 44px; height: 40px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  background: #fff;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  box-shadow: var(--shadow-glow);
}

.btn-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.45);
}

.btn-cta .icon { position: relative; top: -1px; }
.btn-cta .icon svg { fill: #fff; }

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-order:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,139,139,0.3);
}

.secure-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-light); margin-top: 8px;
}

.secure-note .icon svg { fill: var(--text-light); }

/* ========================================
   SHIPPING BAR
======================================== */
.shipping-bar {
  background: var(--bg-light);
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.shipping-bar h3 {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.shipping-bar .icon svg { fill: var(--teal); }

/* ========================================
   SECTIONS
======================================== */
.section { padding: 48px 0; }
.section-alt { background: var(--bg-light); }

.section-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.3;
}

.section-title .hl { color: var(--teal); }

/* Feature Blocks */
.feature-block {
  margin-bottom: 20px;
}

.feature-block .feat-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  transition: var(--transition);
}

.feature-block .feat-img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-block h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.35;
}

.feature-block h2 .hl { color: var(--teal); }

.feature-block p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.check-list li .icon {
  position: absolute;
  left: 0; top: 2px;
}

.check-list li .icon svg { fill: var(--teal); }

@media (min-width: 768px) {
  .feature-grid-desk {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .feature-grid-desk.reverse { direction: rtl; }
  .feature-grid-desk.reverse > * { direction: ltr; }

  .feature-block .feat-img { margin-bottom: 0; }
}

/* ========================================
   SPECS
======================================== */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.spec-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.spec-card:hover::before { transform: scaleX(1); }
.spec-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.spec-card .icon { margin-bottom: 8px; }
.spec-card .icon svg { fill: var(--teal); }

.spec-card h4 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.spec-card .val {
  font-size: 16px;
  font-weight: 800;
  color: var(--teal);
}

@media (min-width: 768px) {
  .specs-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ========================================
   INCLUDED ITEMS
======================================== */
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.incl-item {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
}

.incl-item:hover { background: #e8f5f5; transform: translateX(3px); }

.incl-item .icon svg { fill: var(--teal); }

.incl-item p {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .included-grid { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   URGENCY BANNER
======================================== */
.urgency {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 50px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.urgency::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,139,139,0.12) 0%, transparent 50%);
  animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
}

.urgency h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.urgency h2 .hl { color: var(--teal-light); }
.urgency h2 .icon { font-size: 26px; position: relative; top: -2px; }
.urgency h2 .icon svg { fill: #fff; }

.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 22px;
  position: relative; z-index: 1;
}

.cd-item {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 60px;
}

.cd-item .num {
  font-size: 24px;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.cd-item .lbl {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-top: 3px;
  display: block;
}

.urgency .btn-order {
  position: relative; z-index: 1;
  font-size: 15px;
  padding: 15px 40px;
  background: var(--teal);
}

.urgency .btn-order:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

/* ========================================
   REVIEWS — CAROUSEL
======================================== */

/* Summary bar */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid #eee;
}

.reviews-summary-score {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  flex-shrink: 0;
}

.reviews-summary-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews-stars-row {
  display: flex;
  gap: 3px;
  align-items: center;
}

.reviews-stars-row svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.reviews-summary-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* Outer container — aligns with .container */
.reviews-carousel-outer {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px; /* matches .container mobile padding */
}

@media (min-width: 768px) {
  .reviews-carousel-outer { max-width: 720px; padding: 0 60px; }
}

@media (min-width: 1024px) {
  .reviews-carousel-outer { max-width: 1100px; padding: 0 60px; }
}

/* Inner clip — overflow hidden for the sliding track */
.reviews-carousel-wrapper {
  overflow: hidden;
}

/* Track */
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 8px 0;
}

/* Review card */
.review-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  border: 1px solid #eee;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition);
  flex: 0 0 calc(100% - 40px);
  min-width: 0;
}

@media (min-width: 768px) {
  .review-card { flex: 0 0 calc(50% - 20px); }
}

@media (min-width: 1024px) {
  .review-card { flex: 0 0 calc(33.333% - 20px); }
}

.review-card::after {
  content: '\201C';
  position: absolute;
  top: 12px; right: 18px;
  font-size: 56px;
  font-weight: 900;
  color: #f5a623;
  opacity: 0.10;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #f5a623;
}

/* Card stars */
.review-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.review-card-stars svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Card title */
.review-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Card text */
.review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
  font-style: italic;
}

/* Meta (date) */
.review-meta {
  margin-bottom: 14px;
}

.review-date {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

/* Author row */
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name { font-weight: 700; font-size: 13px; line-height: 1.2; }
.review-verified {
  font-size: 11px;
  color: var(--green-cta);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.review-verified .icon { font-size: 12px; }
.review-verified .icon svg { fill: var(--green-cta); }

/* Arrows — Hidden on mobile, visible on tablet/desktop */
.reviews-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: var(--text-primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 0;
}

@media (min-width: 768px) {
  .reviews-arrow { display: flex; }
}

.reviews-arrow svg {
  width: 18px; height: 18px;
  stroke: currentColor;
}

.reviews-arrow:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}

.reviews-arrow--prev { left: 4px; }
.reviews-arrow--next { right: 4px; }

.reviews-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Dots — flows naturally below carousel-outer */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px 0 4px;
}

.reviews-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.reviews-dot.active {
  background: #f5a623;
  width: 24px;
  border-radius: 4px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--dark);
  color: #999;
  padding: 32px 0 20px;
}

.footer-inner {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-details h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.footer-details p {
  font-size: 12px;
  line-height: 2;
}

.footer-details a { color: var(--teal-light); transition: var(--transition); }
.footer-details a:hover { color: #fff; }

.footer-bottom {
  padding-top: 16px;
  text-align: center;
  font-size: 11px;
  color: #555;
}

@media (min-width: 768px) {
  .footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand p { margin-bottom: 0; }
}

/* ========================================
   SCROLL REVEAL
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ========================================
   FLOATING CTA (MOBILE)
======================================== */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.floating-cta.show { transform: translateY(0); }

.floating-cta .btn-cta { padding: 13px 20px; font-size: 13px; }

@media (min-width: 1024px) {
  .floating-cta { display: none !important; }
}

/* ========================================
   LIGHTBOX
======================================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 92%;
  max-height: 92%;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
