:root {
  --gp-navy: #111111;
  --gp-navy-soft: #1a1a1a;
  --gp-white: #ffffff;
  --gp-page-bg: #f4f7f9;
  --gp-coral: #ff8562;
  --gp-coral-dark: #e86f4d;
  --gp-gray-50: #f8f8f8;
  --gp-gray-200: #e5e5e5;
  --gp-gray-500: #6b7280;
  --gp-gray-900: #111827;
  --gp-teal: #1a9e96;
  --gp-teal-dark: #147a74;
}

body {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--gp-gray-900);
  background: var(--gp-page-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gp-navy);
}

a:hover {
  color: var(--gp-coral);
}

#top {
  background: var(--gp-white);
  border-bottom: 1px solid var(--gp-gray-200);
  font-size: 0.9375rem;
  padding: 0.85rem 0;
  margin-bottom: 0;
}

.gp-header-shell {
  width: min(100% - 2rem, 1440px);
  max-width: 1440px;
}

.gp-footer-shell {
  width: min(100% - 2rem, 1440px);
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.gp-top-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem 1.25rem;
  min-height: 56px;
}

.gp-top-brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.gp-top-logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.gp-top-logo img {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(420px, 38vw);
}

.gp-top-left {
  justify-self: start;
}

.gp-top-center {
  justify-self: center;
  min-width: 0;
}

.gp-top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.15rem;
  font: inherit;
}

.gp-top-link {
  color: var(--gp-gray-900);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.35;
  padding: 0.35rem 0;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
}

.gp-top-link:hover {
  color: var(--gp-teal);
}

.gp-top-nav-label--short {
  display: none;
}

.gp-top-right {
  justify-self: end;
}

.gp-top-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
}

.gp-top-actions-group {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.gp-top-actions .list-inline-item {
  margin: 0 !important;
  display: flex;
  align-items: center;
  line-height: 0;
}

.gp-top-icon,
.gp-contact-icon,
.gp-top-cart #cart > .dropdown > .btn {
  box-sizing: border-box;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  flex-shrink: 0;
}

.gp-top-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gp-gray-200);
  color: var(--gp-gray-900);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.gp-top-icon:hover {
  color: var(--gp-coral);
  border-color: var(--gp-coral);
  background: rgba(255, 133, 98, 0.08);
}

.gp-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gp-gray-200);
  background: var(--gp-white);
  color: var(--gp-gray-900);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.gp-contact-icon i {
  font-size: 1rem;
  line-height: 1;
}

.gp-contact-icon:hover {
  color: var(--gp-teal);
  border-color: var(--gp-teal);
  background: rgba(26, 158, 150, 0.08);
}

.gp-contact-icon--whatsapp:hover {
  color: #128c7e;
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.1);
}

.gp-contact-icon--telegram:hover {
  color: #229ed9;
  border-color: #229ed9;
  background: rgba(34, 158, 217, 0.1);
}

.gp-top-language form {
  margin: 0;
  line-height: 1;
}

.gp-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1;
}

.gp-lang-switch__link {
  display: inline-flex;
  align-items: center;
  color: var(--gp-gray-900);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.gp-lang-switch__link:hover {
  color: var(--gp-teal);
}

.gp-lang-switch__link.is-active {
  color: var(--gp-teal);
}

@media (max-width: 1399px) {
  .gp-top-bar {
    gap: 0.65rem 0.85rem;
  }

  .gp-top-nav {
    gap: 0.5rem 0.75rem;
  }

  .gp-top-nav-label--full {
    display: none;
  }

  .gp-top-nav-label--short {
    display: inline;
  }

  .gp-top-logo img {
    max-width: min(260px, 26vw);
    height: 40px;
  }
}

@media (max-width: 1199px) {
  .gp-top-link {
    font-size: 0.875rem;
  }

  .gp-top-nav {
    gap: 0.45rem 0.55rem;
  }
}

@media (min-width: 1400px) {
  .gp-top-nav-label--short {
    display: none;
  }
}

@media (max-width: 991.98px) {
  #top {
    position: sticky;
    top: 0;
    z-index: 1030;
  }

  .gp-top-center {
    display: none;
  }

  .gp-top-bar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .gp-top-logo {
    display: none;
  }

  .gp-menu-toggle {
    width: 2.65rem;
    height: 2.65rem;
    min-width: 2.65rem;
    min-height: 2.65rem;
    font-size: 1.15rem;
  }
}

.gp-top-cart #cart {
  display: flex;
  align-items: center;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.gp-top-cart #cart .dropdown {
  display: inline-flex;
  align-items: center;
  position: static;
  line-height: 0;
}

.gp-top-cart #cart > .dropdown > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  max-height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--gp-gray-200);
  background: var(--gp-white);
  color: var(--gp-gray-900);
  font-size: 0;
  line-height: 1;
  box-shadow: none;
  vertical-align: middle;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.gp-top-cart #cart > .dropdown > .btn:hover,
.gp-top-cart #cart > .dropdown > .btn:focus {
  color: var(--gp-teal);
  border-color: var(--gp-teal);
  background: rgba(26, 158, 150, 0.08);
}

.gp-top-cart #cart > .dropdown > .btn i {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  color: inherit;
}

.gp-top-cart #cart .dropdown-toggle::after {
  display: none;
}

.gp-top-cart #cart .dropdown-menu,
.gp-top-cart #cart .gp-mini-cart {
  width: min(22rem, calc(100vw - 1.5rem));
  min-width: 18rem;
  margin-top: 0.45rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.gp-mini-cart > li {
  list-style: none;
}

.gp-mini-cart__header {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gp-gray-200);
  background: var(--gp-gray-50);
}

.gp-mini-cart__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gp-gray-900);
}

.gp-mini-cart__body {
  max-height: 16rem;
  overflow-y: auto;
}

.gp-mini-cart__item {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gp-gray-200);
}

.gp-mini-cart__item:last-child {
  border-bottom: 0;
}

.gp-mini-cart__thumb {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gp-gray-200);
  flex-shrink: 0;
}

.gp-mini-cart__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gp-mini-cart__info {
  min-width: 0;
}

.gp-mini-cart__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--gp-gray-900);
  text-decoration: none;
}

.gp-mini-cart__name:hover {
  color: var(--gp-teal);
}

.gp-mini-cart__options {
  margin-top: 0.2rem;
  color: var(--gp-gray-500);
  font-size: 0.75rem;
}

.gp-mini-cart__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
}

.gp-mini-cart__qty {
  color: var(--gp-gray-500);
}

.gp-mini-cart__price {
  font-weight: 700;
  color: var(--gp-gray-900);
  white-space: nowrap;
}

.gp-mini-cart__remove {
  margin: 0;
}

.gp-mini-cart__remove .btn {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--gp-gray-500);
  text-decoration: none;
  font-weight: 400;
}

.gp-mini-cart__remove .btn:hover {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.08);
}

.gp-mini-cart__totals {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--gp-gray-200);
  background: var(--gp-gray-50);
}

.gp-mini-cart__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.2rem 0;
  font-size: 0.8125rem;
  color: var(--gp-gray-600);
}

.gp-mini-cart__total-row--grand {
  margin-top: 0.25rem;
  padding-top: 0.45rem;
  border-top: 1px dashed var(--gp-gray-200);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gp-gray-900);
}

.gp-mini-cart__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--gp-gray-200);
}

.gp-mini-cart__actions .btn {
  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  min-height: 2.25rem;
  max-height: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.25;
  padding: 0.45rem 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
}

.gp-mini-cart__empty {
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--gp-gray-500);
}

.gp-mini-cart__empty-icon {
  display: block;
  margin: 0 auto 0.65rem;
  font-size: 1.5rem;
  color: var(--gp-gray-300);
}

.gp-mini-cart .btn-light {
  background: #fff;
  border-color: var(--gp-gray-200);
  color: var(--gp-gray-900);
}

.gp-mini-cart .btn-light:hover {
  background: var(--gp-gray-50);
  border-color: var(--gp-gray-300);
  color: var(--gp-gray-900);
}

.gp-mini-cart .btn-primary {
  background: var(--gp-teal);
  border-color: var(--gp-teal);
  color: #fff;
}

.gp-mini-cart .btn-primary:hover,
.gp-mini-cart .btn-primary:focus {
  background: var(--gp-teal-dark);
  border-color: var(--gp-teal-dark);
  color: #fff;
}

#top .list-inline-item > a,
#top .list-inline-item .dropdown > a,
#top .gp-top-catalog {
  color: var(--gp-gray-900);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.25;
  padding: 0;
  white-space: nowrap;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}

#top .gp-top-actions .gp-contact-icon,
#top .gp-top-actions .gp-top-cart #cart > .dropdown > .btn {
  gap: 0;
  line-height: 1;
}

#top .list-inline-item > a:hover,
#top .list-inline-item .dropdown > a:hover,
#top .gp-top-catalog:hover {
  color: var(--gp-teal);
}

#search .form-control {
  border-radius: 999px;
  border-color: var(--gp-gray-200);
  padding-left: 1rem;
}

#search .btn {
  border-radius: 999px;
  background: var(--gp-navy);
  border-color: var(--gp-navy);
}

#menu.gp-menu-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 48%, #0f766e 100%) !important;
  border: none;
  border-radius: 16px;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.75rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
  position: relative;
  overflow: hidden;
}

#menu.gp-menu-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 30%, rgba(26, 158, 150, 0.3) 0%, transparent 45%),
    radial-gradient(circle at 92% 70%, rgba(255, 133, 98, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

#menu.gp-menu-bar .navbar-collapse,
#menu.gp-menu-bar .navbar-nav {
  position: relative;
  z-index: 1;
}

#menu .navbar-nav > li > a {
  color: #fff;
  font-weight: 500;
}

#menu .dropdown-menu {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.28);
  padding: 0.5rem 0;
  margin-top: 0.35rem;
}

#menu .dropdown-item {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  padding: 0.45rem 1rem;
}

#menu .dropdown-item:hover,
#menu .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gp-coral);
}

#menu .dropdown-menu .dropdown-item.active {
  background: rgba(26, 158, 150, 0.22);
  color: #fff;
  font-weight: 600;
}

#menu .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
  #menu .navbar-collapse {
    padding: 0.65rem 0.25rem;
  }

  #menu .navbar-nav {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.45rem;
    width: 100%;
  }

  #menu .navbar-nav > li > a.nav-link {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 1rem;
    font-size: 0.8125rem;
    line-height: 1.35;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  }

  #menu .navbar-nav > li > a.nav-link:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
  }

  #menu .navbar-nav > li > a.nav-link.active {
    background: var(--gp-teal);
    border-color: var(--gp-teal);
    color: #fff;
    font-weight: 600;
  }
}

#cart > .dropdown > .btn {
  border-radius: 999px;
  background: var(--gp-navy);
  border-color: var(--gp-navy);
  font-weight: 600;
}

#cart .gp-mini-cart .btn {
  border-radius: 8px;
  font-weight: 600;
  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  min-height: 2.25rem;
  max-height: none;
  font-size: 0.8125rem;
  line-height: 1.25;
}

#cart .gp-mini-cart .btn-light {
  background: #fff;
  border-color: var(--gp-gray-200);
  color: var(--gp-gray-900);
}

#cart .gp-mini-cart .btn-primary {
  background: var(--gp-teal);
  border-color: var(--gp-teal);
  color: #fff;
}

#cart .gp-mini-cart .btn-primary:hover,
#cart .gp-mini-cart .btn-primary:focus {
  background: var(--gp-teal-dark);
  border-color: var(--gp-teal-dark);
  color: #fff;
}

#top .gp-top-cart #cart > .dropdown > .btn {
  font-weight: inherit;
}

.btn-primary,
#cart .btn-primary {
  background: var(--gp-coral);
  border-color: var(--gp-coral-dark);
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover,
#cart .btn-primary:hover,
.gp-btn-coral:hover {
  background: var(--gp-coral-dark);
  border-color: #d45f3f;
}

.gp-contact-submit,
.gp-contact-page .btn-primary {
  background: var(--gp-teal);
  border-color: var(--gp-teal);
}

.gp-contact-submit:hover,
.gp-contact-submit:focus,
.gp-contact-page .btn-primary:hover,
.gp-contact-page .btn-primary:focus {
  background: var(--gp-teal-dark);
  border-color: var(--gp-teal-dark);
}

#common-success .btn-primary {
  background: var(--gp-teal);
  border-color: var(--gp-teal);
}

#common-success .btn-primary:hover,
#common-success .btn-primary:focus {
  background: var(--gp-teal-dark);
  border-color: var(--gp-teal-dark);
}

#compare-total {
  white-space: nowrap;
}

.gp-btn-coral {
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  background: var(--gp-coral);
  border-color: var(--gp-coral-dark);
  color: #fff;
  font-weight: 600;
}

.gp-btn-coral:hover,
.gp-btn-coral:focus {
  background: var(--gp-coral-dark);
  border-color: #d45f3f;
  color: #fff;
}

/* Homepage */
#common-home .gp-content-row {
  margin-top: 1rem;
}

#common-home #column-left,
#common-home #column-right {
  display: none;
}

#common-home #content {
  width: 100%;
  max-width: 100%;
}

.gp-hero-full {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #0f766e 100%);
  color: #fff;
  padding: 4rem 0 4.5rem;
  margin-bottom: 0;
}

.gp-hero-inner {
  max-width: 720px;
}

.gp-hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.gp-hero-full h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}

.gp-hero-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 1.75rem;
}

.gp-section {
  padding: 2.5rem 0;
}

.gp-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.gp-section h2,
.gp-section-head h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

.gp-section-head h2 {
  margin: 0;
}

.gp-section > h2 {
  margin: 0 0 1.75rem;
}

.gp-section-title-sm {
  font-size: 1.25rem;
}

.gp-link-more {
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.gp-about p {
  color: var(--gp-gray-500);
  line-height: 1.7;
  max-width: 900px;
}

.gp-usp-card {
  background: var(--gp-gray-50);
  border: 1px solid var(--gp-gray-200);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
}

.gp-usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gp-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.gp-usp-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gp-usp-card p {
  color: var(--gp-gray-500);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.gp-cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.gp-cat-pill {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--gp-gray-200);
  background: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.15s ease;
}

.gp-cat-pill:hover {
  background: var(--gp-navy);
  border-color: var(--gp-navy);
  color: #fff;
}

.gp-cat-pill.is-active,
.gp-cat-pill.is-active:hover {
  background: var(--gp-navy);
  border-color: var(--gp-navy);
  color: #fff;
}

.gp-catalog-filters {
  margin-top: 0.5rem;
}

/* Catalog page layout (block B) */
#product-category {
  padding-top: 0;
}

#product-info {
  padding-top: 0.5rem;
}

#product-info #product-title {
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 0.35rem;
  color: var(--gp-gray-900);
}

#product-info .gp-product-price .price-new {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gp-gray-900);
}

#product-info #button-cart,
#product-info .gp-btn-teal {
  background: var(--gp-teal);
  border-color: var(--gp-teal);
  color: #fff;
}

#product-info #button-cart:hover,
#product-info #button-cart:focus,
#product-info .gp-btn-teal:hover,
#product-info .gp-btn-teal:focus {
  background: var(--gp-teal-dark);
  border-color: var(--gp-teal-dark);
  color: #fff;
}

#product-info .gp-product-details {
  margin-top: 2rem;
}

#product-info .gp-product-description-box {
  margin-bottom: 1rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 14px;
  background: #fff;
}

#product-info .gp-product-description-box__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gp-gray-900);
}

#product-info .gp-product-description-box__content {
  color: var(--gp-gray-900);
  font-size: 0.9375rem;
  line-height: 1.65;
}

#product-info .gp-product-description-box__content p:last-child {
  margin-bottom: 0;
}

.gp-catalog-hero {
  margin: 0 0 1.25rem;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 118, 110, 0.55) 100%),
    linear-gradient(135deg, #dbeafe 0%, #ecfeff 55%, #fff7ed 100%);
  min-height: 132px;
  display: flex;
  align-items: stretch;
}

.gp-catalog-hero__shell {
  width: min(100% - 2rem, 1440px);
  max-width: 1440px;
  margin: 0 auto;
}

.gp-catalog-hero__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
}

.gp-catalog-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(15, 23, 42, 0.28);
}

.gp-catalog-layout {
  --bs-gutter-x: 1.5rem;
}

.gp-catalog-sidebar {
  margin-bottom: 1rem;
}

.gp-catalog-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gp-catalog-sidebar__row {
  margin: 0;
}

.gp-catalog-sidebar__link {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--gp-gray-900);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.gp-catalog-sidebar__link:hover {
  background: var(--gp-gray-50);
  color: var(--gp-teal-dark);
}

.gp-catalog-sidebar__link.is-active {
  background: rgba(26, 158, 150, 0.08);
  border-color: rgba(26, 158, 150, 0.25);
  color: var(--gp-teal-dark);
  font-weight: 600;
}

.gp-catalog-sidebar__name {
  display: block;
}

.gp-page-breadcrumb,
.gp-catalog-breadcrumb {
  margin: 0 0 1rem;
  padding-top: 0.15rem;
}

.gp-page-breadcrumb .gp-breadcrumb,
.gp-catalog-breadcrumb .gp-breadcrumb {
  padding: 0;
  margin: 0;
}

/* Thin gray breadcrumbs — override default OpenCart boxed style */
#container .breadcrumb,
#container .gp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  list-style: none;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
}

#container .breadcrumb > .breadcrumb-item,
#container .gp-breadcrumb > .breadcrumb-item {
  display: flex;
  align-items: center;
  text-shadow: none;
  padding: 0;
  position: static;
  white-space: normal;
  color: var(--gp-gray-500);
}

#container .breadcrumb > .breadcrumb-item:after,
#container .gp-breadcrumb > .breadcrumb-item:after {
  display: none;
}

#container .breadcrumb > .breadcrumb-item + .breadcrumb-item::before,
#container .gp-breadcrumb > .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 0.4rem;
  color: var(--gp-gray-500);
  opacity: 0.85;
  float: none;
}

#container .breadcrumb > .breadcrumb-item a,
#container .gp-breadcrumb > .breadcrumb-item a {
  color: var(--gp-gray-500);
  text-decoration: none;
}

#container .breadcrumb > .breadcrumb-item a:hover,
#container .gp-breadcrumb > .breadcrumb-item a:hover {
  color: var(--gp-teal);
}

#container .breadcrumb > .breadcrumb-item.active,
#container .gp-breadcrumb > .breadcrumb-item.active {
  color: var(--gp-gray-500);
  font-weight: 400;
}

/* Category menu bar removed site-wide */
#container main #menu,
#container main .container #menu {
  display: none !important;
}

.gp-catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.gp-catalog-search {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.gp-catalog-search .form-control {
  border-radius: 999px;
  border-color: var(--gp-gray-200);
  min-height: 2.75rem;
}

.gp-catalog-search .btn {
  border-radius: 999px;
  min-width: 2.75rem;
  border-color: var(--gp-gray-200);
}

.gp-catalog-sort .form-select {
  border-radius: 999px;
  border-color: var(--gp-gray-200);
  min-height: 2.75rem;
}

.gp-catalog-pagination {
  margin-top: 1.5rem;
}

.gp-catalog-pagination .pagination {
  margin-bottom: 0;
}

#product-category #content > h1 {
  display: none;
}

#product-category .price-tax,
#product-category .product-thumb .description p,
#product-category .product-thumb .rating {
  display: none !important;
}

#product-category .product-thumb {
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 14px;
  box-shadow: none;
}

#product-category .product-thumb:hover {
  border-color: rgba(26, 158, 150, 0.35);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  transform: translateY(-2px);
}

#product-category .product-thumb .product-actions .btn-outline-secondary {
  display: none;
}

#product-category .product-thumb .product-actions .btn-primary {
  width: 100%;
}

@media (max-width: 991.98px) {
  .gp-catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .gp-catalog-hero__inner {
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .gp-catalog-sidebar__link {
    padding: 0.5rem 0.65rem;
    font-size: 0.8125rem;
  }
}

.gp-cta-band {
  background: var(--gp-navy);
  color: #fff;
  border-radius: 16px;
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1rem 0 2rem;
}

.gp-cta-band h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #fff;
}

.gp-cta-band p {
  margin: 0;
  opacity: 0.85;
}

/* Product cards */
.product-thumb {
  border: 1px solid var(--gp-gray-200);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-thumb:hover {
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.1);
  transform: translateY(-3px);
}

.product-thumb .image {
  background: var(--gp-gray-50);
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-thumb .product-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  background: var(--gp-navy);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  max-width: calc(100% - 1.3rem);
  text-align: center;
  pointer-events: none;
}

.product-thumb .product-badge-water {
  background: rgba(255, 255, 255, 0.94);
  color: var(--gp-teal-dark);
  border: 1px solid rgba(26, 158, 150, 0.28);
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.07);
  border-radius: 6px;
  font-size: 0.7rem;
  line-height: 1;
  padding: 0.38rem 0.55rem;
  max-width: none;
  white-space: nowrap;
  text-transform: none;
}

.product-thumb .product-badge-promo {
  left: 0.65rem;
  right: auto;
  border-radius: 999px;
  max-width: calc(100% - 1.3rem);
  text-transform: uppercase;
}

.product-thumb .image img {
  object-fit: contain;
  max-height: 100%;
}

.product-thumb .content {
  padding: 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-thumb .description {
  padding: 0;
  margin-bottom: 0;
  flex: 1;
}

.product-thumb form {
  margin: 0;
}

.product-thumb .description h4 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.product-thumb .description h4 a {
  color: var(--gp-navy);
  text-decoration: none;
}

.product-thumb .description p {
  color: var(--gp-gray-500);
  font-size: 0.82rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-thumb .price {
  color: var(--gp-navy);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.product-thumb .product-stock {
  color: #c0392b;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.product-stock-inline {
  color: #c0392b;
  font-weight: 600;
}

#product-info .product-short-description {
  color: var(--gp-gray-600, #4a5568);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0.75rem 0 1.25rem;
  max-width: 36rem;
}

#product-info .product-dose {
  margin: 1rem 0 1.5rem;
}

#product-info .product-dose-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

#product-info .product-dose-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gp-navy);
  margin: 0;
  white-space: nowrap;
}

#product-info .product-dose-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#product-info .product-dose-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gp-gray-200);
  background: #fff;
  color: var(--gp-navy);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.15s, border-color 0.15s;
}

#product-info .product-dose-pill.is-active {
  background: #e8f4fc;
  border-color: var(--gp-teal);
  color: var(--gp-navy);
}

#product-info .product-dose-pill:not(.is-active):hover {
  border-color: var(--gp-teal);
  text-decoration: none;
}

#product-info .product-vial-box {
  margin: 0 0 1.5rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

#product-info .product-vial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gp-gray-200);
}

#product-info .product-vial-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gp-navy);
}

#product-info .product-vial-promo {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2ecc71;
  text-align: right;
}

#product-info .product-vial-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.85rem 1rem 0.5rem;
}

#product-info .product-vial-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.55rem 0.35rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 8px;
  background: #fff;
  color: var(--gp-navy);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

#product-info .product-vial-option.is-active {
  background: #e8f4fc;
  border-color: var(--gp-teal);
}

#product-info .product-vial-option:not(.is-active):hover {
  border-color: var(--gp-teal);
}

#product-info .product-vial-discount {
  color: var(--gp-teal);
  font-weight: 700;
}

#product-info .product-vial-clear-wrap {
  text-align: center;
  padding: 0.15rem 1rem 0.75rem;
}

#product-info .product-vial-clear {
  border: 0;
  background: none;
  padding: 0;
  color: var(--gp-teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

#product-info .product-vial-clear:hover {
  text-decoration: underline;
}

#product-info .product-vial-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  background: #f4f7f9;
  border-top: 1px solid var(--gp-gray-200);
  color: var(--gp-teal);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

#product-info .product-vial-footer .fa-droplet {
  font-size: 0.85rem;
}

@media (max-width: 575px) {
  #product-info .product-vial-header {
    flex-direction: column;
    align-items: flex-start;
  }

  #product-info .product-vial-promo {
    text-align: left;
  }
}

.product-thumb .product-volume {
  margin-top: 0.75rem;
}

.product-thumb .product-volume-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gp-gray-500);
  margin-bottom: 0.35rem;
}

.product-thumb .product-volume-static {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-thumb .product-volume-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gp-navy);
}

.product-thumb .product-volume-select {
  border-radius: 10px;
  border-color: var(--gp-gray-200);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gp-navy);
}

.product-thumb .product-actions {
  display: flex;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.product-thumb .product-actions .btn {
  flex: 1;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 0.65rem;
  white-space: nowrap;
}

.product-thumb .product-actions .btn-outline-secondary {
  border-color: var(--gp-gray-200);
  color: var(--gp-navy);
}

.product-thumb .product-actions .btn-outline-secondary:hover {
  background: var(--gp-gray-50);
  border-color: var(--gp-navy);
  color: var(--gp-navy);
}

.product-thumb .product-actions .btn-primary {
  background: var(--gp-teal);
  border-color: var(--gp-teal);
}

.product-thumb .product-actions .btn-primary:hover,
.product-thumb .product-actions .btn-primary:focus {
  background: var(--gp-teal-dark);
  border-color: var(--gp-teal-dark);
}

/* Catalog product grid — fluid layout (B4) */
#product-category.container {
  width: min(100% - 2rem, 1440px);
  max-width: 1440px;
}

.gp-product-grid {
  --gp-product-grid-gap: 1.25rem;
  --gp-product-grid-min: clamp(180px, 21vw, 260px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--gp-product-grid-min), 1fr));
  gap: var(--gp-product-grid-gap);
  margin-bottom: var(--gp-product-grid-gap);
}

.gp-product-grid-item {
  min-width: 0;
}

@media (min-width: 992px) {
  #product-category #content .gp-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  #product-category #content .gp-product-grid,
  #product-category #product-list.gp-product-grid,
  .gp-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --gp-product-grid-gap: 0.75rem;
    --gp-product-grid-min: min(48%, 180px);
  }

  #product-category #product-list.product-list.row-cols-1 > * {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  #product-category .product-thumb .description h4 {
    font-size: 0.8125rem;
  }

  #product-category .product-thumb .price {
    font-size: 0.875rem;
  }

  #product-category .product-thumb .product-actions .btn-primary {
    font-size: 0.75rem;
    padding: 0.45rem 0.5rem;
  }

  #product-category .product-thumb .product-volume-label,
  #product-category .product-thumb .product-volume-value {
    font-size: 0.7rem;
  }

  #product-category .product-thumb .product-volume-select {
    font-size: 0.75rem;
    padding: 0.25rem 0.4rem;
  }
}

@media (min-width: 992px) {
  .gp-product-grid--module {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

#product-info .image.magnific-popup {
  position: relative;
}

#product-info .product-image-main {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

#product-info .product-image-main > a {
  display: block;
}

#product-info .product-image-main img {
  display: block;
  width: 100%;
  height: auto;
}

#product-info .product-certificate-box {
  margin-top: 1rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

#product-info .product-certificate-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gp-gray-200);
}

#product-info .product-certificate-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gp-teal);
}

#product-info .product-certificate-batch {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gp-gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#product-info .product-certificate-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

#product-info .product-certificate-text {
  flex: 1 1 auto;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--gp-navy);
  font-weight: 500;
}

#product-info .product-certificate-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gp-teal);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

#product-info .product-certificate-link:hover {
  text-decoration: underline;
}

#product-info .product-accordion {
  margin-top: 1rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

#product-info .product-accordion-item + .product-accordion-item {
  border-top: 1px solid var(--gp-gray-200);
}

#product-info .product-accordion-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

#product-info .product-accordion-header:hover {
  background: #fafbfc;
}

#product-info .product-accordion-icon {
  flex: 0 0 1.25rem;
  color: var(--gp-navy);
  font-size: 0.95rem;
  text-align: center;
}

#product-info .product-accordion-title {
  flex: 1 1 auto;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gp-navy);
}

#product-info .product-accordion-toggle {
  flex: 0 0 1rem;
  position: relative;
  width: 1rem;
  height: 1rem;
}

#product-info .product-accordion-toggle::before,
#product-info .product-accordion-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gp-navy);
  transform: translate(-50%, -50%);
  transition: opacity 0.15s;
}

#product-info .product-accordion-toggle::before {
  width: 0.75rem;
  height: 2px;
}

#product-info .product-accordion-toggle::after {
  width: 2px;
  height: 0.75rem;
}

#product-info .product-accordion-header:not(.collapsed) .product-accordion-toggle::after {
  opacity: 0;
}

#product-info .product-accordion-content {
  padding: 0 1rem 1rem 2.95rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--gp-gray-500);
}

#product-info .product-accordion-content p:last-child,
#product-info .product-accordion-content ul:last-child {
  margin-bottom: 0;
}

#product-info .product-accordion-content img {
  max-width: 100%;
  height: auto;
  margin-top: 0.75rem;
  border-radius: 8px;
}

#product-info .product-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.35rem 0;
}

#product-info .product-benefit-item + .product-benefit-item {
  margin-top: 0.65rem;
}

#product-info .product-benefit-icon {
  flex: 0 0 1.25rem;
  color: var(--gp-teal);
  font-size: 1rem;
  line-height: 1.35;
}

#product-info .product-benefit-body h4 {
  margin: 0 0 0.2rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gp-navy);
}

#product-info .product-benefit-body p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--gp-gray-500);
}

@media (max-width: 575px) {
  #product-info .product-certificate-body {
    flex-direction: column;
    align-items: flex-start;
  }

  #product-info .product-accordion-content {
    padding-left: 1rem;
  }
}

#product-info .product-badge-page-water {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: auto;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: var(--gp-teal-dark);
  border: 1px solid rgba(26, 158, 150, 0.28);
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.07);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
}

#product-info .product-badge-page {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: var(--gp-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  max-width: calc(100% - 1.5rem);
  text-align: center;
  pointer-events: none;
}

#product-info .product-qty-group #input-quantity {
  max-width: 4.5rem;
  flex: 0 0 4.5rem;
  -moz-appearance: textfield;
}

#product-info .product-qty-group #input-quantity::-webkit-outer-spin-button,
#product-info .product-qty-group #input-quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#product-info .product-qty-group .btn-qty-minus,
#product-info .product-qty-group .btn-qty-plus {
  min-width: 2.75rem;
  font-size: 1.25rem;
  line-height: 1;
  padding-left: 0.65rem;
  padding-right: 0.65rem;
  color: var(--gp-navy);
  border-color: var(--gp-gray-200);
}

#product-info .product-qty-group .btn-qty-minus:hover,
#product-info .product-qty-group .btn-qty-plus:hover {
  background: var(--gp-gray-50);
  border-color: var(--gp-navy);
  color: var(--gp-navy);
}

#product-info .product-qty-group #button-cart {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

#product-info .product-research-notice {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 12px;
  background: #fff;
}

#product-info .product-research-notice-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gp-teal);
  margin-bottom: 0.45rem;
}

#product-info .product-research-notice-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gp-gray-500);
}

#product-info .product-trust-box {
  margin: 1.5rem 0 0;
  border: 1px solid var(--gp-gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

#product-info .product-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--gp-gray-200);
}

#product-info .product-trust-icon {
  flex: 0 0 1.5rem;
  color: var(--gp-teal);
  font-size: 1.05rem;
  line-height: 1.35;
  text-align: center;
}

#product-info .product-trust-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gp-navy);
  margin-bottom: 0.2rem;
}

#product-info .product-trust-text {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--gp-gray-500);
}

#product-info .product-trust-disclaimer {
  padding: 0.85rem 1rem;
  background: #f4f7f9;
  color: var(--gp-gray-500);
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
}

.product-thumb .button {
  position: static;
  width: auto;
  display: flex;
  border-top: 1px solid var(--gp-gray-200);
  padding: 0;
  margin: 0.75rem -1rem 0;
}

.product-thumb .button button {
  flex: 1;
  width: auto;
  border-top: none;
}

.product-thumb .button .btn {
  border-radius: 8px;
}

@media (min-width: 960px) {
  .product-list .product-thumb .button {
    border-left: none;
    width: auto;
    margin-left: -1rem;
  }
}

.product-list .row,
.gp-product-grid,
#common-home .row {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

/* Category page */
#product-category h2 {
  font-weight: 700;
}

/* Footer — card layout inspired by beyond-peptides.kz, GP Beyond palette */
#container {
  position: relative;
  margin-bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--gp-page-bg);
}

main {
  flex: 1 0 auto;
  background: var(--gp-page-bg);
}

#content,
#column-left,
#column-right {
  padding-bottom: 0;
}

footer.gp-footer {
  background: var(--gp-gray-50);
  color: #cbd5e1;
  margin-top: 2.5rem;
  padding: 0 0 1.5rem;
  position: static;
  width: auto;
  flex-shrink: 0;
  border: none;
}

.gp-footer-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
  padding: 2.25rem 2rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 48%, #0f766e 100%);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.gp-footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(26, 158, 150, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 88% 72%, rgba(255, 133, 98, 0.12) 0%, transparent 38%);
  pointer-events: none;
}

.gp-footer-card > .row {
  position: relative;
  z-index: 1;
  --bs-gutter-x: 1.5rem;
}

@media (min-width: 1200px) {
  .gp-footer-card > .row {
    display: grid;
    grid-template-columns: minmax(240px, 1.6fr) repeat(4, minmax(0, 1fr));
    gap: 1.5rem 2rem;
  }

  .gp-footer-card > .row > [class*="col-"] {
    width: auto;
    max-width: none;
    flex: none;
  }
}

.gp-footer-logo {
  display: inline-block;
  line-height: 0;
}

.gp-footer-logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(320px, 100%);
}

.gp-footer-logo-text {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.gp-footer-about {
  margin: 1rem 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
}

.gp-footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--gp-teal);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  max-width: 100%;
}

.gp-footer-whatsapp:hover {
  background: var(--gp-teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

.gp-footer-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.gp-footer-whatsapp-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.gp-footer-whatsapp-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

.gp-footer-whatsapp-text span {
  font-size: 0.75rem;
  opacity: 0.88;
  line-height: 1.3;
}

.gp-footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}

.gp-footer-links li + li,
.gp-footer-contacts li + li {
  margin-top: 0.55rem;
}

.gp-footer-links a,
.gp-footer-contacts a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.45;
  transition: color 0.15s ease;
}

.gp-footer-links a:hover,
.gp-footer-contacts a:hover {
  color: var(--gp-coral);
}

.gp-footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.gp-footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.gp-footer-company {
  margin-top: 1.15rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.gp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.25rem 0;
}

.gp-footer-copy {
  font-size: 0.8125rem;
  color: var(--gp-gray-500);
}

/* Legacy footer selectors (non-gp-footer pages) */
footer:not(.gp-footer) {
  background: var(--gp-navy);
  color: #cbd5e1;
  margin-top: 2rem;
  position: static;
  width: auto;
  flex-shrink: 0;
}

footer:not(.gp-footer) h5 {
  color: #fff;
  font-weight: 600;
}

footer:not(.gp-footer) a {
  color: #cbd5e1;
}

footer:not(.gp-footer) a:hover {
  color: var(--gp-coral);
}

footer:not(.gp-footer) hr {
  border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 991px) {
  .gp-footer-card {
    padding: 1.75rem 1.35rem 1.5rem;
    border-radius: 20px;
  }

  .gp-footer-about {
    max-width: none;
  }
}

@media (max-width: 575px) {
  footer.gp-footer {
    margin-top: 1.5rem;
    padding-bottom: 1rem;
  }

  .gp-footer-card {
    border-radius: 16px;
    padding: 1.5rem 1.15rem 1.25rem;
  }

  .gp-footer-whatsapp {
    width: 100%;
  }
}

/* Floating contact buttons */
.gp-contact-fabs {
  position: fixed;
  --gp-fab-size: 3.25rem;
  --gp-content-width: min(100vw - 2rem, 1440px);
  --gp-content-gutter: max(0px, calc((100vw - var(--gp-content-width)) / 2));
  right: max(1.25rem, calc(var(--gp-content-gutter) - var(--gp-fab-size) - 0.5rem));
  bottom: 1.25rem;
  z-index: 1055;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gp-whatsapp-fab,
.gp-telegram-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.18);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.gp-whatsapp-fab span,
.gp-telegram-fab span {
  display: none;
}

.gp-whatsapp-fab {
  background: #25d366;
}

.gp-whatsapp-fab:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
}

.gp-telegram-fab {
  background: #229ed9;
}

.gp-telegram-fab:hover {
  background: #1b8ec4;
  color: #fff;
  transform: translateY(-2px);
}

.gp-whatsapp-fab i,
.gp-telegram-fab i {
  font-size: 1.35rem;
  line-height: 1;
}

@media (max-width: 575px) {
  .gp-contact-fabs {
    --gp-fab-size: 3rem;
    right: 1rem;
    bottom: 1rem;
  }

  .gp-whatsapp-fab,
  .gp-telegram-fab {
    width: var(--gp-fab-size);
    height: var(--gp-fab-size);
  }
}

/* Breadcrumb */
.breadcrumb,
.gp-breadcrumb {
  background: transparent;
  padding: 1rem 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
}

.gp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--gp-gray-500);
  opacity: 0.85;
}

.gp-breadcrumb .breadcrumb-item a {
  color: var(--gp-gray-500);
  text-decoration: none;
}

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

.gp-breadcrumb .breadcrumb-item.active {
  color: var(--gp-gray-500);
  font-weight: 400;
}

/* Hide default demo slideshow spacing on home */
#common-home .swiper-pagination {
  bottom: 8px;
}

/* Blog cards */
.gp-blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--gp-gray-200);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gp-blog-card:hover {
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.1);
  transform: translateY(-3px);
  color: inherit;
}

.gp-blog-card-image {
  background: var(--gp-gray-50);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.gp-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-blog-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.gp-blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.gp-blog-card-body p {
  color: var(--gp-gray-500);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Mobile menu drawer */
.gp-menu-toggle {
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.gp-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1040;
}

body.gp-menu-open .gp-menu-backdrop {
  display: block;
}

.gp-mobile-menu__panel {
  position: fixed;
  top: 0;
  right: -300px;
  width: min(300px, 88vw);
  height: 100vh;
  margin: 0;
  padding: 0 0 1.5rem;
  background: var(--gp-gray-50);
  z-index: 1050;
  overflow-y: auto;
  transition: right 0.25s ease;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
}

body.gp-menu-open .gp-mobile-menu__panel {
  right: 0;
}

.gp-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gp-gray-200);
}

.gp-mobile-menu__title {
  color: var(--gp-gray-900);
  font-weight: 700;
  font-size: 1.05rem;
}

.gp-mobile-menu__close {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: var(--gp-gray-200);
  color: var(--gp-gray-900);
  cursor: pointer;
}

.gp-mobile-menu__divider {
  margin: 1.25rem 1.25rem 0.75rem;
  border-top: 1px solid var(--gp-gray-200);
}

.gp-mobile-menu__heading {
  margin: 0 1.25rem 0.35rem;
  color: var(--gp-gray-500);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gp-mobile-menu__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-mobile-menu__link {
  display: block;
  color: var(--gp-gray-900) !important;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--gp-gray-200);
  text-decoration: none;
  font-weight: 500;
}

.gp-mobile-menu__link:hover {
  background: rgba(0, 0, 0, 0.04);
}

.gp-mobile-menu__link.is-active {
  background: rgba(26, 158, 150, 0.1);
  font-weight: 600;
  box-shadow: inset 3px 0 0 var(--gp-teal);
}

@media (max-width: 991.98px) {
  #menu.gp-menu-bar {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .gp-top-bar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .gp-hero-full {
    padding: 2.5rem 0 3rem;
  }

  .gp-section {
    padding: 1.75rem 0;
  }

  .gp-cta-band {
    padding: 1.5rem;
  }
}

/* Product page — You May Also Like */
#product-info .product-related-module {
  margin: 2.5rem 0 0;
  padding: 1.75rem 1.25rem 1.5rem;
  background: var(--gp-gray-50);
  border: 1px solid var(--gp-gray-200);
  border-radius: 16px;
}

#product-info .product-related-head {
  margin-bottom: 1.25rem;
}

#product-info .product-related-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gp-navy);
}

#product-info .product-related-carousel {
  position: relative;
}

#product-info .product-related-track-wrap {
  overflow: hidden;
}

#product-info .product-related-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0.15rem 0.5rem;
}

#product-info .product-related-track::-webkit-scrollbar {
  display: none;
}

#product-info .product-related-slide {
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 180px;
  scroll-snap-align: start;
}

#product-info .product-related-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--gp-gray-200);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#product-info .product-related-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #fff;
  padding: 1rem;
}

#product-info .product-related-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#product-info .product-related-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--gp-teal);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
}

#product-info .product-related-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 0.9rem 0.95rem;
}

#product-info .product-related-name {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

#product-info .product-related-name a {
  color: var(--gp-navy);
  text-decoration: none;
}

#product-info .product-related-name a:hover {
  color: var(--gp-coral);
}

#product-info .product-related-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

#product-info .product-related-price-current {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gp-navy);
}

#product-info .product-related-price-old {
  display: block;
  font-size: 0.75rem;
  color: var(--gp-gray-500);
  text-decoration: line-through;
}

#product-info .product-related-cart {
  flex: 0 0 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 999px;
  background: #fff;
  color: var(--gp-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

#product-info .product-related-cart:hover {
  border-color: var(--gp-navy);
  background: var(--gp-gray-50);
}

#product-info .product-related-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 999px;
  background: #fff;
  color: var(--gp-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.08);
  cursor: pointer;
}

#product-info .product-related-nav-prev {
  left: -0.35rem;
}

#product-info .product-related-nav-next {
  right: -0.35rem;
}

@media (max-width: 1199px) {
  #product-info .product-related-slide {
    flex-basis: calc(33.333% - 0.7rem);
  }
}

@media (max-width: 767px) {
  #product-info .product-related-module {
    padding: 1.25rem 0.85rem 1rem;
  }

  #product-info .product-related-slide {
    flex-basis: calc(50% - 0.5rem);
    min-width: 150px;
  }

  #product-info .product-related-nav-prev {
    left: 0;
  }

  #product-info .product-related-nav-next {
    right: 0;
  }
}

/* Peptide calculator — Beyond-style layout */
.bp-calc-page {
  --bp-teal: #16a1c5;
  --bp-teal-soft: rgba(22, 161, 197, 0.1);
  --bp-border: rgba(17, 24, 39, 0.08);
  --bp-muted: #6b7280;
  --bp-bg: var(--gp-page-bg);
  background: transparent;
  padding-bottom: 2.5rem;
}

.bp-calc-container {
  width: min(100% - 2rem, 1320px);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.bp-calc-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bp-teal);
}

.bp-calc-lead {
  margin: 0.5rem 0 0;
  color: var(--bp-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.bp-calc-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.bp-calc-sidebar,
.bp-calc-main {
  background: #fff;
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(34, 40, 47, 0.05);
}

.bp-calc-sidebar {
  padding: 0.85rem;
  max-height: calc(100svh - 178px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bp-calc-field-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.bp-calc-search-wrap {
  position: relative;
  display: block;
}

.bp-calc-search-wrap i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bp-muted);
  font-size: 0.875rem;
}

.bp-calc-search-input {
  width: 100%;
  height: 2.5rem;
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  padding: 0 0.85rem 0 2.35rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.bp-calc-search-input:focus {
  outline: none;
  border-color: var(--bp-teal);
  box-shadow: 0 0 0 4px rgba(22, 161, 197, 0.1);
}

.bp-calc-sidebar-list {
  margin-top: 0.75rem;
  overflow: auto;
  max-height: calc(100svh - 250px);
  padding-right: 0.15rem;
}

.bp-calc-sidebar-group + .bp-calc-sidebar-group {
  margin-top: 0.85rem;
}

.bp-calc-sidebar-group-title {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bp-muted);
}

.bp-calc-sidebar-items {
  display: grid;
  gap: 0.25rem;
}

.bp-calc-sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.25rem;
  border: none;
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  background: rgba(243, 244, 246, 0.8);
  color: #111827;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.bp-calc-sidebar-item:hover {
  background: var(--bp-teal-soft);
  color: var(--bp-teal);
}

.bp-calc-sidebar-item.is-active {
  background: var(--bp-teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 161, 197, 0.2);
}

.bp-calc-sidebar-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: inherit;
  opacity: 0.75;
}

.bp-calc-main-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--bp-border);
}

.bp-calc-title {
  margin: 0.25rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.125rem);
  line-height: 1;
  font-weight: 700;
  color: #111827;
}

.bp-calc-desc {
  margin: 0.5rem 0 0;
  max-width: 36rem;
  color: var(--bp-muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.bp-calc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: fit-content;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: var(--bp-teal-soft);
  color: var(--bp-teal);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.bp-calc-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.bp-calc-inputs {
  padding: 1rem;
  display: grid;
  gap: 1.25rem;
}

.bp-calc-block-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
}

.bp-calc-block-title i {
  color: var(--bp-teal);
}

.bp-calc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bp-calc-pill {
  min-height: 2.5rem;
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  padding: 0 1rem;
  background: #fff;
  color: var(--bp-muted);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.bp-calc-pill:hover {
  border-color: rgba(22, 161, 197, 0.5);
  color: #111827;
}

.bp-calc-pill.is-active {
  border-color: var(--bp-teal);
  background: var(--bp-teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 161, 197, 0.18);
}

.bp-calc-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.bp-calc-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bp-calc-number {
  width: 100%;
  height: 2.75rem;
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  padding: 0 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.bp-calc-number:focus {
  outline: none;
  border-color: var(--bp-teal);
  box-shadow: 0 0 0 4px rgba(22, 161, 197, 0.1);
}

.bp-calc-icon-btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  background: #fff;
  color: var(--bp-muted);
  cursor: pointer;
}

.bp-calc-readout {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  background: #f8fafc;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
}

.bp-calc-unit-badge {
  flex-shrink: 0;
  min-width: 3rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bp-teal-soft);
  color: var(--bp-teal);
  font-size: 0.8125rem;
  font-weight: 700;
}

.bp-calc-results {
  padding: 1rem;
  border-left: 1px solid var(--bp-border);
  background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
}

.bp-calc-result-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-muted);
}

.bp-calc-result-units {
  margin-bottom: 1rem;
}

.bp-calc-units-value {
  display: block;
  margin-top: 0.15rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1;
  font-weight: 800;
  color: #111827;
}

.bp-calc-units-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--bp-muted);
}

.bp-calc-syringe-card {
  margin-bottom: 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(22, 161, 197, 0.2);
  border-radius: 8px;
  background: rgba(22, 161, 197, 0.05);
}

.bp-calc-syringe-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.bp-calc-syringe-badge {
  display: inline-flex;
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  color: var(--bp-teal);
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(22, 161, 197, 0.12);
}

.bp-calc-syringe-image-wrap {
  overflow: hidden;
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 10px 24px rgba(34, 40, 47, 0.04);
}

.bp-calc-syringe-image {
  display: block;
  width: 100%;
  height: auto;
}

.bp-calc-syringe-track-wrap {
  margin-top: 1rem;
}

.bp-calc-syringe-track {
  position: relative;
  height: 2.25rem;
  border: 1px solid var(--bp-border);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 1px 3px rgba(17, 24, 39, 0.06);
}

.bp-calc-syringe-track-fill {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  bottom: 0.25rem;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22, 161, 197, 0.7), var(--bp-teal));
  transition: width 0.3s ease;
}

.bp-calc-syringe-marker {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  width: 0.35rem;
  height: 3rem;
  border-radius: 999px;
  background: #111827;
  box-shadow: 0 6px 18px rgba(34, 40, 47, 0.25);
  transform: translate(-50%, -50%);
  transition: left 0.3s ease;
}

.bp-calc-syringe-marker[hidden] {
  display: none;
}

.bp-calc-syringe-tick {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 1rem;
  background: rgba(17, 24, 39, 0.35);
  transform: translate(-50%, -50%);
}

.bp-calc-syringe-scale {
  position: relative;
  height: 1rem;
  margin-top: 0.5rem;
}

.bp-calc-syringe-scale span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--bp-muted);
}

.bp-calc-fill-hint {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--bp-muted);
}

.bp-calc-syringe-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--bp-muted);
}

.bp-calc-warnings {
  margin-bottom: 0.85rem;
}

.bp-calc-warning {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  background: #fffbeb;
  color: #92400e;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
}

.bp-calc-warning + .bp-calc-warning {
  margin-top: 0.5rem;
}

.bp-calc-fill-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
}

.bp-calc-result-box,
.bp-calc-formula-box {
  margin-bottom: 0.85rem;
}

.bp-calc-volume-value {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
}

.bp-calc-formula-box code {
  display: block;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.8125rem;
  white-space: normal;
  word-break: break-word;
}

.bp-calc-error {
  margin: 0;
  color: #b42318;
  font-size: 0.875rem;
}

.bp-calc-disclaimer,
.bp-calc-research {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--bp-muted);
}

#product-info .product-calculator-link {
  margin-top: 1.15rem;
}

#product-info .product-calculator-link .gp-calculator-dose-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid rgba(26, 158, 150, 0.45);
  background: #f3faf9;
  color: var(--gp-teal-dark);
  box-shadow: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

#product-info .product-calculator-link .gp-calculator-dose-btn:hover,
#product-info .product-calculator-link .gp-calculator-dose-btn:focus {
  background: #e8f4fc;
  border-color: var(--gp-teal);
  color: var(--gp-teal-dark);
  box-shadow: none;
  transform: none;
}

#product-info .product-calculator-link .gp-calculator-dose-btn i {
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (max-width: 1199px) {
  .bp-calc-shell {
    grid-template-columns: 1fr;
  }

  .bp-calc-sidebar {
    max-height: none;
  }

  .bp-calc-sidebar-list {
    max-height: 320px;
  }
}

@media (max-width: 991px) {
  .bp-calc-workspace {
    grid-template-columns: 1fr;
  }

  .bp-calc-results {
    border-left: none;
    border-top: 1px solid var(--bp-border);
  }

  .bp-calc-main-head {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .bp-calc-row-2 {
    grid-template-columns: 1fr;
  }
}

/* About page — Beyond-style layout */
.bp-about-page {
  --bp-teal: #16a1c5;
  --bp-teal-soft: rgba(22, 161, 197, 0.1);
  --bp-border: rgba(17, 24, 39, 0.08);
  --bp-muted: #6b7280;
  --bp-bg: var(--gp-page-bg);
  background: transparent;
  padding-bottom: 2.5rem;
}

.bp-about-container {
  max-width: 1320px;
  padding-top: 1rem;
}

.bp-about-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bp-teal);
}

.bp-about-hero {
  margin-bottom: 2rem;
}

.bp-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
}

.bp-about-hero-copy,
.bp-about-hero-visual,
.bp-about-benefit,
.bp-about-brand,
.bp-about-direction,
.bp-about-disclaimer {
  background: #fff;
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(34, 40, 47, 0.05);
}

.bp-about-hero-copy {
  padding: 2rem 2.25rem;
}

.bp-about-title {
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
}

.bp-about-accent {
  color: var(--bp-teal);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

.bp-about-lead {
  margin: 0 0 1.5rem;
  max-width: 42rem;
  color: var(--bp-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.bp-about-btn {
  background: var(--bp-teal);
  border-color: var(--bp-teal);
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
}

.bp-about-btn:hover {
  background: #1289a8;
  border-color: #1289a8;
}

.bp-about-hero-visual {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: linear-gradient(145deg, #eef7fb 0%, #ffffff 55%, #f4f7f9 100%);
}

.bp-about-visual-card {
  width: 100%;
  max-width: 360px;
  text-align: center;
}

.bp-about-visual-logo {
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.bp-about-visual-icons {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
}

.bp-about-visual-icons span {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  background: var(--bp-teal-soft);
  color: var(--bp-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.bp-about-section {
  margin-bottom: 2rem;
}

.bp-about-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.75fr);
  gap: 1rem 2rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.bp-about-section-head--stack {
  grid-template-columns: 1fr;
  max-width: 48rem;
}

.bp-about-section-title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: #111827;
}

.bp-about-section-lead {
  margin: 0;
  color: var(--bp-muted);
  line-height: 1.6;
}

.bp-about-benefit {
  position: relative;
  height: 100%;
  padding: 1.35rem 1.25rem 1.5rem;
}

.bp-about-benefit-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d1d5db;
}

.bp-about-benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.bp-about-benefit--teal .bp-about-benefit-icon {
  background: rgba(22, 161, 197, 0.12);
  color: #16a1c5;
}

.bp-about-benefit--blue .bp-about-benefit-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

.bp-about-benefit--green .bp-about-benefit-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.bp-about-benefit--violet .bp-about-benefit-icon {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}

.bp-about-benefit h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.bp-about-benefit p {
  margin: 0;
  color: var(--bp-muted);
  line-height: 1.55;
  font-size: 0.9375rem;
}

.bp-about-brand {
  padding: 2rem;
  margin-bottom: 2rem;
}

.bp-about-brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
}

.bp-about-brand-copy p {
  margin: 0 0 1rem;
  color: var(--bp-muted);
  line-height: 1.65;
}

.bp-about-brand-copy p:last-child {
  margin-bottom: 0;
}

.bp-about-brand-panel {
  background: linear-gradient(160deg, #eef7fb 0%, #ffffff 100%);
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}

.bp-about-brand-badge {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--bp-teal-soft);
  color: var(--bp-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bp-about-brand-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
}

.bp-about-brand-list li {
  font-weight: 600;
  color: #111827;
}

.bp-about-brand-list i {
  color: var(--bp-teal);
  margin-right: 0.35rem;
}

.bp-about-direction {
  display: flex;
  gap: 1rem;
  height: 100%;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.bp-about-direction:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 161, 197, 0.35);
  box-shadow: 0 20px 40px rgba(34, 40, 47, 0.08);
  color: inherit;
}

.bp-about-direction-icon {
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: var(--bp-teal-soft);
  color: var(--bp-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bp-about-direction h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.bp-about-direction p {
  margin: 0;
  color: var(--bp-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.bp-about-disclaimer {
  padding: 1.5rem 1.75rem;
}

.bp-about-disclaimer p:last-child {
  margin: 0.75rem 0 0;
  color: var(--bp-muted);
  line-height: 1.65;
  font-size: 0.9375rem;
}

@media (max-width: 991px) {
  .bp-about-hero-grid,
  .bp-about-brand-grid,
  .bp-about-section-head {
    grid-template-columns: 1fr;
  }

  .bp-about-hero-visual {
    min-height: 240px;
  }
}

/* Legal information pages */
.gp-legal-page #column-left,
.gp-legal-page #column-right {
  display: none;
}

.gp-legal-page #content {
  width: 100%;
  max-width: 100%;
}

.gp-legal-card {
  background: #fff;
  border: 1px solid var(--gp-gray-200);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
}

.gp-legal-card > h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gp-navy);
}

.gp-legal-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gp-navy);
  margin: 1.75rem 0 0.65rem;
}

.gp-legal-content h2:first-child {
  margin-top: 0;
}

.gp-legal-content p,
.gp-legal-content li {
  color: var(--gp-gray-500);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.gp-legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.gp-legal-content strong {
  color: var(--gp-teal-dark);
}

@media (max-width: 767px) {
  .gp-legal-card {
    padding: 1.35rem 1.15rem;
    border-radius: 12px;
  }
}

@media (max-width: 575px) {
  .bp-about-hero-copy,
  .bp-about-brand,
  .bp-about-disclaimer {
    padding: 1.25rem;
  }
}

/* --- Cart / quick checkout (Block C) --- */
#checkout-cart.gp-cart-page {
  width: min(100% - 2rem, 1200px);
  max-width: 1200px;
}

#checkout-cart.gp-cart-page #content {
  width: 100%;
}

.gp-cart-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.gp-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(380px, 100%);
  gap: 1.75rem;
  align-items: start;
}

.gp-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.gp-cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  grid-template-areas:
    "media body body"
    "media qty price"
    "media total total";
  gap: 0.35rem 1rem;
  padding: 1rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 12px;
  background: #fff;
}

.gp-cart-item__media {
  grid-area: media;
}

.gp-cart-item__thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--gp-gray-200);
}

.gp-cart-item__body {
  grid-area: body;
}

.gp-cart-item__name {
  font-weight: 600;
  color: var(--gp-gray-900);
  text-decoration: none;
}

.gp-cart-item__name:hover {
  color: var(--gp-teal);
}

.gp-cart-item__options {
  margin-top: 0.35rem;
  color: var(--gp-gray-500);
}

.gp-cart-item__qty {
  grid-area: qty;
}

.gp-cart-item__price {
  grid-area: price;
  text-align: right;
  color: var(--gp-gray-500);
  font-size: 0.875rem;
}

.gp-cart-item__total {
  grid-area: total;
  text-align: right;
  font-weight: 700;
}

.gp-cart-main__actions {
  margin-top: 1.25rem;
}

.gp-cart-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 1rem;
}

.gp-cart-panel {
  border: 1px solid var(--gp-gray-200);
  border-radius: 14px;
  padding: 1.25rem;
  background: var(--gp-gray-50);
}

.gp-cart-panel__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.gp-cart-summary-list__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--gp-gray-200);
  font-size: 0.875rem;
}

.gp-cart-summary-list__item:last-child {
  border-bottom: 0;
}

.gp-cart-summary-list__qty {
  color: var(--gp-gray-500);
}

.gp-cart-summary-list__total {
  font-weight: 600;
  white-space: nowrap;
}

.gp-cart-totals {
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--gp-gray-200);
}

.gp-cart-totals__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.9375rem;
}

.gp-cart-totals__row--grand {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--gp-gray-200);
  font-size: 1.05rem;
}

.gp-btn-order {
  background: var(--gp-teal);
  border-color: var(--gp-teal-dark);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.gp-btn-order:hover,
.gp-btn-order:focus {
  background: var(--gp-teal-dark);
  border-color: var(--gp-teal-dark);
  color: #fff;
}

@media (min-width: 768px) {
  .gp-cart-item {
    grid-template-columns: 72px minmax(0, 1fr) 120px 90px 100px;
    grid-template-areas: "media body qty price total";
    align-items: center;
  }

  .gp-cart-item__price,
  .gp-cart-item__total {
    text-align: right;
  }
}

@media (max-width: 991px) {
  .gp-cart-layout {
    grid-template-columns: 1fr;
  }

  .gp-cart-sidebar {
    position: static;
  }
}

/* --- Account (Block D) --- */
.gp-account-page #content h1,
.gp-account-page #content h2 {
  font-weight: 700;
}

.gp-account-page #content h2 {
  margin-top: 1.75rem;
  font-size: 1.1rem;
}

.gp-account-links li {
  margin-bottom: 0.45rem;
}

.gp-account-links a {
  color: var(--gp-gray-900);
  text-decoration: none;
  font-weight: 500;
}

.gp-account-links a:hover {
  color: var(--gp-teal);
}

.gp-account-menu .list-group-item {
  border-color: var(--gp-gray-200);
  font-size: 0.9375rem;
}

/* --- Product page (Block E) --- */
#product-info .gp-product-buy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

#product-info .gp-product-meta {
  color: var(--gp-gray-500);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

#product-info .gp-product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.35rem 0 0.85rem;
}

#product-info .gp-product-price .price-old {
  font-size: 1.05rem;
  color: var(--gp-gray-500);
  text-decoration: line-through;
}

#product-info .gp-product-qty-block {
  margin-top: 0.25rem;
}

#product-info .gp-product-qty-block .product-qty-group {
  flex-wrap: wrap;
}

#product-info .gp-product-qty-block #button-cart {
  flex: 1 1 160px;
}

#product-info .gp-product-dose {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid var(--gp-gray-200);
  border-radius: 12px;
  background: var(--gp-gray-50);
}

#product-info .gp-product-dose .product-dose-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gp-gray-900);
}

#product-info .gp-product-dose-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

#product-info .product-dose-select {
  max-width: 220px;
  min-width: 140px;
  border-radius: 10px;
}

#product-info .product-dose-static {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--gp-gray-200);
  font-weight: 600;
}

#product-info .gp-calculator-dose-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: var(--gp-teal);
  border: 1px solid var(--gp-teal-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}

#product-info .gp-calculator-dose-btn:hover,
#product-info .gp-calculator-dose-btn:focus {
  background: var(--gp-teal-dark);
  border-color: var(--gp-teal-dark);
  color: #fff;
}

@media (max-width: 575px) {
  #product-info .gp-product-dose-controls {
    flex-direction: column;
    align-items: stretch;
  }

  #product-info .product-dose-select,
  #product-info .gp-calculator-dose-btn {
    max-width: none;
    width: 100%;
    justify-content: center;
  }
}

/* Age / terms gate */
.gp-age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10050;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(2px);
}

html.gp-age-gate-pending .gp-age-gate {
  display: flex;
}

body.gp-age-gate-open {
  overflow: hidden;
}

.gp-age-gate__card {
  width: min(100%, 560px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.gp-age-gate__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #8b1a1a;
  text-transform: uppercase;
}

.gp-age-gate__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #1a1a1a;
}

.gp-age-gate__text:last-of-type {
  margin-bottom: 1.5rem;
}

.gp-age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  max-width: 320px;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gp-teal);
  border-radius: 8px;
  background: var(--gp-teal);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.gp-age-gate__btn:hover,
.gp-age-gate__btn:focus {
  background: var(--gp-teal-dark);
  border-color: var(--gp-teal-dark);
  color: #fff;
  outline: none;
}

.gp-age-gate__btn:active {
  transform: scale(0.98);
}

@media (max-width: 575px) {
  .gp-age-gate__card {
    padding: 1.5rem 1.15rem 1.25rem;
  }

  .gp-age-gate__text {
    font-size: 0.9rem;
  }
}
