/* ==========================================================
   GLOBAL
   ========================================================== */

:root {
  --gv-text: #121212;
  --gv-hover: #334fb4;

  --gv-glass-background: rgba(255, 255, 255, 0.9);
  --gv-blur: 14px;
  --gv-border-radius: 50px;
  --gv-border: 1px solid rgba(255, 255, 255, 0.35);
  --gv-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);

  --gv-dropdown-background: rgba(255, 255, 255, 0.95);
  --gv-dropdown-hover: rgba(51, 79, 180, 0.08);

  --gv-desktop-width: 95%;
  --gv-max-width: 1600px;
  --gv-top-spacing: 20px;

  --gv-logo-height: 45px;
  --gv-mobile-logo-height: 40px;

  --gv-font-size: 16px;
  --gv-font-weight: 500;
  --gv-nav-spacing: 24px;

  --gv-icon-size: 22px;
  --gv-icon-spacing: 16px;

  --gv-mobile-menu-background: #ffffff;
  --gv-badge-background: #334fb4;
  --gv-badge-color: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--gv-text);
  background: #ffffff;
  overflow-x: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* ==========================================================
   NAVBAR
   ========================================================== */

.gv-frosted-header {
  display: block;
  position: fixed;
  top: var(--gv-top-spacing);
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: var(--gv-desktop-width);
  max-width: var(--gv-max-width);
  z-index: 1000;
  padding: 0;
  opacity: 1;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
  will-change: transform, opacity;
}

.gv-frosted-header.hide-header {
  transform: translateX(-50%) translateY(-140%);
  opacity: 0;
  pointer-events: none;
}

.gv-frosted-header.show-header {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.gv-frosted-header.show-header .gv-frosted-header__container {
  animation: gvHeaderDrop 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes gvHeaderDrop {
  0% {
    transform: translateY(-16px) scale(0.985);
    opacity: 0;
  }

  60% {
    transform: translateY(3px) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.gv-frosted-header__container {
  background: var(--gv-glass-background);
  backdrop-filter: blur(var(--gv-blur));
  -webkit-backdrop-filter: blur(var(--gv-blur));
  border-radius: var(--gv-border-radius);
  box-shadow: var(--gv-shadow);
  border: var(--gv-border);
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.gv-frosted-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: max-content;
}

.gv-frosted-header__logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.gv-frosted-header__logo img {
  display: block;
  max-height: var(--gv-logo-height);
  width: auto;
  object-fit: contain;
}

.gv-frosted-header__brand {
  color: var(--gv-text);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.gv-frosted-header__nav {
  display: flex;
  align-items: center;
  gap: var(--gv-nav-spacing);
  flex-grow: 1;
  justify-content: center;
}

.gv-frosted-header__nav-item {
  position: relative;
}

.gv-frosted-header__nav-link {
  color: var(--gv-text);
  text-decoration: none;
  font-size: var(--gv-font-size);
  font-weight: var(--gv-font-weight);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.gv-frosted-header__nav-link:hover,
.gv-frosted-header__nav-link:focus-visible {
  color: var(--gv-hover);
  background-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

.gv-frosted-header__dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.gv-frosted-header__nav-item:hover .gv-frosted-header__dropdown-arrow,
.gv-frosted-header__nav-item:focus-within .gv-frosted-header__dropdown-arrow {
  transform: rotate(180deg);
}

.gv-frosted-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--gv-dropdown-background);
  backdrop-filter: blur(var(--gv-blur));
  -webkit-backdrop-filter: blur(var(--gv-blur));
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.gv-frosted-header__nav-item:hover .gv-frosted-header__dropdown,
.gv-frosted-header__nav-item:focus-within .gv-frosted-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gv-frosted-header__dropdown-link {
  color: var(--gv-text);
  text-decoration: none;
  padding: 13px 16px;
  display: block;
  font-size: var(--gv-font-size);
  font-weight: var(--gv-font-weight);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  line-height: 1.3;
}

.gv-frosted-header__dropdown-link:hover,
.gv-frosted-header__dropdown-link:focus-visible {
  background-color: var(--gv-dropdown-hover);
  color: var(--gv-hover);
  outline: none;
}

.gv-frosted-header__icons {
  display: flex;
  align-items: center;
  gap: var(--gv-icon-spacing);
  flex-shrink: 0;
}

.gv-frosted-header__icon-link {
  color: var(--gv-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--gv-icon-size);
  height: var(--gv-icon-size);
  transition:
    color 0.3s ease,
    transform 0.2s ease;
  position: relative;
}

.gv-frosted-header__icon-link:hover,
.gv-frosted-header__icon-link:focus-visible {
  color: var(--gv-hover);
  transform: translateY(-1px);
  outline: none;
}

.gv-frosted-header__icon-link svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gv-frosted-header__cart-badge {
  position: absolute;
  top: -7px;
  right: -8px;
  background-color: var(--gv-badge-background);
  color: var(--gv-badge-color);
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.gv-frosted-header__cart-badge[hidden] {
  display: none;
}

.gv-frosted-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gv-text);
  cursor: pointer;
  padding: 8px;
}

.gv-frosted-header__mobile-toggle svg {
  width: 26px;
  height: 26px;
  display: block;
}

.gv-frosted-header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--gv-mobile-menu-background);
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.gv-frosted-header__mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gv-frosted-header__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

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

.gv-frosted-header__mobile-close svg {
  width: 26px;
  height: 26px;
  display: block;
}

.gv-frosted-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gv-frosted-header__mobile-nav-link {
  color: var(--gv-text);
  text-decoration: none;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
}

.gv-frosted-header__mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--gv-text);
  text-align: left;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  font-family: inherit;
}

.gv-frosted-header__mobile-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.gv-frosted-header__mobile-dropdown-toggle.active svg {
  transform: rotate(180deg);
}

.gv-frosted-header__mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.gv-frosted-header__mobile-dropdown.active {
  max-height: 500px;
}

.gv-frosted-header__mobile-dropdown-link {
  color: var(--gv-text);
  text-decoration: none;
  padding: 12px 0 12px 20px;
  display: block;
  font-size: 16px;
  opacity: 0.82;
}

.gv-frosted-header__mobile-icons {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}


/* ==========================================================
   HERO BANNER SLIDER
   ========================================================== */

.gv-hero-slider {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #f7f7f7;
  margin-top: 70px;
}

.gv-hero-slider__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gv-hero-slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gv-hero-slider__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  overflow: hidden;
}

.gv-hero-slider__link,
.gv-hero-slider__slide picture {
  display: block;
  width: 100%;
}

.gv-hero-slider__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

/* Circular white arrows similar to reference */
.gv-hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2a2a2a;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gv-hero-slider__arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

.gv-hero-slider__arrow:focus-visible {
  outline: 2px solid #334fb4;
  outline-offset: 3px;
}

.gv-hero-slider__arrow svg {
  width: 22px;
  height: 22px;
}

.gv-hero-slider__arrow--prev {
  left: 24px;
}

.gv-hero-slider__arrow--next {
  right: 24px;
}

.gv-hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.gv-hero-slider__dot {
  appearance: none;
  -webkit-appearance: none;
  width: 9px;
  height: 9px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.55;
  cursor: pointer;
  transition:
    width 0.25s ease,
    opacity 0.25s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.gv-hero-slider__dot.active {
  width: 24px;
  opacity: 1;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media screen and (max-width: 1120px) and (min-width: 991px) {
  .gv-frosted-header__nav {
    gap: 13px;
  }

  .gv-frosted-header__nav-link {
    font-size: 15px;
    padding: 8px;
  }
}


/* ==========================================================
   MOBILE / TABLET NAVIGATION
   ========================================================== */

@media screen and (max-width: 990px) {
  .gv-frosted-header {
    width: calc(100% - 32px);
    padding: 0;
    top: 12px;
  }

  .gv-frosted-header__container {
    padding: 12px 18px;
    gap: 14px;
  }

  .gv-frosted-header__nav,
  .gv-frosted-header__icons {
    display: none;
  }

  .gv-frosted-header__mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .gv-frosted-header__mobile-menu {
    display: block;
  }

  .gv-frosted-header__logo img {
    max-height: var(--gv-mobile-logo-height);
  }
}


/* ==========================================================
   MOBILE HERO
   Uses the mobile image selected by the <picture> source.
   ========================================================== */

@media screen and (max-width: 749px) {
  .gv-hero-slider__arrow {
    width: 38px;
    height: 38px;
  }

  .gv-hero-slider__arrow svg {
    width: 18px;
    height: 18px;
  }

  .gv-hero-slider__arrow--prev {
    left: 10px;
  }

  .gv-hero-slider__arrow--next {
    right: 10px;
  }

  .gv-hero-slider__dots {
    bottom: 10px;
    gap: 6px;
  }

  .gv-hero-slider__dot {
    width: 7px;
    height: 7px;
  }

  .gv-hero-slider__dot.active {
    width: 19px;
  }
}

@media screen and (max-width: 420px) {
  .gv-frosted-header {
    width: calc(100% - 20px);
    top: 10px;
  }

  .gv-frosted-header__container {
    padding: 10px 14px;
  }

  .gv-frosted-header__mobile-menu {
    padding: 18px;
  }
}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  .gv-frosted-header,
  .gv-frosted-header__container,
  .gv-frosted-header__dropdown,
  .gv-frosted-header__dropdown-arrow,
  .gv-frosted-header__mobile-dropdown,
  .gv-frosted-header__mobile-dropdown-toggle svg,
  .gv-hero-slider__track,
  .gv-hero-slider__dot,
  .gv-hero-slider__arrow {
    animation: none !important;
    transition: none !important;
  }
}




/* ==========================================================
   SECTION 3 — PRODUCT + INGREDIENTS
   ========================================================== */

.gv-ingredients-section {
  width: 100%;
  background: #ffffff;
  padding: 70px 0 82px;
  overflow: hidden;
}

.gv-ingredients-section__container {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 34px;
}

.gv-ingredients-layout {
  display: flex;
  align-items: stretch;
  gap: 24px;
}


/* FIXED PRODUCT CARD */

.gv-product-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.025);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.gv-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.gv-product-card__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 17px;
  background: transparent;
  margin-bottom: 24px;
}

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

.gv-product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gv-product-card__title {
  margin: 0 0 14px;
  color: #121212;
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gv-product-card__description {
  margin: 0 0 26px;
  color: rgba(18, 18, 18, 0.82);
  font-size: clamp(14px, 1.02vw, 18px);
  line-height: 1.52;
  font-weight: 400;
  flex: 1;
}

.gv-product-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 13px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 500;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.gv-product-card__button:hover {
  background: #202020;
  transform: translateY(-1px);
}


/* INGREDIENT SLIDER */

.gv-ingredient-slider {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  align-self: center;
  padding: 4px 0 40px;
  overflow: visible;
}

.gv-ingredient-slider__viewport {
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.gv-ingredient-slider__track {
  display: flex;
  gap: 24px;
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s ease;
  will-change: transform;
  touch-action: pan-y;
}

.gv-ingredient-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.gv-ingredient-card {
  width: 100%;
  background: transparent;
  text-align: center;
  transition: transform 0.4s ease;
}

.gv-ingredient-card:hover {
  transform: translateY(-3px);
}

.gv-ingredient-card__image-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  background: #f1f1f1;
  border: 18px solid #f1f1f1;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.035);
  margin-bottom: 16px;
}

.gv-ingredient-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gv-ingredient-card__info {
  text-align: center;
  padding: 0 8px;
}

.gv-ingredient-card__title {
  margin: 0 0 8px;
  color: #111111;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.25;
  font-weight: 700;
}

.gv-ingredient-card__description {
  margin: 0;
  color: rgba(18, 18, 18, 0.80);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.35;
  font-weight: 400;
}


/* NAVIGATION ARROWS */

.gv-ingredient-slider__arrow {
  position: absolute;
  top: 43%;
  z-index: 10;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
  transform: translateY(-50%);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gv-ingredient-slider__arrow:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.11);
}

.gv-ingredient-slider__arrow svg {
  width: 22px;
  height: 22px;
}

.gv-ingredient-slider__arrow--prev {
  left: -28px;
}

.gv-ingredient-slider__arrow--next {
  right: -28px;
}


/* PAGINATION */

.gv-ingredient-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.gv-ingredient-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #222222;
  opacity: 0.24;
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.gv-ingredient-slider__dot.active {
  opacity: 0.95;
  transform: scale(1.1);
}


/* TABLET */

@media screen and (max-width: 1180px) {
  .gv-ingredients-section__container {
    padding: 0 24px;
  }

  .gv-product-card {
    flex-basis: calc((100% - 48px) / 3);
  }

  .gv-ingredient-slide {
    flex-basis: calc((100% - 24px) / 2);
  }
}


/* MOBILE: product card on top, ingredient swiper below */

@media screen and (max-width: 989px) {
  .gv-ingredients-section {
    padding: 34px 0 48px;
  }

  .gv-ingredients-section__container {
    padding: 0 14px;
  }

  .gv-ingredients-layout {
    flex-direction: column;
    gap: 18px;
  }

  .gv-product-card {
    width: 100%;
    flex: none;
    padding: 16px;
    border-radius: 20px;
  }

  .gv-product-card__image-wrap {
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .gv-product-card__title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .gv-product-card__description {
    font-size: 13px;
    line-height: 1.48;
    margin-bottom: 18px;
  }

  .gv-product-card__button {
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
  }

  .gv-ingredient-slider {
    width: 100%;
    padding-bottom: 34px;
  }

  .gv-ingredient-slider__track {
    gap: 14px;
  }

  .gv-ingredient-slide {
    flex-basis: 100%;
  }

  .gv-ingredient-card__image-frame {
    border-width: 9px;
    border-radius: 16px;
    margin-bottom: 10px;
  }

  .gv-ingredient-card__title {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .gv-ingredient-card__description {
    font-size: 12px;
  }

  .gv-ingredient-slider__arrow {
    display: none;
  }

  .gv-ingredient-slider__dots {
    bottom: 2px;
  }
}


/* Very small phones */

@media screen and (max-width: 420px) {
  .gv-ingredients-section__container {
    padding: 0 10px;
  }

  .gv-product-card {
    padding: 14px;
  }
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  .gv-product-card,
  .gv-product-card__button,
  .gv-ingredient-slider__track,
  .gv-ingredient-card,
  .gv-ingredient-slider__arrow,
  .gv-ingredient-slider__dot {
    transition: none !important;
  }
}


/* ==========================================================
   SECTION 4 — SAME SYSTEM AS SECTION 3
   ========================================================== */

.gv-ingredients-section--four {
  padding-top: 42px;
}


/* ==========================================================
   SECTION 5 — INFINITE MARQUEE
   Reference gradient sampled from supplied screenshot:
   left  rgb(19, 76, 192)
   mid   rgb(122, 82, 177)
   right rgb(193, 73, 95)
   ========================================================== */

.gv-marquee-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgb(19, 76, 192) 0%,
    rgb(82, 79, 184) 32%,
    rgb(122, 82, 177) 50%,
    rgb(160, 79, 143) 72%,
    rgb(193, 73, 95) 100%
  );
}

.gv-marquee {
  width: 100%;
  height: 84px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gv-marquee__track {
  width: max-content;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  animation: gvMarqueeScroll 24s linear infinite;
  will-change: transform;
}

.gv-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.gv-marquee__item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;

  color: #f5eddc;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.025em;

  padding: 0 31px;
}

@keyframes gvMarqueeScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Keep the motion continuous even when hovering */
.gv-marquee:hover .gv-marquee__track {
  animation-play-state: running;
}


/* Tablet */
@media screen and (max-width: 990px) {
  .gv-marquee {
    height: 58px;
  }

  .gv-marquee__item {
    font-size: 15px;
    padding: 0 23px;
  }

  .gv-marquee__track {
    animation-duration: 20s;
  }
}


/* Mobile — compact strip matching supplied mobile reference */
@media screen and (max-width: 749px) {
  .gv-marquee {
    height: 42px;
  }

  .gv-marquee__item {
    font-size: 11px;
    font-weight: 800;
    padding: 0 20px;
    letter-spacing: -0.02em;
  }

  .gv-marquee__track {
    animation-duration: 17s;
  }
}


/* Very narrow phones */
@media screen and (max-width: 390px) {
  .gv-marquee {
    height: 40px;
  }

  .gv-marquee__item {
    font-size: 10px;
    padding: 0 17px;
  }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .gv-marquee__track {
    animation-duration: 60s;
  }
}


/* ==========================================================
   SECTION 6 — TRY IT, FEEL IT
   ========================================================== */

.gv-feel-section {
  width: 100%;
  background: #ffffff;
  padding: 68px 0 84px;
  overflow: hidden;
}

.gv-feel-section__container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 40px;
}

.gv-feel-section__header {
  text-align: center;
  max-width: 1260px;
  margin: 0 auto 58px;
}

.gv-feel-section__title {
  margin: 0 0 20px;
  color: #0d0d0d;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.gv-feel-section__subtitle {
  max-width: 1240px;
  margin: 0 auto;
  color: #5c5c5c;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.45;
  font-weight: 400;
}

.gv-feel-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  gap: 58px;
  align-items: start;
}


/* ==========================================================
   LEFT MOSAIC
   ========================================================== */

.gv-feel-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 102px 106px 106px 103px 103px;
  gap: 16px;
  min-width: 0;
}

.gv-feel-feature,
.gv-feel-mosaic__image {
  overflow: hidden;
  border-radius: 20px;
}

.gv-feel-feature {
  background: #d6f3e6;
  color: #176c54;
  display: flex;
  align-items: center;
  padding: 20px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
}

.gv-feel-feature--immunity {
  grid-column: 1;
  grid-row: 1;
}

.gv-feel-feature--weight {
  grid-column: 2;
  grid-row: 1;
}

.gv-feel-mosaic__image--waist {
  grid-column: 3;
  grid-row: 1 / 3;
}

.gv-feel-mosaic__image--running {
  grid-column: 1;
  grid-row: 2 / 4;
}

.gv-feel-mosaic__image--skin {
  grid-column: 2;
  grid-row: 2 / 4;
}

.gv-feel-feature--energy {
  grid-column: 3;
  grid-row: 3;
}

.gv-feel-mosaic__image--gym {
  grid-column: 1;
  grid-row: 4;
}

.gv-feel-feature--gut {
  grid-column: 2;
  grid-row: 4;
}

.gv-feel-mosaic__image--focus {
  grid-column: 3;
  grid-row: 4 / 6;
}

.gv-feel-feature--stress {
  grid-column: 1 / 3;
  grid-row: 5;
}

.gv-feel-mosaic__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================
   RIGHT BENEFIT CARDS
   ========================================================== */

.gv-feel-benefits {
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.gv-feel-benefits__viewport {
  height: 610px;
  overflow: hidden;
  border-radius: 24px;
}

.gv-feel-benefits__track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gv-feel-benefit-card {
  min-height: 154px;
  flex: 0 0 154px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  background: #eef8f2;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.025);
}

.gv-feel-benefit-card__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gv-feel-benefit-card__icon img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  border-radius: 50%;
}

.gv-feel-benefit-card__content {
  min-width: 0;
}

.gv-feel-benefit-card__title {
  margin: 0 0 10px;
  color: #111111;
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.15;
  font-weight: 700;
}

.gv-feel-benefit-card__text {
  margin: 0;
  color: #5e5e5e;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.45;
  font-weight: 400;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media screen and (max-width: 1100px) {
  .gv-feel-section__container {
    padding: 0 24px;
  }

  .gv-feel-section__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gv-feel-mosaic {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .gv-feel-benefits {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media screen and (max-width: 749px) {
  .gv-feel-section {
    padding: 46px 0 56px;
  }

  .gv-feel-section__container {
    padding: 0 12px;
  }

  .gv-feel-section__header {
    margin-bottom: 32px;
  }

  .gv-feel-section__title {
    margin-bottom: 16px;
    font-size: 27px;
  }

  .gv-feel-section__subtitle {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.35;
  }

  .gv-feel-section__layout {
    gap: 30px;
  }

  .gv-feel-mosaic {
    grid-template-rows: 53px 70px 70px 54px 54px;
    gap: 8px;
  }

  .gv-feel-feature,
  .gv-feel-mosaic__image {
    border-radius: 14px;
  }

  .gv-feel-feature {
    padding: 10px 11px;
    font-size: 10px;
    line-height: 1.15;
  }

  .gv-feel-benefits__viewport {
    height: 420px;
    border-radius: 16px;
  }

  .gv-feel-benefits__track {
    gap: 14px;
  }

  .gv-feel-benefit-card {
    min-height: 122px;
    flex-basis: 122px;
    gap: 13px;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .gv-feel-benefit-card__icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .gv-feel-benefit-card__title {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .gv-feel-benefit-card__text {
    font-size: 11px;
    line-height: 1.35;
  }
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  .gv-feel-benefits__track {
    transition-duration: 0.01ms !important;
  }
}


/* ==========================================================
   SECTION 7 — DAILY PROTEIN ROUTINE
   ========================================================== */

.gv-routine-section {
  width: 100%;
  background: #f7f8fc;
  padding: 76px 0 58px;
  overflow: hidden;
}

.gv-routine-section__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 52px;
}


/* HEADER */

.gv-routine-header {
  text-align: center;
  margin-bottom: 54px;
}

.gv-routine-header__eyebrow {
  color: #171d68;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.gv-routine-header__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.gv-routine-header__line {
  width: 100px;
  height: 1px;
  background: #4f92fb;
  flex: 0 0 100px;
}

.gv-routine-header__title {
  margin: 0;
  color: #1c2067;
  font-size: clamp(46px, 5vw, 60px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.gv-routine-header__subtitle {
  margin: 24px 0 0;
  color: #555c7d;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
}


/* CARDS */

.gv-routine-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 48px;
}

.gv-routine-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 53px 20px 24px;
  box-shadow: 0 18px 45px rgba(26, 30, 88, 0.08);
  min-width: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gv-routine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(26, 30, 88, 0.12);
}

.gv-routine-card__icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.gv-routine-card__time {
  margin: 0 0 8px;
  color: #12195f;
  text-align: center;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.gv-routine-card__tagline {
  margin: 0 0 19px;
  text-align: center;
  color: #626887;
  font-size: 12px;
  line-height: 1.3;
}

.gv-routine-card__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 13px;
  margin-bottom: 15px;
  background: #eeeeee;
}

.gv-routine-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gv-routine-card:hover .gv-routine-card__image {
  transform: scale(1.025);
}

.gv-routine-card__product {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  margin-bottom: 10px;
}

.gv-routine-card__product-thumb {
  width: 34px;
  height: 40px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gv-routine-card__product-thumb img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gv-routine-card__product-name {
  color: #171a65;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
}

.gv-routine-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.gv-routine-card__features li {
  position: relative;
  padding-left: 17px;
  color: #5a6080;
  font-size: 12px;
  line-height: 1.25;
}

.gv-routine-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4b91ff;
  font-weight: 700;
}


/* SUMMARY */

.gv-routine-summary {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 34px 24px;
  box-shadow: 0 8px 30px rgba(28, 32, 103, 0.035);
}

.gv-routine-summary__label {
  color: #152066;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2.2px;
  margin-bottom: 0;
}

.gv-routine-summary__equation {
  margin-top: -15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.gv-routine-summary__item {
  text-align: center;
  min-width: 88px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #343c68;
  font-size: 10px;
}

.gv-routine-summary__item-name {
  color: #67708e;
}

.gv-routine-summary__item strong {
  color: #141c63;
  font-size: 10px;
  font-weight: 600;
}

.gv-routine-summary__operator {
  color: #438ef4;
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
}

.gv-routine-summary__total {
  min-width: 190px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gv-routine-summary__total strong {
  color: #4d93f5;
  font-size: 29px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.gv-routine-summary__total span {
  color: #5f6684;
  font-size: 10px;
}

.gv-routine-summary__footnote {
  margin: 28px 0 0;
  text-align: center;
  color: #9298aa;
  font-size: 9px;
  line-height: 1.4;
}


/* TABLET */

@media screen and (max-width: 1000px) {
  .gv-routine-section__container {
    padding: 0 28px;
  }

  .gv-routine-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .gv-routine-summary__label {
    margin-bottom: 20px;
  }

  .gv-routine-summary__equation {
    margin-top: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* MOBILE — matches supplied stacked reference */

@media screen and (max-width: 749px) {
  .gv-routine-section {
    padding: 42px 0 48px;
  }

  .gv-routine-section__container {
    padding: 0 8px;
  }

  .gv-routine-header {
    margin-bottom: 45px;
  }

  .gv-routine-header__eyebrow {
    margin-bottom: 8px;
    font-size: 9px;
    letter-spacing: 2.5px;
  }

  .gv-routine-header__title-row {
    gap: 0;
  }

  .gv-routine-header__line {
    display: none;
  }

  .gv-routine-header__title {
    font-size: 22px;
    line-height: 1.08;
  }

  .gv-routine-header__subtitle {
    margin-top: 12px;
    font-size: 10px;
  }

  .gv-routine-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

  .gv-routine-card {
    width: 100%;
    border-radius: 15px;
    padding: 47px 14px 18px;
    box-shadow: 0 8px 26px rgba(26, 30, 88, 0.07);
  }

  .gv-routine-card:hover {
    transform: none;
  }

  .gv-routine-card__icon {
    top: -18px;
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .gv-routine-card__time {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .gv-routine-card__tagline {
    font-size: 9px;
    margin-bottom: 17px;
  }

  .gv-routine-card__image-wrap {
    border-radius: 11px;
    margin-bottom: 12px;
  }

  .gv-routine-card__product {
    gap: 8px;
    min-height: 36px;
    margin-bottom: 9px;
  }

  .gv-routine-card__product-thumb {
    width: 29px;
    height: 34px;
    flex-basis: 29px;
  }

  .gv-routine-card__product-name,
  .gv-routine-card__features li {
    font-size: 9px;
  }

  .gv-routine-card__features {
    gap: 8px;
  }

  .gv-routine-card__features li {
    padding-left: 14px;
  }


  .gv-routine-summary {
    border-radius: 15px;
    padding: 24px 15px 18px;
  }

  .gv-routine-summary__label {
    text-align: left;
    margin-bottom: 26px;
    font-size: 9px;
    letter-spacing: 1.6px;
  }

  .gv-routine-summary__equation {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .gv-routine-summary__item {
    min-width: 0;
    gap: 2px;
    font-size: 8px;
  }

  .gv-routine-summary__item strong {
    font-size: 8px;
  }

  .gv-routine-summary__operator {
    font-size: 14px;
  }

  .gv-routine-summary__total {
    margin-top: 2px;
    min-width: 0;
  }

  .gv-routine-summary__total strong {
    font-size: 25px;
  }

  .gv-routine-summary__total span {
    font-size: 8px;
  }

  .gv-routine-summary__footnote {
    max-width: 220px;
    margin: 22px auto 0;
    font-size: 7px;
  }
}


/* ENTRANCE ANIMATION */

@keyframes gvRoutineFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.gv-routine-card,
.gv-routine-summary {
  animation: gvRoutineFadeUp 0.55s ease both;
}

.gv-routine-card:nth-child(2) {
  animation-delay: 0.08s;
}

.gv-routine-card:nth-child(3) {
  animation-delay: 0.16s;
}

.gv-routine-card:nth-child(4) {
  animation-delay: 0.24s;
}

.gv-routine-summary {
  animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .gv-routine-card,
  .gv-routine-summary {
    animation: none !important;
  }

  .gv-routine-card,
  .gv-routine-card__image {
    transition: none !important;
  }
}


/* ==========================================================
   SECTION 8 — RESPONSIVE CLICKABLE RECIPES BANNER
   ========================================================== */

.gv-recipes-banner-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  overflow: hidden;
}

.gv-recipes-banner {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  overflow: hidden;
}

.gv-recipes-banner picture {
  display: block;
  width: 100%;
}

.gv-recipes-banner__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.gv-recipes-banner:hover .gv-recipes-banner__image {
  transform: scale(1.003);
  filter: brightness(1.01);
}

.gv-recipes-banner:focus-visible {
  outline: 3px solid #4b91ff;
  outline-offset: -3px;
}


/* MOBILE
   <picture> automatically switches to the portrait banner.
*/
@media screen and (max-width: 749px) {
  .gv-recipes-banner-section {
    width: 100%;
  }

  .gv-recipes-banner,
  .gv-recipes-banner picture,
  .gv-recipes-banner__image {
    width: 100%;
  }

  .gv-recipes-banner__image {
    height: auto;
    object-fit: contain;
  }

  .gv-recipes-banner:hover .gv-recipes-banner__image {
    transform: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  .gv-recipes-banner__image {
    transition: none !important;
  }
}


/* ==========================================================
   SECTION 9 — CUSTOMER REVIEW SLIDER
   ========================================================== */

.gv-review-section {
  width: 100%;
  background: #ffffff;
  padding: 74px 0 82px;
  overflow: hidden;
}

.gv-review-section__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.gv-review-section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.gv-review-section__eyebrow {
  color: #3658bf;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2.6px;
  margin-bottom: 13px;
}

.gv-review-section__title {
  margin: 0;
  color: #171b58;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.gv-review-section__subtitle {
  margin: 15px auto 0;
  color: #687087;
  font-size: 16px;
  line-height: 1.5;
}

.gv-review-slider {
  position: relative;
  width: 100%;
}

.gv-review-slider__viewport {
  width: 100%;
  overflow: hidden;
  padding: 8px 4px 24px;
}

.gv-review-slider__track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;
}

.gv-review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  min-height: 275px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(247,249,255,0.98));
  border: 1px solid rgba(36, 51, 121, 0.07);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(20, 29, 90, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.gv-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(20, 29, 90, 0.11);
}

.gv-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.gv-review-card__stars {
  color: #f5b51b;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 2px;
}

.gv-review-card__verified {
  flex-shrink: 0;
  color: #227c62;
  background: #e9f8f2;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 600;
}

.gv-review-card__quote {
  flex: 1;
  margin: 0 0 27px;
  padding: 0;
  border: 0;
  color: #30354e;
  font-size: 16px;
  line-height: 1.62;
  font-style: normal;
}

.gv-review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gv-review-card__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #263d9c, #536ed1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.gv-review-card__name {
  color: #171b58;
  font-size: 14px;
  font-weight: 700;
}

.gv-review-card__product {
  margin-top: 3px;
  color: #81879a;
  font-size: 11px;
}

.gv-review-slider__arrow {
  position: absolute;
  top: 48%;
  z-index: 5;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #171b58;
  box-shadow: 0 7px 22px rgba(23, 27, 88, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gv-review-slider__arrow:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 10px 25px rgba(23, 27, 88, 0.16);
}

.gv-review-slider__arrow svg {
  width: 20px;
  height: 20px;
}

.gv-review-slider__arrow--prev {
  left: -24px;
}

.gv-review-slider__arrow--next {
  right: -24px;
}

.gv-review-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
}

.gv-review-slider__dot {
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #18215e;
  opacity: 0.22;
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    width 0.25s ease;
}

.gv-review-slider__dot.active {
  width: 24px;
  opacity: 0.9;
}


/* TABLET */

@media screen and (max-width: 1000px) {
  .gv-review-section__container {
    padding: 0 28px;
  }

  .gv-review-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}


/* MOBILE */

@media screen and (max-width: 749px) {
  .gv-review-section {
    padding: 48px 0 54px;
  }

  .gv-review-section__container {
    padding: 0 12px;
  }

  .gv-review-section__header {
    margin-bottom: 30px;
  }

  .gv-review-section__eyebrow {
    font-size: 9px;
    letter-spacing: 1.8px;
  }

  .gv-review-section__title {
    font-size: 28px;
  }

  .gv-review-section__subtitle {
    max-width: 330px;
    font-size: 12px;
  }

  .gv-review-slider__viewport {
    padding: 5px 1px 18px;
  }

  .gv-review-slider__track {
    gap: 14px;
  }

  .gv-review-card {
    flex-basis: 100%;
    min-height: 245px;
    border-radius: 18px;
    padding: 22px 18px;
  }

  .gv-review-card__stars {
    font-size: 16px;
  }

  .gv-review-card__verified {
    font-size: 9px;
    padding: 6px 8px;
  }

  .gv-review-card__quote {
    font-size: 14px;
    line-height: 1.55;
  }

  .gv-review-slider__arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gv-review-slider__track,
  .gv-review-card,
  .gv-review-slider__arrow,
  .gv-review-slider__dot {
    transition: none !important;
  }
}


/* ==========================================================
   FINAL WORKING-PACKAGE SAFEGUARDS
   ========================================================== */

.gv-logo-image {
  max-width: 190px;
  height: auto !important;
}

@media screen and (max-width: 990px) {
  .gv-logo-image {
    max-width: 155px;
  }
}

/* Prevent missing/broken image sizing from collapsing components. */
.gv-hero-slider__image,
.gv-product-card__image,
.gv-ingredient-card__image,
.gv-routine-card__image,
.gv-recipes-banner__image {
  background-color: #f6f6f6;
}


/* ==========================================================
   SECTION 10 — ALSO AVAILABLE ON
   ========================================================== */

.gv-marketplaces-section {
  width: 100%;
  background: #ffffff;
  padding: 105px 20px 120px;
  overflow: hidden;
}

.gv-marketplaces-section__container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.gv-marketplaces-section__title {
  margin: 0 0 38px;
  color: #3c449d;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gv-marketplaces-section__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

.gv-marketplaces-section__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 16px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.gv-marketplaces-section__link:hover {
  transform: translateY(-3px) scale(1.025);
}

.gv-marketplaces-section__link:focus-visible {
  outline: 3px solid #4b91ff;
  outline-offset: 8px;
}

.gv-marketplaces-section__logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.gv-marketplaces-section__logo--amazon {
  max-width: 180px;
}

.gv-marketplaces-section__logo--flipkart {
  max-width: 225px;
}


/* TABLET */
@media screen and (max-width: 900px) {
  .gv-marketplaces-section {
    padding: 80px 20px 90px;
  }

  .gv-marketplaces-section__logos {
    gap: 55px;
  }

  .gv-marketplaces-section__logo--amazon {
    max-width: 160px;
  }

  .gv-marketplaces-section__logo--flipkart {
    max-width: 195px;
  }
}


/* MOBILE */
@media screen and (max-width: 749px) {
  .gv-marketplaces-section {
    padding: 58px 16px 66px;
  }

  .gv-marketplaces-section__title {
    margin-bottom: 28px;
    font-size: 25px;
  }

  .gv-marketplaces-section__logos {
    gap: 38px;
    flex-wrap: nowrap;
  }

  .gv-marketplaces-section__logo--amazon {
    max-width: 115px;
  }

  .gv-marketplaces-section__logo--flipkart {
    max-width: 145px;
  }
}

@media screen and (max-width: 390px) {
  .gv-marketplaces-section__logos {
    gap: 25px;
  }

  .gv-marketplaces-section__logo--amazon {
    max-width: 100px;
  }

  .gv-marketplaces-section__logo--flipkart {
    max-width: 125px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gv-marketplaces-section__link {
    transition: none !important;
  }
}


/* ==========================================================
   SECTION 11 — BLOG POSTS
   ========================================================== */

.gv-blog-section {
  width: 100%;
  background: #ffffff;
  padding: 92px 20px 92px;
  overflow: hidden;
}

.gv-blog-section__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.gv-blog-section__title {
  margin: 0 0 40px;
  color: #111111;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.gv-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.gv-blog-card {
  min-width: 0;
}

.gv-blog-card__image-link {
  display: block;
  width: 100%;
  aspect-ratio: 1.66 / 1;
  overflow: hidden;
  text-decoration: none;
  background: #f5f5f5;
}

.gv-blog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gv-blog-card__image-link:hover .gv-blog-card__image {
  transform: scale(1.025);
}

.gv-blog-card__content {
  padding: 18px 20px 0;
}

.gv-blog-card__title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.gv-blog-card__title a {
  color: #111111;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.gv-blog-card__title a:hover {
  opacity: 0.7;
}

.gv-blog-card__date {
  margin-bottom: 14px;
  color: #111111;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gv-blog-card__excerpt {
  margin: 0;
  color: #444444;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.gv-blog-section__view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.gv-blog-section__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 134px;
  min-height: 52px;
  padding: 14px 26px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.gv-blog-section__view-all:hover {
  background: #272727;
  transform: translateY(-1px);
}

.gv-blog-section__view-all:focus-visible,
.gv-blog-card__image-link:focus-visible,
.gv-blog-card__title a:focus-visible {
  outline: 3px solid #4b91ff;
  outline-offset: 3px;
}


/* TABLET */
@media screen and (max-width: 990px) {
  .gv-blog-section {
    padding: 72px 20px;
  }

  .gv-blog-section__container {
    max-width: 820px;
  }

  .gv-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .gv-blog-card:nth-child(3) {
    grid-column: 1 / 2;
  }
}


/* MOBILE — horizontal swipe, similar to Shopify featured blog */
@media screen and (max-width: 749px) {
  .gv-blog-section {
    padding: 54px 0 60px;
  }

  .gv-blog-section__title {
    padding: 0 16px;
    margin-bottom: 28px;
    font-size: 30px;
  }

  .gv-blog-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 16px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .gv-blog-grid::-webkit-scrollbar {
    display: none;
  }

  .gv-blog-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
  }

  .gv-blog-card:nth-child(3) {
    grid-column: auto;
  }

  .gv-blog-card__content {
    padding: 16px 4px 0;
  }

  .gv-blog-card__title {
    font-size: 19px;
  }

  .gv-blog-card__excerpt {
    font-size: 14px;
  }

  .gv-blog-section__view-all-wrap {
    margin-top: 42px;
  }

  .gv-blog-section__view-all {
    min-width: 124px;
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gv-blog-card__image,
  .gv-blog-section__view-all {
    transition: none !important;
  }
}


/* ==========================================================
   RESPONSIVE FOOTER
   ========================================================== */

.gv-footer {
  width: 100%;
  background: #f1f1f1;
  border-top: 1px solid #5967c1;
  padding: 82px 20px 18px;
  color: #777777;
}

.gv-footer__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.gv-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1.75fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 70px;
}

.gv-footer__brand-column {
  min-width: 0;
}

.gv-footer__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
}

.gv-footer__logo {
  display: block;
  width: auto;
  max-width: 110px;
  height: auto;
  object-fit: contain;
}

.gv-footer__tagline {
  margin: 0;
  color: #7f7f7f;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.gv-footer__heading {
  margin: 0 0 18px;
  color: #303b9b;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.gv-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.gv-footer__links a {
  color: #7f7f7f;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.35;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.gv-footer__links a:hover {
  color: #303b9b;
}

.gv-footer__contact-list {
  display: grid;
  gap: 12px;
}

.gv-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #7f7f7f;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.45;
}

.gv-footer__contact-item:hover {
  color: #303b9b;
}

.gv-footer__contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #6170bd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.gv-footer__contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gv-footer__contact-item address {
  margin: 0;
  font-style: normal;
  color: inherit;
}

.gv-footer__bottom {
  border-top: 1px solid #5967c1;
  padding-top: 18px;
}

.gv-footer__bottom p {
  margin: 0;
  color: #7f7f7f;
  font-size: 16px;
  line-height: 1.4;
}


/* ==========================================================
   FOOTER — LAPTOP / SMALL DESKTOP
   ========================================================== */

@media screen and (max-width: 1200px) {
  .gv-footer {
    padding-top: 70px;
  }

  .gv-footer__grid {
    grid-template-columns: 1.2fr 0.8fr 1fr 1.55fr;
    gap: 42px;
  }

  .gv-footer__tagline,
  .gv-footer__links a,
  .gv-footer__contact-item {
    font-size: 15px;
  }
}


/* ==========================================================
   FOOTER — TABLET
   ========================================================== */

@media screen and (max-width: 900px) {
  .gv-footer {
    padding: 60px 24px 20px;
  }

  .gv-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 55px;
    padding-bottom: 52px;
  }

  .gv-footer__brand-column {
    grid-column: 1 / 2;
  }

  .gv-footer__contact-column {
    grid-column: 1 / -1;
  }

  .gv-footer__contact-list {
    max-width: 620px;
  }
}


/* ==========================================================
   FOOTER — MOBILE
   ========================================================== */

@media screen and (max-width: 600px) {
  .gv-footer {
    padding: 48px 18px 18px;
  }

  .gv-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 42px;
  }

  .gv-footer__brand-column,
  .gv-footer__contact-column {
    grid-column: auto;
  }

  .gv-footer__logo {
    max-width: 95px;
  }

  .gv-footer__tagline {
    max-width: 280px;
    font-size: 15px;
  }

  .gv-footer__heading {
    margin-bottom: 15px;
    font-size: 17px;
  }

  .gv-footer__links {
    gap: 11px;
  }

  .gv-footer__links a,
  .gv-footer__contact-item {
    font-size: 14px;
  }

  .gv-footer__contact-item {
    gap: 10px;
  }

  .gv-footer__contact-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .gv-footer__bottom {
    padding-top: 16px;
  }

  .gv-footer__bottom p {
    font-size: 14px;
  }
}


/* ==========================================================
   FOOTER — VERY SMALL MOBILE
   ========================================================== */

@media screen and (max-width: 390px) {
  .gv-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .gv-footer__tagline {
    font-size: 14px;
  }

  .gv-footer__links a,
  .gv-footer__contact-item {
    font-size: 13px;
  }
}


/* ==========================================================
   WHY GREAT VIBES PAGE
   Standalone conversion of /pages/why-great-vibes
   ========================================================== */

.gv-why-body {
  background: #ffffff;
}

.gv-why-main {
  width: 100%;
  overflow: hidden;
}

.gv-why-inner-banner {
  width: 100%;
  min-height: 600px;
  background:
    linear-gradient(
      90deg,
      rgba(14, 20, 72, 0.05),
      rgba(255, 255, 255, 0.02)
    ),
    url("./assets/banner.webp")
      center / cover no-repeat;
}

.gv-why-page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
  color: #222222;
}


/* HERO */

.gv-why-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 54px;
  margin-bottom: 72px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(51, 79, 180, 0.08), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(46, 171, 120, 0.08), transparent 36%),
    linear-gradient(135deg, #f8fff8, #ffffff);
  border: 1px solid #d9f0d9;
  border-radius: 26px;
  box-shadow: 0 14px 40px rgba(15, 28, 70, 0.05);
}

.gv-why-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #334fb4;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
}

.gv-why-hero h1 {
  margin: 0 0 20px;
  color: #111111;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.gv-why-hero p {
  max-width: 860px;
  margin: 0 auto;
  color: #555555;
  font-size: 18px;
  line-height: 1.7;
}


/* SECTION */

.gv-why-section {
  margin-bottom: 72px;
}

.gv-why-section > h2,
.gv-why-contact h2 {
  position: relative;
  margin: 0 0 30px;
  padding-left: 18px;
  color: #111111;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gv-why-section > h2::before,
.gv-why-contact h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  background: #4caf50;
  border-radius: 6px;
}


/* CONTENT BOXES */

.gv-why-company-box {
  padding: 34px 36px;
  background: #f8fff8;
  border: 1px solid #d9f0d9;
  border-radius: 18px;
}

.gv-why-company-box p,
.gv-why-card p {
  margin: 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.75;
}

.gv-why-company-box p + p,
.gv-why-card p + p {
  margin-top: 14px;
}


/* GRID */

.gv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gv-why-card {
  min-width: 0;
  padding: 30px;
  background: #f8f8f8;
  border: 1px solid #efefef;
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.gv-why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 79, 180, 0.14);
  box-shadow: 0 14px 30px rgba(17, 25, 70, 0.08);
}

.gv-why-card--wide {
  width: 100%;
}

.gv-why-card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 7px 20px rgba(17, 25, 70, 0.06);
  font-size: 24px;
}

.gv-why-card h3 {
  margin: 0 0 11px;
  color: #111111;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}


/* LIST */

.gv-why-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.gv-why-list li {
  position: relative;
  padding-left: 30px;
  color: #555555;
  font-size: 16px;
  line-height: 1.65;
}

.gv-why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #334fb4;
  font-weight: 800;
}


/* TRUST BADGES */

.gv-why-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gv-why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  background: #ffffff;
  color: #444444;
  border: 1px solid #dddddd;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.gv-why-badge:hover {
  background: #4caf50;
  color: #ffffff;
  border-color: #4caf50;
  transform: translateY(-2px);
}


/* CONTACT */

.gv-why-contact {
  padding: 42px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 10%, rgba(76, 175, 80, 0.18), transparent 32%),
    #111111;
  border-radius: 20px;
}

.gv-why-contact__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #8cff9a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
}

.gv-why-contact h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.gv-why-contact p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.gv-why-contact__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.gv-why-contact__links a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 17px 18px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  transition: background-color 0.25s ease;
}

.gv-why-contact__links a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.gv-why-contact__links span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.gv-why-contact__links strong {
  color: #8cff9a;
  font-size: 15px;
  font-weight: 600;
  overflow-wrap: anywhere;
}


/* POLICY LINKS */

.gv-why-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gv-why-policy-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  background: #f3f3f3;
  color: #111111;
  text-decoration: none;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.gv-why-policy-links a:hover {
  background: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}


/* TABLET */

@media screen and (max-width: 990px) {
  .gv-why-inner-banner {
    min-height: 280px;
  }

  .gv-why-page {
    width: min(100% - 32px, 900px);
    padding-top: 54px;
  }

  .gv-why-hero {
    padding: 66px 38px;
    margin-bottom: 58px;
  }

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

  .gv-why-grid .gv-why-card:last-child {
    grid-column: 1 / -1;
  }
}


/* MOBILE */

@media screen and (max-width: 749px) {
  .gv-why-inner-banner {
    min-height: 190px;
    background-position: center;
  }

  .gv-why-page {
    width: calc(100% - 24px);
    padding: 38px 0 60px;
  }

  .gv-why-hero {
    padding: 48px 22px;
    margin-bottom: 46px;
    border-radius: 18px;
  }

  .gv-why-eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .gv-why-hero h1 {
    font-size: 34px;
  }

  .gv-why-hero p {
    font-size: 14px;
    line-height: 1.65;
  }

  .gv-why-section {
    margin-bottom: 48px;
  }

  .gv-why-section > h2,
  .gv-why-contact h2 {
    margin-bottom: 21px;
    font-size: 25px;
  }

  .gv-why-company-box,
  .gv-why-card {
    padding: 24px 20px;
  }

  .gv-why-company-box p,
  .gv-why-card p,
  .gv-why-list li,
  .gv-why-contact p {
    font-size: 14px;
  }

  .gv-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gv-why-grid .gv-why-card:last-child {
    grid-column: auto;
  }

  .gv-why-card__icon {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .gv-why-card h3 {
    font-size: 19px;
  }

  .gv-why-trust {
    gap: 9px;
  }

  .gv-why-badge {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .gv-why-contact {
    padding: 29px 20px;
    border-radius: 16px;
  }

  .gv-why-contact__links {
    grid-template-columns: 1fr;
  }

  .gv-why-policy-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gv-why-policy-links a {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gv-why-card,
  .gv-why-badge,
  .gv-why-policy-links a,
  .gv-why-contact__links a {
    transition: none !important;
  }
}


/* ==========================================================
   WHY BUY FROM US PAGE
   Standalone conversion of /pages/why-buy-from-us
   ========================================================== */

.gv-buy-body {
  background: #ffffff;
}

.gv-buy-main {
  width: 100%;
  overflow: hidden;
}

.gv-buy-inner-banner {
  width: 100%;
  min-height: 360px;
  background:
    url("https://greatvibes.in/cdn/shop/files/magnific_ohWHV4m829.png?v=1782373861")
    center center / cover no-repeat;
}

.gv-buy-page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0;
  color: #222222;
  line-height: 1.7;
  margin-top: 60px;
}


/* HERO */

.gv-buy-hero {
  text-align: center;
  margin-bottom: 50px;
}

.gv-buy-hero h1 {
  margin: 0 0 15px;
  color: #111111;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
}

.gv-buy-hero p {
  max-width: 850px;
  margin: 0 auto;
  color: #555555;
  font-size: 18px;
  line-height: 1.7;
}


/* SECTION */

.gv-buy-section {
  margin-bottom: 50px;
}

.gv-buy-section > h2 {
  margin: 0 0 20px;
  padding-left: 15px;
  color: #111111;
  border-left: 5px solid #4caf50;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}


/* COMPANY BOX */

.gv-buy-company-box {
  padding: 30px;
  background: #f8fff8;
  border: 1px solid #d9f0d9;
  border-radius: 16px;
}

.gv-buy-company-box p {
  margin: 0 0 12px;
  color: #222222;
  font-size: 16px;
  line-height: 1.7;
}

.gv-buy-company-box p:last-child {
  margin-bottom: 0;
}

.gv-buy-company-details {
  margin-top: 30px;
}


/* QUALITY GRID */

.gv-buy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.gv-buy-card {
  min-width: 0;
  padding: 25px;
  background: #f8f8f8;
  border-radius: 14px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gv-buy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gv-buy-card h3 {
  margin: 0 0 12px;
  color: #222222;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.gv-buy-card p {
  margin: 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
}


/* TRUST */

.gv-buy-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.gv-buy-badge {
  padding: 12px 18px;
  background: #ffffff;
  color: #444444;
  border: 1px solid #dddddd;
  border-radius: 40px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}


/* CUSTOMER SUPPORT */

.gv-buy-contact {
  padding: 35px;
  background: #111111;
  color: #ffffff;
  border-radius: 16px;
}

.gv-buy-contact h2 {
  margin: 0 0 20px;
  padding: 0;
  color: #ffffff;
  border: 0;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

.gv-buy-contact p {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

.gv-buy-contact p:last-child {
  margin-bottom: 0;
}

.gv-buy-contact a {
  color: #8cff9a;
  text-decoration: none;
}

.gv-buy-contact a:hover {
  text-decoration: underline;
}


/* POLICIES */

.gv-buy-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.gv-buy-policy-links a {
  padding: 12px 18px;
  background: #f3f3f3;
  color: #111111;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.gv-buy-policy-links a:hover {
  background: #111111;
  color: #ffffff;
}


/* TABLET */

@media screen and (max-width: 990px) {
  .gv-buy-inner-banner {
    min-height: 280px;
  }

  .gv-buy-page {
    width: min(100% - 32px, 900px);
  }

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


/* MOBILE */

@media screen and (max-width: 768px) {
  .gv-buy-inner-banner {
    min-height: 190px;
  }

  .gv-buy-page {
    width: calc(100% - 28px);
    padding: 42px 0 55px;
  }

  .gv-buy-hero {
    margin-bottom: 42px;
  }

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

  .gv-buy-hero p {
    font-size: 15px;
  }

  .gv-buy-section {
    margin-bottom: 42px;
  }

  .gv-buy-section > h2,
  .gv-buy-contact h2 {
    font-size: 26px;
  }

  .gv-buy-company-box,
  .gv-buy-card,
  .gv-buy-contact {
    padding: 22px;
  }

  .gv-buy-company-box p,
  .gv-buy-card p,
  .gv-buy-contact p {
    font-size: 14px;
  }

  .gv-buy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gv-buy-card h3 {
    font-size: 20px;
  }

  .gv-buy-trust {
    gap: 10px;
  }

  .gv-buy-badge {
    padding: 10px 14px;
    font-size: 12px;
  }

  .gv-buy-policy-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gv-buy-policy-links a {
    width: 100%;
  }
}

@media screen and (max-width: 390px) {
  .gv-buy-page {
    width: calc(100% - 22px);
  }

  .gv-buy-hero h1 {
    font-size: 29px;
  }

  .gv-buy-section > h2,
  .gv-buy-contact h2 {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gv-buy-card,
  .gv-buy-policy-links a {
    transition: none !important;
  }
}


/* ==========================================================
   PRODUCTS PAGE - /products/all
   Standalone HTML conversion of old Shopify /collections/all
   ========================================================== */

.gv-products-body {
  background: #f8f8f8;
}

.gv-products-page {
  width: 100%;
  min-height: 100vh;
  background: #f8f8f8;
}

.gv-products-banner {
  width: 100%;
  height: 600px;
  background:
    url("./assets/banner.webp")
    center center / cover no-repeat;
}

.gv-products-shell {
  width: min(1450px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 110px;
}

.gv-products-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* TOOLBAR */

.gv-products-toolbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid #5867cb;
  border-radius: 12px;
  color: #171717;
  background: #f8f8f8;
}

.gv-products-filter-group,
.gv-products-sort-group {
  display: flex;
  align-items: center;
}

.gv-products-filter-group {
  gap: 18px;
}

.gv-products-filter-label {
  font-size: 15px;
  line-height: 1;
}

.gv-products-filter {
  position: relative;
}

.gv-products-filter summary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 2px;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  user-select: none;
}

.gv-products-filter summary::-webkit-details-marker {
  display: none;
}

.gv-products-filter summary svg,
.gv-products-select-wrap svg {
  width: 10px;
  height: 6px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.gv-products-filter[open] summary svg {
  transform: rotate(180deg);
}

.gv-products-dropdown {
  position: absolute;
  top: calc(100% + 9px);
  left: -10px;
  z-index: 100;
  width: 310px;
  padding: 18px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.gv-products-price-dropdown {
  width: 360px;
}

.gv-products-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
  color: #666;
  font-size: 12px;
}

.gv-products-reset-link {
  border: 0;
  background: transparent;
  color: #303f9f;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

.gv-products-check {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  color: #222;
  font-size: 14px;
  cursor: pointer;
}

.gv-products-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gv-products-check-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 1px solid #4b4b4b;
  color: transparent;
  font-size: 11px;
  line-height: 1;
}

.gv-products-check input:checked + .gv-products-check-box {
  background: #334fb4;
  border-color: #334fb4;
  color: #fff;
}

.gv-products-check.is-disabled {
  opacity: 0.38;
  cursor: default;
}

.gv-products-check small {
  color: #777;
  font-size: 11px;
}

.gv-products-price-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gv-products-price-fields label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.gv-products-price-fields label > span {
  color: #444;
  font-size: 15px;
}

.gv-products-price-fields input {
  width: 100%;
  height: 42px;
  padding: 0 11px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background: #fff;
  color: #222;
  outline: none;
  font: inherit;
}

.gv-products-price-fields input:focus {
  border-color: #334fb4;
  box-shadow: 0 0 0 2px rgba(51, 79, 180, 0.1);
}

.gv-products-sort-group {
  gap: 10px;
  margin-left: auto;
  font-size: 15px;
}

.gv-products-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.gv-products-select-wrap select {
  min-width: 180px;
  padding: 9px 26px 9px 7px;
  border: 0;
  background: transparent;
  color: #5a5a5a;
  outline: none;
  appearance: none;
  font: inherit;
  cursor: pointer;
}

.gv-products-select-wrap svg {
  position: absolute;
  right: 8px;
  pointer-events: none;
}

.gv-products-count {
  min-width: max-content;
  margin-left: 22px;
  color: #6976bd;
  font-size: 14px;
}


/* MOBILE TOOLBAR */

.gv-products-mobile-toolbar {
  display: none;
}

.gv-products-mobile-drawer {
  display: none;
}


/* PRODUCT GRID */

.gv-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 345px));
  justify-content: center;
  gap: 22px;
  width: 100%;
  margin-top: 34px;
}

.gv-product-card {
  overflow: hidden;
  border: 1px solid #5867cb;
  border-radius: 11px;
  background: #f4f4f4;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gv-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(51, 79, 180, 0.08);
}

.gv-product-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gv-product-image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
}

.gv-product-image-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.gv-product-card:hover .gv-product-image-box img {
  transform: scale(1.025);
}

.gv-product-info {
  padding: 15px 16px 17px;
}

.gv-product-info h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
}

.gv-product-info h2 a {
  display: -webkit-box;
  overflow: hidden;
  color: #3343a1;
  text-decoration: none;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.gv-product-info h2 a:hover {
  text-decoration: underline;
}

.gv-product-price {
  margin: 10px 0 0;
  color: #3343a1;
  font-size: 16px;
  line-height: 1.2;
}

.gv-products-empty {
  margin: 50px auto 0;
  text-align: center;
  color: #555;
  font-size: 16px;
}


/* TABLET */

@media screen and (max-width: 990px) {
  .gv-products-banner {
    height: 104px;
  }

  .gv-products-shell {
    width: min(100% - 32px, 900px);
    padding-top: 64px;
  }

  .gv-products-toolbar {
    display: none;
  }

  .gv-products-mobile-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 48px;
    padding: 0 2px 13px;
    border-bottom: 1px solid #d3d3d3;
  }

  .gv-products-mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border: 0;
    background: transparent;
    color: #222;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
  }

  .gv-products-mobile-filter-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .gv-products-mobile-toolbar .gv-products-count {
    margin-left: 0;
  }

  .gv-products-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 20000;
  }

  .gv-products-mobile-drawer.is-open {
    display: block;
  }

  .gv-products-mobile-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: rgba(0, 0, 0, 0.35);
  }

  .gv-products-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100%;
    overflow-y: auto;
    padding: 22px;
    background: #fff;
    box-shadow: -12px 0 35px rgba(0, 0, 0, 0.18);
  }

  .gv-products-mobile-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e1e1e1;
  }

  .gv-products-mobile-panel-head h2 {
    margin: 0;
    color: #171717;
    font-size: 22px;
    line-height: 1.2;
  }

  .gv-products-mobile-panel-head p {
    margin: 4px 0 0;
    color: #777;
    font-size: 13px;
  }

  .gv-products-mobile-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #222;
    font-size: 29px;
    line-height: 1;
    cursor: pointer;
  }

  .gv-products-mobile-section {
    padding: 22px 0;
    border-bottom: 1px solid #e6e6e6;
  }

  .gv-products-mobile-section h3,
  .gv-products-mobile-sort-label {
    display: block;
    margin: 0 0 14px;
    color: #222;
    font-size: 16px;
    font-weight: 600;
  }

  .gv-products-mobile-help {
    margin: -5px 0 16px;
    color: #777;
    font-size: 12px;
  }

  .gv-products-mobile-sort {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #aaa;
    border-radius: 5px;
    background: #fff;
    font: inherit;
  }

  .gv-products-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 22px;
  }

  .gv-products-mobile-actions button {
    min-height: 45px;
    border-radius: 4px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
  }

  .gv-products-mobile-reset {
    border: 1px solid #222;
    background: #fff;
    color: #222;
  }

  .gv-products-mobile-apply {
    border: 1px solid #111;
    background: #111;
    color: #fff;
  }
}


/* SMALL TABLET / MOBILE */

@media screen and (max-width: 700px) {
  .gv-products-banner {
    height: 92px;
  }

  .gv-products-shell {
    width: calc(100% - 22px);
    padding: 44px 0 70px;
  }

  .gv-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .gv-product-card {
    border-radius: 8px;
  }

  .gv-product-info {
    padding: 11px 10px 13px;
  }

  .gv-product-info h2 {
    font-size: 12px;
    line-height: 1.35;
  }

  .gv-product-info h2 a {
    -webkit-line-clamp: 4;
  }

  .gv-product-price {
    margin-top: 8px;
    font-size: 13px;
  }
}


/* VERY SMALL MOBILE */

@media screen and (max-width: 420px) {
  .gv-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gv-product-info {
    padding: 9px 8px 11px;
  }

  .gv-product-info h2 {
    font-size: 11px;
  }

  .gv-product-price {
    font-size: 12px;
  }

  .gv-products-mobile-filter-btn,
  .gv-products-mobile-toolbar .gv-products-count {
    font-size: 12px;
  }

  .gv-products-mobile-panel {
    width: 94vw;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gv-product-card,
  .gv-product-image-box img,
  .gv-products-filter summary svg {
    transition: none !important;
  }
}


/* ==========================================================
   GREATVIBES NUTS & SEEDS PROTEIN BAR PRODUCT PAGE
   ========================================================== */
.gv-pb-body{background:#fff;color:#111827}.gv-pb-page{width:100%;overflow:hidden}.gv-pb-hero{padding:118px 0 36px;background:#f8f8f8}.gv-pb-hero__inner{width:min(1480px,calc(100% - 72px));margin:0 auto;display:grid;grid-template-columns:minmax(0,1.06fr) minmax(420px,.94fr);gap:38px;align-items:start}.gv-pb-gallery{min-width:0}.gv-pb-main-image-wrap{background:#f1f1f1;aspect-ratio:1/1;display:grid;place-items:center;overflow:hidden}.gv-pb-main-image{width:100%;height:100%;object-fit:contain;display:block}.gv-pb-thumbs{display:flex;gap:12px;margin-top:20px;overflow-x:auto;padding:4px 2px 8px;scrollbar-width:thin}.gv-pb-thumb{flex:0 0 144px;aspect-ratio:1;background:#fff;border:1px solid #e3e3e8;padding:0;cursor:pointer;overflow:hidden}.gv-pb-thumb.is-active{border:2px solid #4b55b0}.gv-pb-thumb img{width:100%;height:100%;object-fit:cover;display:block}.gv-pb-summary{padding:4px 0 0}.gv-pb-eyebrow{display:block;color:#d8d8db;font-size:12px;letter-spacing:.02em;margin-bottom:16px}.gv-pb-summary h1{margin:0;color:#3f469a;font-size:clamp(28px,2.25vw,39px);line-height:1.08;font-weight:800;letter-spacing:-.025em}.gv-pb-price{margin:22px 0 24px;font-size:24px;font-weight:800;color:#080808}.gv-pb-nutrition-label{font-size:21px!important;color:#090909!important;letter-spacing:0!important;margin:0 0 10px!important}.gv-pb-proof-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-bottom:20px}.gv-pb-proof{border:1.6px solid #4a55af;border-radius:9px;text-align:center;padding:14px 10px 12px;background:#eef0f9;min-height:83px;display:flex;flex-direction:column;justify-content:center}.gv-pb-proof strong{color:#414b9f;font-size:25px;line-height:1}.gv-pb-proof span{margin-top:8px;color:#111;font-size:15px}.gv-pb-description{font-size:15.5px;line-height:1.45;margin:16px 0;color:#121212}.gv-pb-buyfrom{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;text-align:center;align-items:end;margin:18px 0}.gv-pb-buyfrom__label,.gv-pb-market{display:flex;flex-direction:column;align-items:center;gap:8px;color:#111;text-decoration:none;font-size:15px}.gv-pb-check{width:34px;height:34px;border:2px solid #191919;display:grid;place-items:center;font-size:24px;line-height:1}.gv-pb-market img{width:38px;height:38px;object-fit:contain}.gv-pb-purchase-row{display:grid;grid-template-columns:120px 1fr;gap:12px;margin-top:16px}.gv-pb-qty{display:grid;grid-template-columns:1fr 1fr 1fr;height:55px;border:1px solid #d7d7dc;border-radius:10px;overflow:hidden}.gv-pb-qty button,.gv-pb-qty output{border:0;background:#fafafa;display:grid;place-items:center;font-size:21px;color:#3b3b3b}.gv-pb-qty button{cursor:pointer}.gv-pb-add,.gv-pb-buy{height:55px;border-radius:28px;font-size:17px;font-weight:700;cursor:pointer}.gv-pb-add{background:#fff;border:1.8px solid #454bad;color:#454bad}.gv-pb-buy{margin-top:12px;width:100%;border:0;background:#4845a8;color:#fff}.gv-pb-static-note{font-size:11px;color:#797b84;text-align:center;margin:9px 0 0}.gv-pb-benefit-marquee{height:106px;background:#f7f7f7;overflow:hidden;display:flex;align-items:center;border-top:1px solid #eee;border-bottom:1px solid #eee}.gv-pb-benefit-track{display:flex;gap:34px;width:max-content;animation:gvPbBenefit 28s linear infinite}.gv-pb-benefit-pill{height:78px;min-width:294px;padding:0 28px;border-radius:24px;background:#fff;box-shadow:0 7px 18px rgba(0,0,0,.08);display:flex;align-items:center;justify-content:center;gap:15px;font-size:20px;white-space:nowrap}.gv-pb-benefit-pill span{font-size:28px;color:#5b5b5b}@keyframes gvPbBenefit{to{transform:translateX(-50%)}}.gv-pb-nutrition{background:#fff;padding:82px 0 92px}.gv-pb-section-wrap{width:min(1100px,calc(100% - 44px));margin:auto}.gv-pb-nutrition-head{text-align:center;margin-bottom:46px}.gv-pb-mini-title{display:flex;justify-content:center;align-items:center;gap:12px;color:#192746;font-size:14px}.gv-pb-mini-title span{width:38px;height:2px;background:#f5a623}.gv-pb-nutrition-head h2{margin:10px 0 18px;color:#182743;font-size:clamp(42px,5vw,66px);font-weight:400;letter-spacing:-.055em;line-height:1}.gv-pb-nutrition-head h2 strong{font-weight:900}.gv-pb-nutrition-head p{margin:0 auto;max-width:720px;color:#293652;font-size:15px;line-height:1.45}.gv-pb-nutrition-desktop{display:grid;grid-template-columns:1.08fr .97fr;gap:22px}.gv-pb-info-right{display:grid;gap:18px}.gv-pb-info-panel{border:1px solid #172a4d;background:#f9faff}.gv-pb-info-panel>h3{margin:0;padding:14px 22px;background:#1a2a49;color:#fff;font-size:20px;font-weight:500;border-left:6px solid #f5a623}.gv-pb-fda{margin:16px;background:#fff;padding:8px 14px 13px;color:#0a0a0a;font-family:Arial,Helvetica,sans-serif}.gv-pb-fda-title{text-align:center;font-size:38px;font-weight:900;letter-spacing:-.025em;border-top:4px solid #111;border-bottom:2px solid #111;padding:20px 0 14px}.gv-pb-serving{display:flex;justify-content:space-between;padding:10px 0 9px;border-bottom:4px solid #111;font-size:14px}.gv-pb-amount{font-size:12px;padding:10px 0 7px}.gv-pb-calories{display:flex;justify-content:space-between;align-items:end;border-bottom:5px solid #111;padding:5px 0 9px;font-size:20px}.gv-pb-calories strong:last-child{font-size:31px}.gv-pb-n-row{display:flex;justify-content:space-between;border-bottom:1px solid #111;padding:8px 0;font-size:14px}.gv-pb-n-row.main{font-weight:800}.gv-pb-n-row.sub span{padding-left:18px;font-style:italic}.gv-pb-fda-note{font-size:10px;margin:11px 0 0}.gv-pb-panel-copy{padding:22px;color:#172846;font-size:14.5px;line-height:1.55}.gv-pb-panel-copy p{margin:0 0 16px}.gv-pb-warning{background:#fff1d7;border-left:5px solid #f5a623;padding:12px 14px;margin:16px 0;color:#172846}.gv-pb-disclaimer{font-size:12px!important;opacity:.78}.gv-pb-specs>div{display:flex;justify-content:space-between;gap:18px;padding:17px 22px;border-bottom:1px solid #d3d6e0;color:#172846;font-size:13px}.gv-pb-specs>div:last-child{border-bottom:0}.gv-pb-specs strong{text-align:right;font-weight:500}.gv-pb-nutrition-mobile{display:none}.gv-pb-reasons{display:grid;grid-template-columns:38% 62%;background:#253aa2;color:#fff;position:relative}.gv-pb-reasons__left{padding:76px 60px 105px 74px}.gv-pb-script{font-weight:800;font-size:17px}.gv-pb-reasons__left h2{font-size:clamp(48px,4.25vw,78px);line-height:.98;letter-spacing:-.05em;margin:10px 0 22px}.gv-pb-reasons__left h2 strong,.gv-pb-reasons__left h2 span{display:block}.gv-pb-reasons__left h2 span{font-weight:300}.gv-pb-reasons-intro{font-size:18px;line-height:1.35;max-width:520px;margin:0 0 35px}.gv-pb-reason-stat{margin:0 0 38px}.gv-pb-reason-stat>strong{font-size:62px;line-height:.9;font-weight:400;display:block}.gv-pb-reason-stat h3{font-size:24px;margin:12px 0 7px;font-weight:900}.gv-pb-reason-stat p{margin:0;max-width:450px;line-height:1.4;font-size:15px}.gv-pb-audience{margin-top:40px}.gv-pb-audience>h3{color:#ffba15;font-size:18px}.gv-pb-audience-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.gv-pb-audience-grid span{border:1px solid rgba(255,255,255,.4);border-radius:99px;padding:10px 16px;font-size:13px}.gv-pb-audience>p{font-size:12px;opacity:.75;line-height:1.5}.gv-pb-reasons__visual{position:relative;min-height:880px;background:#ddd;overflow:hidden}.gv-pb-reasons__visual img{display:block;width:100%;height:100%;object-fit:cover}.gv-pb-collage-badge,.gv-pb-reason-benefits{display:none!important}.gv-pb-collage{display:grid}.gv-pb-collage.top{grid-template-columns:repeat(5,1fr)}.gv-pb-collage.bottom{grid-template-columns:1fr 2fr 1fr}.gv-pb-collage img{width:100%;height:100%;object-fit:cover;display:block;min-height:0}.gv-pb-collage-badge{position:absolute;right:30px;bottom:30px;width:360px;background:#202b48;color:#fff;border-radius:0 0 18px 18px;padding:22px}.gv-pb-collage-badge strong{display:block;color:#f5a623;font-size:21px;margin-bottom:8px}.gv-pb-collage-badge span{font-size:15px;line-height:1.35}.gv-pb-reason-benefits{grid-column:1/-1;display:grid;grid-template-columns:repeat(4,1fr);background:#fbf1e3;color:#263da4}.gv-pb-reason-benefits div{height:108px;display:flex;align-items:center;justify-content:center;gap:15px;border-right:1px solid #ddd2c4;font-size:18px}.gv-pb-reason-benefits b{width:52px;height:52px;border-radius:50%;background:#263da4;color:#f6b521;display:grid;place-items:center}.gv-pb-cheat{background:#1d1a60;color:#fff;padding:74px 0}.gv-pb-cheat__wrap{width:min(1480px,calc(100% - 74px));margin:auto}.gv-pb-cheat h2{font-size:40px;margin:0 0 58px;font-weight:800}.gv-pb-cheat-viewport{overflow:hidden}.gv-pb-cheat-track{display:flex;gap:24px;scroll-behavior:smooth;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none}.gv-pb-cheat-track::-webkit-scrollbar{display:none}.gv-pb-cheat-card{position:relative;flex:0 0 calc((100% - 72px)/4);aspect-ratio:1/1;border-radius:14px;overflow:hidden;scroll-snap-align:start}.gv-pb-cheat-card:after{content:"";position:absolute;inset:45% 0 0;background:linear-gradient(transparent,rgba(0,0,0,.78))}.gv-pb-cheat-card img{width:100%;height:100%;object-fit:cover}.gv-pb-cheat-card span{position:absolute;z-index:2;left:17px;bottom:17px;font-size:19px;font-weight:600}.gv-pb-cheat-nav{display:flex;justify-content:center;gap:18px;margin-top:50px}.gv-pb-cheat-nav button{border:0;width:60px;height:60px;border-radius:50%;font-size:30px;color:#fff;background:#e8392b;cursor:pointer}.gv-pb-cheat-nav button+button{background:#7b254d}.gv-pb-macro{background:#02081c;color:#fff;padding:62px 0 104px}.gv-pb-macro__wrap{width:min(1580px,calc(100% - 80px));margin:auto}.gv-pb-macro-head{display:flex;align-items:center;justify-content:center;gap:38px}.gv-pb-wordmark{font-size:72px;line-height:.8;font-weight:300}.gv-pb-divider{height:170px;width:2px;background:#b8ffff}.gv-pb-macro-head h2{margin:0;display:flex;flex-direction:column;font-size:clamp(64px,7vw,116px);line-height:.88;letter-spacing:-.05em}.gv-pb-macro-head h2 strong{font-weight:800}.gv-pb-macro-head h2 span{font-weight:300;background:linear-gradient(90deg,#1ec7ff,#0076ff);-webkit-background-clip:text;color:transparent}.gv-pb-macro-sub{text-align:center;max-width:1050px;margin:32px auto 55px;font-size:23px;line-height:1.3}.gv-pb-chart-shell{display:grid;grid-template-columns:90px 70px 1fr;min-height:430px;align-items:stretch}.gv-pb-ytitle{writing-mode:vertical-rl;transform:rotate(180deg);display:flex;align-items:center;justify-content:center;color:#1fdcff;font-size:27px;font-weight:700}.gv-pb-yaxis{display:flex;flex-direction:column;justify-content:space-between;color:#22d9f4;font-size:24px;padding:8px 0 55px}.gv-pb-chart{border-left:2px solid #64e9dd;border-bottom:2px solid #64e9dd;display:grid;grid-template-columns:repeat(5,1fr);align-items:end;gap:50px;padding:0 54px 0 60px;min-width:0}.gv-pb-bar-item{height:100%;position:relative;display:flex;flex-direction:column;justify-content:flex-end;align-items:center}.gv-pb-bar-item>strong{position:absolute;bottom:calc(var(--value)*1% + 16px);font-size:44px;color:#17d7ed;opacity:0;transform:translateY(20px);transition:.5s ease var(--delay)}.gv-pb-bar{height:calc(var(--value)*1%);width:100%;max-width:190px;transform:scaleY(0);transform-origin:bottom;transition:transform 1s cubic-bezier(.2,.9,.2,1) var(--delay)}.gv-pb-bar span{display:block;width:100%;height:100%;background:linear-gradient(180deg,#0b64ff,#04c8ff)}.gv-pb-bar-item em{position:absolute;top:calc(100% + 14px);font-style:normal;text-align:center;width:160px;font-size:13px}.gv-pb-macro.is-visible .gv-pb-bar{transform:scaleY(1)}.gv-pb-macro.is-visible .gv-pb-bar-item>strong{opacity:1;transform:none}.gv-pb-faq{background:#f8f8f8;padding:76px 0 70px}.gv-pb-faq-wrap{max-width:1120px}.gv-pb-faq header{text-align:center;margin-bottom:50px}.gv-pb-faq header h2{font-size:42px;color:#40469d;margin:0}.gv-pb-faq header h2 strong{font-weight:900}.gv-pb-faq header p{font-size:18px;margin:18px 0 0;color:#53545a}.gv-pb-faq-list{display:grid;gap:14px}.gv-pb-faq-item{background:#fff;border:1px solid #d8d8db;border-radius:9px;overflow:hidden}.gv-pb-faq-item button{width:100%;border:0;background:#fff;padding:22px 24px;display:flex;justify-content:space-between;gap:20px;text-align:left;font-size:18px;font-weight:700;cursor:pointer}.gv-pb-faq-item button b{font-size:25px;transition:transform .2s}.gv-pb-faq-item>div{max-height:0;overflow:hidden;transition:max-height .35s ease}.gv-pb-faq-item>div p{padding:0 24px 23px;margin:0;line-height:1.6;color:#41434a}.gv-pb-faq-item.is-open>div{max-height:280px}.gv-pb-faq-item.is-open button b{transform:rotate(180deg)}.gv-pb-reviews{padding:70px 0 0}.gv-pb-reviews>h2{text-align:center;color:#40469d;font-size:38px;margin:0 0 40px}.gv-pb-review-row{display:grid;grid-template-columns:repeat(5,1fr);gap:5px;overflow:hidden;border-radius:14px}.gv-pb-review-image{aspect-ratio:1.15/1;background:#ddd;overflow:hidden}.gv-pb-review-image img{width:100%;height:100%;object-fit:cover;display:block}.gv-pb-related{background:#1a2949;color:#fff;padding:54px 0 95px}.gv-pb-related__wrap{width:min(780px,calc(100% - 44px));margin:auto}.gv-pb-related__wrap>h2{font-size:42px;margin:0 0 20px}.gv-pb-related-card{display:block;width:360px;border:1px solid #fff;border-radius:13px;overflow:hidden;text-decoration:none;color:#fff;background:#1a2949}.gv-pb-related-img{height:360px;background:#fff;display:grid;place-items:center}.gv-pb-related-img img{width:100%;height:100%;object-fit:contain}.gv-pb-related-copy{padding:18px}.gv-pb-related-copy h3{font-size:17px;line-height:1.35;margin:0 0 12px;font-weight:500}.gv-pb-related-copy p{font-size:17px;margin:0}.gv-pb-related+.gv-footer{border-top:0}
@media(max-width:1100px){.gv-pb-hero__inner{grid-template-columns:1fr 1fr;width:calc(100% - 44px);gap:25px}.gv-pb-proof-grid{grid-template-columns:1fr 1fr}.gv-pb-reasons{grid-template-columns:44% 56%}.gv-pb-reasons__left{padding:60px 36px 90px}.gv-pb-cheat-card{flex-basis:calc((100% - 48px)/3)}.gv-pb-chart{gap:22px;padding-left:34px;padding-right:34px}.gv-pb-macro-head h2{font-size:70px}.gv-pb-wordmark{font-size:55px}}
@media(max-width:780px){.gv-pb-hero{padding-top:100px}.gv-pb-hero__inner{display:block;width:calc(100% - 28px)}.gv-pb-summary{padding-top:26px}.gv-pb-summary h1{font-size:28px}.gv-pb-price{font-size:21px}.gv-pb-thumbs{gap:8px}.gv-pb-thumb{flex-basis:88px}.gv-pb-proof-grid{grid-template-columns:repeat(2,1fr)}.gv-pb-proof strong{font-size:22px}.gv-pb-buyfrom{gap:8px}.gv-pb-purchase-row{grid-template-columns:105px 1fr}.gv-pb-benefit-marquee{height:82px}.gv-pb-benefit-pill{height:58px;min-width:230px;font-size:16px;border-radius:19px}.gv-pb-benefit-track{gap:18px}.gv-pb-nutrition{padding:55px 0}.gv-pb-section-wrap{width:calc(100% - 28px)}.gv-pb-nutrition-head h2{font-size:42px}.gv-pb-nutrition-head p{font-size:14px}.gv-pb-nutrition-desktop{display:none}.gv-pb-nutrition-mobile{display:grid;gap:10px}.gv-pb-mobile-acc{border:1px solid #1a2a49;background:#f9faff}.gv-pb-mobile-acc>button{width:100%;border:0;background:#1a2a49;color:#fff;padding:15px 16px;display:flex;justify-content:space-between;font-weight:800}.gv-pb-mobile-acc__content{max-height:0;overflow:hidden}.gv-pb-mobile-acc.is-open .gv-pb-mobile-acc__content{max-height:1000px}.gv-pb-mobile-acc.is-open>button b{transform:rotate(45deg)}.gv-pb-fda{margin:10px}.gv-pb-fda-title{font-size:28px}.gv-pb-reasons{display:block}.gv-pb-reasons__left{padding:52px 24px 50px}.gv-pb-reasons__left h2{font-size:50px}.gv-pb-reason-stat>strong{font-size:54px}.gv-pb-reasons__visual{min-height:560px}.gv-pb-audience-grid{grid-template-columns:1fr}.gv-pb-collage.top{grid-template-columns:repeat(3,1fr)}.gv-pb-collage.top img:nth-child(4),.gv-pb-collage.top img:nth-child(5){display:none}.gv-pb-collage.bottom{grid-template-columns:1fr 1.6fr}.gv-pb-collage.bottom img:last-child{display:none}.gv-pb-collage-badge{right:16px;bottom:16px;width:min(320px,calc(100% - 32px));padding:17px}.gv-pb-reason-benefits{grid-template-columns:1fr 1fr}.gv-pb-reason-benefits div{height:88px;font-size:14px;padding:0 10px}.gv-pb-reason-benefits b{width:38px;height:38px}.gv-pb-cheat{padding:52px 0}.gv-pb-cheat__wrap{width:calc(100% - 28px)}.gv-pb-cheat h2{font-size:32px;margin-bottom:35px}.gv-pb-cheat-card{flex-basis:84%}.gv-pb-cheat-nav{margin-top:28px}.gv-pb-cheat-nav button{width:50px;height:50px}.gv-pb-macro{padding:50px 0 76px}.gv-pb-macro__wrap{width:calc(100% - 24px)}.gv-pb-macro-head{gap:14px;justify-content:flex-start}.gv-pb-wordmark{font-size:34px}.gv-pb-divider{height:84px}.gv-pb-macro-head h2{font-size:42px}.gv-pb-macro-sub{font-size:15px;margin:25px auto 38px}.gv-pb-chart-shell{grid-template-columns:30px 42px minmax(580px,1fr);min-height:320px;overflow-x:auto;padding-bottom:60px}.gv-pb-ytitle{font-size:13px;position:sticky;left:0;z-index:3;background:#02081c}.gv-pb-yaxis{font-size:13px;position:sticky;left:30px;z-index:3;background:#02081c}.gv-pb-chart{gap:15px;padding:0 25px;min-width:580px}.gv-pb-bar-item>strong{font-size:26px}.gv-pb-bar-item em{width:100px;font-size:11px}.gv-pb-faq{padding:52px 0}.gv-pb-faq header{margin-bottom:35px}.gv-pb-faq header h2{font-size:34px}.gv-pb-faq header p{font-size:15px}.gv-pb-faq-item button{padding:18px;font-size:16px}.gv-pb-review-row{display:flex;overflow-x:auto;scroll-snap-type:x mandatory}.gv-pb-review-image{flex:0 0 80%;scroll-snap-align:center;aspect-ratio:1.3}.gv-pb-related__wrap>h2{font-size:34px}.gv-pb-related-card{width:min(330px,100%);margin:auto}.gv-pb-related-img{height:330px}}
@media(prefers-reduced-motion:reduce){.gv-pb-benefit-track{animation:none}.gv-pb-bar,.gv-pb-bar-item>strong{transition:none!important;transform:none!important;opacity:1!important}}


/* ==========================================================
   GREATVIBES PROTEIN POWDER PAGE
   Flat page: greatvibes-protein-powder.html
   ========================================================== */

.gv-pp-body {
  margin: 0;
  background: #f8f8f8;
}

.gv-pp-main {
  width: 100%;
  overflow: hidden;
  background: #f8f8f8;
}


/* PRODUCT HERO */

.gv-pp-product {
  padding: 92px 0 85px;
  background: #f8f8f8;
}

.gv-pp-product__wrap {
  width: min(1510px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.82fr);
  gap: 54px;
  align-items: start;
}

.gv-pp-gallery {
  min-width: 0;
}

.gv-pp-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gv-pp-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gv-pp-thumbs-wrap {
  position: relative;
  margin-top: 25px;
  padding: 0 38px;
}

.gv-pp-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gv-pp-thumbs::-webkit-scrollbar {
  display: none;
}

.gv-pp-thumb {
  flex: 0 0 144px;
  width: 144px;
  height: 144px;
  padding: 0;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.gv-pp-thumb.is-active {
  border: 2px solid #334fb4;
}

.gv-pp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gv-pp-thumb-nav {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 50px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #999;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.gv-pp-thumb-nav.prev {
  left: 0;
}

.gv-pp-thumb-nav.next {
  right: 0;
}

.gv-pp-product-info {
  padding-top: 8px;
}

.gv-pp-vendor {
  margin-bottom: 14px;
  color: #d8d8d8;
  font-size: 11px;
  text-transform: uppercase;
}

.gv-pp-product-info h1 {
  margin: 0;
  max-width: 820px;
  color: #3e48a5;
  font-size: clamp(29px, 2.45vw, 43px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.gv-pp-price {
  margin-top: 25px;
  color: #111;
  font-size: 24px;
  font-weight: 800;
}

.gv-pp-nutrition-label {
  margin: 28px 0 12px;
  color: #111;
  font-size: 21px;
  font-weight: 800;
}

.gv-pp-stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gv-pp-stat {
  min-width: 112px;
  padding: 13px 21px;
  text-align: center;
  border: 1px solid #4e5ab8;
  border-radius: 8px;
  background: #eef0f8;
  color: #111;
}

.gv-pp-stat strong {
  display: block;
  color: #3f49a7;
  font-size: 27px;
  line-height: 1;
  font-weight: 800;
}

.gv-pp-stat span {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.2;
}

.gv-pp-intro {
  max-width: 800px;
  margin: 20px 0 0;
  color: #111;
  font-size: 17px;
  line-height: 1.5;
}

.gv-pp-marketplaces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 20px;
  margin-top: 25px;
}

.gv-pp-market-item {
  min-height: 78px;
  color: #111;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.gv-pp-market-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.gv-pp-check {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid #111;
  font-size: 24px;
  line-height: 1;
}

.gv-pp-market-item span:last-child {
  font-size: 17px;
}

.gv-pp-buy-row {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 14px;
  margin-top: 18px;
}

.gv-pp-qty {
  height: 56px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.gv-pp-qty button,
.gv-pp-qty input {
  border: 0;
  background: transparent;
  text-align: center;
  color: #333;
  font: inherit;
}

.gv-pp-qty button {
  font-size: 22px;
  cursor: pointer;
}

.gv-pp-qty input {
  width: 100%;
  outline: none;
  -moz-appearance: textfield;
}

.gv-pp-qty input::-webkit-inner-spin-button,
.gv-pp-qty input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gv-pp-add,
.gv-pp-buy-now {
  min-height: 56px;
  border-radius: 999px;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.gv-pp-add {
  border: 1.5px solid #4450ad;
  background: transparent;
  color: #4450ad;
}

.gv-pp-buy-now {
  width: 100%;
  margin-top: 12px;
  border: 1.5px solid #444cae;
  background: #444cae;
  color: #fff;
}


/* STORY BANNERS */

.gv-pp-story {
  width: 100%;
  background: #fff7eb;
  line-height: 0;
}

.gv-pp-story img {
  width: 100%;
  height: auto;
  display: block;
}


/* DESCRIPTION */

.gv-pp-details {
  background: #6879ba;
  color: #fff;
}

.gv-pp-details__wrap {
  width: min(1510px, calc(100% - 70px));
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 54px;
}

.gv-pp-description {
  padding-right: 44px;
  border-right: 1px solid rgba(255,255,255,.85);
}

.gv-pp-description h2 {
  margin: 0 0 25px;
  color: #fff;
  font-size: 40px;
  line-height: 1.15;
}

.gv-pp-description p {
  margin: 0 0 15px;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
}

.gv-pp-accordions {
  display: flex;
  flex-direction: column;
}

.gv-pp-accordion {
  border-bottom: 1px solid rgba(255,255,255,.78);
}

.gv-pp-accordion > button {
  width: 100%;
  padding: 27px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.gv-pp-accordion > button span {
  font-size: 28px;
  font-weight: 800;
}

.gv-pp-accordion > button b {
  font-size: 34px;
  font-weight: 300;
}

.gv-pp-accordion-content {
  display: none;
  padding: 0 45px 28px 0;
}

.gv-pp-accordion.is-open .gv-pp-accordion-content {
  display: block;
}

.gv-pp-accordion-content p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
}


/* REVIEWS */

.gv-pp-reviews {
  padding: 42px 0 65px;
  background: #f8f8f8;
}

.gv-pp-reviews__wrap {
  width: min(1510px, calc(100% - 48px));
  margin: 0 auto;
}

.gv-pp-reviews h2 {
  margin: 0 0 34px;
  text-align: center;
  color: #3e47a2;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
}

.gv-pp-review-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.gv-pp-review-row > div {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: #ddd;
}

.gv-pp-review-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* RELATED */

.gv-pp-related {
  padding: 70px 0 100px;
  background: #6879ba;
}

.gv-pp-related__wrap {
  width: min(420px, calc(100% - 34px));
  margin: 0 auto;
}

.gv-pp-related h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 41px;
  line-height: 1.1;
  font-weight: 800;
}

.gv-pp-related-card {
  display: block;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
}

.gv-pp-related-img {
  aspect-ratio: 1 / 1;
  background: #fff;
}

.gv-pp-related-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gv-pp-related-copy {
  padding: 17px;
}

.gv-pp-related-copy h3 {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

.gv-pp-related-copy p {
  margin: 14px 0 0;
  color: #fff;
  font-size: 20px;
}


/* TABLET */

@media screen and (max-width: 1100px) {
  .gv-pp-product__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gv-pp-product-info h1 {
    font-size: 30px;
  }

  .gv-pp-stat {
    min-width: 100px;
    padding: 12px 16px;
  }

  .gv-pp-details__wrap {
    grid-template-columns: 1fr;
  }

  .gv-pp-description {
    padding-right: 0;
    padding-bottom: 40px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.85);
  }
}


/* MOBILE */

@media screen and (max-width: 760px) {
  .gv-pp-product {
    padding: 80px 0 46px;
  }

  .gv-pp-product__wrap {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gv-pp-main-image {
    aspect-ratio: 1 / 1;
  }

  .gv-pp-thumbs-wrap {
    margin-top: 12px;
    padding: 0 22px;
  }

  .gv-pp-thumb {
    flex-basis: 82px;
    width: 82px;
    height: 82px;
  }

  .gv-pp-thumb-nav {
    width: 20px;
    height: 35px;
    font-size: 31px;
  }

  .gv-pp-product-info {
    padding-top: 0;
  }

  .gv-pp-product-info h1 {
    font-size: 27px;
    line-height: 1.15;
  }

  .gv-pp-price {
    margin-top: 18px;
    font-size: 22px;
  }

  .gv-pp-nutrition-label {
    margin-top: 22px;
    font-size: 19px;
  }

  .gv-pp-stat-grid {
    gap: 8px;
  }

  .gv-pp-stat {
    min-width: calc(50% - 4px);
    flex: 1 1 calc(50% - 4px);
    padding: 11px 8px;
  }

  .gv-pp-stat strong {
    font-size: 24px;
  }

  .gv-pp-stat span,
  .gv-pp-intro {
    font-size: 14px;
  }

  .gv-pp-marketplaces {
    gap: 8px;
  }

  .gv-pp-market-item span:last-child {
    font-size: 14px;
  }

  .gv-pp-buy-row {
    grid-template-columns: 104px 1fr;
  }

  .gv-pp-qty,
  .gv-pp-add,
  .gv-pp-buy-now {
    min-height: 50px;
    height: 50px;
  }

  .gv-pp-add,
  .gv-pp-buy-now {
    font-size: 16px;
  }

  .gv-pp-story {
    overflow: hidden;
  }

  .gv-pp-story img {
    width: 100%;
    min-height: 240px;
    object-fit: cover;
    object-position: center;
  }

  .gv-pp-details__wrap {
    width: calc(100% - 28px);
    padding: 55px 0;
    gap: 30px;
  }

  .gv-pp-description {
    padding-bottom: 30px;
  }

  .gv-pp-description h2 {
    font-size: 31px;
  }

  .gv-pp-description p,
  .gv-pp-accordion-content p {
    font-size: 15px;
  }

  .gv-pp-accordion > button {
    padding: 20px 0;
  }

  .gv-pp-accordion > button span {
    font-size: 21px;
  }

  .gv-pp-reviews {
    padding: 38px 0 50px;
  }

  .gv-pp-reviews__wrap {
    width: calc(100% - 22px);
  }

  .gv-pp-reviews h2 {
    font-size: 30px;
  }

  .gv-pp-review-row {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gv-pp-review-row::-webkit-scrollbar {
    display: none;
  }

  .gv-pp-review-row > div {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .gv-pp-related {
    padding: 55px 0 75px;
  }

  .gv-pp-related h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gv-pp-thumbs {
    scroll-behavior: auto;
  }
}


/* ==========================================================
   GREATVIBES CONTACT PAGE
   Flat page: contact.html
   Form intentionally removed — contact details + map only
   ========================================================== */

.gv-contact-body {
  margin: 0;
  background: #f8f8f8;
}

.gv-contact-main {
  width: 100%;
  overflow: hidden;
  background: #f8f8f8;
}

.gv-contact-hero {
  position: relative;
  width: 100%;
  height: clamp(390px, 32vw, 600px);
  overflow: hidden;
  background: #202020;
}

.gv-contact-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gv-contact-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.30)
  );
  pointer-events: none;
}

.gv-contact-details {
  padding: 74px 0 80px;
  background: #f8f8f8;
}

.gv-contact-details__wrap {
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  gap: 70px;
  align-items: center;
}

.gv-contact-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: #6471b2;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gv-contact-heading h1 {
  margin: 0;
  color: #3344a3;
  font-size: clamp(40px, 4vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.gv-contact-heading p {
  max-width: 540px;
  margin: 22px 0 0;
  color: #4f4f4f;
  font-size: 18px;
  line-height: 1.65;
}

.gv-contact-card {
  padding: 12px 34px;
  border: 1px solid #5262b2;
  border-radius: 18px;
  background: #eef0fa;
  box-shadow: 0 14px 42px rgba(51, 68, 163, 0.08);
}

.gv-contact-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  color: #262626;
  text-decoration: none;
  border-bottom: 1px solid rgba(82, 98, 178, 0.20);
}

.gv-contact-row:last-child {
  border-bottom: 0;
}

.gv-contact-row--address {
  min-height: 130px;
  align-items: start;
  padding: 25px 0;
}

.gv-contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #6471b2;
  box-shadow: 0 7px 18px rgba(51, 68, 163, 0.08);
}

.gv-contact-icon svg {
  width: 23px;
  height: 23px;
}

.gv-contact-row small {
  display: block;
  margin-bottom: 5px;
  color: #6872a9;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gv-contact-row strong {
  display: block;
  color: #2d2d2d;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.gv-contact-row[href]:hover strong {
  color: #3344a3;
}

.gv-contact-map {
  width: 100%;
  height: 520px;
  background: #e8e8e8;
}

.gv-contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Tablet */
@media screen and (max-width: 1000px) {
  .gv-contact-details__wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .gv-contact-heading {
    text-align: center;
  }

  .gv-contact-heading p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */
@media screen and (max-width: 760px) {
  .gv-contact-hero {
    height: 360px;
  }

  .gv-contact-details {
    padding: 52px 0 58px;
  }

  .gv-contact-details__wrap {
    width: calc(100% - 28px);
  }

  .gv-contact-heading h1 {
    font-size: 39px;
  }

  .gv-contact-heading p {
    font-size: 15px;
  }

  .gv-contact-card {
    padding: 6px 18px;
    border-radius: 14px;
  }

  .gv-contact-row {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    min-height: 82px;
  }

  .gv-contact-row--address {
    min-height: auto;
    padding: 22px 0;
  }

  .gv-contact-icon {
    width: 38px;
    height: 38px;
  }

  .gv-contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .gv-contact-row strong {
    font-size: 15px;
    line-height: 1.5;
  }

  .gv-contact-map {
    height: 420px;
  }
}


/* ==========================================================
   GREATVIBES ALL BLOGS PAGE
   Flat page: blogs.html
   All 17 posts from original Shopify pages 1, 2 and 3
   ========================================================== */

.gv-blogs-body {
  margin: 0;
  background: #f7f7f8;
}

.gv-blogs-main {
  width: 100%;
  overflow: hidden;
  background: #f7f7f8;
}

.gv-blogs-hero {
  position: relative;
  min-height: 570px;
  padding: 170px 6vw 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 194, 74, 0.34), transparent 24%),
    radial-gradient(circle at 74% 82%, rgba(86, 105, 197, 0.18), transparent 28%),
    linear-gradient(135deg, #f8f5ee 0%, #fffaf1 46%, #edf0ff 100%);
}

.gv-blogs-hero::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -40%;
  width: 48vw;
  height: 48vw;
  min-width: 540px;
  min-height: 540px;
  border-radius: 50%;
  border: 1px solid rgba(51, 68, 163, 0.10);
  box-shadow:
    0 0 0 80px rgba(51, 68, 163, 0.025),
    0 0 0 160px rgba(51, 68, 163, 0.018);
}

.gv-blogs-hero__content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
}

.gv-blogs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #5969b4;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.gv-blogs-eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.gv-blogs-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #323f9a;
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.gv-blogs-hero p {
  max-width: 700px;
  margin: 28px 0 0;
  color: #404040;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.gv-blogs-hero__stats {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gv-blogs-hero__stats strong {
  color: #ff7a18;
  font-size: 34px;
  line-height: 1;
}

.gv-blogs-hero__stats span {
  color: #5b5b5b;
  font-size: 15px;
}

.gv-blogs-hero__orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(1px);
}

.gv-blogs-hero__orb--one {
  width: 140px;
  height: 140px;
  right: 19%;
  top: 32%;
  background: linear-gradient(145deg, #ffbc3e, #ff7a18);
  opacity: 0.93;
  box-shadow: 0 24px 55px rgba(255, 122, 24, 0.22);
}

.gv-blogs-hero__orb--two {
  width: 72px;
  height: 72px;
  right: 9%;
  top: 22%;
  background: linear-gradient(145deg, #7584d2, #3344a3);
  opacity: 0.85;
}

.gv-blogs-listing {
  width: min(1540px, calc(100% - 80px));
  margin: 0 auto;
  padding: 84px 0 110px;
}

.gv-blogs-listing__header {
  margin-bottom: 42px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
}

.gv-blogs-listing__header span {
  color: #6471b2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gv-blogs-listing__header h2 {
  margin: 7px 0 0;
  color: #313e99;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.gv-blogs-listing__header p {
  max-width: 470px;
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  text-align: right;
}

.gv-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 24px;
}

.gv-blog-card {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8e8ee;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(34, 45, 103, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gv-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(34, 45, 103, 0.11);
}

.gv-blog-card__image-link {
  display: block;
  text-decoration: none;
}

.gv-blog-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #efefef;
}

.gv-blog-card__image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.22,1,.36,1);
}

.gv-blog-card:hover .gv-blog-card__image-wrap img {
  transform: scale(1.045);
}

.gv-blog-card__body {
  padding: 24px 24px 27px;
}

.gv-blog-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #777;
  font-size: 12px;
  line-height: 1.2;
}

.gv-blog-card__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff7a18;
}

.gv-blog-card h2 {
  margin: 13px 0 12px;
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1.13;
  letter-spacing: -0.028em;
}

.gv-blog-card h2 a {
  color: #333f99;
  text-decoration: none;
}

.gv-blog-card p {
  min-height: 75px;
  margin: 0;
  color: #575757;
  font-size: 14px;
  line-height: 1.68;
}

.gv-blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #3344a3;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.gv-blog-card__read svg {
  width: 18px;
  height: 18px;
  transition: transform 0.22s ease;
}

.gv-blog-card__read:hover svg {
  transform: translateX(4px);
}

@media screen and (max-width: 1050px) {
  .gv-blogs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gv-blogs-hero {
    min-height: 520px;
  }

  .gv-blogs-hero__orb--one {
    opacity: 0.32;
  }

  .gv-blogs-hero__orb--two {
    opacity: 0.26;
  }
}

@media screen and (max-width: 720px) {
  .gv-blogs-hero {
    min-height: 510px;
    padding: 135px 22px 65px;
  }

  .gv-blogs-hero h1 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .gv-blogs-hero p {
    font-size: 16px;
  }

  .gv-blogs-hero::after {
    opacity: 0.4;
  }

  .gv-blogs-hero__orb--one {
    width: 90px;
    height: 90px;
    right: -18px;
    top: 37%;
  }

  .gv-blogs-hero__orb--two {
    width: 48px;
    height: 48px;
    right: 15%;
    top: 25%;
  }

  .gv-blogs-listing {
    width: calc(100% - 28px);
    padding: 58px 0 75px;
  }

  .gv-blogs-listing__header {
    margin-bottom: 28px;
    display: block;
  }

  .gv-blogs-listing__header p {
    margin-top: 14px;
    max-width: none;
    text-align: left;
  }

  .gv-blogs-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gv-blog-card {
    border-radius: 17px;
  }

  .gv-blog-card__body {
    padding: 21px 19px 23px;
  }

  .gv-blog-card h2 {
    font-size: 24px;
  }

  .gv-blog-card p {
    min-height: 0;
  }
}


/* ==========================================================
   PRODUCT MARKETPLACE BUY CTA
   Replaces quantity / Add to cart / old marketplace icon row.
   ========================================================== */

.gv-market-buy {
  width: 100%;
  margin-top: 30px;
}

.gv-market-buy__label {
  margin-bottom: 10px;
  color: #5965ad;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.gv-market-buy__trigger {
  width: 100%;
  min-height: 68px;
  padding: 0 26px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(100deg, #313f9f 0%, #4d52b4 100%);
  box-shadow: 0 14px 30px rgba(49, 63, 159, 0.20);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font: inherit;
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.gv-market-buy__trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(49, 63, 159, 0.25);
  filter: brightness(1.04);
}

.gv-market-buy__trigger:focus-visible,
.gv-market-buy__link:focus-visible {
  outline: 3px solid rgba(255, 153, 0, 0.55);
  outline-offset: 3px;
}

.gv-market-buy__arrow {
  font-size: 28px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.gv-market-buy.is-open .gv-market-buy__arrow {
  transform: rotate(90deg);
}

.gv-market-buy__choices {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid #dfe2f3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(35, 47, 107, 0.09);
}

.gv-market-buy__choices[hidden] {
  display: none !important;
}

.gv-market-buy__choices p {
  margin: 0 0 13px;
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.4;
}

.gv-market-buy__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gv-market-buy__link {
  min-height: 55px;
  padding: 0 17px;
  border: 1.5px solid #3946a4;
  border-radius: 10px;
  background: #f6f7ff;
  color: #35429f;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.gv-market-buy__link:hover {
  background: #3946a4;
  color: #fff;
  transform: translateY(-1px);
}

.gv-market-buy__link span:last-child {
  font-size: 20px;
  font-weight: 400;
}

@media screen and (max-width: 760px) {
  .gv-market-buy {
    margin-top: 24px;
  }

  .gv-market-buy__trigger {
    min-height: 58px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 18px;
  }

  .gv-market-buy__choices {
    padding: 14px;
    border-radius: 12px;
  }

  .gv-market-buy__links {
    grid-template-columns: 1fr;
  }

  .gv-market-buy__link {
    min-height: 52px;
  }
}


/* ==========================================================
   GREATVIBES POLICY PAGES
   privacy-policy.html
   terms-conditions.html
   refund-returns-policy.html
   shipping-policy.html
   ========================================================== */

.gv-policy-body {
  margin: 0;
  background: #f7f7f8;
}

.gv-policy-main {
  width: 100%;
  overflow: hidden;
  background: #f7f7f8;
}

.gv-policy-hero {
  position: relative;
  padding: 175px 24px 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 25%, rgba(80, 96, 184, 0.15), transparent 25%),
    linear-gradient(135deg, #f8f8fb 0%, #ffffff 55%, #eef0fa 100%);
  border-bottom: 1px solid #e4e5ed;
}

.gv-policy-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -130px;
  bottom: -220px;
  border: 1px solid rgba(51, 68, 163, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(51, 68, 163, 0.025),
    0 0 0 140px rgba(51, 68, 163, 0.015);
}

.gv-policy-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.gv-policy-hero__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #5664ad;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.gv-policy-hero__inner > span::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.gv-policy-hero h1 {
  margin: 0;
  color: #3344a3;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.gv-policy-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #5a5a5a;
  font-size: 17px;
  line-height: 1.65;
}

.gv-policy-content-section {
  padding: 70px 24px 100px;
}

.gv-policy-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 54px 60px;
  background: #ffffff;
  border: 1px solid #e5e6ee;
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(41, 52, 117, 0.06);
  color: #383838;
}

.gv-policy-content h2,
.gv-policy-content h3,
.gv-policy-content h4 {
  margin: 38px 0 14px;
  color: #3344a3;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gv-policy-content > h2:first-child,
.gv-policy-content > h3:first-child,
.gv-policy-content > h4:first-child {
  margin-top: 0;
}

.gv-policy-content h2 {
  font-size: 30px;
}

.gv-policy-content h3,
.gv-policy-content h4 {
  font-size: 24px;
}

.gv-policy-content p,
.gv-policy-content li {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.8;
}

.gv-policy-content p {
  margin: 0 0 18px;
}

.gv-policy-content ul,
.gv-policy-content ol {
  margin: 10px 0 24px;
  padding-left: 25px;
}

.gv-policy-content li {
  margin-bottom: 8px;
}

.gv-policy-content a {
  color: #3344a3;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gv-policy-content strong {
  color: #272727;
}

@media screen and (max-width: 760px) {
  .gv-policy-hero {
    padding: 135px 18px 55px;
  }

  .gv-policy-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .gv-policy-hero p {
    font-size: 15px;
  }

  .gv-policy-content-section {
    padding: 34px 14px 65px;
  }

  .gv-policy-content {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .gv-policy-content h2 {
    font-size: 25px;
  }

  .gv-policy-content h3,
  .gv-policy-content h4 {
    margin-top: 30px;
    font-size: 21px;
  }

  .gv-policy-content p,
  .gv-policy-content li {
    font-size: 14px;
    line-height: 1.72;
  }
}


/* ==========================================================
   NAVBAR CLEAN UPDATE
   - Logo stays left
   - Home/About/Products/Contact/Blogs move to the right
   - Search / Account / Cart removed from all pages
   - Mobile keeps only the hamburger button
   ========================================================== */

@media screen and (min-width: 991px) {
  .gv-frosted-header__container {
    justify-content: flex-start;
  }

  .gv-frosted-header__logo {
    margin-right: 28px;
  }

  .gv-frosted-header__nav {
    flex-grow: 0;
    justify-content: flex-end;
    margin-left: auto;
  }
}

/* Safety: old icon containers should never display even if cached markup exists. */
.gv-frosted-header__icons,
.gv-frosted-header__mobile-icons {
  display: none !important;
}

@media screen and (max-width: 990px) {
  .gv-frosted-header__container {
    justify-content: space-between;
  }

  .gv-frosted-header__logo {
    margin-right: 0;
  }

  .gv-frosted-header__mobile-toggle {
    margin-left: auto;
  }
}


/* ==========================================================
   LOCAL BLOG ARTICLE PAGES
   Folder: blogs/
   ========================================================== */

.gv-local-blog-body {
  margin: 0;
  background: #f7f7f8;
}

.gv-local-blog-main {
  width: 100%;
  padding: 150px 0 80px;
  overflow: hidden;
  background: #f7f7f8;
}

.gv-local-blog-topbar,
.gv-local-blog-hero,
.gv-local-blog-article,
.gv-local-blog-bottom,
.gv-blog-amazon-strip {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.gv-local-blog-topbar {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #777;
  font-size: 13px;
}

.gv-local-blog-topbar a,
.gv-local-blog-bottom a {
  color: #3344a3;
  font-weight: 700;
  text-decoration: none;
}

.gv-local-blog-topbar a:hover,
.gv-local-blog-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gv-local-blog-hero {
  max-height: 650px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 22px;
  background: #ececec;
  box-shadow: 0 16px 44px rgba(39, 49, 108, 0.08);
}

.gv-local-blog-hero img {
  width: 100%;
  height: auto;
  max-height: 650px;
  display: block;
  object-fit: cover;
}

.gv-local-blog-article > * {
  max-width: 100%;
}

.gv-local-blog-article img {
  max-width: 100%;
  height: auto;
}

.gv-local-blog-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #dedfe8;
}

.gv-amazon-product-link {
  color: #3344a3 !important;
  font-weight: 700;
  text-decoration: underline !important;
  text-decoration-color: #ff9900 !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px;
}

.gv-blog-amazon-strip {
  margin-bottom: 28px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(420px, 1.25fr);
  gap: 26px;
  align-items: center;
  border: 1px solid #e2e3ec;
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(35, 47, 107, 0.06);
}

.gv-blog-amazon-strip__head > span {
  display: block;
  margin-bottom: 6px;
  color: #5968b2;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
}

.gv-blog-amazon-strip__head p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}

.gv-blog-amazon-strip__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gv-blog-amazon-strip__links > a:only-child {
  grid-column: 1 / -1;
}

.gv-blog-amazon-strip__links a {
  min-height: 58px;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  border: 1px solid #e3a437;
  border-radius: 11px;
  background: #fff9ee;
  color: #202020;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.gv-blog-amazon-strip__links a:hover {
  transform: translateY(-2px);
  background: #fff4df;
  box-shadow: 0 8px 20px rgba(255, 153, 0, .12);
}

.gv-blog-amazon-strip__links a span {
  font-size: 13px;
  line-height: 1.3;
}

.gv-blog-amazon-strip__links a strong {
  color: #3344a3;
  font-size: 14px;
}

@media screen and (max-width: 800px) {
  .gv-local-blog-main {
    padding-top: 120px;
  }

  .gv-local-blog-topbar,
  .gv-local-blog-hero,
  .gv-local-blog-article,
  .gv-local-blog-bottom,
  .gv-blog-amazon-strip {
    width: calc(100% - 24px);
  }

  .gv-local-blog-hero {
    margin-bottom: 18px;
    border-radius: 14px;
  }

  .gv-blog-amazon-strip {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 17px;
  }

  .gv-blog-amazon-strip__links {
    grid-template-columns: 1fr;
  }

  .gv-blog-amazon-strip__links > a:only-child {
    grid-column: auto;
  }
}
