/* ============================================
   PARA REGRAGA – Online Catalogue
   Theme: White & Modern (Clean Light)
   ============================================ */

:root {
  --bg:           #f4f6f9;
  --bg-white:     #ffffff;
  --bg-soft:      #eef1f6;

  --navy:         #1a2e4a;
  --navy-mid:     #2a4a72;
  --blue:         #2563eb;
  --blue-light:   #eff6ff;
  --blue-hover:   #1d4ed8;

  --green:        #10b981;
  --green-light:  #ecfdf5;
  --green-dark:   #059669;

  --gold:         #f59e0b;
  --gold-light:   #fef3c7;

  --red:          #ef4444;
  --red-light:    #fef2f2;

  --text-dark:    #111827;
  --text-mid:     #374151;
  --text-soft:    #6b7280;
  --text-muted:   #9ca3af;

  --border:       #e5e7eb;
  --border-focus: #2563eb;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 16px 48px rgba(37,99,235,0.12), 0 4px 16px rgba(0,0,0,0.08);

  --radius:       14px;
  --radius-sm:    8px;
  --radius-xs:    6px;
  --transition:   all 0.2s ease;

  --whatsapp:     #25D366;
  --whatsapp-dark:#1da851;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

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

/* ========== HEADER ========== */
.header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.62rem;
  color: var(--text-soft);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-search { flex: 1; min-width: 200px; }

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

#searchInput {
  width: 100%;
  padding: 10px 16px 10px 42px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
}

#searchInput::placeholder { color: var(--text-muted); }

#searchInput:focus {
  border-color: var(--blue);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 16px;
  border: 1.5px solid var(--green);
  border-radius: 50px;
  transition: var(--transition);
}

.contact-phone:hover {
  background: var(--green);
  color: white;
}

/* ========== HERO ========== */
.hero {
  background: var(--bg-white);
  padding: 56px 20px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Subtle dot grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #dbeafe 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}

/* Blue accent circle top-right */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  font-weight: 600;
  background: var(--blue-light);
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid #bfdbfe;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-accent { color: var(--blue); }

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 32px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-plus {
  font-size: 1rem;
  color: var(--blue);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-soft);
  font-weight: 500;
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 16px;
}

@media (max-width: 480px) {
  .hero-stats { padding: 14px 16px; gap: 0; }
  .hero-stat-divider { margin: 0 10px; }
  .stat-num { font-size: 1.2rem; }
}

/* ========== CATEGORIES TABS ========== */
.categories-section {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.category-tabs {
  display: flex;
  gap: 6px;
  padding: 14px 20px;
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.83rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cat-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

.cat-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

/* ========== FILTERS BAR ========== */
.filters-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.filters-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--text-soft);
}

.filter-group label { white-space: nowrap; font-weight: 500; }

#priceRange {
  -webkit-appearance: none;
  appearance: none;
  width: 130px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

#priceRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

#priceValue {
  color: var(--blue);
  font-weight: 700;
  min-width: 90px;
  font-size: 0.83rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--blue);
  cursor: pointer;
}

.results-count {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.results-count span {
  color: var(--blue);
  font-weight: 700;
}

/* ========== MAIN / PRODUCTS GRID ========== */
.main {
  padding: 32px 0 64px;
  min-height: 60vh;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ========== PRODUCT CARD ========== */
.product-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-image-wrap {
  position: relative;
  height: 210px;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.35s ease;
}

.product-card:hover .card-image-wrap img { transform: scale(1.05); }

.card-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #93c5fd;
}

.card-image-placeholder svg { opacity: 0.5; }
.card-image-placeholder span { font-size: 0.72rem; color: var(--text-muted); }

.card-badge-promo {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(239,68,68,0.35);
}

.card-badge-bestseller {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.45);
}

.card-badge-delivery {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: white;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(16,185,129,0.35);
}

.card-body {
  padding: 16px 18px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.card-category {
  font-size: 0.68rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.card-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 2px;
}

.card-features li {
  font-size: 0.76rem;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.card-features li::before {
  content: '✓';
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

.card-price-row {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.price-block { display: flex; flex-direction: column; }

.price-original {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-current {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.price-currency {
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text-soft);
  margin-left: 2px;
}

.price-no-promo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.price-on-request {
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  font-style: italic;
}

.card-footer {
  padding: 12px 18px 16px;
  display: flex;
  gap: 8px;
}

.btn-details {
  flex: 1;
  padding: 9px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.btn-details:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

.btn-whatsapp {
  flex: 2;
  padding: 9px 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--whatsapp);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
}

/* ========== NO RESULTS ========== */
.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.no-results p { font-size: 1rem; color: var(--text-soft); }

.no-results button {
  padding: 10px 24px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.no-results button:hover { background: var(--blue-hover); }

/* ========== MODAL ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17,24,39,0.5);
  backdrop-filter: blur(6px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-soft);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}

.modal-close:hover { background: var(--red-light); color: var(--red); border-color: var(--red); }

.modal-img-wrap {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 1px solid var(--border);
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.modal-body { padding: 24px 28px 28px; }

.modal-category {
  font-size: 0.68rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.modal-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.modal-price-current {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
}

.modal-price-original {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.modal-promo-badge {
  padding: 4px 12px;
  background: var(--red-light);
  color: var(--red);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid #fecaca;
}

.modal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 10px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green);
}

.modal-features li svg { flex-shrink: 0; margin-top: 2px; }

/* Modal header row (category + ref) */
.modal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.modal-ref {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-soft);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* Full specs sheet */
.modal-specs {
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.modal-specs-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-soft);
  background: var(--bg);
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
}

.modal-specs-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 7px 14px;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.modal-specs-list li:last-child,
.modal-specs-list li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.spec-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 5px;
}

@media (max-width: 500px) {
  .modal-specs-list { grid-template-columns: 1fr; }
  .modal-specs-list li:last-child { border-bottom: none; }
}

.modal-delivery-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 20px;
  background: var(--green-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.modal-actions { display: flex; gap: 12px; }

.modal-btn-whatsapp {
  flex: 1;
  padding: 14px;
  background: var(--whatsapp);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.modal-btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  padding: 44px 20px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: white;
  letter-spacing: 0.5px;
}

.footer-brand .logo-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand p {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-col p, .footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  transition: var(--transition);
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .header-search { order: 3; width: 100%; }
  .contact-phone { font-size: 0.78rem; padding: 7px 12px; }
  .hero { padding: 40px 16px 36px; }
  .filters-inner { gap: 12px; }
  #priceRange { width: 100px; }
  .results-count { margin-left: 0; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
  .modal-body { padding: 18px 20px 22px; }
  .modal-img-wrap { height: 200px; }
  .modal-actions { flex-direction: column; }
}

