/* Global tokens */
:root {
  --gop-pink: #ff3d9a;
  --gop-pink-deep: #f01883;
  --gop-pink-soft: #ffd7eb;
  --gop-logo-blue: #b9e7f7;
  --gop-logo-cyan: #c9f3f6;
  --gop-logo-lavender: #d8cef6;
  --gop-logo-pink: #efc2de;
  --gop-logo-purple: #c8b8ef;
  --gop-logo-gradient: linear-gradient(
    135deg,
    #9ddfff 0%,
    #b8f1ff 18%,
    #c8ccff 40%,
    #f4b6e7 66%,
    #ceb7ff 84%,
    #b89fff 100%
  );
  --gop-green: #8ecf93;
  --gop-green-deep: #5eaf76;
  --gop-yellow: #ffd54f;
  --gop-mint: #bdeee8;
  --gop-blue: #bfe6ff;
  --gop-peach: #ffd8c9;
  --gop-lavender: #ded1ff;
  --gop-cream: #fff8fc;
  --gop-white: #ffffff;
  --gop-ink: #3c2241;
  --gop-muted: #7e687f;
  --gop-line: rgba(94, 55, 88, 0.1);
  --gop-shadow: 0 18px 48px rgba(101, 50, 98, 0.12);
  --gop-shadow-strong: 0 22px 64px rgba(101, 50, 98, 0.18);
  --gop-radius-lg: 34px;
  --gop-radius-md: 24px;
  --gop-radius-sm: 18px;
}

/* MkDocs cleanup so the homepage can own the full width */
html,
body {
  background: var(--gop-cream);
  color: var(--gop-ink);
}

body::before,
.homepage::before {
  display: none;
}

body {
  overflow-x: hidden;
}

body > .container {
  max-width: none;
  margin-top: 0;
  min-height: 0;
  padding: 0;
}

.container,
.container-fluid,
.row {
  --bs-gutter-x: 0;
}

.col-md-9,
.col-md-12 {
  width: 100%;
  padding: 0;
}

/* Navbar */
.navbar.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent !important;
  box-shadow: none;
  transition: background-color 180ms ease, backdrop-filter 180ms ease, box-shadow 180ms ease;
}

.navbar.fixed-top.gop-navbar-solid,
body.gop-nav-open .navbar.fixed-top {
  background: var(--gop-logo-gradient) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(64, 21, 54, 0.18);
}

.navbar.fixed-top.gop-navbar-flash {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38),
    0 10px 28px rgba(104, 73, 145, 0.2);
  filter: saturate(1.04) brightness(1.03);
}

.navbar > .container {
  width: min(100%, 1440px);
  max-width: none;
  min-height: 96px;
  padding: 0 28px;
  align-items: center;
}

.gop-brandmark {
  margin-right: 28px;
  padding: 0;
}

.gop-brandmark img {
  width: 176px;
  max-width: 28vw;
  height: auto;
  display: block;
}

.gop-nav-list {
  gap: 4px;
  align-items: center;
}

.gop-nav-item > .nav-link,
.gop-actions-link,
.navbar .nav-link {
  border: 0;
  background: transparent;
  color: var(--gop-white) !important;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 16px 18px !important;
  border-radius: 999px;
  text-shadow: 0 2px 12px rgba(50, 16, 42, 0.18);
}

.gop-nav-item > .nav-link:hover,
.gop-nav-item > .nav-link:focus-visible,
.gop-nav-item.dropdown.show > .nav-link,
.gop-nav-item .nav-link[aria-expanded="true"] {
  background: var(--gop-pink);
  color: var(--gop-white) !important;
  text-shadow: none;
}

.gop-dropdown-menu {
  margin-top: 10px;
  border: 0;
  border-radius: 26px;
  padding: 14px;
  min-width: 230px;
  background: rgba(255, 61, 154, 0.94);
  box-shadow: var(--gop-shadow-strong);
}

.gop-dropdown-menu .dropdown-item {
  color: var(--gop-white);
  border-radius: 18px;
  padding: 12px 16px;
  font-size: 1rem;
}

.gop-dropdown-menu .dropdown-item:hover,
.gop-dropdown-menu .dropdown-item:focus,
.gop-dropdown-menu .dropdown-item.active {
  background: rgba(255, 255, 255, 0.18);
  color: var(--gop-white);
}

.gop-actions-link {
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 11px 18px !important;
}

.gop-search-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  justify-content: flex-start;
  padding: 11px 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(10px);
}

.gop-search-link i {
  font-size: 0.95rem;
}

.gop-search-link span {
  opacity: 0.96;
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: none;
  width: 30px;
  height: 2px;
  background: var(--gop-white);
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gop-white);
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* Page shell */
.gop-page-shell {
  min-height: 100vh;
}

.gop-page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 132px 24px 72px;
}

.gop-page-shell--home,
.gop-page-content--home {
  max-width: none;
  margin: 0;
  padding: 0;
}

body.gop-banner-page .gop-page-shell,
body.gop-banner-page .gop-page-content {
  max-width: none;
  margin: 0;
}

body.gop-banner-page .gop-page-content {
  padding: 0 0 72px;
}

/* Typography */
.gop-homepage {
  color: var(--gop-ink);
}

.gop-homepage h1,
.gop-homepage h2,
.gop-homepage h3 {
  font-weight: 900;
  letter-spacing: -0.04em;
}

.gop-homepage h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
  margin: 0 0 18px;
}

.gop-homepage h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1;
  margin: 0 0 12px;
}

.gop-homepage h3 {
  font-size: 1.35rem;
  line-height: 1.08;
  margin: 0 0 10px;
}

.gop-homepage p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--gop-muted);
}

.gop-eyebrow,
.gop-break__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--gop-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero */
.gop-hero {
  position: relative;
  min-height: min(100vh, 920px);
  padding: 170px 24px 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(83, 28, 67, 0.18), rgba(83, 28, 67, 0.32)),
    url("../assets/banners/glow-header-banner.png") center center / cover no-repeat;
}

.gop-hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.54), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.gop-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1200px);
  color: var(--gop-white);
  animation: gop-fade-up 700ms ease both;
}

.gop-hero__copy {
  max-width: 56ch;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.92) !important;
}

.gop-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.gop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.gop-button:hover {
  transform: translateY(-2px);
}

.gop-button--primary {
  background: var(--gop-pink);
  color: var(--gop-white);
}

.gop-button--ghost {
  border: 2px solid rgba(255, 255, 255, 0.72);
  color: var(--gop-white);
}

/* Shared sections */
.gop-section {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 88px 24px 0;
}

.gop-section--features {
  padding-bottom: 88px;
}

.gop-section__heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.gop-section__heading--row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.gop-section__heading .gop-eyebrow {
  background: var(--gop-pink-soft);
  color: var(--gop-pink-deep);
}

.gop-text-link,
.gop-card-link {
  color: var(--gop-pink-deep);
  text-decoration: none;
  font-weight: 800;
}

/* Cards */
.gop-service-grid,
.gop-product-grid,
.gop-feature-grid {
  display: grid;
  gap: 22px;
}

.gop-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gop-product-grid,
.gop-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gop-service-card,
.gop-product-card,
.gop-feature-card {
  display: block;
  background: var(--gop-white);
  border: 1px solid var(--gop-line);
  border-radius: var(--gop-radius-lg);
  box-shadow: var(--gop-shadow);
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gop-service-card:hover,
.gop-product-card:hover,
.gop-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gop-shadow-strong);
  border-color: rgba(240, 24, 131, 0.18);
}

.gop-card-media {
  min-height: 250px;
  background-color: #f7bfd7;
  background-image:
    var(--gop-card-image),
    linear-gradient(135deg, #ffcce3 0%, #f9b5d5 38%, #c7ebff 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gop-card-media--service {
  min-height: 290px;
}

.gop-card-media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.gop-card-body {
  padding: 22px 22px 24px;
}

.gop-card-body p {
  margin-bottom: 16px;
}

/* Slider */
.gop-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 20px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.gop-slider > * {
  scroll-snap-align: start;
}

.gop-slider::-webkit-scrollbar {
  height: 10px;
}

.gop-slider::-webkit-scrollbar-thumb {
  background: rgba(240, 24, 131, 0.24);
  border-radius: 999px;
}

/* Brand breaks */
.gop-break {
  width: min(100% - 48px, 1200px);
  margin: 88px auto 0;
  padding: 52px 28px;
  border-radius: 38px;
  text-align: center;
  box-shadow: var(--gop-shadow);
}

.gop-break--pink {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #ff5aaa, #ff7ca3);
}

.gop-break--green {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.28), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, #b9e7f7 0%, #c9f3f6 26%, #d8cef6 58%, #efc2de 84%, #c8b8ef 100%);
}

.gop-break h2,
.gop-break p,
.gop-break__eyebrow {
  color: var(--gop-white);
}

.gop-break p {
  max-width: 64ch;
  margin: 0 auto;
}

/* Blob cards */
.gop-blob-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gop-blob {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 20px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  color: var(--gop-ink);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: var(--gop-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gop-blob:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--gop-shadow-strong);
}

.gop-blob--pink { background: #efc2de; }
.gop-blob--peach { background: #f0cfe3; }
.gop-blob--mint { background: #c8ecdf; }
.gop-blob--blue { background: #b9e2f4; }
.gop-blob--yellow { background: #c9f3f6; }
.gop-blob--lavender { background: #d4c8f2; }

/* Feature cards */
.gop-feature-card {
  padding: 26px 22px;
}

.gop-feature-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff5aaa, #ff91c0);
  color: var(--gop-white);
  font-size: 1.6rem;
  box-shadow: 0 14px 28px rgba(240, 24, 131, 0.18);
}

/* Standard page styling for non-home pages */
body:not(.homepage):not(.gop-banner-page) .navbar.fixed-top {
  background: var(--gop-logo-gradient) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(64, 21, 54, 0.18);
}

body.gop-banner-page .navbar.fixed-top:not(.gop-navbar-solid):not(.gop-navbar-flash) {
  background: transparent !important;
  backdrop-filter: none;
  box-shadow: none;
}

body.gop-banner-page .navbar.fixed-top .nav-link,
body.gop-banner-page .navbar.fixed-top .gop-actions-link,
body.gop-banner-page .navbar.fixed-top .gop-search-link {
  color: var(--gop-white) !important;
  text-shadow: 0 3px 14px rgba(44, 21, 43, 0.38);
}

body.gop-banner-page .navbar.fixed-top .gop-search-link,
body.homepage .navbar.fixed-top .gop-search-link {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.32);
}

body:not(.homepage) .gop-page-content {
  max-width: 1080px;
}

body.gop-banner-page .gop-page-content {
  max-width: none;
}

body:not(.homepage) h1:first-child {
  margin-top: 0;
}

/* Footer */
footer.col-md-12 {
  margin-top: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.gop-footer {
  margin-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 24px;
}

.gop-footer__inner,
.gop-footer__meta {
  width: 100%;
  margin: 0 auto;
}

.gop-footer__inner {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 28px;
  padding: 40px 48px;
  border-radius: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 214, 84, 0.34), transparent 11%),
    radial-gradient(circle at 89% 20%, rgba(190, 238, 232, 0.28), transparent 12%),
    radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(135deg, #ff4f9a 0%, #ff75b2 48%, #ffa6c8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
}

.gop-footer__inner::before,
.gop-footer__inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.95;
}

.gop-footer__inner::before {
  width: 220px;
  height: 18px;
  background: #fff3a8;
  right: 140px;
  bottom: 42px;
  transform: rotate(-18deg);
}

.gop-footer__inner::after {
  width: 120px;
  height: 120px;
  border: 10px solid rgba(255, 255, 255, 0.18);
  left: -30px;
  bottom: -36px;
}

.gop-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.gop-footer__logo {
  display: inline-flex;
  width: fit-content;
  padding: 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(106, 29, 74, 0.16);
}

.gop-footer__logo img {
  width: 170px;
  height: auto;
  display: block;
}

.gop-footer__copy {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.08rem !important;
}

.gop-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.gop-footer__group h3 {
  margin: 0 0 14px;
  color: var(--gop-white);
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
  padding-left: 18px;
}

.gop-footer__group h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff3a8;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.gop-footer__group a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.gop-footer__group a:hover {
  color: var(--gop-white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.18);
}

.gop-footer__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.gop-footer__socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.gop-footer__socials i {
  font-size: 1.05rem;
}

.gop-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 24px 0;
}

.gop-footer__meta p {
  color: var(--gop-muted);
  font-size: 0.95rem;
}

.gop-footer__meta a {
  color: var(--gop-pink-deep);
  font-weight: 800;
  text-decoration: none;
}

.gop-footer__meta a:hover {
  text-decoration: underline;
}

/* Search modal */
#mkdocs_search_modal .modal-dialog {
  max-width: min(1120px, calc(100vw - 24px));
  margin-top: 12px;
}

#mkdocs_search_modal .modal-content {
  overflow: hidden;
  border: 2px solid rgba(64, 128, 126, 0.28);
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(28, 39, 48, 0.22);
}

#mkdocs_search_modal .modal-header,
#mkdocs_search_modal .modal-footer,
#mkdocs_search_modal .modal-body > p:first-child {
  display: none;
}

#mkdocs_search_modal .modal-body {
  padding: 0;
  background: #ffffff;
}

#mkdocs_search_modal form {
  margin: 0;
}

#mkdocs_search_modal .form-group {
  position: relative;
}

#mkdocs_search_modal .form-group::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  color: #9ca8ad;
  font-size: 1.3rem;
  z-index: 1;
}

#mkdocs-search-query {
  min-height: 74px;
  padding: 0 24px 0 68px;
  border: 0;
  border-bottom: 2px solid rgba(64, 128, 126, 0.32);
  border-radius: 0;
  box-shadow: none !important;
  font-size: 1.85rem;
  color: var(--gop-ink);
}

#mkdocs-search-query::placeholder {
  color: #c7ced3;
}

#mkdocs-search-results {
  min-height: 240px;
  max-height: min(70vh, 760px);
  overflow-y: auto;
  background: #ffffff;
}

#mkdocs-search-results #mkdocs-search-results-title,
#mkdocs-search-results > p:first-child {
  padding: 18px 24px;
  margin: 0;
  background: #f6f6f6;
  color: #6d6d6d;
}

#mkdocs-search-results article,
#mkdocs-search-results .search-result,
#mkdocs-search-results .search-results__hit {
  padding: 24px;
  border-bottom: 1px solid rgba(60, 34, 65, 0.08);
}

#mkdocs-search-results a {
  color: var(--gop-ink);
  text-decoration: none;
}

#mkdocs-search-results p {
  color: var(--gop-muted);
}

/* Animation */
@keyframes gop-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar.fixed-top,
  .navbar.fixed-top.gop-navbar-solid,
  body.gop-nav-open .navbar.fixed-top,
  body:not(.homepage) .navbar.fixed-top {
    background: rgba(255, 248, 252, 0.98) !important;
    backdrop-filter: blur(12px);
  }

  .navbar > .container {
    min-height: 82px;
    padding: 0 18px;
  }

  .gop-brandmark img {
    width: 142px;
    max-width: 46vw;
  }

  .navbar .nav-link,
  .gop-nav-item > .nav-link,
  .gop-actions-link,
  .gop-search-link {
    color: var(--gop-ink) !important;
    text-shadow: none;
  }

  .gop-search-link {
    min-width: 0;
    background: rgba(255, 61, 154, 0.08) !important;
    border-color: rgba(60, 34, 65, 0.12);
  }

  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    background: var(--gop-ink);
  }

  #navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: min(84vw, 360px);
    height: 100vh;
    padding: 94px 22px 30px;
    background: rgba(255, 248, 252, 0.99);
    box-shadow: var(--gop-shadow-strong);
    overflow-y: auto;
    transform: translateX(-102%);
    transition: transform 220ms ease;
    z-index: 1040;
  }

  #navbar-collapse.show {
    transform: translateX(0);
  }

  #navbar-collapse .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .gop-nav-item > .nav-link:hover,
  .gop-nav-item > .nav-link:focus-visible,
  .gop-nav-item.dropdown.show > .nav-link,
  .gop-nav-item .nav-link[aria-expanded="true"] {
    color: var(--gop-white) !important;
    background: var(--gop-pink);
  }

  .gop-dropdown-menu {
    position: static !important;
    margin-top: 8px;
    margin-bottom: 10px;
    min-width: 100%;
  }

  .gop-actions-link {
    border-color: rgba(60, 34, 65, 0.15);
  }

  .gop-hero {
    min-height: 82vh;
    padding: 138px 18px 60px;
    align-items: end;
  }

  body.gop-banner-page .gop-page-content {
    padding: 0 0 56px;
  }

  .gop-section,
  .gop-break {
    width: 100%;
  }

  .gop-section {
    padding: 64px 18px 0;
  }

  .gop-break {
    margin-top: 64px;
    border-radius: 30px;
    padding: 42px 18px;
  }

  .gop-section__heading--row {
    flex-direction: column;
    align-items: start;
  }

  .gop-service-grid,
  .gop-product-grid,
  .gop-feature-grid,
  .gop-blob-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gop-footer {
    padding: 0 0 18px;
  }

  .gop-footer__inner {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    border-radius: 0;
  }

  .gop-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gop-footer__meta {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .gop-feature-grid,
  .gop-blob-grid {
    grid-template-columns: 1fr;
  }

  .gop-service-grid,
  .gop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .gop-slider {
    grid-auto-columns: minmax(82vw, 82vw);
  }

  .gop-card-media {
    min-height: 136px;
  }

  .gop-card-media--service {
    min-height: 150px;
  }

  .gop-card-body {
    padding: 16px 14px 18px;
  }

  .gop-card-body h3 {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  }

  .gop-card-body p {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .gop-card-link {
    font-size: 0.95rem;
  }

  .gop-footer__nav {
    grid-template-columns: 1fr;
  }
}

/* Collection pages */
.collection-page {
  padding-bottom: 72px;
}

.collection-header {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: min(100vh, 920px);
  overflow: hidden;
  background-color: #f5dcec;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.collection-header__overlay {
  display: none;
}

.collection-header__content {
  display: none;
}

.collection-header--image-only {
  display: block;
}

.product-grid-section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 56px 24px 0;
}

.gop-spotlight-section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 56px 24px 0;
  display: flex;
  justify-content: center;
}

.gop-spotlight-card {
  display: block;
  width: min(100%, 520px);
  overflow: hidden;
  border-radius: 28px;
  background: var(--gop-white);
  box-shadow: 0 24px 56px rgba(92, 40, 88, 0.18);
}

.gop-spotlight-link {
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gop-spotlight-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 64px rgba(92, 40, 88, 0.22);
}

.gop-spotlight-card img {
  width: 100%;
  display: block;
}

.gop-spotlight-caption {
  display: block;
  padding: 16px 18px 18px;
  text-align: center;
  color: var(--gop-pink-deep);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.5;
  background: linear-gradient(135deg, rgba(255, 61, 154, 0.08), rgba(185, 231, 247, 0.18));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--gop-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.product-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #ffe0f0, #d8f4ff);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__body {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 18px 16px 20px;
}

.product-card__body strong {
  color: var(--gop-ink);
  font-size: 1rem;
  line-height: 1.3;
}

.product-card__description {
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--gop-muted);
}

.product-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.product-card__body span:last-child {
  color: var(--gop-pink-deep);
  font-weight: 800;
}

.lightbox-modal[hidden] {
  display: none;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.lightbox-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 13, 31, 0.62);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 960px);
  margin: min(9vh, 72px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  background: var(--gop-white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.lightbox-content__media {
  min-height: 420px;
  background: linear-gradient(135deg, #ffe3f2, #d6f1ff);
}

.lightbox-content__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-content__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px 28px 28px;
}

.lightbox-content__body h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.lightbox-price {
  color: var(--gop-pink-deep) !important;
  font-weight: 900;
  font-size: 1.15rem !important;
}

.lightbox-description {
  color: var(--gop-muted) !important;
}

.lightbox-actions,
.product-detail__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.lightbox-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.lightbox-button:hover {
  transform: translateY(-2px);
}

.lightbox-button--primary {
  background: var(--gop-pink);
  color: var(--gop-white);
}

.lightbox-button--secondary {
  background: rgba(255, 61, 154, 0.12);
  color: var(--gop-pink-deep);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gop-ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.product-detail {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.product-detail__media {
  background: var(--gop-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.product-detail__media img {
  width: 100%;
  display: block;
}

.product-gallery {
  position: relative;
  background: var(--gop-white);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(88, 42, 88, 0.14);
  overflow: hidden;
}

.product-gallery__viewport {
  overflow: hidden;
  background: linear-gradient(135deg, #fff0f7, #ecf7ff);
}

.product-gallery__track {
  display: flex;
  transition: transform 220ms ease;
  will-change: transform;
}

.product-gallery__slide {
  flex: 0 0 100%;
  aspect-ratio: 1 / 1;
}

.product-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
}

.product-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gop-ink);
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(63, 37, 63, 0.14);
  cursor: pointer;
  z-index: 1;
}

.product-gallery__arrow:hover {
  transform: translateY(-50%) scale(1.03);
}

.product-gallery__arrow--prev {
  left: 16px;
}

.product-gallery__arrow--next {
  right: 16px;
}

.product-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px 18px;
  background: var(--gop-white);
}

.product-gallery__dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(126, 104, 127, 0.24);
  cursor: pointer;
}

.product-gallery__dot.is-active {
  background: var(--gop-pink);
}

.product-detail__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 61, 154, 0.12);
  color: var(--gop-pink-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-detail__price {
  color: var(--gop-pink-deep) !important;
  font-size: 1.2rem !important;
  font-weight: 900;
}

.product-detail__description {
  max-width: 58ch;
}

body.gop-modal-open {
  overflow: hidden;
}

@media (max-width: 1199.98px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-header {
    min-height: 72vh;
  }
}

@media (max-width: 767.98px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-grid-section {
    padding: 26px 14px 0;
  }

  .gop-spotlight-section {
    padding: 26px 14px 0;
  }

  .collection-header {
    min-height: 62vh;
  }

  .lightbox-content,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .lightbox-content {
    width: min(94vw, 94vw);
    margin-top: 46px;
  }

  #mkdocs_search_modal .modal-dialog {
    max-width: calc(100vw - 10px);
    margin-top: 8px;
  }

  #mkdocs-search-query {
    min-height: 62px;
    padding-left: 58px;
    font-size: 1.35rem;
  }

  .lightbox-content__media {
    min-height: 240px;
  }

  .product-gallery__arrow {
    width: 44px;
    height: 44px;
  }
}
