* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ddeaf5;
  color: #1a2a38;
}

.site-header {
  background: #ffffff;
  padding: 24px 36px;
  border-bottom: 1px solid #c8dff0;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header h1 {
  margin: 0;
  color: #2c5f82;
}

.site-header p {
  margin: 8px 0 0;
  color: #3d5a72;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}

.section-title {
  margin-top: 0;
  font-size: 28px;
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 44px;
}

.category-card {
  background: #ffffff;
  border: 1px solid #c8dff0;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(44, 95, 130, 0.08);
}

.category-card h3 {
  margin: 0 0 8px;
  color: #1a2a38;
}

.category-card p {
  margin: 0;
  color: #3d5a72;
  font-size: 14px;
  line-height: 1.5;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #c8dff0;
  border-top: 5px solid #a0c4de;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 4px 18px rgba(44, 95, 130, 0.08);
}

.product-card h3 {
  margin: 0 0 8px;
  color: #1a2a38;
}

.category-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #e05c3a;
  font-weight: bold;
  margin-bottom: 10px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.chip {
  background: #eaf3fa;
  color: #3d5a72;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
}

.badge {
  background: #e05c3a;
  color: #ffffff;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: bold;
  white-space: nowrap;
}

.price {
  font-size: 28px;
  font-weight: bold;
  color: #2c5f82;
  margin-top: 16px;
}

.save {
  color: #2d9e4f;
  font-weight: bold;
  font-size: 14px;
  margin-top: 2px;
}

.button,
.cart-button,
.checkout-button {
  border: 0;
  cursor: pointer;
  background: #2c5f82;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.button {
  margin-top: 16px;
  display: inline-block;
}

.cart-button span {
  background: #e05c3a;
  color: white;
  border-radius: 999px;
  padding: 2px 7px;
  margin-left: 6px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -390px;
  width: 360px;
  max-width: 100%;
  height: 100vh;
  background: #ffffff;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.18);
  transition: right 0.25s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-header,
.cart-footer {
  padding: 18px;
  border-bottom: 1px solid #c8dff0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  margin: 0;
}

.cart-header button {
  background: transparent;
  border: 0;
  font-size: 28px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 18px;
}

.cart-item {
  border-bottom: 1px solid #eaf3fa;
  padding: 12px 0;
}

.cart-item-title {
  font-weight: bold;
}

.cart-item-price {
  color: #2c5f82;
  font-weight: bold;
  margin-top: 4px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.checkout-button {
  width: 100%;
}

@media (max-width: 700px) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.checkout-form-card,
.order-summary-card {
  background: #ffffff;
  border: 1px solid #c8dff0;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(44, 95, 130, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #3d5a72;
  font-weight: bold;
  font-size: 14px;
}

.form-grid input,
.form-grid select {
  border: 1px solid #c8dff0;
  border-radius: 8px;
  padding: 10px;
  font-size: 15px;
}

.consent-box {
  margin: 22px 0;
  background: #eaf3fa;
  border: 1px solid #c8dff0;
  border-radius: 10px;
  padding: 16px;
  color: #3d5a72;
  line-height: 1.5;
}

.summary-item,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eaf3fa;
}

.summary-total {
  border-bottom: 0;
  border-top: 2px solid #1a2a38;
  margin-top: 12px;
  font-size: 18px;
}

.summary-note {
  background: #ddeaf5;
  border-radius: 8px;
  padding: 12px;
  color: #3d5a72;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
.admin-table-wrap {
  background: #ffffff;
  border: 1px solid #c8dff0;
  border-radius: 14px;
  overflow-x: auto;
  box-shadow: 0 4px 18px rgba(44, 95, 130, 0.08);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #eaf3fa;
  text-align: left;
  font-size: 14px;
}

.admin-table th {
  background: #eaf3fa;
  color: #1a2a38;
  font-weight: bold;
}

.admin-table td {
  color: #3d5a72;
}

.admin-table a {
  color: #2c5f82;
  font-weight: bold;
  text-decoration: none;
}

.success-message {
  background: #eaf7ef;
  color: #2d9e4f;
  border: 1px solid #bfe8cb;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 18px;
}
.status-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  text-transform: capitalize;
  white-space: nowrap;
}

.status-pending {
  background: #fff4e5;
  color: #a05a00;
  border: 1px solid #ffd59b;
}

.status-pending_payment {
  background: #eef3ff;
  color: #2c5f82;
  border: 1px solid #c8d8ff;
}

.status-paid {
  background: #eaf7ef;
  color: #2d9e4f;
  border: 1px solid #bfe8cb;
}

.status-lab_order_sent {
  background: #eaf3fa;
  color: #2c5f82;
  border: 1px solid #c8dff0;
}

.status-completed {
  background: #eef8f2;
  color: #1f7a3a;
  border: 1px solid #bfe8cb;
}

.status-canceled {
  background: #fef0ed;
  color: #e05c3a;
  border: 1px solid #f5c4b8;
}

/* ORIGINAL RIOS CLICK LABS HOMEPAGE STYLE */

:root {
  --blue-light: #c8dff0;
  --blue-mid: #a0c4de;
  --blue-bg: #ddeaf5;
  --blue-deep: #4a7fa5;
  --blue-dark: #2c5f82;
  --accent: #e05c3a;
  --accent-soft: #f2a58e;
  --text-dark: #1a2a38;
  --text-mid: #3d5a72;
  --text-light: #6b8a9f;
  --white: #ffffff;
  --card-bg: rgba(255,255,255,0.9);
  --shadow: 0 4px 24px rgba(44,95,130,0.10);
  --shadow-hover: 0 8px 36px rgba(44,95,130,0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--blue-bg);
  color: var(--text-dark);
}

/* HERO */
.hero {
  min-height: 520px;
  background: linear-gradient(125deg, #ddeaf5 0%, #c4d9ee 55%, #b0ccdf 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2.5rem;
}

.hero-decor {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.13;
  font-size: 18rem;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.93;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}

.hero-title span {
  color: var(--blue-dark);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-add {
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--text-dark);
  color: white;
  border: none;
  border-radius: 7px;
  padding: 0.85rem 2rem;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
  border-radius: 7px;
  padding: 0.85rem 2rem;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--blue-dark);
  color: white;
}

.hero-trust {
  margin-top: 2.2rem;
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* SECTIONS */
main section {
  padding: 5rem 2.5rem;
}

.section-label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.section-divider {
  width: 44px;
  height: 3px;
  background: var(--accent);
  margin: 0.8rem auto 2.5rem;
  border-radius: 2px;
}

.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* CATEGORIES */
#categories {
  background: white;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.cat-card {
  background: var(--blue-bg);
  border-radius: 14px;
  padding: 1.6rem 1rem 1.4rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.cat-card:hover {
  border-color: var(--blue-deep);
  background: white;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.cat-icon {
  font-size: 2rem;
}

.cat-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.cat-start {
  font-size: 0.77rem;
  color: var(--accent);
  font-weight: 700;
}

.cat-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* PANELS */
#panels {
  background: var(--blue-bg);
}

.panels-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: white;
  border: 2px solid var(--blue-light);
  color: var(--text-mid);
  border-radius: 30px;
  padding: 0.45rem 1.2rem;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  font-family: 'DM Sans', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: white;
}

.panels-content {
  max-width: 1080px;
  margin: 0 auto;
}

.panel-group {
  display: none;
}

.panel-group.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  gap: 1.3rem;
}

.panel-card {
    min-height: 190px;
  background: var(--card-bg);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1.5px solid rgba(160,196,222,0.35);
  box-shadow: var(--shadow);
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
  display: flex;
    flex-direction: column;
}

.panel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-mid);
}

.panel-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--blue-mid);
}

.panel-card.popular::before {
  background: linear-gradient(90deg, var(--accent), #f0834e);
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: white;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.panel-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  padding-right: 70px;
  line-height: 1.3;
}

.panel-tests {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0.8rem;
}

.panel-tests span {
  background: var(--blue-bg);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--text-mid);
  font-size: 0.74rem;
  white-space: nowrap;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.panel-price-wrap {
  display: flex;
  flex-direction: column;
}

.panel-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.55rem;
  color: var(--blue-dark);
  line-height: 1;
}

.panel-save {
  font-size: 0.72rem;
  color: #2d9e4f;
  font-weight: 700;
  margin-top: 3px;
}

.btn-add {
  background: var(--blue-dark);
  color: white;
  border: none;
  border-radius: 7px;
  padding: 0.48rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}

.btn-add:hover {
  background: var(--accent);
}

.panel-note {
  font-size: 0.73rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  font-style: italic;
  background: var(--blue-bg);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
}


/* HOW */
#how {
  background: white;
  padding: 5.5rem 2.5rem 4.5rem;
}

#how .section-sub {
  max-width: 620px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-mid);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--blue-light);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 4px solid white;
  box-shadow: 0 0 0 3px var(--blue-mid);
  position: relative;
  z-index: 2;
}

.step-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* ABOUT */
#about {
  background: var(--blue-bg);
}

.about-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-big-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.about-tagline {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--blue-dark);
  line-height: 1.5;
}

.about-tagline em {
  color: var(--accent);
  font-style: italic;
}

.about-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-link {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 2px solid var(--blue-mid);
  padding-bottom: 1px;
  transition: all 0.2s;
  display: inline-block;
  margin-top: 0.3rem;
}

.about-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* HOMEPAGE RESPONSIVE */
@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  main section {
    padding: 3.5rem 1.2rem;
  }

  .hero {
    padding: 3rem 1.2rem;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* HOMEPAGE ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow {
  animation-delay: 0.05s;
}

.hero-title {
  animation-delay: 0.15s;
}

.hero-sub {
  animation-delay: 0.25s;
}

.hero-actions {
  animation-delay: 0.35s;
}

.hero-trust {
  animation-delay: 0.45s;
}
/* ORIGINAL HEADER / NAV */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--blue-light);
  height: 68px;
  box-shadow: 0 2px 12px rgba(44,95,130,0.07);
}

.nav-inner {
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--blue-dark);
}

.nav-logo-text .logo-url {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue-dark);
}

.nav-right {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.btn-login {
  background: none;
  border: 1.5px solid var(--blue-mid);
  color: var(--blue-dark);
  border-radius: 6px;
  padding: 0.42rem 1rem;
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}

.btn-login:hover {
  background: var(--blue-bg);
}

.btn-cart {
  background: var(--blue-dark);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.42rem 1rem;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-cart:hover {
  background: var(--accent);
}

.cart-badge {
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    padding: 0 1.2rem;
  }
}

@media (max-width: 520px) {
  .logo-url {
    display: none;
  }

  .btn-login {
    display: none;
  }

  .btn-cart {
    padding: 0.42rem 0.75rem;
  }
}
/* ORIGINAL FOOTER */

.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.68);
  padding: 3.5rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}

.footer-brand a {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 600;
}

.footer-col h4 {
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.18s;
}

.footer-col a:hover {
  color: var(--accent-soft);
}

.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 3rem 1.2rem 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
/* PHYSICIAN REVIEW CALLOUT */

.review-callout-section {
  background: white;
  padding: 4rem 2.5rem;
}

.review-callout {
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(135deg, #eaf3fa 0%, #ffffff 100%);
  border: 1px solid var(--blue-light);
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.review-callout h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  letter-spacing: 0.03em;
  margin: 0 0 0.8rem;
}

.review-callout p {
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.review-small-note {
  font-size: 0.82rem;
  color: var(--text-light);
}

.review-action-card {
  background: white;
  border: 1px solid var(--blue-light);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.review-price {
  font-family: 'DM Serif Display', serif;
  color: var(--blue-dark);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.review-label {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  .review-callout {
    grid-template-columns: 1fr;
  }

  .review-callout .section-label {
    text-align: center !important;
  }

  .review-callout {
    text-align: center;
  }
}
.button-disabled,
.button:disabled,
.btn-primary:disabled,
.btn-add:disabled,
.checkout-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(25%);
  pointer-events: none;
}