/* Kosmos Toiletries - Premium Soap Base Marketing Site */
:root {
  --primary: #0d7377;
  --primary-dark: #095456;
  --primary-light: #14919b;
  --accent: #c8a951;
  --accent-light: #e8d48b;
  --bg: #f8fafb;
  --bg-alt: #ffffff;
  --text: #1a2b2c;
  --text-muted: #5a6a6b;
  --border: #e2e8ea;
  --success: #2d9f6f;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13, 115, 119, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 115, 119, 0.12);
  --font: 'Inter', 'Noto Sans SC', 'Noto Sans Arabic', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
  text-align: right;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }

p { color: var(--text-muted); margin-bottom: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--primary); }

.lang-switcher {
  position: relative;
}

.lang-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  z-index: 100;
  overflow: hidden;
}

body.rtl .lang-dropdown { right: auto; left: 0; }

.lang-dropdown.show { display: block; }

.lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.65rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
}
.lang-dropdown button:hover { background: var(--bg); color: var(--primary); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* Hero */
.hero {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(160deg, #e8f5f5 0%, #f8fafb 50%, #fff8e8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle, rgba(13,115,119,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(13,115,119,0.1);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,115,119,0.3);
}

.btn-outline {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-accent {
  background: var(--accent);
  color: #1a2b2c;
}
.btn-accent:hover {
  background: #b8943f;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.hero-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: 12px;
}

.hero-product-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2f2, #c8e8e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: white;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header p {
  font-size: 1.05rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.25s;
}
.feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(13,115,119,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

/* Products — roomier grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem 2rem;
  align-items: stretch;
}

@media (min-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem 2.25rem;
  }
}

@media (max-width: 700px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.35rem;
  gap: 0.75rem;
  min-height: 100%;
  box-shadow: 0 2px 8px rgba(10, 61, 63, 0.04);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(13, 115, 119, 0.25);
}

.product-card .product-icon {
  font-size: 2.75rem;
  line-height: 1;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8f4f4, #f0f7f7);
  border-radius: 14px;
  margin-bottom: 0.15rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  padding-right: 0.25rem;
}

.product-card .product-short {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted, #5a6a6b);
  flex: 1;
}

.product-card .product-meta {
  margin: 0.15rem 0 0.25rem;
}

.product-card .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.product-card .product-actions .btn {
  flex: 1 1 auto;
  min-width: 7rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
}

.product-card .product-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border, #e2e8e8);
}

.product-card .product-docs .btn {
  flex: 0 0 auto;
}

.product-card .product-badge {
  position: static;
  align-self: flex-start;
  margin-bottom: 0.15rem;
}

.product-visual {
  height: 180px;
  background: linear-gradient(145deg, #e8f4f4, #f0f7f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

body.rtl .product-badge { left: auto; right: 12px; }

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  margin-bottom: 0.5rem;
}

.product-body p {
  font-size: 0.95rem;
  flex: 1;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.spec-tag {
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

/* Product Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.show {
  display: flex;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.modal-body {
  padding: 1.5rem;
}

.modal-body h4 {
  margin: 1.25rem 0 0.5rem;
  color: var(--primary);
}

.modal-body ul {
  padding-left: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

body.rtl .modal-body ul {
  padding-left: 0;
  padding-right: 1.25rem;
}

.prop-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 0.75rem 0;
}
.prop-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
}
.prop-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 45%;
}

/* About / Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -12px;
  left: 1.25rem;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
body.rtl .step-card::before {
  left: auto;
  right: 1.25rem;
}

/* Order Section */
.order-section {
  background: linear-gradient(160deg, #0d7377 0%, #095456 100%);
  color: white;
  padding: 4.5rem 0;
}

.order-section h2,
.order-section p {
  color: white;
}

.order-section .section-header p {
  opacity: 0.9;
}

.order-form {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--bg);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,115,119,0.15);
}

.product-select-list {
  display: grid;
  gap: 0.75rem;
}

.product-select-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.product-select-item > span:not(.qty-unit) {
  flex: 1;
  min-width: 8rem;
}

.product-select-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.product-select-item .qty-input {
  width: 5.5rem;
  min-width: 5.5rem;
  padding: 0.4rem 0.5rem;
  margin-left: 0;
}
.product-select-item .qty-unit {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3d5a5c;
  white-space: nowrap;
  margin-right: 0.25rem;
}
body.rtl .product-select-item .qty-unit {
  margin-right: 0;
  margin-left: 0.25rem;
}

body.rtl .product-select-item .qty-input {
  margin-left: 0;
  margin-right: 0.5rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-actions .btn {
  flex: 1;
  min-width: 180px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}

.contact-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-card a {
  font-weight: 600;
}

/* Footer */
.footer {
  background: #0a2e30;
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer p, .footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer a:hover { color: white; }

.footer ul {
  list-style: none;
}
.footer li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav.show {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.hidden { display: none !important; }


/* Static multi-language links (SEO pages) */
.lang-switcher-static { display:flex; flex-wrap:wrap; gap:0.35rem; align-items:center; }
.lang-switcher-static a {
  font-size:0.8rem; padding:0.3rem 0.55rem; border-radius:6px;
  color: var(--text-muted, #5a6a6b); text-decoration:none; border:1px solid transparent;
}
.lang-switcher-static a:hover, .lang-switcher-static a.active {
  color: var(--primary, #0d7377); border-color: var(--primary, #0d7377); background:#e8f5f5;
}
.blog-card { background:#fff; border-radius:12px; padding:1.25rem 1.5rem; border:1px solid #e2e8e8; margin-bottom:1rem; }
.blog-card h3 { margin:0 0 0.5rem; }
.blog-card a { color: var(--primary, #0d7377); font-weight:600; }
.article-body { max-width:760px; margin:0 auto; line-height:1.75; }
.article-body h2 { margin-top:1.75rem; color:#095456; }
.article-body p { margin:0.75rem 0; color:#334; }
.breadcrumb { font-size:0.9rem; color:#5a6a6b; margin-bottom:1rem; }
.breadcrumb a { color:#0d7377; }

.product-select-list { display:grid; gap:0.75rem; max-height:320px; overflow-y:auto; }
/* product-check legacy — use .product-select-item */
.form-group label { display:block; font-weight:600; margin-bottom:0.35rem; font-size:0.9rem; }
.form-group input, .form-group textarea { width:100%; padding:0.55rem 0.75rem; border:1px solid #c5d6d7; border-radius:8px; box-sizing:border-box; }

/* Qty unit: keep ×1000 kg visible while typing */
.product-select-item .qty-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  flex-shrink: 0;
}
body.rtl .product-select-item .qty-wrap,
html[dir="rtl"] .product-select-item .qty-wrap {
  margin-left: 0;
  margin-right: auto;
}
.product-select-item .qty-input {
  width: 5.5rem !important;
  min-width: 5.5rem;
  max-width: 7rem;
  padding: 0.4rem 0.5rem;
  box-sizing: border-box;
}
.product-select-item .qty-unit {
  font-size: 0.8rem;
  color: #5a6a6b;
  white-space: nowrap;
  font-weight: 600;
}


/* Product visual placeholder (icon panel, square feel) */
.product-card {
  padding: 0 !important;
  gap: 0 !important;
}
.product-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 280px;
  background: linear-gradient(145deg, #e8f4f4 0%, #f0f7f7 50%, #e0efef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-visual-icon {
  font-size: 4.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(13,115,119,0.12));
}
.product-card .product-badge {
  position: absolute !important;
  top: 12px;
  left: 12px;
  z-index: 2;
  margin: 0 !important;
}
.product-body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.product-body h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.35;
}
.product-body .product-short {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted, #5a6a6b);
  flex: 1;
}
.product-body .product-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border, #e2e8e8);
}
@media (min-width: 1100px) {
  .product-visual { max-height: 260px; }
}


/* Floating contact bar — every page */
.contact-float {
  position: fixed;
  z-index: 9990;
  bottom: 1.1rem;
  right: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
}
html[dir="rtl"] .contact-float {
  right: auto;
  left: 1.1rem;
  align-items: flex-start;
}
.contact-float a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(10, 61, 63, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: #fff;
  line-height: 1.2;
}
.contact-float a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 61, 63, 0.28);
  color: #fff;
}
.contact-float .cf-wa {
  background: #25d366;
}
.contact-float .cf-wa:hover {
  background: #1ebe57;
}
.contact-float .cf-mail {
  background: #0d7377;
}
.contact-float .cf-mail:hover {
  background: #095456;
}
.contact-float .cf-icon {
  font-size: 1.15rem;
}
@media (max-width: 600px) {
  .contact-float {
    bottom: 0.85rem;
    right: 0.75rem;
  }
  html[dir="rtl"] .contact-float {
    left: 0.75rem;
  }
  .contact-float a {
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }
  /* leave room above chatbot if present */
  body { padding-bottom: 0; }
}


.modal-body {
  padding: 1.25rem 1.5rem 1.75rem;
}
.modal-body h4 {
  margin: 1rem 0 0.4rem;
  font-size: 0.95rem;
  color: var(--primary, #0d7377);
}
.modal-product-icon {
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 0.35rem 0 0.75rem;
}
.spec-table td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid var(--border, #e2e8e8);
  vertical-align: top;
}
.spec-table td:first-child {
  font-weight: 600;
  width: 42%;
  color: #334;
}
.modal-overlay.show {
  display: flex;
}
body.modal-open {
  overflow: hidden;
}
