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

:root {
  --blue: #2874A6;
  --blue-dark: #1E5A8E;
  --teal: #4ECDC4;
  --teal-dark: #45B7B8;
  --charcoal: #2D3436;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg: #FFFFFF;
  --bg-gray: #F5F5F5;
  --border: #E8E8E8;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --header-height: 80px;
  --disclaimer-height: 36px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

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

.hidden { display: none !important; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.3;
  min-height: var(--disclaimer-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001;
}

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

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--charcoal);
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

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

.logo-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--charcoal);
  line-height: 1.2;
  white-space: nowrap;
}

.logo-tagline {
  font-size: 9.5px;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-item > a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-item > a:hover {
  color: var(--teal-dark);
}

/* Dropdowns */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  padding: 8px 0;
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background var(--transition);
  letter-spacing: 0.3px;
}

.dropdown a:hover {
  background: var(--bg-gray);
  color: var(--teal-dark);
}

/* Search button */
.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.search-btn:hover { color: var(--teal-dark); }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Search overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.search-overlay.active {
  max-height: 500px;
  padding: 20px 0;
}

.search-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-container input {
  flex: 1;
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--font);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}

.search-container input:focus {
  border-color: var(--teal);
}

.search-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-light);
}

.search-results {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.search-result-item {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.search-result-item:hover { background: var(--bg-gray); }

.search-result-name {
  font-weight: 500;
  color: var(--charcoal);
}

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

.search-no-results {
  padding: 16px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: calc(var(--disclaimer-height) + var(--header-height));
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-inner {
  padding: 24px;
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--font);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-nav-toggle.open svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-submenu.open {
  max-height: 400px;
}

.mobile-submenu a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--bg-gray);
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 40, 60, 0.35) 0%,
    rgba(0, 30, 50, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-family: var(--font);
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--charcoal);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: #fff;
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 80px 0;
  background: var(--bg);
}

.intro-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 800px;
}

.intro-section p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 720px;
  line-height: 1.7;
}

/* ===== SPLIT SECTION (Peptides / Bioregulators) ===== */
.split-section {
  background: var(--bg);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.split-row-reverse .split-visual {
  order: -1;
}

.split-row-reverse .split-text {
  order: 1;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}

.split-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.split-text h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 16px;
}

.split-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.split-visual-teal {
  background: linear-gradient(135deg, #4ECDC4 0%, #45B7B8 100%);
}

.vial-grid {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.vial-placeholder {
  width: 90px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.vial-placeholder:nth-child(2) {
  transform: translateY(-12px);
}

/* ===== VALUES SECTION ===== */
.values-section {
  padding: 80px 0 100px;
  background: var(--bg);
}

.values-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  max-width: 800px;
  margin-bottom: 56px;
}

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

.value-card {}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(78, 205, 196, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: var(--bg-gray);
  text-align: center;
}

.contact-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.contact-section > .container > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.contact-section .btn {
  margin-bottom: 0;
}

/* ===== CATEGORY VIEW ===== */
.category-header {
  background: var(--bg-gray);
  padding: 48px 0 36px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--teal-dark);
}

.breadcrumb span {
  margin: 0 6px;
}

.category-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.category-header p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.6;
}

/* Subcategory pills */
.subcategory-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pill {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}

.pill:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.pill-active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.pill-active:hover {
  background: var(--teal-dark);
  color: #fff;
  border-color: var(--teal-dark);
}

/* Products section */
.products-section {
  padding: 40px 0 80px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.product-count {
  font-size: 14px;
  color: var(--text-muted);
}

.sort-select {
  padding: 8px 16px;
  font-size: 13px;
  font-family: var(--font);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  outline: none;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Product Card */
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: #ddd;
}

.product-card-image {
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-gray);
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-info {
  padding: 16px 20px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.product-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--teal-dark);
  background: rgba(78, 205, 196, 0.1);
  border-radius: 50px;
}

.product-card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}

.product-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 2px;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  z-index: 1;
  transition: color var(--transition);
}

.modal-close:hover { color: var(--charcoal); }

.modal-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}

.modal-image {
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.modal-image img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
}

.modal-info {
  padding: 40px 32px;
}

.modal-category-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.badge-peptides {
  background: rgba(78, 205, 196, 0.1);
  color: var(--teal-dark);
}

.badge-bioregulators {
  background: rgba(40, 116, 166, 0.1);
  color: var(--blue);
}

.badge-lab-supplies {
  background: rgba(102, 102, 102, 0.1);
  color: var(--text-light);
}

.modal-info h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}

.modal-subcategory {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-disclaimer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 24px;
}

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

.modal-disclaimer span {
  font-size: 13px;
  color: #744210;
  line-height: 1.5;
}

.modal-price {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-price-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-price-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--bg-gray);
  color: var(--charcoal);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--blue);
  color: #fff;
  padding: 28px 0 20px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: #fff;
}

.footer-attribution {
  max-width: 1240px;
  margin: 12px auto 0;
  padding: 0 24px;
  text-align: center;
}

.footer-attribution a {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-attribution a:hover {
  color: rgba(255,255,255,0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-text {
    padding: 40px;
  }

  .values-grid {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav-list { display: none; }
  .search-btn { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { height: 420px; }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .intro-section { padding: 48px 0; }

  .intro-section h2 {
    font-size: 26px;
  }

  .split-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-text {
    padding: 40px 24px;
    order: 1 !important;
  }

  .split-visual {
    order: 2 !important;
    min-height: 240px;
  }

  .values-heading {
    font-size: 24px;
  }

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

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-header h1 {
    font-size: 28px;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-image {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 24px;
  }

  .modal-info {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .logo-name {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .logo-tagline {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .products-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .subcategory-pills {
    gap: 6px;
  }

  .pill {
    padding: 6px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-card-info {
    padding: 12px 12px 16px;
  }

  .product-card-name {
    font-size: 13px;
  }

  .contact-section h2 {
    font-size: 24px;
  }
}
