/**
 * GHome-style single product page v2.1.9.
 */

.ghp-product-page {
  --ghp-black: #111;
  --ghp-red: #e40012;
  --ghp-gray: #676767;
  --ghp-muted: #8c8c8c;
  --ghp-line: #e9e9e9;
  --ghp-soft: #f7f7f7;
  --ghp-offer-bg: #fff8dc;
  --ghp-green: #20b15a;
  --ghp-product-shell-top: 12px;
  color: var(--ghp-black);
}

.ghp-product-page * {
  box-sizing: border-box;
}

/* The custom site header is fixed and overlaid. Reserve visual clearance on
   replica product pages so the floating header never covers the title or SKU. */
body.ghp-has-custom-site-header.single-product .ghp-product-page {
  --ghp-product-shell-top: 120px;
}

body.admin-bar.ghp-has-custom-site-header.single-product .ghp-product-page {
  --ghp-product-shell-top: 150px;
}

@media (max-width: 767px) {
  body.ghp-has-custom-site-header.single-product .ghp-product-page {
    --ghp-product-shell-top: 86px;
  }

  body.admin-bar.ghp-has-custom-site-header.single-product .ghp-product-page {
    --ghp-product-shell-top: 132px;
  }
}

.ghp-product-shell {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: var(--ghp-product-shell-top) 28px 32px;
  display: grid;
  grid-template-columns: minmax(680px, 1fr) 410px;
  gap: 46px;
  align-items: start;
}

.ghp-product-gallery-col {
  position: relative;
  min-width: 0;
}

.ghp-sale-badge {
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 0;
  background: var(--ghp-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}


.ghp-custom-gallery {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  width: 100%;
}

.ghp-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 74px;
  margin: 0;
  padding: 0;
}

.ghp-gallery-thumb {
  width: 74px;
  height: 74px;
  margin: 0;
  padding: 2px;
  border: 1px solid var(--ghp-line);
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
  display: block;
}

.ghp-gallery-thumb:hover,
.ghp-gallery-thumb.is-active {
  border-color: #111;
}

.ghp-gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ghp-gallery-main {
  min-width: 0;
  background: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
}

.ghp-gallery-main-link {
  display: block;
}

.ghp-gallery-main-image,
.ghp-gallery-main img {
  width: 100%;
  min-height: 560px;
  display: block;
  object-fit: contain;
}

.ghp-custom-gallery--placeholder .ghp-gallery-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.ghp-product-summary-col {
  position: sticky;
  top: 92px;
  min-width: 0;
  padding: 0;
  font-size: 14px;
}

.ghp-product-title {
  margin: 0 0 9px;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ghp-product-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 14px;
  color: var(--ghp-gray);
  font-size: 13px;
  line-height: 1.2;
}

.ghp-review-link {
  color: var(--ghp-gray);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ghp-review-link:hover {
  color: #111;
}

.ghp-stars {
  letter-spacing: 1px;
  color: #111;
  font-size: 12px;
  line-height: 1;
}

.ghp-brand {
  text-transform: uppercase;
  font-weight: 500;
  color: #333;
}

.ghp-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
}

.ghp-share a {
  color: var(--ghp-gray);
  font-size: 12px;
  text-decoration: none;
}

.ghp-share a:hover {
  color: #111;
  text-decoration: underline;
}

.ghp-price {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ghp-red);
}

.ghp-price ins {
  text-decoration: none;
  color: var(--ghp-red);
}

.ghp-price del {
  margin-left: 8px;
  color: #111;
  font-size: 24px;
  font-weight: 400;
  opacity: .9;
}

.ghp-variant-block {
  margin-bottom: 14px;
}

.ghp-option-title {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.ghp-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ghp-swatch {
  min-width: 86px;
  min-height: 42px;
  padding: 6px 10px;
  border: 1px solid var(--ghp-line);
  border-radius: 2px;
  background: #fff;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.ghp-swatch:hover,
.ghp-swatch.is-active {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}

.ghp-swatch img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ghp-pickup,
.ghp-sku {
  font-size: 13px;
  color: #111;
  margin-bottom: 12px;
}

.ghp-dot {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--ghp-green);
  display: inline-block;
}

.ghp-cart-form {
  margin: 16px 0 16px;
}

.ghp-cart-form table.variations {
  display: none !important;
}

.ghp-cart-form .woocommerce-variation.single_variation {
  margin-bottom: 12px;
}

.ghp-cart-form form.cart {
  margin: 0;
}

.ghp-cart-form .quantity {
  display: none !important;
}

.ghp-cart-form .single_add_to_cart_button,
.ghp-cart-form .button {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}

.ghp-cart-form .single_add_to_cart_button:hover,
.ghp-cart-form .button:hover {
  background: #222;
  color: #fff;
}

.ghp-cart-form .stock.out-of-stock {
  padding: 12px 14px;
  border: 1px solid var(--ghp-line);
  border-radius: 4px;
  color: #111;
  background: var(--ghp-soft);
  font-weight: 600;
}

.ghp-cart-form .woocommerce-variation-add-to-cart {
  display: block;
}


.ghp-package-selector {
  margin: 0 0 14px;
}

.ghp-package-selector__title {
  margin: 0 0 9px;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.ghp-package-selector__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ghp-package-option {
  width: 100%;
  min-height: 92px;
  padding: 12px 13px;
  border: 1px solid var(--ghp-line);
  border-radius: 14px;
  background: #fff;
  color: #111;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.ghp-package-option:hover,
.ghp-package-option:focus {
  border-color: rgba(0, 0, 0, .44);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  outline: none;
  transform: translateY(-1px);
}

.ghp-package-option.is-active {
  border-color: #111;
  background: #f8f8f8;
  box-shadow: inset 0 0 0 1px #111, 0 10px 24px rgba(0, 0, 0, .09);
}

.ghp-package-option__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
}

.ghp-package-option__name {
  font-size: 15px;
  font-weight: 850;
  line-height: 1.15;
}

.ghp-package-option__discount {
  flex: 0 0 auto;
  padding: 3px 7px;
  border-radius: 999px;
  background: #e60012;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.ghp-package-option__meta {
  display: block;
  min-height: 18px;
  color: #666;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.ghp-package-option__price {
  display: block;
  margin-top: 8px;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
}

@media (max-width: 767px) {
  .ghp-package-selector__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ghp-package-option {
    min-height: 82px;
    padding: 11px 12px;
  }
}

.ghp-offer-box {
  margin: 16px 0 14px;
  padding: 14px 16px;
  border: 1px solid #f3e6ad;
  border-radius: 2px;
  background: var(--ghp-offer-bg);
  color: var(--ghp-red);
}

.ghp-offer-group + .ghp-offer-group {
  margin-top: 14px;
}

.ghp-offer-title {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
  color: var(--ghp-red);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.ghp-offer-icon {
  display: inline-flex;
  width: 15px;
  font-size: 13px;
  line-height: 1;
}

.ghp-offer-list {
  margin: 0;
  padding: 0 0 0 20px;
  color: var(--ghp-red);
  font-size: 13px;
  line-height: 1.55;
}

.ghp-offer-list li {
  margin: 0;
}

.ghp-offer-group p {
  margin: 0;
  color: var(--ghp-red);
  font-size: 13px;
  line-height: 1.45;
}

.ghp-payment-notice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 12px 13px;
  border: 1px solid var(--ghp-line);
  border-radius: 2px;
  background: #fff;
  color: #111;
  font-size: 13px;
  line-height: 1.35;
}

.ghp-payment-lock {
  font-size: 18px;
  line-height: 1;
}

.ghp-payment-notice img {
  max-width: 90px;
  height: auto;
  flex: 0 0 auto;
}

.ghp-policy-list {
  display: grid;
  gap: 4px;
  margin: 12px 0 14px;
  color: #111;
  font-size: 13px;
  line-height: 1.35;
}

.ghp-policy-icon {
  display: inline-block;
  width: 15px;
  color: var(--ghp-green);
  font-weight: 700;
}

.ghp-sidebar-overview {
  margin: 12px 0 0;
  padding: 0;
  border: 0;
}

.ghp-sidebar-overview h2 {
  margin: 0 0 10px;
  color: #111;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
}

.ghp-overview-bullets {
  margin: 0;
  padding-left: 18px;
  color: #111;
  font-size: 13px;
  line-height: 1.4;
}

.ghp-overview-bullets li {
  margin: 0 0 12px;
  padding-left: 2px;
}

.ghp-overview-bullets strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}

.ghp-overview-bullets span {
  display: block;
  color: #222;
}

.ghp-detail-media-section {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: 22px 28px 42px;
  border-top: 1px solid var(--ghp-line);
}

.ghp-detail-media-section h2 {
  margin: 0 0 22px;
  color: #111;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 600;
  text-align: center;
}

.ghp-detail-video {
  width: 100%;
  margin: 0 0 24px;
  background: #111;
  overflow: hidden;
  line-height: 0;
}

.ghp-detail-video video,
.ghp-detail-video iframe {
  width: 100% !important;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  object-fit: cover;
}

.ghp-detail-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.ghp-detail-media-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #f5f5f5;
  line-height: 0;
}

.ghp-detail-media-item img {
  width: 100%;
  height: auto;
  display: block;
}

.ghp-detail-media-item--wide {
  grid-column: span 2;
}

.ghp-detail-media-item--full {
  grid-column: 1 / -1;
}

.ghp-section {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 46px 32px;
  border-top: 1px solid var(--ghp-line);
}

.ghp-section h2 {
  margin: 0 0 28px;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 600;
  text-align: center;
}

.ghp-accordion {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--ghp-line);
}

.ghp-accordion-item {
  border-bottom: 1px solid var(--ghp-line);
}

.ghp-accordion-title {
  width: 100%;
  padding: 20px 32px 20px 0;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.ghp-accordion-title::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
}

.ghp-accordion-title[aria-expanded="true"]::after {
  content: "−";
}

.ghp-accordion-panel {
  display: none;
  padding: 0 0 20px;
  color: var(--ghp-gray);
  line-height: 1.65;
}

.ghp-accordion-panel p {
  margin-top: 0;
}

.ghp-accordion-title[aria-expanded="true"] + .ghp-accordion-panel {
  display: block;
}

.ghp-reviews {
  max-width: 980px;
}

.ghp-reviews #reviews,
.ghp-reviews .woocommerce-Reviews {
  margin-top: 0;
}

.ghp-related {
  width: min(100%, 1280px);
  max-width: 1280px;
  margin: 0 auto 76px;
  padding: 48px 28px 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.ghp-related-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
}

.ghp-related .ghp-related-header h2 {
  margin: 0;
  color: #111;
  font-size: clamp(26px, 2.25vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-align: left;
}

.ghp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.ghp-related-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 17, 17, 0.075);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fff 72%, #fbfbfb 100%);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.055);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
  isolation: isolate;
}

.ghp-related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 78% 0%, rgba(255, 78, 0, 0.12), transparent 34%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.ghp-related-card:hover,
.ghp-related-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 78, 0, 0.32);
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.13);
}

.ghp-related-card:hover::after,
.ghp-related-card:focus-within::after {
  opacity: 1;
}

.ghp-related-media-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f8f8 0%, #f1f1f1 100%);
  border-bottom: 1px solid rgba(17, 17, 17, 0.045);
}

.ghp-related-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

.ghp-related-image,
.ghp-related-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.ghp-related-card:hover .ghp-related-image,
.ghp-related-card:hover .ghp-related-media img,
.ghp-related-card:focus-within .ghp-related-image,
.ghp-related-card:focus-within .ghp-related-media img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}

.ghp-related-sale {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4b2c 0%, var(--ghp-red) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.015em;
  box-shadow: 0 10px 20px rgba(228, 0, 18, 0.24);
}

.ghp-related-cart-button {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  min-width: 124px;
  height: 44px;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #ff7a1a 0%, #ff4e00 52%, var(--ghp-red) 100%) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(228, 73, 0, 0.33);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.ghp-related-cart-button:hover,
.ghp-related-cart-button:focus {
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(228, 73, 0, 0.48);
  transform: translateY(0) scale(1.02);
  filter: brightness(1.04);
}

.ghp-related-card:hover .ghp-related-cart-button,
.ghp-related-card:focus-within .ghp-related-cart-button {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ghp-related-cart-button.loading {
  opacity: 1;
  pointer-events: none;
}

.ghp-related-cart-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ghp-related-cart-button svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ghp-related-cart-text {
  display: inline-block;
}

.ghp-related-card .added_to_cart {
  display: none !important;
}

.ghp-related-info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.ghp-related-title {
  margin: 0 0 12px;
  min-height: 48px;
  color: #111;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.018em;
}

.ghp-related-title a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ghp-related-title a:hover,
.ghp-related-card:hover .ghp-related-title a,
.ghp-related-card:focus-within .ghp-related-title a {
  color: #ff4e00;
}

.ghp-related-stock {
  position: relative;
  margin: auto 0 8px;
  padding-left: 14px;
  color: var(--ghp-green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.ghp-related-stock::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.ghp-related-stock--out {
  color: var(--ghp-muted);
}

.ghp-related-price {
  margin: 0 0 10px;
  color: var(--ghp-red);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.ghp-related-price del {
  margin-left: 7px;
  color: #777;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.68;
}

.ghp-related-price ins {
  color: var(--ghp-red);
  font-weight: 900;
  text-decoration: none;
}

.ghp-related-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 18px;
  color: #111;
  font-size: 12px;
  line-height: 1.2;
}

.ghp-related-rating .star-rating {
  margin: 0;
  color: #ffb400;
  font-size: 12px;
}

.ghp-related-review-count {
  color: var(--ghp-gray);
}

@media (max-width: 1180px) {
  .ghp-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .ghp-related-info {
    padding: 16px 16px 18px;
  }

  .ghp-related-title {
    font-size: 16px;
  }

  .ghp-related-price {
    font-size: 17px;
  }

  .ghp-related-cart-button {
    min-width: 112px;
    height: 42px;
    padding-inline: 14px !important;
    font-size: 12px !important;
  }

  .ghp-product-shell {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 32px;
  }

  .ghp-gallery-main-image,
  .ghp-gallery-main img {
    min-height: 480px;
  }
}

@media (max-width: 1024px) {
  .ghp-related {
    padding-inline: 20px;
  }

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

  .ghp-related-cart-button {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .ghp-product-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 18px 18px 36px;
  }

  .ghp-product-summary-col {
    position: static;
  }

  .ghp-gallery-main-image,
  .ghp-gallery-main img {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .ghp-related {
    margin-bottom: 48px;
    padding: 36px 14px 4px;
  }

  .ghp-related .ghp-related-header h2 {
    font-size: 25px;
  }

  .ghp-related-header {
    margin-bottom: 16px;
  }

  .ghp-related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ghp-related-card {
    display: grid;
    grid-template-columns: minmax(126px, 42%) minmax(0, 1fr);
    border-radius: 18px;
  }

  .ghp-related-media-wrap {
    border-right: 1px solid rgba(17, 17, 17, 0.045);
    border-bottom: 0;
  }

  .ghp-related-media {
    height: 100%;
    min-height: 170px;
    aspect-ratio: auto;
  }

  .ghp-related-sale {
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 10px;
  }

  .ghp-related-cart-button {
    right: 10px;
    bottom: 10px;
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    border-radius: 50% !important;
    font-size: 0 !important;
  }

  .ghp-related-cart-button .ghp-related-cart-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
  }

  .ghp-related-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 14px 14px;
  }

  .ghp-related-title {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .ghp-related-stock {
    margin-top: 0;
    font-size: 12px;
  }

  .ghp-related-price {
    font-size: 17px;
  }

  .ghp-custom-gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .ghp-gallery-thumbs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .ghp-gallery-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .ghp-product-title {
    font-size: 23px;
  }

  .ghp-swatches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .ghp-swatch {
    min-width: 0;
  }

  .ghp-payment-notice {
    grid-template-columns: auto 1fr;
  }

  .ghp-payment-notice img {
    grid-column: 2;
  }

  .ghp-section {
    padding: 38px 18px;
  }
}


@media (max-width: 767px) {
  .ghp-detail-media-section {
    padding: 18px 18px 34px;
  }

  .ghp-detail-media-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ghp-detail-media-item--wide,
  .ghp-detail-media-item--full {
    grid-column: auto;
  }
}

/* v1.4.0: video poster/hover states and flexible grid spans. */
.ghp-detail-video {
  position: relative;
  border-radius: 0;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.ghp-detail-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .14);
}

.ghp-detail-video-player,
.ghp-detail-video-poster {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.ghp-detail-video-player[hidden] {
  display: none !important;
}

.ghp-detail-video-poster {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
}

.ghp-detail-video-poster img,
.ghp-detail-cover-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .32s ease, filter .32s ease, opacity .32s ease;
}

.ghp-detail-video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .18);
  opacity: 0;
  transition: opacity .28s ease;
}

.ghp-detail-video-poster:hover img {
  transform: scale(1.035);
  filter: brightness(.82) contrast(1.04);
}

.ghp-detail-video-poster:hover::after {
  opacity: 1;
}

.ghp-detail-video-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, background .25s ease;
}

.ghp-detail-video-play::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #111;
}

.ghp-detail-video-poster:hover .ghp-detail-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

.ghp-detail-video video,
.ghp-detail-video iframe,
.ghp-detail-cover-image {
  transition: transform .32s ease, filter .32s ease;
}

.ghp-detail-video:hover video,
.ghp-detail-video:hover iframe,
.ghp-detail-video:hover .ghp-detail-cover-image {
  filter: brightness(.94) contrast(1.02);
}

.ghp-detail-media-grid {
  grid-auto-flow: dense;
  grid-auto-rows: clamp(190px, 20vw, 310px);
}

.ghp-detail-media-item {
  grid-column: span var(--ghp-col-span, 1);
  grid-row: span var(--ghp-row-span, 1);
  min-height: 0;
  transition: transform .22s ease, box-shadow .22s ease;
}

.ghp-detail-media-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease, filter .32s ease;
}

.ghp-detail-media-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .11);
}

.ghp-detail-media-item:hover img {
  transform: scale(1.025);
  filter: brightness(.96) contrast(1.02);
}

.ghp-detail-media-item--wide {
  grid-column: span 2;
}

.ghp-detail-media-item--full {
  grid-column: 1 / -1;
}

.ghp-detail-media-item--tall {
  grid-row: span 2;
}

.ghp-detail-media-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.ghp-detail-media-item--hero {
  grid-column: 1 / -1;
  grid-row: span 2;
}

@media (max-width: 767px) {
  .ghp-detail-media-grid {
    grid-auto-rows: auto;
  }

  .ghp-detail-media-item,
  .ghp-detail-media-item--wide,
  .ghp-detail-media-item--full,
  .ghp-detail-media-item--tall,
  .ghp-detail-media-item--large,
  .ghp-detail-media-item--hero {
    grid-column: 1 / -1 !important;
    grid-row: span 1 !important;
  }

  .ghp-detail-media-item img {
    height: auto;
  }

  .ghp-detail-video-play {
    width: 56px;
    height: 56px;
  }

  .ghp-detail-video-play::before {
    left: 23px;
    top: 17px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }
}

/* v1.5.0: refined visual spacing and stronger hover effects for detail media. */
.ghp-detail-media-section {
  --ghp-media-gap-x: clamp(18px, 1.8vw, 30px);
  --ghp-media-gap-y: clamp(18px, 1.8vw, 30px);
  padding: clamp(28px, 3vw, 52px) clamp(22px, 3vw, 48px) clamp(48px, 5vw, 78px);
  background: #fff;
}

.ghp-detail-video {
  margin-bottom: clamp(22px, 2.2vw, 36px);
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
  isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.ghp-detail-video:hover,
.ghp-detail-video:focus-within {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
}

.ghp-detail-video-poster::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .34));
}

.ghp-detail-video-poster:hover img,
.ghp-detail-video-poster:focus-visible img {
  transform: scale(1.075);
  filter: brightness(.7) contrast(1.12) saturate(1.08);
}

.ghp-detail-video-poster:hover::after,
.ghp-detail-video-poster:focus-visible::after {
  opacity: 1;
}

.ghp-detail-video-play {
  box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
}

.ghp-detail-video-poster:hover .ghp-detail-video-play,
.ghp-detail-video-poster:focus-visible .ghp-detail-video-play {
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
}

.ghp-detail-video:hover video,
.ghp-detail-video:hover iframe,
.ghp-detail-video:hover .ghp-detail-cover-image {
  transform: scale(1.018);
  filter: brightness(.84) contrast(1.08) saturate(1.04);
}

.ghp-detail-media-grid {
  gap: var(--ghp-media-gap-y) var(--ghp-media-gap-x);
  grid-auto-rows: clamp(220px, 21vw, 340px);
  align-items: stretch;
}

.ghp-detail-media-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f4f4;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease;
}

.ghp-detail-media-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .22));
  opacity: 0;
  transition: opacity .3s ease;
}

.ghp-detail-media-item img {
  transform-origin: center center;
  transition: transform .42s ease, filter .42s ease;
}

.ghp-detail-media-item:hover,
.ghp-detail-media-item:focus-within {
  transform: translateY(-8px) scale(1.008);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .22);
}

.ghp-detail-media-item:hover::after,
.ghp-detail-media-item:focus-within::after {
  opacity: 1;
}

.ghp-detail-media-item:hover img,
.ghp-detail-media-item:focus-within img {
  transform: scale(1.07);
  filter: brightness(.82) contrast(1.12) saturate(1.08);
}

@media (max-width: 1024px) {
  .ghp-detail-media-section {
    --ghp-media-gap-x: 18px;
    --ghp-media-gap-y: 18px;
    padding: 34px 22px 56px;
  }

  .ghp-detail-media-grid {
    grid-auto-rows: clamp(190px, 28vw, 300px);
  }
}

@media (max-width: 767px) {
  .ghp-detail-media-section {
    --ghp-media-gap-x: 14px;
    --ghp-media-gap-y: 14px;
    padding: 28px 16px 42px;
  }

  .ghp-detail-video {
    margin-bottom: 18px;
    border-radius: 8px;
  }

  .ghp-detail-media-grid {
    gap: var(--ghp-media-gap-y) var(--ghp-media-gap-x);
  }

  .ghp-detail-media-item {
    border-radius: 8px;
  }

  .ghp-detail-media-item:hover,
  .ghp-detail-media-item:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  }

  .ghp-detail-media-item:hover img,
  .ghp-detail-media-item:focus-within img {
    transform: scale(1.045);
  }
}


/* v1.6.0: refined FAQ module with modern card accordion styling. */
.ghp-faq {
  width: min(100%, 1040px);
  padding: clamp(52px, 6vw, 92px) clamp(20px, 4vw, 44px);
  border-top: 1px solid rgba(17, 17, 17, .08);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 0, 0, .045), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.ghp-faq h2 {
  margin: 0 0 clamp(26px, 3vw, 42px);
  color: #111;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}

.ghp-faq h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: #111;
  opacity: .85;
}

.ghp-faq .ghp-accordion {
  max-width: 920px;
  margin: 0 auto;
  border-top: 0;
  display: grid;
  gap: 14px;
}

.ghp-faq .ghp-accordion-item {
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .045);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

.ghp-faq .ghp-accordion-item:hover,
.ghp-faq .ghp-accordion-item:focus-within {
  transform: translateY(-3px);
  border-color: rgba(17, 17, 17, .18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .11);
}

.ghp-faq .ghp-accordion-title {
  min-height: 66px;
  padding: 20px 78px 20px 24px;
  background: transparent;
  color: #111;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .01em;
  text-align: left;
  text-transform: none !important;
  display: flex;
  align-items: center;
}

.ghp-faq .ghp-accordion-title::before {
  content: "Q";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-right: 14px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 13px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.ghp-faq .ghp-accordion-title::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #111;
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  text-align: center;
  transition: transform .28s ease, background-color .28s ease, color .28s ease;
}

.ghp-faq .ghp-accordion-title:hover::after,
.ghp-faq .ghp-accordion-title:focus-visible::after {
  background: #111;
  color: #fff;
  transform: rotate(90deg);
}

.ghp-faq .ghp-accordion-title[aria-expanded="true"] {
  background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}

.ghp-faq .ghp-accordion-title[aria-expanded="true"]::after {
  content: "−";
  background: #111;
  color: #fff;
  transform: rotate(180deg);
}

.ghp-faq .ghp-accordion-panel {
  display: grid !important;
  grid-template-rows: 0fr;
  padding: 0 24px 0 66px;
  color: #5f5f5f;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0;
  transition: grid-template-rows .32s ease, opacity .24s ease, padding-bottom .32s ease;
}

.ghp-faq .ghp-accordion-panel p {
  margin: 0;
  overflow: hidden;
}

.ghp-faq .ghp-accordion-title[aria-expanded="true"] + .ghp-accordion-panel {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
  opacity: 1;
}

.ghp-faq .ghp-accordion-title[aria-expanded="true"] + .ghp-accordion-panel p {
  padding-top: 2px;
  border-left: 2px solid rgba(17, 17, 17, .16);
  padding-left: 16px;
}

@media (max-width: 767px) {
  .ghp-faq {
    padding: 44px 16px 58px;
  }

  .ghp-faq .ghp-accordion {
    gap: 12px;
  }

  .ghp-faq .ghp-accordion-item {
    border-radius: 12px;
  }

  .ghp-faq .ghp-accordion-title {
    min-height: 60px;
    padding: 17px 58px 17px 16px;
    font-size: 14px;
  }

  .ghp-faq .ghp-accordion-title::before {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 12px;
    line-height: 24px;
  }

  .ghp-faq .ghp-accordion-title::after {
    right: 14px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 20px;
    line-height: 28px;
  }

  .ghp-faq .ghp-accordion-panel {
    padding-left: 50px;
    padding-right: 16px;
    font-size: 14px;
  }

  .ghp-faq .ghp-accordion-title[aria-expanded="true"] + .ghp-accordion-panel {
    padding-bottom: 18px;
  }
}

/* v1.6.1: align FAQ Q icons and question text consistently. */
.ghp-faq .ghp-accordion-item {
  text-align: left;
}

.ghp-faq .ghp-accordion-title {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  justify-content: stretch;
  justify-items: start;
  text-align: left !important;
}

.ghp-faq .ghp-accordion-title::before {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  place-self: center;
}

.ghp-faq .ghp-accordion-title::after {
  grid-column: auto;
}

@media (max-width: 767px) {
  .ghp-faq .ghp-accordion-title {
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 10px;
  }
}

/* v1.6.2: force FAQ Q icons onto a fixed vertical axis. */
.ghp-product-page .ghp-faq .ghp-accordion-title,
.ghp-product-page .ghp-faq .ghp-accordion-title[aria-expanded="true"] {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  min-height: 66px;
  padding: 20px 78px 20px 86px !important;
  text-align: left !important;
  justify-content: initial !important;
  justify-items: initial !important;
  align-items: initial !important;
  white-space: normal;
}

.ghp-product-page .ghp-faq .ghp-accordion-title::before {
  position: absolute !important;
  left: 42px !important;
  top: 50% !important;
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
  line-height: 28px !important;
  text-align: center !important;
  place-self: auto !important;
}

.ghp-product-page .ghp-faq .ghp-accordion-title::after {
  position: absolute !important;
  right: 22px !important;
  top: 50% !important;
  margin-top: -17px !important;
}

.ghp-product-page .ghp-faq .ghp-accordion-panel {
  padding-left: 86px !important;
}

.ghp-product-page .ghp-faq .ghp-accordion-title[aria-expanded="true"] + .ghp-accordion-panel p {
  padding-left: 16px;
}

@media (max-width: 767px) {
  .ghp-product-page .ghp-faq .ghp-accordion-title,
  .ghp-product-page .ghp-faq .ghp-accordion-title[aria-expanded="true"] {
    min-height: 60px;
    padding: 17px 58px 17px 58px !important;
  }

  .ghp-product-page .ghp-faq .ghp-accordion-title::before {
    left: 20px !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
  }

  .ghp-product-page .ghp-faq .ghp-accordion-title::after {
    right: 14px !important;
    margin-top: -15px !important;
  }

  .ghp-product-page .ghp-faq .ghp-accordion-panel {
    padding-left: 58px !important;
  }
}

/* v1.7.0: GHome-style Customer Reviews module */
.ghp-reviews-v180 {
  max-width: 1320px !important;
  padding-top: 42px !important;
  padding-bottom: 42px !important;
  border-top: 0 !important;
}

.ghp-review-module {
  width: 100%;
  margin: 0 auto;
  padding: 20px 16px 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.06);
}

.ghp-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 20px;
}

.ghp-review-summary h2 {
  margin: 0 0 8px !important;
  text-align: left !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.ghp-review-score-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #111;
  font-size: 14px;
  line-height: 1.2;
}

.ghp-review-score-line strong {
  font-size: 16px;
  font-weight: 800;
}

.ghp-review-score-line span {
  color: #4b4b4b;
  font-size: 13px;
}

.ghp-review-thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.ghp-review-thumb {
  width: 70px;
  height: 56px;
  display: block;
  overflow: hidden;
  border-radius: 7px;
  background: #f5f5f5;
  border: 1px solid rgba(17, 17, 17, 0.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.ghp-review-thumb:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.18);
  border-color: rgba(0, 130, 120, 0.45);
}

.ghp-review-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ghp-review-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.ghp-write-review-button {
  min-width: 210px;
  min-height: 42px;
  padding: 0 30px;
  border: 2px solid #00877d;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}

.ghp-write-review-button:hover,
.ghp-write-review-button.is-active {
  transform: translateY(-2px);
  background: #00877d;
  border-color: #000;
  box-shadow: 0 12px 28px rgba(0, 135, 125, .26);
  color: #fff;
}

.ghp-review-icon-button {
  width: 42px;
  height: 42px;
  border: 2px solid #111;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.ghp-review-icon-button:hover {
  transform: translateY(-2px);
  background: #00877d;
  box-shadow: 0 12px 24px rgba(17, 17, 17, .18);
}

.ghp-review-icon-button--stack {
  flex-direction: column;
  gap: 5px;
  background: #fff;
  color: #111;
}

.ghp-review-icon-button--stack span {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 2px;
}

.ghp-review-icon-button--stack span:last-child {
  transform: rotate(-45deg);
}

.ghp-review-list {
  border-top: 1px solid rgba(17, 17, 17, .12);
}

.ghp-review-card {
  padding: 24px 0 26px;
  border-bottom: 1px solid rgba(17, 17, 17, .12);
  transition: background-color .2s ease;
}

.ghp-review-card:hover {
  background: linear-gradient(90deg, rgba(0, 135, 125, .045), transparent 42%);
}

.ghp-review-card-stars {
  margin-bottom: 10px;
}

.ghp-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #00877d;
  font-size: 21px;
  letter-spacing: 1px;
  line-height: 1;
}

.ghp-review-stars .is-empty {
  color: rgba(0, 135, 125, .38);
}

.ghp-review-author-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ghp-review-avatar {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef8f7;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.ghp-review-author {
  display: block;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.ghp-review-date {
  display: block;
  margin-top: 2px;
  color: #777;
  font-size: 12px;
  line-height: 1.2;
}

.ghp-review-content {
  max-width: 100%;
  color: #101010;
  font-size: 15px;
  line-height: 1.55;
}

.ghp-review-content p {
  margin: 0 0 8px;
}

.ghp-review-content p:last-child {
  margin-bottom: 0;
}

.ghp-review-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.ghp-review-image-link {
  width: 92px;
  height: 72px;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f3f3;
  border: 1px solid rgba(17, 17, 17, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.ghp-review-image-link:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px rgba(17, 17, 17, .16);
}

.ghp-review-image-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ghp-review-empty {
  margin-top: 16px;
  padding: 28px 24px;
  border: 1px dashed rgba(17, 17, 17, .2);
  border-radius: 14px;
  background: #fbfbfb;
  display: grid;
  gap: 6px;
  color: #666;
}

.ghp-review-empty strong {
  color: #111;
  font-size: 16px;
}

.ghp-review-pagination {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.ghp-review-pagination ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.ghp-review-pagination li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ghp-review-pagination a,
.ghp-review-pagination span {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, .12);
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.ghp-review-pagination a:hover,
.ghp-review-pagination .current {
  transform: translateY(-2px);
  background: #000;
  color: #fff;
  box-shadow: 0 10px 22px rgba(17, 17, 17, .16);
}

.ghp-review-form-panel {
  margin: 18px 0 24px;
  padding: 22px;
  border-radius: 16px;
  background: #f8fbfb;
  border: 1px solid rgba(0, 135, 125, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.ghp-review-form-inner {
  margin: 0;
}

.ghp-review-form-inner .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 16px;
  color: #555;
  font-size: 13px;
}

.ghp-review-form-inner .form-submit {
  margin: 14px 0 0;
}

.ghp-review-field {
  margin: 0 0 14px;
}

.ghp-review-field label {
  display: block;
  margin-bottom: 7px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.ghp-review-field input,
.ghp-review-field select,
.ghp-review-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ghp-review-field input,
.ghp-review-field select {
  min-height: 42px;
  padding: 0 12px;
}

.ghp-review-field textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

.ghp-review-field input:focus,
.ghp-review-field select:focus,
.ghp-review-field textarea:focus {
  border-color: #00877d;
  box-shadow: 0 0 0 4px rgba(0, 135, 125, .12);
}

.ghp-review-submit {
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.ghp-review-submit:hover {
  transform: translateY(-2px);
  background: #00877d;
  box-shadow: 0 12px 26px rgba(0, 135, 125, .24);
}

.ghp-review-form-disabled {
  color: #666;
  font-size: 14px;
}

@media (max-width: 900px) {
  .ghp-review-header {
    flex-direction: column;
  }

  .ghp-review-actions {
    width: 100%;
    margin-left: 0;
  }

  .ghp-write-review-button {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .ghp-reviews-v180 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ghp-review-module {
    padding: 18px 14px 24px;
  }

  .ghp-review-actions {
    gap: 6px;
  }

  .ghp-write-review-button {
    min-height: 40px;
    padding: 0 16px;
    font-size: 11px;
  }

  .ghp-review-icon-button {
    width: 40px;
    height: 40px;
  }

  .ghp-review-stars {
    font-size: 19px;
  }

  .ghp-review-content {
    font-size: 14px;
  }
}


/* v1.8.0: enhanced Customer Reviews with image/video upload and refined visual design */
.ghp-reviews-v180 {
  max-width: min(100%, 1380px) !important;
  padding: clamp(34px, 4vw, 58px) clamp(18px, 3.4vw, 46px) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 135, 125, .06), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}

.ghp-reviews-v180 .ghp-review-module {
  border-radius: 20px;
  padding: clamp(20px, 2.4vw, 34px);
  border: 1px solid rgba(17, 17, 17, .08);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(17, 17, 17, .08);
  overflow: hidden;
}

.ghp-reviews-v180 .ghp-review-header {
  align-items: flex-start;
  padding-bottom: 22px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.ghp-reviews-v180 .ghp-review-summary h2 {
  margin-bottom: 10px !important;
  font-size: clamp(20px, 1.55vw, 25px) !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
}

.ghp-reviews-v180 .ghp-review-score-line {
  gap: 9px;
  margin-bottom: 18px;
}

.ghp-reviews-v180 .ghp-review-score-line strong {
  font-size: 18px;
  font-weight: 900;
}

.ghp-reviews-v180 .ghp-review-score-line span {
  color: #2e2e2e;
  font-size: 13px;
}

.ghp-reviews-v180 .ghp-review-thumb-row {
  gap: 12px;
}

.ghp-reviews-v180 .ghp-review-thumb {
  position: relative;
  width: 78px;
  height: 64px;
  border-radius: 10px;
  border-color: rgba(17, 17, 17, .1);
  box-shadow: 0 8px 20px rgba(17, 17, 17, .06);
}

.ghp-reviews-v180 .ghp-review-thumb img,
.ghp-reviews-v180 .ghp-review-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.ghp-reviews-v180 .ghp-review-thumb:hover img,
.ghp-reviews-v180 .ghp-review-thumb:hover video {
  transform: scale(1.08);
  filter: brightness(.84) contrast(1.1) saturate(1.08);
}

.ghp-review-thumb-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .78);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.ghp-review-thumb-play::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 9px;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #fff;
}

.ghp-reviews-v180 .ghp-review-actions {
  gap: 10px;
}

.ghp-reviews-v180 .ghp-write-review-button {
  min-width: 230px;
  min-height: 46px;
  border: 1px solid rgba(0, 135, 125, .7);
  border-radius: 999px;
  background: #020202;
  box-shadow: 0 12px 30px rgba(17, 17, 17, .14);
}

.ghp-reviews-v180 .ghp-write-review-button:hover,
.ghp-reviews-v180 .ghp-write-review-button.is-active {
  background: #00877d;
  border-color: #00877d;
  box-shadow: 0 18px 38px rgba(0, 135, 125, .26);
}

.ghp-reviews-v180 .ghp-review-icon-button {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.ghp-reviews-v180 .ghp-review-list {
  border-top: 0;
}

.ghp-reviews-v180 .ghp-review-card {
  position: relative;
  padding: 26px 12px 28px;
  border-bottom: 1px solid rgba(17, 17, 17, .1);
  border-radius: 0;
}

.ghp-reviews-v180 .ghp-review-card:hover {
  background: linear-gradient(90deg, rgba(0, 135, 125, .06), rgba(0, 135, 125, 0) 56%);
}

.ghp-reviews-v180 .ghp-review-card-stars {
  margin-bottom: 12px;
}

.ghp-reviews-v180 .ghp-review-stars {
  color: #008f84;
  font-size: 22px;
  gap: 4px;
  text-shadow: 0 5px 12px rgba(0, 143, 132, .16);
}

.ghp-reviews-v180 .ghp-review-author-row {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  margin-bottom: 12px;
}

.ghp-reviews-v180 .ghp-review-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, #eaf9f8, #f6fffe);
  border: 1px solid rgba(0, 135, 125, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 20px rgba(0, 135, 125, .08);
}

.ghp-reviews-v180 .ghp-review-author {
  font-size: 15px;
  letter-spacing: -.01em;
}

.ghp-reviews-v180 .ghp-review-date {
  color: #7a7a7a;
  font-size: 12px;
}

.ghp-reviews-v180 .ghp-review-content {
  max-width: 1080px;
  color: #151515;
  font-size: clamp(14px, 1vw, 15.5px);
  line-height: 1.65;
}

.ghp-review-media-grid,
.ghp-review-images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.ghp-review-media-link,
.ghp-review-image-link {
  position: relative;
  width: 118px;
  height: 92px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f4f4;
  border: 1px solid rgba(17, 17, 17, .1);
  box-shadow: 0 8px 18px rgba(17, 17, 17, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.ghp-review-media-link video,
.ghp-review-media-link img,
.ghp-review-image-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.ghp-review-media-link:hover,
.ghp-review-image-link:hover {
  transform: translateY(-4px) scale(1.035);
  border-color: rgba(0, 135, 125, .44);
  box-shadow: 0 18px 38px rgba(17, 17, 17, .18);
}

.ghp-review-media-link:hover img,
.ghp-review-media-link:hover video,
.ghp-review-image-link:hover img {
  transform: scale(1.08);
  filter: brightness(.86) contrast(1.08) saturate(1.08);
}

.ghp-review-media-link.is-video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .72);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ghp-review-media-link.is-video::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ghp-reviews-v180 .ghp-review-form-panel {
  margin: 22px 0 26px;
  padding: clamp(18px, 2vw, 28px);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 135, 125, .055), rgba(0, 135, 125, .025)),
    #fff;
  border: 1px solid rgba(0, 135, 125, .2);
  box-shadow: 0 16px 42px rgba(0, 135, 125, .08);
}

.ghp-reviews-v180 .ghp-review-form-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.ghp-reviews-v180 .ghp-review-form-inner .comment-form-comment,
.ghp-reviews-v180 .ghp-review-form-inner .ghp-review-media-field,
.ghp-reviews-v180 .ghp-review-form-inner .comment-form-cookies-consent,
.ghp-reviews-v180 .ghp-review-form-inner .form-submit {
  grid-column: 1 / -1;
}

.ghp-review-upload-zone {
  min-height: 120px;
  padding: 18px;
  border: 1.5px dashed rgba(0, 135, 125, .38);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  display: flex !important;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.ghp-review-upload-zone:hover,
.ghp-review-upload-zone:focus-within {
  transform: translateY(-2px);
  border-color: #00877d;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 135, 125, .12);
}

.ghp-review-upload-zone input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ghp-review-upload-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  box-shadow: 0 12px 26px rgba(17, 17, 17, .18);
}

.ghp-review-upload-zone strong {
  display: block;
  margin-bottom: 4px;
  color: #111;
  font-size: 15px;
  font-weight: 800;
}

.ghp-review-upload-zone em {
  display: block;
  color: #666;
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.ghp-review-media-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.ghp-review-media-preview-item {
  width: 92px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #f3f3f3;
  border: 1px solid rgba(17, 17, 17, .1);
  box-shadow: 0 8px 18px rgba(17, 17, 17, .08);
}

.ghp-review-media-preview-item img,
.ghp-review-media-preview-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ghp-review-media-preview-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4px 6px;
  background: rgba(0, 0, 0, .62);
  color: #fff;
  font-size: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ghp-reviews-v180 .ghp-review-field input,
.ghp-reviews-v180 .ghp-review-field select,
.ghp-reviews-v180 .ghp-review-field textarea {
  border-radius: 12px;
  border-color: rgba(17, 17, 17, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.ghp-reviews-v180 .ghp-review-submit {
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .ghp-reviews-v180 .ghp-review-form-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ghp-reviews-v180 .ghp-review-module {
    border-radius: 16px;
  }

  .ghp-reviews-v180 .ghp-review-header {
    gap: 20px;
  }

  .ghp-reviews-v180 .ghp-review-thumb {
    width: 68px;
    height: 56px;
  }

  .ghp-reviews-v180 .ghp-write-review-button {
    min-width: 0;
  }

  .ghp-review-media-link,
  .ghp-review-image-link {
    width: 104px;
    height: 82px;
  }

  .ghp-review-upload-zone {
    min-height: 104px;
    padding: 14px;
  }
}

/* v1.9.0: review action buttons, no-refresh pagination, and refined review controls */
.ghp-reviews-v180 .ghp-review-module {
  position: relative;
}

.ghp-reviews-v180 .ghp-review-actions {
  align-items: center;
  gap: 10px;
}

.ghp-reviews-v180 .ghp-write-review-button {
  position: relative;
  isolation: isolate;
  min-width: 248px;
  height: 48px;
  min-height: 48px;
  padding: 0 32px;
  border: 0 !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #050505 0%, #151515 52%, #000 100%) !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 48px;
  text-transform: uppercase;
  text-shadow: none !important;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .18);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, opacity .24s ease;
}

.ghp-reviews-v180 .ghp-write-review-button::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .18) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.ghp-reviews-v180 .ghp-write-review-button span {
  color: inherit !important;
  position: relative;
  z-index: 1;
}

.ghp-reviews-v180 .ghp-write-review-button:hover,
.ghp-reviews-v180 .ghp-write-review-button.is-active {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #006f67 0%, #009e91 52%, #005f59 100%) !important;
  color: #fff !important;
  box-shadow: 0 20px 44px rgba(0, 135, 125, .28), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.ghp-reviews-v180 .ghp-write-review-button:hover::before,
.ghp-reviews-v180 .ghp-write-review-button.is-active::before {
  transform: translateX(120%);
}

.ghp-reviews-v180 .ghp-review-icon-button {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, .08) !important;
  border-radius: 15px;
  background: linear-gradient(180deg, #fff, #f4f4f4) !important;
  color: #111 !important;
  box-shadow: 0 10px 24px rgba(17, 17, 17, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
}

.ghp-reviews-v180 .ghp-review-icon-button:hover,
.ghp-reviews-v180 .ghp-review-icon-button.is-active {
  transform: translateY(-3px);
  border-color: rgba(0, 135, 125, .35) !important;
  background: linear-gradient(135deg, #009e91, #006f67) !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(0, 135, 125, .22);
}

.ghp-reviews-v180 .ghp-review-icon-button--filter > span {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}

.ghp-reviews-v180 .ghp-review-icon-button--filter > span::before,
.ghp-reviews-v180 .ghp-review-icon-button--filter > span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.ghp-reviews-v180 .ghp-review-icon-button--filter > span::before {
  top: 2px;
  border-top: 0;
  border-bottom: 6px solid currentColor;
  opacity: .42;
}

.ghp-reviews-v180 .ghp-review-icon-button--filter > span::after {
  bottom: 2px;
  border-bottom: 0;
  border-top: 6px solid currentColor;
}

.ghp-reviews-v180 .ghp-review-icon-button--filter.is-active > span::before {
  opacity: 1;
}

.ghp-reviews-v180 .ghp-review-icon-button--close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
  transform-origin: center;
}

.ghp-reviews-v180 .ghp-review-icon-button--close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ghp-reviews-v180 .ghp-review-icon-button--close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ghp-reviews-v180 .ghp-review-icon-button--close:hover {
  border-color: rgba(229, 38, 84, .34) !important;
  background: linear-gradient(135deg, #151515, #000) !important;
  box-shadow: 0 18px 36px rgba(17, 17, 17, .22);
}

.ghp-review-filter-panel {
  margin: 0 0 22px auto;
  padding: 12px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid rgba(0, 135, 125, .14);
  background: linear-gradient(180deg, rgba(0, 135, 125, .055), rgba(0, 135, 125, .025)), #fff;
  box-shadow: 0 14px 34px rgba(0, 135, 125, .08);
}

.ghp-review-filter-panel[hidden] {
  display: none !important;
}

.ghp-review-filter-panel span {
  margin-right: 4px;
  color: #626262;
  font-size: 12px;
  font-weight: 700;
}

.ghp-review-filter-panel button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, .1);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(17, 17, 17, .05);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.ghp-review-filter-panel button:hover,
.ghp-review-filter-panel button.is-active {
  transform: translateY(-2px);
  border-color: #00877d;
  background: #00877d;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 135, 125, .18);
}

.ghp-review-filter-empty {
  margin: 22px 0 10px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px dashed rgba(0, 135, 125, .35);
  background: rgba(0, 135, 125, .045);
  color: #444;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.ghp-review-card[hidden] {
  display: none !important;
}

.ghp-review-dynamic {
  position: relative;
  min-height: 90px;
}

.ghp-reviews-v180.is-loading .ghp-review-dynamic {
  opacity: .48;
  pointer-events: none;
  transition: opacity .2s ease;
}

.ghp-reviews-v180.is-loading .ghp-review-module::after {
  content: "Loading reviews...";
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 4;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .88);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 16px 40px rgba(17, 17, 17, .26);
}

.ghp-reviews-v180 .ghp-review-pagination {
  margin-top: 28px;
}

.ghp-reviews-v180 .ghp-review-pagination a,
.ghp-reviews-v180 .ghp-review-pagination span {
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.ghp-reviews-v180 .ghp-review-pagination a:hover,
.ghp-reviews-v180 .ghp-review-pagination .current {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e91e63, #c2185b) !important;
  color: #fff !important;
  box-shadow: 0 14px 26px rgba(233, 30, 99, .24);
}

.ghp-reviews-v180 .ghp-review-card {
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 18px;
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.ghp-reviews-v180 .ghp-review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 17, 17, .06);
}

@media (max-width: 900px) {
  .ghp-reviews-v180 .ghp-review-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .ghp-reviews-v180 .ghp-write-review-button {
    flex: 1 1 220px;
    min-width: 190px;
  }

  .ghp-review-filter-panel {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .ghp-reviews-v180 .ghp-write-review-button {
    width: 100%;
    flex-basis: 100%;
  }

  .ghp-reviews-v180 .ghp-review-icon-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .ghp-review-filter-panel {
    padding: 10px;
  }

  .ghp-review-filter-panel span {
    width: 100%;
  }
}


/* v1.9.1: Fix detail video poster click behavior.
   The poster and player now occupy the same 16:9 frame, so embedded videos replace
   the cover in place instead of appearing below it. */
.ghp-detail-video--has-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  line-height: 0;
}

.ghp-detail-video--has-poster .ghp-detail-video-poster,
.ghp-detail-video--has-poster .ghp-detail-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ghp-detail-video--has-poster .ghp-detail-video-player {
  z-index: 1;
  margin: 0;
  background: #111;
  overflow: hidden;
}

.ghp-detail-video--has-poster .ghp-detail-video-player[hidden] {
  display: none !important;
}

.ghp-detail-video--has-poster .ghp-detail-video-poster {
  z-index: 2;
  height: 100%;
}

.ghp-detail-video--has-poster.is-playing .ghp-detail-video-poster,
.ghp-detail-video--has-poster .ghp-detail-video-poster[hidden] {
  display: none !important;
}

.ghp-detail-video--has-poster.is-playing .ghp-detail-video-player {
  display: block;
}

.ghp-detail-video--has-poster .ghp-detail-video-player video,
.ghp-detail-video--has-poster .ghp-detail-video-player iframe,
.ghp-detail-video--has-poster .ghp-detail-cover-image {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto;
  display: block;
  border: 0;
  object-fit: cover;
}


/* v2.0.3: More visible polished native detail image lightbox controls. */
.ghp-detail-media-item[data-ghp-lightbox-item] {
  cursor: zoom-in;
}

.ghp-detail-media-item[data-ghp-lightbox-item]:focus-visible {
  outline: 3px solid rgba(255, 111, 0, .78);
  outline-offset: 5px;
}

.ghp-detail-media-item[data-ghp-lightbox-item]:focus-visible::after {
  opacity: 1;
}

.ghp-detail-media-item[data-ghp-lightbox-item]:focus-visible img {
  transform: scale(1.07);
  filter: brightness(.82) contrast(1.12) saturate(1.08);
}

html.ghp-detail-lightbox-open,
body.ghp-detail-lightbox-open {
  overflow: hidden !important;
  overscroll-behavior: contain;
}

.ghp-detail-lightbox[hidden],
.ghp-detail-lightbox:not([open])[hidden] {
  display: none !important;
}

.ghp-detail-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: clamp(16px, 3vw, 46px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(6, 8, 12, .92), rgba(15, 15, 18, .88));
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  transform: none !important;
  overflow: hidden;
  isolation: isolate;
}

.ghp-detail-lightbox::backdrop {
  background: rgba(6, 8, 12, .86);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

@supports (height: 100dvh) {
  .ghp-detail-lightbox {
    height: 100dvh !important;
  }
}

.ghp-detail-lightbox-backdrop {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
  appearance: none;
  -webkit-appearance: none;
}

.ghp-detail-lightbox-frame {
  position: relative;
  z-index: 2;
  width: min(calc(100vw - 48px), 1380px);
  height: min(calc(100vh - 56px), 920px);
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: 56px minmax(0, 1fr) 44px;
  align-items: center;
  justify-items: center;
  pointer-events: none;
}

@supports (height: 100dvh) {
  .ghp-detail-lightbox-frame {
    height: min(calc(100dvh - 56px), 920px);
  }
}

.ghp-detail-lightbox-stage {
  grid-row: 2;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  pointer-events: none;
}

.ghp-detail-lightbox-figure {
  position: relative;
  flex: 1 1 auto;
  width: min(100%, 1120px);
  max-width: calc(100% - 168px);
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.ghp-detail-lightbox-figure::before {
  content: '';
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
  opacity: .95;
}

.ghp-detail-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .38);
  animation: ghpLightboxImageIn .22s ease both;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes ghpLightboxImageIn {
  from {
    opacity: .72;
    transform: translateY(6px) scale(.985);
  }

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

.ghp-detail-lightbox-control {
  position: relative;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  padding: 0 !important;
  border: 2px solid rgba(255, 255, 255, .82) !important;
  border-radius: 999px !important;
  display: inline-grid !important;
  place-items: center;
  background: linear-gradient(135deg, #ff8a1f 0%, #ff6a00 52%, #f25700 100%) !important;
  color: #fff !important;
  box-shadow:
    0 18px 48px rgba(242, 87, 0, .34),
    0 14px 38px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .36);
  cursor: pointer;
  font-size: 0 !important;
  line-height: 1 !important;
  text-align: center;
  appearance: none !important;
  -webkit-appearance: none !important;
  opacity: 1;
  pointer-events: auto;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, filter .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.ghp-detail-lightbox-control::before {
  content: '';
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 106, 0, .24);
  filter: blur(10px);
  opacity: .82;
  transition: opacity .18s ease, transform .18s ease;
}

.ghp-detail-lightbox-control svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .24));
}

.ghp-detail-lightbox-control:hover,
.ghp-detail-lightbox-control:focus-visible {
  background: linear-gradient(135deg, #ff9b38 0%, #ff7300 50%, #f25700 100%) !important;
  border-color: #fff !important;
  box-shadow:
    0 24px 60px rgba(242, 87, 0, .44),
    0 18px 48px rgba(0, 0, 0, .4),
    inset 0 1px 0 rgba(255, 255, 255, .42);
  outline: none;
  filter: saturate(1.08);
  transform: translateY(-2px) scale(1.06);
}

.ghp-detail-lightbox-control:hover::before,
.ghp-detail-lightbox-control:focus-visible::before {
  opacity: 1;
  transform: scale(1.08);
}

.ghp-detail-lightbox-control:active {
  transform: translateY(0) scale(.97);
}

.ghp-detail-lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 8;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-color: rgba(255, 255, 255, .72) !important;
  background: rgba(17, 18, 22, .84) !important;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .36),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
}

.ghp-detail-lightbox-close::before {
  background: rgba(255, 255, 255, .16);
  opacity: .58;
}

.ghp-detail-lightbox-close:hover,
.ghp-detail-lightbox-close:focus-visible {
  background: #ff6a00 !important;
  border-color: #fff !important;
}

.ghp-detail-lightbox-close svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.55;
}

.ghp-detail-lightbox-nav {
  position: relative;
  z-index: 7;
  flex: 0 0 60px;
}

.ghp-detail-lightbox-nav[hidden] {
  display: none !important;
}

.ghp-detail-lightbox-prev svg {
  margin-left: -2px;
}

.ghp-detail-lightbox-next svg {
  margin-right: -2px;
}

.ghp-detail-lightbox-counter {
  grid-row: 3;
  z-index: 5;
  min-width: 66px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(0, 0, 0, .34);
  color: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .ghp-detail-lightbox-frame {
    width: min(calc(100vw - 28px), 980px);
    height: min(calc(100vh - 36px), 820px);
  }

  @supports (height: 100dvh) {
    .ghp-detail-lightbox-frame {
      height: min(calc(100dvh - 36px), 820px);
    }
  }

  .ghp-detail-lightbox-stage {
    gap: 14px;
  }

  .ghp-detail-lightbox-figure {
    max-width: calc(100% - 140px);
  }
}

@media (max-width: 767px) {
  .ghp-detail-lightbox {
    padding: 10px !important;
  }

  .ghp-detail-lightbox-frame {
    width: 100%;
    height: 100%;
    grid-template-rows: 50px minmax(0, 1fr) 66px;
  }

  .ghp-detail-lightbox-stage {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .ghp-detail-lightbox-figure {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .ghp-detail-lightbox-figure::before {
    inset: -8px;
    border-radius: 18px;
  }

  .ghp-detail-lightbox-image {
    border-radius: 11px;
    box-shadow: 0 18px 52px rgba(0, 0, 0, .34);
  }

  .ghp-detail-lightbox-close {
    top: 6px;
    right: 6px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .ghp-detail-lightbox-nav {
    position: absolute;
    bottom: -60px;
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
  }

  .ghp-detail-lightbox-nav svg {
    width: 24px;
    height: 24px;
  }

  .ghp-detail-lightbox-prev {
    left: calc(50% - 96px);
  }

  .ghp-detail-lightbox-next {
    right: calc(50% - 96px);
  }

  .ghp-detail-lightbox-counter {
    align-self: center;
    padding: 8px 13px;
  }
}

@media (max-width: 420px) {
  .ghp-detail-lightbox-prev {
    left: calc(50% - 84px);
  }

  .ghp-detail-lightbox-next {
    right: calc(50% - 84px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghp-detail-lightbox-image {
    animation: none;
  }

  .ghp-detail-lightbox-control {
    transition: none;
  }
}

/* v2.1.1: Refined Bundle & Save cards and timed Add to cart animation */
.ghp-cart-form .single_add_to_cart_button,
.ghp-cart-form .button,
.ghp-bundle-add {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: ghpAddCartPulse 4.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.ghp-cart-form .single_add_to_cart_button::after,
.ghp-cart-form .button::after,
.ghp-bundle-add::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .18) 34%, rgba(255, 255, 255, .56) 50%, rgba(255, 255, 255, .18) 66%, transparent 100%);
  transform: translateX(-125%) skewX(-18deg);
  animation: ghpAddCartShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ghpAddCartPulse {
  0%, 68%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
  }
  75% {
    transform: translateY(-1px) scale(1.012);
    box-shadow: 0 14px 32px rgba(255, 96, 0, .24);
  }
  82% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
  }
}

@keyframes ghpAddCartShine {
  0%, 64% {
    opacity: 0;
    transform: translateX(-125%) skewX(-18deg);
  }
  72% {
    opacity: .9;
  }
  88%, 100% {
    opacity: 0;
    transform: translateX(125%) skewX(-18deg);
  }
}

.ghp-bundle-save,
.ghp-bundle-save * {
  box-sizing: border-box;
}

.ghp-bundle-save {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px) clamp(14px, 3.2vw, 34px) clamp(38px, 5vw, 58px);
  overflow-x: clip;
}

.ghp-bundle-save-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) clamp(18px, 4.5vw, 60px) clamp(24px, 3.5vw, 34px);
  border: 1px solid rgba(255, 111, 0, .22);
  border-radius: clamp(18px, 2vw, 28px);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 119, 0, .16), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(255, 183, 92, .20), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fffaf5 52%, #fff4ea 100%);
  box-shadow:
    0 26px 70px rgba(24, 24, 24, .09),
    0 8px 22px rgba(255, 100, 0, .08);
}

.ghp-bundle-save-inner::before,
.ghp-bundle-save-inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ghp-bundle-save-inner::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), transparent 34%, rgba(255, 111, 0, .07)),
    linear-gradient(180deg, rgba(255, 255, 255, .64), transparent 38%);
}

.ghp-bundle-save-inner::after {
  right: -90px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: rgba(255, 111, 0, .08);
  filter: blur(2px);
}

.ghp-bundle-title {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  color: #090909;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: .005em;
  text-align: center;
}

.ghp-bundle-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--ghp-bundle-count, 2), minmax(210px, 240px));
  justify-content: center;
  align-items: stretch;
  gap: clamp(22px, 3vw, 34px);
  width: 100%;
  max-width: 100%;
  margin: 0 auto clamp(14px, 2vw, 18px);
}

.ghp-bundle-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  width: 100%;
  min-width: 0;
  min-height: 346px;
  padding: 16px 16px 15px;
  border: 1px solid rgba(19, 19, 19, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  box-shadow:
    0 14px 34px rgba(16, 16, 16, .075),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  transform: translateY(0);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease,
    background-color .24s ease;
}

.ghp-bundle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, rgba(255, 111, 0, .09), transparent 42%);
  transition: opacity .24s ease;
}

.ghp-bundle-card:hover,
.ghp-bundle-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 111, 0, .42);
  background: rgba(255, 255, 255, .96);
  box-shadow:
    0 24px 52px rgba(16, 16, 16, .13),
    0 8px 22px rgba(255, 100, 0, .13),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}

.ghp-bundle-card:hover::after,
.ghp-bundle-card:focus-within::after {
  opacity: 1;
}

.ghp-bundle-card:not(:first-child)::before {
  content: "+";
  position: absolute;
  z-index: 3;
  top: 50%;
  left: calc(clamp(22px, 3vw, 34px) / -2 - 15px);
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, .96);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9a16 0%, #ff6b00 45%, #ff4200 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  line-height: 26px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(255, 96, 0, .32);
  transform: translateY(-50%);
}

.ghp-bundle-image-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 164px;
  margin: -2px -2px 13px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, .94), rgba(250, 250, 250, .72) 54%, rgba(244, 244, 244, .82)),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  text-decoration: none;
  overflow: hidden;
}

.ghp-bundle-image-link::after {
  content: "";
  position: absolute;
  inset: auto 14px 10px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .08);
  filter: blur(12px);
  opacity: .55;
  transition: opacity .24s ease, transform .24s ease;
}

.ghp-bundle-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(17, 17, 17, .11));
  transform: translateZ(0) scale(1);
  transition: transform .24s ease, filter .24s ease;
}

.ghp-bundle-card:hover .ghp-bundle-image,
.ghp-bundle-card:focus-within .ghp-bundle-image {
  transform: translateY(-2px) scale(1.045);
  filter: drop-shadow(0 16px 18px rgba(17, 17, 17, .15));
}

.ghp-bundle-card:hover .ghp-bundle-image-link::after,
.ghp-bundle-card:focus-within .ghp-bundle-image-link::after {
  opacity: .78;
  transform: scaleX(.9);
}

.ghp-bundle-product-title {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 9px;
  overflow: hidden;
  color: #121212;
  font-size: 15px;
  line-height: 1.32;
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .2s ease;
}

.ghp-bundle-product-title:hover,
.ghp-bundle-product-title:focus {
  color: #ff5f00;
}

.ghp-bundle-card-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 24px;
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.ghp-bundle-card-price del,
.ghp-bundle-total del {
  color: #a3a9b1;
  font-weight: 750;
  text-decoration-color: rgba(119, 124, 132, .72);
  text-decoration-thickness: 1.5px;
}

.ghp-bundle-card-price ins,
.ghp-bundle-total strong {
  color: var(--ghp-red);
  font-weight: 850;
  text-decoration: none;
}

.ghp-bundle-option {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  margin-top: auto;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, .96);
  color: #2c2c2c;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .025em;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(20, 20, 20, .045);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.ghp-bundle-option:focus,
.ghp-bundle-option:hover {
  border-color: #ff6a00;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, .12), 0 8px 18px rgba(20, 20, 20, .065);
}

.ghp-bundle-total {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 12px;
  color: #111;
  font-size: 16px;
  line-height: 1.35;
}

.ghp-bundle-total span {
  font-weight: 850;
}

.ghp-bundle-total strong {
  font-size: 18px;
}

.ghp-bundle-add {
  position: relative;
  z-index: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  min-height: 48px;
  margin: 0 auto;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(135deg, #ff9618 0%, #ff6a00 48%, #ff3f00 100%);
  color: #fff !important;
  font-family: inherit;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 850;
  letter-spacing: .01em;
  text-align: center;
  text-transform: none !important;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(255, 96, 0, .28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}

.ghp-bundle-add:hover,
.ghp-bundle-add:focus {
  color: #fff !important;
  filter: saturate(1.08) brightness(1.03);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(255, 96, 0, .36);
}

.ghp-bundle-add[disabled] {
  cursor: wait;
  opacity: .78;
}

.ghp-bundle-add.is-success {
  background: linear-gradient(135deg, #25bf5c, #0d9942);
  box-shadow: 0 16px 34px rgba(32, 177, 90, .24);
}

.ghp-bundle-add.is-error {
  background: linear-gradient(135deg, #e40012, #b8000f);
  box-shadow: 0 16px 34px rgba(228, 0, 18, .20);
}

.ghp-bundle-save .added_to_cart.wc-forward {
  position: relative;
  z-index: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  min-height: 42px;
  margin: 10px auto 0 !important;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 111, 0, .30);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #ff5f00 !important;
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1 !important;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(20, 20, 20, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.ghp-bundle-save .added_to_cart.wc-forward:hover,
.ghp-bundle-save .added_to_cart.wc-forward:focus {
  transform: translateY(-1px);
  border-color: rgba(255, 111, 0, .48);
  background-color: #fff;
  box-shadow: 0 14px 28px rgba(255, 96, 0, .12);
}

.ghp-bundle-message {
  position: relative;
  z-index: 1;
  min-height: 20px;
  margin-top: 10px;
  color: #6b6b6b;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.ghp-bundle-save.is-loading .ghp-bundle-message {
  color: #ff5f00;
}

.ghp-bundle-save.is-success .ghp-bundle-message {
  color: #168543;
  font-weight: 700;
}

.ghp-bundle-save.is-error .ghp-bundle-message {
  color: #c70010;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .ghp-bundle-items {
    grid-template-columns: repeat(auto-fit, minmax(210px, 240px));
  }
}

@media (max-width: 900px) {
  .ghp-bundle-save {
    padding: 16px 16px 40px;
  }

  .ghp-bundle-save-inner {
    padding: 30px 18px 24px;
    border-radius: 22px;
  }

  .ghp-bundle-items {
    grid-template-columns: repeat(auto-fit, minmax(210px, 250px));
    gap: 28px;
  }

  .ghp-bundle-card:not(:first-child)::before {
    left: -29px;
  }
}

@media (max-width: 640px) {
  .ghp-bundle-save {
    padding: 14px 12px 34px;
  }

  .ghp-bundle-save-inner {
    padding: 26px 14px 22px;
    border-radius: 20px;
  }

  .ghp-bundle-title {
    margin-bottom: 22px;
    font-size: clamp(25px, 8vw, 34px);
  }

  .ghp-bundle-items {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    max-width: 360px;
  }

  .ghp-bundle-card {
    min-height: auto;
    padding: 15px;
    border-radius: 18px;
  }

  .ghp-bundle-card:not(:first-child)::before {
    top: -33px;
    left: 50%;
    transform: translateX(-50%);
  }

  .ghp-bundle-image-link {
    height: 178px;
  }

  .ghp-bundle-product-title {
    min-height: auto;
    -webkit-line-clamp: 3;
  }

  .ghp-bundle-add,
  .ghp-bundle-save .added_to_cart.wc-forward {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .ghp-bundle-save {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ghp-bundle-save-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ghp-bundle-image-link {
    height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghp-cart-form .single_add_to_cart_button,
  .ghp-cart-form .button,
  .ghp-bundle-add,
  .ghp-cart-form .single_add_to_cart_button::after,
  .ghp-cart-form .button::after,
  .ghp-bundle-add::after,
  .ghp-bundle-card,
  .ghp-bundle-card::after,
  .ghp-bundle-image,
  .ghp-bundle-image-link::after,
  .ghp-bundle-save .added_to_cart.wc-forward {
    animation: none !important;
    transition: none !important;
  }
}

/* v2.1.2: Bundle Add to cart functional polish and rounded button override */
.ghp-bundle-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: min(100%, 620px);
  margin: 0 auto;
}

.ghp-bundle-actions .ghp-bundle-add {
  flex: 1 1 320px;
  margin: 0 !important;
}

.ghp-bundle-save .ghp-bundle-add,
.ghp-cart-form .single_add_to_cart_button,
.ghp-cart-form button.single_add_to_cart_button,
.ghp-cart-form .button {
  border-radius: 14px !important;
  overflow: hidden !important;
}

.ghp-bundle-save .ghp-bundle-add {
  border: 0 !important;
  min-height: 48px !important;
  text-transform: uppercase !important;
}

.ghp-bundle-save .added_to_cart.wc-forward,
.ghp-bundle-save .ghp-bundle-view-cart {
  flex: 0 1 150px;
  width: auto !important;
  min-width: 132px;
  min-height: 48px;
  margin: 0 !important;
  border-radius: 14px !important;
  white-space: nowrap;
}

.ghp-bundle-add:disabled,
.ghp-bundle-add[aria-disabled="true"] {
  transform: none !important;
}

@media (max-width: 640px) {
  .ghp-bundle-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .ghp-bundle-actions .ghp-bundle-add,
  .ghp-bundle-save .added_to_cart.wc-forward,
  .ghp-bundle-save .ghp-bundle-view-cart {
    flex: 1 1 auto;
    width: 100% !important;
    min-width: 0;
  }
}

/* v2.1.3: Bundle add-to-cart validation and duplicate View cart cleanup */
.ghp-bundle-card.is-option-missing {
  border-color: rgba(214, 0, 18, .48) !important;
  box-shadow:
    0 18px 42px rgba(214, 0, 18, .10),
    0 8px 22px rgba(255, 100, 0, .08),
    inset 0 1px 0 rgba(255, 255, 255, .96) !important;
}

.ghp-bundle-card.is-option-missing .ghp-bundle-option {
  border-color: rgba(214, 0, 18, .52) !important;
  box-shadow: 0 0 0 4px rgba(214, 0, 18, .10) !important;
}

.ghp-bundle-save .ghp-bundle-view-cart {
  text-transform: none !important;
}


/* v2.1.4 - Main product Buy Now button */
.ghp-cart-form .ghp-buy-now-button {
  width: 100% !important;
  min-height: 44px;
  margin-top: 10px !important;
  border: 1px solid rgba(255, 112, 16, .32) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #ff7a12 0%, #ff5a00 48%, #f04300 100%) !important;
  box-shadow: 0 10px 22px rgba(255, 91, 0, .18);
  color: #fff !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.2;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.ghp-cart-form .ghp-buy-now-button:hover,
.ghp-cart-form .ghp-buy-now-button:focus {
  transform: translateY(-1px);
  border-color: rgba(255, 112, 16, .5) !important;
  background: linear-gradient(135deg, #ff8a24 0%, #ff6508 48%, #e83c00 100%) !important;
  box-shadow: 0 14px 28px rgba(255, 91, 0, .24);
  color: #fff !important;
}

.ghp-cart-form .ghp-buy-now-button.disabled,
.ghp-cart-form .ghp-buy-now-button:disabled {
  transform: none;
  box-shadow: none;
  opacity: .55;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .ghp-cart-form .ghp-buy-now-button {
    min-height: 46px;
    margin-top: 9px !important;
    font-size: 12px;
  }
}

/* v2.1.7 - Bundle & Save visual refinement, scoped to .ghp-bundle-save */
.ghp-bundle-save {
  width: 100%;
  max-width: 1460px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(18px, 3vw, 34px) clamp(12px, 3vw, 32px) clamp(40px, 5vw, 60px);
  overflow-x: hidden;
  overflow-x: clip;
}

.ghp-bundle-save .ghp-bundle-save-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 46px) clamp(16px, 4vw, 52px) clamp(24px, 3.5vw, 34px);
  border: 1px solid rgba(17, 17, 17, .06);
  border-radius: clamp(18px, 2vw, 26px);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 126, 34, .10), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(255, 171, 83, .10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  box-shadow: 0 18px 46px rgba(17, 17, 17, .07);
}

.ghp-bundle-save .ghp-bundle-save-inner::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0) 44%);
}

.ghp-bundle-save .ghp-bundle-save-inner::after {
  width: 190px;
  height: 190px;
  right: -76px;
  bottom: -96px;
  background: rgba(255, 111, 0, .06);
}

.ghp-bundle-save .ghp-bundle-title {
  max-width: 860px;
  margin: 0 auto clamp(20px, 2.8vw, 32px);
  color: #111;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.14;
  font-weight: 750;
  letter-spacing: -.015em;
}

.ghp-bundle-save .ghp-bundle-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 260px));
  justify-content: center;
  align-items: stretch;
  gap: clamp(18px, 2.5vw, 28px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto clamp(16px, 2.2vw, 22px);
}

.ghp-bundle-save .ghp-bundle-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  width: 100%;
  min-width: 0;
  min-height: 330px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(17, 17, 17, .07);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, .07);
  backdrop-filter: none;
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  will-change: transform;
  overflow: visible;
}

.ghp-bundle-save .ghp-bundle-card::after {
  opacity: 0;
  background: linear-gradient(180deg, rgba(255, 111, 0, .055), transparent 46%);
  transition: opacity .22s ease;
}

.ghp-bundle-save .ghp-bundle-card:hover,
.ghp-bundle-save .ghp-bundle-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255, 111, 0, .26);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, .10);
}

.ghp-bundle-save .ghp-bundle-card:hover::after,
.ghp-bundle-save .ghp-bundle-card:focus-within::after {
  opacity: 1;
}

.ghp-bundle-save .ghp-bundle-card:not(:first-child)::before {
  top: 50%;
  left: calc(clamp(18px, 2.5vw, 28px) / -2 - 14px);
  width: 28px;
  height: 28px;
  border-width: 2px;
  font-size: 20px;
  line-height: 24px;
  box-shadow: 0 8px 18px rgba(255, 96, 0, .24);
}

.ghp-bundle-save .ghp-bundle-image-link {
  height: 158px;
  margin: 0 0 13px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfbfb 0%, #f5f5f5 100%);
  overflow: hidden;
}

.ghp-bundle-save .ghp-bundle-image-link::after {
  inset: auto 18px 10px;
  height: 16px;
  opacity: .38;
  transition: opacity .22s ease, transform .22s ease;
}

.ghp-bundle-save .ghp-bundle-image {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 9px 12px rgba(17, 17, 17, .10));
  transform: translateZ(0) scale(1);
  transition: transform .24s ease, filter .24s ease;
}

.ghp-bundle-save .ghp-bundle-card:hover .ghp-bundle-image,
.ghp-bundle-save .ghp-bundle-card:focus-within .ghp-bundle-image {
  transform: translateZ(0) scale(1.035);
  filter: drop-shadow(0 11px 14px rgba(17, 17, 17, .13));
}

.ghp-bundle-save .ghp-bundle-card:hover .ghp-bundle-image-link::after,
.ghp-bundle-save .ghp-bundle-card:focus-within .ghp-bundle-image-link::after {
  opacity: .55;
  transform: scaleX(.94);
}

.ghp-bundle-save .ghp-bundle-product-title {
  min-height: 42px;
  margin-bottom: 8px;
  color: #151515;
  font-size: 14.5px;
  line-height: 1.35;
  font-weight: 760;
  text-align: center;
  text-decoration-thickness: 1px;
  overflow-wrap: anywhere;
}

.ghp-bundle-save .ghp-bundle-product-title:hover,
.ghp-bundle-save .ghp-bundle-product-title:focus {
  color: #ff6500;
}

.ghp-bundle-save .ghp-bundle-card-price {
  gap: 6px;
  min-width: 0;
  margin-bottom: 12px;
  font-size: 14.5px;
}

.ghp-bundle-save .ghp-bundle-card-price del,
.ghp-bundle-save .ghp-bundle-total del {
  color: #9ba1aa;
}

.ghp-bundle-save .ghp-bundle-card-price ins,
.ghp-bundle-save .ghp-bundle-total strong {
  color: var(--ghp-red);
}

.ghp-bundle-save .ghp-bundle-option {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 40px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(17, 17, 17, .045);
}

.ghp-bundle-save .ghp-bundle-option:hover,
.ghp-bundle-save .ghp-bundle-option:focus {
  border-color: rgba(255, 106, 0, .62);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .10), 0 7px 16px rgba(17, 17, 17, .055);
}

.ghp-bundle-save .ghp-bundle-total {
  min-width: 0;
  margin: 8px auto 14px;
  font-size: 16px;
}

.ghp-bundle-save .ghp-bundle-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100%, 620px);
  margin: 0 auto;
}

.ghp-bundle-save .ghp-bundle-actions .ghp-bundle-add {
  flex: 1 1 310px;
  min-width: 0;
  margin: 0 !important;
}

.ghp-bundle-save .ghp-bundle-add {
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 26px rgba(255, 96, 0, .23);
}

.ghp-bundle-save .ghp-bundle-add:hover,
.ghp-bundle-save .ghp-bundle-add:focus {
  transform: translateY(-1px);
  box-shadow: 0 15px 32px rgba(255, 96, 0, .28);
}

.ghp-bundle-save .added_to_cart.wc-forward,
.ghp-bundle-save .ghp-bundle-view-cart {
  flex: 0 1 150px;
  width: auto !important;
  min-width: 132px;
  max-width: 100%;
  min-height: 48px;
  margin: 0 !important;
  border-radius: 14px !important;
  background: #fff;
  white-space: nowrap;
}

.ghp-bundle-save .ghp-bundle-card.is-option-missing {
  border-color: rgba(214, 0, 18, .42) !important;
  box-shadow: 0 14px 34px rgba(214, 0, 18, .10) !important;
}

.ghp-bundle-save .ghp-bundle-card.is-option-missing .ghp-bundle-option {
  border-color: rgba(214, 0, 18, .52) !important;
  box-shadow: 0 0 0 3px rgba(214, 0, 18, .10) !important;
}

.ghp-bundle-save .ghp-bundle-message {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 900px) {
  .ghp-bundle-save {
    padding: 16px 12px 40px;
  }

  .ghp-bundle-save .ghp-bundle-save-inner {
    padding: 28px 14px 24px;
    border-radius: 20px;
  }

  .ghp-bundle-save .ghp-bundle-items {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 250px));
    gap: 24px;
  }

  .ghp-bundle-save .ghp-bundle-card:not(:first-child)::before {
    left: -26px;
  }
}

@media (max-width: 640px) {
  .ghp-bundle-save {
    max-width: 100%;
    padding: 14px 10px 34px;
  }

  .ghp-bundle-save .ghp-bundle-save-inner {
    max-width: 100%;
    padding: 24px 10px 22px;
    border-radius: 18px;
  }

  .ghp-bundle-save .ghp-bundle-title {
    margin-bottom: 20px;
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .ghp-bundle-save .ghp-bundle-items {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    width: 100%;
    max-width: 360px;
  }

  .ghp-bundle-save .ghp-bundle-card {
    min-height: auto;
    padding: 13px;
    border-radius: 16px;
  }

  .ghp-bundle-save .ghp-bundle-card:hover,
  .ghp-bundle-save .ghp-bundle-card:focus-within {
    transform: translateY(-2px);
  }

  .ghp-bundle-save .ghp-bundle-card:not(:first-child)::before {
    top: -31px;
    left: 50%;
    transform: translateX(-50%);
  }

  .ghp-bundle-save .ghp-bundle-image-link {
    height: 170px;
    border-radius: 13px;
  }

  .ghp-bundle-save .ghp-bundle-product-title {
    min-height: auto;
    -webkit-line-clamp: 3;
  }

  .ghp-bundle-save .ghp-bundle-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .ghp-bundle-save .ghp-bundle-actions .ghp-bundle-add,
  .ghp-bundle-save .added_to_cart.wc-forward,
  .ghp-bundle-save .ghp-bundle-view-cart {
    flex: 1 1 auto;
    width: 100% !important;
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .ghp-bundle-save {
    padding-right: 8px;
    padding-left: 8px;
  }

  .ghp-bundle-save .ghp-bundle-save-inner {
    padding-right: 8px;
    padding-left: 8px;
  }

  .ghp-bundle-save .ghp-bundle-image-link {
    height: 154px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghp-bundle-save .ghp-bundle-card,
  .ghp-bundle-save .ghp-bundle-card::after,
  .ghp-bundle-save .ghp-bundle-image,
  .ghp-bundle-save .ghp-bundle-image-link::after,
  .ghp-bundle-save .ghp-bundle-add,
  .ghp-bundle-save .ghp-bundle-add::after,
  .ghp-bundle-save .added_to_cart.wc-forward,
  .ghp-bundle-save .ghp-bundle-view-cart {
    animation: none !important;
    transition: none !important;
  }
}

/* v2.1.8 Product gallery thumbnail carousel. Scoped to the custom product gallery only. */
.ghp-product-page .ghp-custom-gallery {
  max-width: 100%;
  min-width: 0;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-thumbs {
  max-width: 100%;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-thumb {
  position: relative;
  flex: 0 0 auto;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  touch-action: manipulation;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(17, 17, 17, .08);
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-thumb.is-active {
  border-color: #111;
  box-shadow: 0 0 0 1px #111, 0 8px 18px rgba(17, 17, 17, .10);
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-thumb:focus-visible {
  outline: 2px solid #ff6a00;
  outline-offset: 2px;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-main {
  position: relative;
  max-width: 100%;
  isolation: isolate;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-main-link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-main-image,
.ghp-product-page .ghp-custom-gallery .ghp-gallery-main img {
  max-width: 100%;
  transition: transform .28s ease, opacity .18s ease;
  will-change: transform;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-main-link:hover .ghp-gallery-main-image {
  transform: scale(1.018);
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-main-image.is-changing {
  opacity: .72;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: #111;
  box-shadow: 0 10px 24px rgba(17, 17, 17, .14);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-50%) scale(.96);
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-main:hover .ghp-gallery-nav,
.ghp-product-page .ghp-custom-gallery .ghp-gallery-nav:focus-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-nav:hover {
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, .18);
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-nav:focus-visible {
  outline: 2px solid #ff6a00;
  outline-offset: 2px;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-nav svg {
  width: 22px;
  height: 22px;
  display: block;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-nav svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-nav--prev {
  left: 14px;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-nav--next {
  right: 14px;
}

.ghp-product-page .ghp-custom-gallery .ghp-gallery-counter {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  min-width: 48px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: #111;
  box-shadow: 0 8px 20px rgba(17, 17, 17, .10);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media (hover: none) {
  .ghp-product-page .ghp-custom-gallery .ghp-gallery-nav {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  .ghp-product-page .ghp-custom-gallery .ghp-gallery-main-link:hover .ghp-gallery-main-image {
    transform: none;
  }
}

@media (max-width: 640px) {
  .ghp-product-page .ghp-custom-gallery {
    overflow: hidden;
  }

  .ghp-product-page .ghp-custom-gallery .ghp-gallery-main {
    width: 100%;
  }

  .ghp-product-page .ghp-custom-gallery .ghp-gallery-thumbs {
    min-width: 0;
  }

  .ghp-product-page .ghp-custom-gallery .ghp-gallery-thumb {
    min-width: 0;
  }

  .ghp-product-page .ghp-custom-gallery .ghp-gallery-nav {
    width: 36px;
    height: 36px;
  }

  .ghp-product-page .ghp-custom-gallery .ghp-gallery-nav--prev {
    left: 8px;
  }

  .ghp-product-page .ghp-custom-gallery .ghp-gallery-nav--next {
    right: 8px;
  }

  .ghp-product-page .ghp-custom-gallery .ghp-gallery-counter {
    right: 10px;
    bottom: 10px;
    font-size: 11px;
  }
}

/* v2.3.34 - Single product package selector, quantity, CTA colors, and layout spacing polish. */
.ghp-product-page {
  --ghp-cta-green: #16a34a;
  --ghp-cta-green-hover: #12823c;
  --ghp-google-blue: #4285f4;
  --ghp-google-blue-hover: #2f6fdf;
  --ghp-package-accent: #16a34a;
  --ghp-package-accent-soft: rgba(22, 163, 74, .10);
  --ghp-package-shadow: 0 18px 42px rgba(17, 24, 39, .10);
}

.ghp-product-page .ghp-product-shell {
  width: min(100%, 1380px);
  padding: clamp(28px, 3.1vw, 42px) clamp(22px, 3.6vw, 40px) clamp(36px, 4.2vw, 56px);
  grid-template-columns: minmax(620px, 1fr) minmax(390px, 430px);
  gap: clamp(52px, 4.8vw, 76px);
}

.ghp-product-page .ghp-product-summary-col {
  top: 116px;
}

.ghp-product-page .ghp-cart-form {
  margin-top: 18px;
}

.ghp-product-page .ghp-cart-form form.cart,
.ghp-product-page .ghp-cart-form .woocommerce-variation-add-to-cart {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ghp-product-page .ghp-cart-form .quantity:not(.hidden) {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  width: 100% !important;
  min-height: 52px;
  margin: 2px 0 2px !important;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
  gap: 8px;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .22s ease;
}

.ghp-product-page .ghp-cart-form .quantity:not(.hidden)::before {
  content: "Quantity";
  margin-right: auto;
  color: #111827;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ghp-product-page .ghp-cart-form .quantity:not(.hidden):hover,
.ghp-product-page .ghp-cart-form .quantity:not(.hidden):focus-within {
  border-color: rgba(22, 163, 74, .38);
  box-shadow: 0 10px 26px rgba(17, 24, 39, .08), 0 0 0 4px rgba(22, 163, 74, .08);
}

.ghp-product-page .ghp-cart-form .quantity.is-ghp-quantity-synced {
  animation: ghpQuantitySync .52s cubic-bezier(.2, .8, .2, 1);
}

.ghp-product-page .ghp-cart-form .quantity input.qty,
.ghp-product-page .ghp-cart-form .quantity input[type="number"] {
  width: 92px !important;
  max-width: 92px;
  height: 36px !important;
  min-height: 36px !important;
  margin: 0 !important;
  padding: 0 10px !important;
  border: 1px solid rgba(17, 24, 39, .14) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #111827 !important;
  box-shadow: none !important;
  text-align: center;
  font-size: 15px;
  font-weight: 850;
  line-height: 36px;
  appearance: auto;
  -moz-appearance: textfield;
}

.ghp-product-page .ghp-cart-form .quantity input.qty:focus,
.ghp-product-page .ghp-cart-form .quantity input[type="number"]:focus {
  border-color: var(--ghp-cta-green) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .14) !important;
}

.ghp-product-page .ghp-cart-form .quantity .minus,
.ghp-product-page .ghp-cart-form .quantity .plus {
  flex: 0 0 34px;
  width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  margin: 0 !important;
  border: 1px solid rgba(17, 24, 39, .10) !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #111827 !important;
  box-shadow: none !important;
  line-height: 32px !important;
}

.ghp-product-page .ghp-package-selector {
  margin: 0 0 14px;
}

.ghp-product-page .ghp-package-selector__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.ghp-product-page .ghp-package-selector.is-manual-quantity .ghp-package-selector__title::after {
  content: "Custom quantity";
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(66, 133, 244, .10);
  color: var(--ghp-google-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: none;
}

.ghp-product-page .ghp-package-selector__grid {
  gap: 12px;
}

.ghp-product-page .ghp-package-option {
  position: relative;
  overflow: hidden;
  min-height: 108px;
  padding: 14px 15px 13px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(66, 133, 244, .08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 8px 20px rgba(17, 24, 39, .045);
  transform: translateY(0) scale(1);
  transition:
    transform .24s cubic-bezier(.2, .8, .2, 1),
    border-color .24s ease,
    box-shadow .24s ease,
    background .24s ease,
    color .24s ease;
  isolation: isolate;
}

.ghp-product-page .ghp-package-option::before,
.ghp-product-page .ghp-package-option::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ghp-product-page .ghp-package-option::before {
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(22, 163, 74, .14), rgba(66, 133, 244, .10));
  opacity: 0;
  transform: scale(.96);
  transition: opacity .24s ease, transform .24s ease;
}

.ghp-product-page .ghp-package-option::after {
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--ghp-package-accent);
  box-shadow: 0 8px 18px rgba(22, 163, 74, .24);
  opacity: 0;
  transform: scale(.72) rotate(-12deg);
  transition: opacity .22s ease, transform .22s cubic-bezier(.2, .9, .2, 1.2);
}

.ghp-product-page .ghp-package-option:hover,
.ghp-product-page .ghp-package-option:focus-visible {
  border-color: rgba(22, 163, 74, .42);
  background:
    radial-gradient(circle at 92% 8%, rgba(66, 133, 244, .12), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7fff9 100%);
  box-shadow: var(--ghp-package-shadow);
  outline: none;
  transform: translateY(-3px) scale(1.01);
}

.ghp-product-page .ghp-package-option:hover::before,
.ghp-product-page .ghp-package-option:focus-visible::before {
  opacity: .7;
  transform: scale(1);
}

.ghp-product-page .ghp-package-option.is-active {
  border-color: rgba(22, 163, 74, .72);
  background:
    radial-gradient(circle at 92% 8%, rgba(22, 163, 74, .18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3fff7 100%);
  box-shadow: 0 18px 42px rgba(22, 163, 74, .16), inset 0 0 0 1px rgba(22, 163, 74, .38);
  transform: translateY(-1px) scale(1.005);
}

.ghp-product-page .ghp-package-option.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.ghp-product-page .ghp-package-option.is-active::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.ghp-product-page .ghp-package-option__head {
  padding-right: 26px;
  margin-bottom: 7px;
}

.ghp-product-page .ghp-package-option__name {
  color: #111827;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -.01em;
}

.ghp-product-page .ghp-package-option__discount {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 6px 14px rgba(220, 38, 38, .20);
}

.ghp-product-page .ghp-package-option__meta {
  min-height: 32px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.ghp-product-page .ghp-package-option__price {
  margin-top: 9px;
  color: #111827;
  font-size: 17px;
  font-weight: 950;
}

.ghp-product-page .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button),
.ghp-product-page .ghp-cart-form button.single_add_to_cart_button:not(.ghp-buy-now-button) {
  min-height: 48px !important;
  border: 1px solid rgba(22, 163, 74, .42) !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #22c55e 0%, var(--ghp-cta-green) 52%, #15803d 100%) !important;
  box-shadow: 0 12px 26px rgba(22, 163, 74, .22) !important;
  color: #fff !important;
  font-weight: 900 !important;
  letter-spacing: .045em !important;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease, background .22s ease, border-color .22s ease !important;
}

.ghp-product-page .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button):hover,
.ghp-product-page .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button):focus-visible,
.ghp-product-page .ghp-cart-form button.single_add_to_cart_button:not(.ghp-buy-now-button):hover,
.ghp-product-page .ghp-cart-form button.single_add_to_cart_button:not(.ghp-buy-now-button):focus-visible {
  border-color: rgba(18, 130, 60, .58) !important;
  background: linear-gradient(135deg, #34d46a 0%, var(--ghp-cta-green-hover) 54%, #0f6b32 100%) !important;
  box-shadow: 0 16px 34px rgba(22, 163, 74, .30) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.ghp-product-page .ghp-cart-form .ghp-buy-now-button,
.ghp-product-page .ghp-cart-form button.ghp-buy-now-button {
  min-height: 48px !important;
  margin-top: 0 !important;
  border: 1px solid rgba(66, 133, 244, .44) !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #5b9af6 0%, var(--ghp-google-blue) 52%, #246fe5 100%) !important;
  box-shadow: 0 12px 26px rgba(66, 133, 244, .22) !important;
  color: #fff !important;
  font-weight: 900 !important;
  letter-spacing: .045em !important;
}

.ghp-product-page .ghp-cart-form .ghp-buy-now-button:hover,
.ghp-product-page .ghp-cart-form .ghp-buy-now-button:focus-visible,
.ghp-product-page .ghp-cart-form button.ghp-buy-now-button:hover,
.ghp-product-page .ghp-cart-form button.ghp-buy-now-button:focus-visible {
  border-color: rgba(47, 111, 223, .58) !important;
  background: linear-gradient(135deg, #70a7ff 0%, var(--ghp-google-blue-hover) 52%, #1f5fd6 100%) !important;
  box-shadow: 0 16px 34px rgba(66, 133, 244, .30) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

@keyframes ghpQuantitySync {
  0% {
    border-color: rgba(22, 163, 74, .18);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, .0);
    transform: scale(1);
  }
  48% {
    border-color: rgba(22, 163, 74, .62);
    box-shadow: 0 0 0 6px rgba(22, 163, 74, .11), 0 12px 26px rgba(17, 24, 39, .08);
    transform: scale(1.012);
  }
  100% {
    border-color: rgba(17, 24, 39, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .ghp-product-page .ghp-product-shell {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 410px);
    gap: clamp(34px, 4vw, 52px);
    padding-inline: 24px;
  }
}

@media (max-width: 1024px) {
  .ghp-product-page .ghp-product-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 26px 18px 40px;
  }

  .ghp-product-page .ghp-product-summary-col {
    top: auto;
  }
}

@media (max-width: 767px) {
  .ghp-product-page .ghp-package-selector__grid {
    grid-template-columns: 1fr;
  }

  .ghp-product-page .ghp-package-option {
    min-height: 96px;
  }

  .ghp-product-page .ghp-cart-form .quantity:not(.hidden) {
    min-height: 50px;
    border-radius: 14px;
  }

  .ghp-product-page .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button),
  .ghp-product-page .ghp-cart-form .ghp-buy-now-button {
    min-height: 48px !important;
    border-radius: 14px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghp-product-page .ghp-package-option,
  .ghp-product-page .ghp-package-option::before,
  .ghp-product-page .ghp-package-option::after,
  .ghp-product-page .ghp-cart-form .quantity,
  .ghp-product-page .ghp-cart-form .single_add_to_cart_button,
  .ghp-product-page .ghp-cart-form .ghp-buy-now-button {
    animation: none !important;
    transition: none !important;
  }
}

/* v2.3.35 - English package cards, refined motion, stronger Google-blue Buy Now, and sidebar cleanup. */
.ghp-product-page {
  --ghp-google-blue: #4285f4;
  --ghp-google-blue-strong: #1a73e8;
  --ghp-google-blue-dark: #1558d6;
  --ghp-package-accent: #16a34a;
  --ghp-package-border: rgba(17, 24, 39, .12);
  --ghp-package-border-hover: rgba(22, 163, 74, .36);
  --ghp-package-border-active: rgba(22, 163, 74, .68);
}

.ghp-product-page .ghp-offer-box,
.ghp-product-page .ghp-payment-notice,
.ghp-product-page .ghp-policy-list,
.ghp-product-page .ghp-sidebar-overview {
  display: none !important;
}

.ghp-product-page .ghp-cart-form {
  margin-bottom: 4px;
}

.ghp-product-page .ghp-package-selector {
  margin: 0 0 16px;
}

.ghp-product-page .ghp-package-selector__title {
  margin-bottom: 11px;
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1.1;
  text-transform: uppercase;
}

.ghp-product-page .ghp-package-selector__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ghp-product-page .ghp-package-option {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 15px 14px;
  border: 1px solid var(--ghp-package-border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 94% 10%, rgba(66, 133, 244, .055), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
  box-shadow: 0 7px 18px rgba(17, 24, 39, .045);
  color: #111827;
  text-align: left;
  transform: translateY(0);
  transition:
    transform .20s cubic-bezier(.2, .7, .2, 1),
    border-color .20s ease,
    box-shadow .20s ease,
    background .20s ease;
}

.ghp-product-page .ghp-package-option::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(22, 163, 74, .10), rgba(66, 133, 244, .075));
  opacity: 0;
  transform: scale(.985);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}

.ghp-product-page .ghp-package-option::after {
  content: "✓";
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ghp-package-accent);
  box-shadow: 0 7px 16px rgba(22, 163, 74, .22);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transform: scale(.82);
  transition: opacity .18s ease, transform .20s cubic-bezier(.2, .75, .2, 1);
  pointer-events: none;
}

.ghp-product-page .ghp-package-option > * {
  position: relative;
  z-index: 1;
}

.ghp-product-page .ghp-package-option:hover,
.ghp-product-page .ghp-package-option:focus-visible {
  border-color: var(--ghp-package-border-hover);
  background:
    radial-gradient(circle at 94% 10%, rgba(66, 133, 244, .09), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8fffa 100%);
  box-shadow: 0 13px 30px rgba(17, 24, 39, .09);
  outline: none;
  transform: translateY(-2px);
}

.ghp-product-page .ghp-package-option:hover::before,
.ghp-product-page .ghp-package-option:focus-visible::before {
  opacity: .82;
  transform: scale(1);
}

.ghp-product-page .ghp-package-option.is-active {
  border-color: var(--ghp-package-border-active);
  background:
    radial-gradient(circle at 94% 10%, rgba(22, 163, 74, .13), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f4fff7 100%);
  box-shadow: 0 14px 32px rgba(22, 163, 74, .13), inset 0 0 0 1px rgba(22, 163, 74, .24);
  transform: translateY(-1px);
}

.ghp-product-page .ghp-package-option.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.ghp-product-page .ghp-package-option.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.ghp-product-page .ghp-package-option__head {
  display: flex;
  min-height: 23px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-right: 27px;
  margin: 0;
}

.ghp-product-page .ghp-package-option__name {
  color: #111827;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -.01em;
  line-height: 1.05;
}

.ghp-product-page .ghp-package-option__discount {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(239, 68, 68, .10);
  box-shadow: none;
  color: #dc2626;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.ghp-product-page .ghp-package-option__details {
  display: grid;
  gap: 5px;
  margin-top: 1px;
}

.ghp-product-page .ghp-package-option__pack,
.ghp-product-page .ghp-package-option__shipping {
  display: block;
  color: #4b5563;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.22;
}

.ghp-product-page .ghp-package-option__shipping {
  color: #6b7280;
  font-weight: 700;
}

.ghp-product-page .ghp-package-option__price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

.ghp-product-page .ghp-package-option__price-label {
  color: #6b7280;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.ghp-product-page .ghp-package-option__price {
  display: block;
  margin-top: 0;
  color: #111827;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.02em;
  line-height: 1.05;
  text-align: right;
  white-space: nowrap;
}

.ghp-product-page .ghp-cart-form .ghp-buy-now-button,
.ghp-product-page .ghp-cart-form button.ghp-buy-now-button {
  border-color: rgba(66, 133, 244, .76) !important;
  background: linear-gradient(135deg, var(--ghp-google-blue) 0%, var(--ghp-google-blue-strong) 58%, var(--ghp-google-blue-dark) 100%) !important;
  box-shadow: 0 13px 28px rgba(26, 115, 232, .30) !important;
  color: #fff !important;
}

.ghp-product-page .ghp-cart-form .ghp-buy-now-button:hover,
.ghp-product-page .ghp-cart-form .ghp-buy-now-button:focus-visible,
.ghp-product-page .ghp-cart-form button.ghp-buy-now-button:hover,
.ghp-product-page .ghp-cart-form button.ghp-buy-now-button:focus-visible {
  border-color: rgba(21, 88, 214, .82) !important;
  background: linear-gradient(135deg, #5b9cff 0%, var(--ghp-google-blue-strong) 48%, #0f4ec6 100%) !important;
  box-shadow: 0 16px 34px rgba(26, 115, 232, .36) !important;
}

@media (max-width: 767px) {
  .ghp-product-page .ghp-package-selector__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ghp-product-page .ghp-package-option {
    min-height: 104px;
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghp-product-page .ghp-package-option,
  .ghp-product-page .ghp-package-option::before,
  .ghp-product-page .ghp-package-option::after {
    transition: none !important;
  }
}

/* v2.3.36 - Reserve enough space for the floating custom header on single product pages. */
body.ghp-has-custom-site-header.single-product .ghp-product-page .ghp-product-shell {
  padding-top: clamp(78px, 5.6vw, 96px);
}

body.admin-bar.ghp-has-custom-site-header.single-product .ghp-product-page .ghp-product-shell {
  padding-top: clamp(110px, calc(5.6vw + 32px), 130px);
}

body.ghp-has-custom-site-header.single-product .ghp-product-page .ghp-product-summary-col {
  top: 112px;
}

body.admin-bar.ghp-has-custom-site-header.single-product .ghp-product-page .ghp-product-summary-col {
  top: 144px;
}

@media (max-width: 1024px) {
  body.ghp-has-custom-site-header.single-product .ghp-product-page .ghp-product-shell {
    padding-top: 88px;
  }

  body.admin-bar.ghp-has-custom-site-header.single-product .ghp-product-page .ghp-product-shell {
    padding-top: 134px;
  }
}

@media (max-width: 767px) {
  body.ghp-has-custom-site-header.single-product .ghp-product-page .ghp-product-shell {
    padding-top: 82px;
  }

  body.admin-bar.ghp-has-custom-site-header.single-product .ghp-product-page .ghp-product-shell {
    padding-top: 128px;
  }
}


/* v2.3.37 - Keep WooCommerce variation selectors visible and styled.
   Earlier versions hid the native variations table because color swatches were custom-rendered.
   That broke variable products with non-color attributes. The table now remains available,
   while only rows controlled by custom swatches are hidden via JS. */
.ghp-product-page .ghp-cart-form table.variations {
  display: block !important;
  width: 100% !important;
  margin: 0 0 12px !important;
  padding: 14px 14px 12px;
  border: 1px solid rgba(17, 24, 39, .10) !important;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  box-shadow: 0 8px 22px rgba(17, 24, 39, .045);
}

.ghp-product-page .ghp-cart-form table.variations tbody,
.ghp-product-page .ghp-cart-form table.variations tr,
.ghp-product-page .ghp-cart-form table.variations th,
.ghp-product-page .ghp-cart-form table.variations td {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

.ghp-product-page .ghp-cart-form table.variations tr {
  margin-bottom: 12px !important;
}

.ghp-product-page .ghp-cart-form table.variations tr:last-child {
  margin-bottom: 0 !important;
}

.ghp-product-page .ghp-cart-form table.variations tr.ghp-variation-row--synced-swatch {
  display: none !important;
}

.ghp-product-page .ghp-cart-form table.variations th.label,
.ghp-product-page .ghp-cart-form table.variations td.label {
  margin-bottom: 7px !important;
}

.ghp-product-page .ghp-cart-form table.variations label {
  display: block;
  margin: 0;
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ghp-product-page .ghp-cart-form table.variations select {
  width: 100% !important;
  min-height: 46px;
  margin: 0 !important;
  padding: 0 42px 0 14px !important;
  border: 1px solid rgba(17, 24, 39, .14) !important;
  border-radius: 14px !important;
  background-color: #fff !important;
  color: #111827 !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 750;
  line-height: 46px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.ghp-product-page .ghp-cart-form table.variations select:hover,
.ghp-product-page .ghp-cart-form table.variations select:focus {
  border-color: rgba(26, 115, 232, .55) !important;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, .10) !important;
  outline: none !important;
}

.ghp-product-page .ghp-cart-form table.variations .reset_variations {
  display: inline-flex !important;
  width: auto !important;
  margin-top: 8px !important;
  color: #6b7280 !important;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
  transition: color .18s ease;
}

.ghp-product-page .ghp-cart-form table.variations .reset_variations:hover,
.ghp-product-page .ghp-cart-form table.variations .reset_variations:focus {
  color: #1a73e8 !important;
  text-decoration: underline !important;
}

.ghp-product-page .ghp-cart-form .single_variation_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ghp-product-page .ghp-cart-form .woocommerce-variation.single_variation:not(:empty) {
  margin: 0 0 2px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 14px;
  background: rgba(248, 250, 252, .9);
}

.ghp-product-page .ghp-cart-form .woocommerce-variation-price {
  color: #111827;
  font-size: 15px;
  font-weight: 850;
}

.ghp-product-page .ghp-cart-form .woocommerce-variation-availability,
.ghp-product-page .ghp-cart-form .woocommerce-variation-description {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .ghp-product-page .ghp-cart-form table.variations {
    padding: 12px;
    border-radius: 16px;
  }

  .ghp-product-page .ghp-cart-form table.variations select {
    min-height: 44px;
    line-height: 44px;
  }
}

/* v2.3.38 - Refined variable product selector UI.
   Keep WooCommerce's native variation form intact, but present it as a compact,
   animated selector card aligned with the package cards and CTA buttons. */
.ghp-product-page .ghp-cart-form form.variations_form table.variations {
  position: relative;
  display: block !important;
  width: 100% !important;
  margin: 0 0 18px !important;
  padding: 16px !important;
  border: 1px solid rgba(17, 24, 39, .10) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(26, 115, 232, .08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%) !important;
  box-shadow: 0 12px 32px rgba(17, 24, 39, .055);
  transform: translateZ(0);
  animation: ghpVariationCardIn .34s cubic-bezier(.2, .8, .2, 1) both;
  transition:
    transform .22s cubic-bezier(.2, .8, .2, 1),
    border-color .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations:hover {
  transform: translateY(-1px);
  border-color: rgba(26, 115, 232, .24) !important;
  box-shadow: 0 16px 38px rgba(17, 24, 39, .075);
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations:focus-within {
  transform: translateY(-1px);
  border-color: rgba(26, 115, 232, .45) !important;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, .10), 0 18px 42px rgba(17, 24, 39, .08);
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations::before {
  content: 'Select options';
  display: inline-flex;
  width: auto;
  margin: 0 0 12px;
  padding: 5px 10px;
  border: 1px solid rgba(26, 115, 232, .14);
  border-radius: 999px;
  background: rgba(26, 115, 232, .07);
  color: #1a73e8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations.is-ghp-complete::after {
  content: '✓';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(34, 197, 94, .25);
  animation: ghpVariationCheckIn .26s cubic-bezier(.2, .8, .2, 1) both;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tbody,
.ghp-product-page .ghp-cart-form form.variations_form table.variations tr,
.ghp-product-page .ghp-cart-form form.variations_form table.variations th,
.ghp-product-page .ghp-cart-form form.variations_form table.variations td {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tr {
  position: relative;
  margin: 0 0 14px !important;
  padding: 0 0 14px !important;
  border-bottom: 1px solid rgba(17, 24, 39, .07) !important;
  opacity: 0;
  transform: translateY(6px);
  animation: ghpVariationRowIn .3s cubic-bezier(.2, .8, .2, 1) both;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tr:nth-child(2) {
  animation-delay: .04s;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tr:nth-child(3) {
  animation-delay: .08s;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tr:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tr.ghp-variation-row--synced-swatch {
  display: none !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tr.is-ghp-variation-row-active label {
  color: #1a73e8;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations th.label,
.ghp-product-page .ghp-cart-form form.variations_form table.variations td.label {
  margin: 0 0 9px !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  color: #111827;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .18s ease;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1a73e8;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, .10);
  transform: scale(.92);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tr.is-ghp-variation-row-active label::before,
.ghp-product-page .ghp-cart-form form.variations_form table.variations tr.is-ghp-variation-row-selected label::before {
  transform: scale(1);
  box-shadow: 0 0 0 5px rgba(26, 115, 232, .13);
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations td.value {
  position: relative;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations td.value::after {
  content: '';
  position: absolute;
  top: 25px;
  right: 17px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  pointer-events: none;
  transform: translateY(-60%) rotate(45deg);
  transition: border-color .18s ease, transform .18s cubic-bezier(.2, .8, .2, 1);
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tr.is-ghp-variation-row-active td.value::after {
  border-color: #1a73e8;
  transform: translateY(-45%) rotate(45deg);
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations select,
.ghp-product-page .ghp-cart-form form.variations_form table.variations .select2-container,
.ghp-product-page .ghp-cart-form form.variations_form table.variations .select2-selection {
  width: 100% !important;
  max-width: none !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations select {
  -webkit-appearance: none;
  appearance: none;
  min-height: 50px;
  margin: 0 !important;
  padding: 0 46px 0 15px !important;
  border: 1px solid rgba(17, 24, 39, .13) !important;
  border-radius: 16px !important;
  background: #fff !important;
  color: #111827 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 8px 18px rgba(17, 24, 39, .04) !important;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 50px;
  transition:
    transform .18s cubic-bezier(.2, .8, .2, 1),
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    color .18s ease;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations select:hover {
  transform: translateY(-1px);
  border-color: rgba(26, 115, 232, .34) !important;
  background: #fcfdff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82), 0 12px 24px rgba(17, 24, 39, .065) !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations select:focus {
  transform: translateY(-1px);
  border-color: rgba(26, 115, 232, .64) !important;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, .12), 0 12px 24px rgba(17, 24, 39, .065) !important;
  outline: none !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tr.is-ghp-variation-row-selected select {
  border-color: rgba(34, 197, 94, .38) !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfffd 100%) !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations .reset_variations {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-height: 28px;
  margin: 10px 0 0 !important;
  padding: 0 10px;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #6b7280 !important;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .03em;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations .reset_variations:hover,
.ghp-product-page .ghp-cart-form form.variations_form table.variations .reset_variations:focus {
  transform: translateY(-1px);
  border-color: rgba(26, 115, 232, .22);
  background: rgba(26, 115, 232, .07);
  color: #1a73e8 !important;
  text-decoration: none !important;
}

.ghp-product-page .ghp-cart-form form.variations_form .single_variation_wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ghp-product-page .ghp-cart-form form.variations_form .woocommerce-variation.single_variation:not(:empty) {
  margin: -4px 0 4px;
  padding: 12px 14px;
  border: 1px solid rgba(34, 197, 94, .16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(240, 253, 244, .78) 0%, rgba(255, 255, 255, .96) 100%);
  box-shadow: 0 10px 24px rgba(17, 24, 39, .045);
  animation: ghpVariationResultIn .24s cubic-bezier(.2, .8, .2, 1) both;
}

.ghp-product-page .ghp-cart-form form.variations_form .woocommerce-variation-price {
  color: #111827;
  font-size: 15px;
  font-weight: 900;
}

.ghp-product-page .ghp-cart-form form.variations_form .woocommerce-variation-availability,
.ghp-product-page .ghp-cart-form form.variations_form .woocommerce-variation-description {
  margin-top: 4px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations.is-ghp-value-just-changed {
  animation: ghpVariationSoftPulse .34s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes ghpVariationCardIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ghpVariationRowIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ghpVariationCheckIn {
  from {
    opacity: 0;
    transform: scale(.75);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ghpVariationResultIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ghpVariationSoftPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 115, 232, .14), 0 12px 32px rgba(17, 24, 39, .055);
  }
  100% {
    box-shadow: 0 0 0 7px rgba(26, 115, 232, 0), 0 12px 32px rgba(17, 24, 39, .055);
  }
}

@media (max-width: 767px) {
  .ghp-product-page .ghp-cart-form form.variations_form table.variations {
    margin-bottom: 16px !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .ghp-product-page .ghp-cart-form form.variations_form table.variations::before {
    margin-bottom: 11px;
  }

  .ghp-product-page .ghp-cart-form form.variations_form table.variations select {
    min-height: 48px;
    line-height: 48px;
  }

  .ghp-product-page .ghp-cart-form form.variations_form table.variations td.value::after {
    top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghp-product-page .ghp-cart-form form.variations_form table.variations,
  .ghp-product-page .ghp-cart-form form.variations_form table.variations tr,
  .ghp-product-page .ghp-cart-form form.variations_form table.variations::after,
  .ghp-product-page .ghp-cart-form form.variations_form table.variations select,
  .ghp-product-page .ghp-cart-form form.variations_form table.variations .reset_variations,
  .ghp-product-page .ghp-cart-form form.variations_form .woocommerce-variation.single_variation:not(:empty) {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}


/* v2.3.41 - Solid color refinement: remove gradients from the visible product purchase UI. */
.ghp-product-page {
  --ghp-solid-green: #16a34a;
  --ghp-solid-green-hover: #15803d;
  --ghp-solid-blue: #1a73e8;
  --ghp-solid-blue-hover: #1558d6;
  --ghp-solid-card-hover: #f8fafc;
  --ghp-solid-card-active: #f0fdf4;
}

.ghp-product-page .ghp-package-option,
.ghp-product-page .ghp-package-option:hover,
.ghp-product-page .ghp-package-option:focus-visible,
.ghp-product-page .ghp-package-option.is-active {
  background-image: none !important;
}

.ghp-product-page .ghp-package-option {
  background-color: #ffffff !important;
}

.ghp-product-page .ghp-package-option:hover,
.ghp-product-page .ghp-package-option:focus-visible {
  background-color: var(--ghp-solid-card-hover) !important;
}

.ghp-product-page .ghp-package-option.is-active {
  background-color: var(--ghp-solid-card-active) !important;
}

.ghp-product-page .ghp-package-option::before {
  background-image: none !important;
  background-color: rgba(22, 163, 74, .06) !important;
}

.ghp-product-page .ghp-package-option__discount {
  background-image: none !important;
  background-color: #fee2e2 !important;
  color: #dc2626 !important;
}

.ghp-product-page .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button),
.ghp-product-page .ghp-cart-form button.single_add_to_cart_button:not(.ghp-buy-now-button) {
  background-image: none !important;
  background-color: var(--ghp-solid-green) !important;
  border-color: rgba(22, 163, 74, .58) !important;
  box-shadow: 0 12px 26px rgba(22, 163, 74, .22) !important;
}

.ghp-product-page .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button):hover,
.ghp-product-page .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button):focus-visible,
.ghp-product-page .ghp-cart-form button.single_add_to_cart_button:not(.ghp-buy-now-button):hover,
.ghp-product-page .ghp-cart-form button.single_add_to_cart_button:not(.ghp-buy-now-button):focus-visible {
  background-image: none !important;
  background-color: var(--ghp-solid-green-hover) !important;
  border-color: rgba(21, 128, 61, .70) !important;
  box-shadow: 0 16px 34px rgba(21, 128, 61, .26) !important;
}

.ghp-product-page .ghp-cart-form .ghp-buy-now-button,
.ghp-product-page .ghp-cart-form button.ghp-buy-now-button {
  background-image: none !important;
  background-color: var(--ghp-solid-blue) !important;
  border-color: rgba(26, 115, 232, .76) !important;
  box-shadow: 0 13px 28px rgba(26, 115, 232, .28) !important;
}

.ghp-product-page .ghp-cart-form .ghp-buy-now-button:hover,
.ghp-product-page .ghp-cart-form .ghp-buy-now-button:focus-visible,
.ghp-product-page .ghp-cart-form button.ghp-buy-now-button:hover,
.ghp-product-page .ghp-cart-form button.ghp-buy-now-button:focus-visible {
  background-image: none !important;
  background-color: var(--ghp-solid-blue-hover) !important;
  border-color: rgba(21, 88, 214, .82) !important;
  box-shadow: 0 16px 34px rgba(21, 88, 214, .32) !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations,
.ghp-product-page .ghp-cart-form form.variations_form table.variations:hover,
.ghp-product-page .ghp-cart-form form.variations_form table.variations:focus-within,
.ghp-product-page .ghp-cart-form table.variations {
  background-image: none !important;
  background-color: #ffffff !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations:hover,
.ghp-product-page .ghp-cart-form form.variations_form table.variations:focus-within {
  background-color: #f8fafc !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations select,
.ghp-product-page .ghp-cart-form form.variations_form table.variations select:hover,
.ghp-product-page .ghp-cart-form form.variations_form table.variations select:focus,
.ghp-product-page .ghp-cart-form form.variations_form table.variations tr.is-ghp-variation-row-selected select {
  background-image: none !important;
}

.ghp-product-page .ghp-cart-form form.variations_form table.variations tr.is-ghp-variation-row-selected select {
  background-color: #f0fdf4 !important;
}

.ghp-product-page .ghp-cart-form form.variations_form .woocommerce-variation.single_variation:not(:empty) {
  background-image: none !important;
  background-color: #f0fdf4 !important;
}

/* v2.3.83: align all single product modules to the main product shell width. */
.ghp-product-page {
  --ghp-single-content-width: 1460px;
  --ghp-single-content-padding-x: 28px;
}

.ghp-product-page .ghp-product-shell,
.ghp-product-page .ghp-detail-media-section,
.ghp-product-page .ghp-section,
.ghp-product-page .ghp-faq,
.ghp-product-page .ghp-reviews,
.ghp-product-page .ghp-reviews-v180,
.ghp-product-page .ghp-related {
  width: 100% !important;
  max-width: var(--ghp-single-content-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ghp-product-page .ghp-product-shell,
.ghp-product-page .ghp-detail-media-section,
.ghp-product-page .ghp-section,
.ghp-product-page .ghp-faq,
.ghp-product-page .ghp-reviews,
.ghp-product-page .ghp-reviews-v180,
.ghp-product-page .ghp-related {
  padding-left: var(--ghp-single-content-padding-x) !important;
  padding-right: var(--ghp-single-content-padding-x) !important;
}

.ghp-product-page .ghp-faq .ghp-accordion {
  width: 100%;
  max-width: none;
}

@media (max-width: 1024px) {
  .ghp-product-page {
    --ghp-single-content-padding-x: 18px;
  }
}

/* v2.3.92: restrained, solid-colour UI for the dedicated local wholesale product. */
.ghp-product-page--local-bulk {
  --ghp-local-ink: #1f1e1c;
  --ghp-local-muted: #6f6b66;
  --ghp-local-line: #e4e0da;
  --ghp-local-soft: #f7f5f2;
  --ghp-local-paper: #fbfaf8;
  --ghp-local-accent: #a62b24;
  --ghp-local-accent-soft: #f8ecea;
}

@media (min-width: 1025px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 500px);
    gap: clamp(48px, 4.8vw, 74px);
  }
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-product-summary-col {
  padding: 28px 30px 30px;
  border: 1px solid var(--ghp-local-line);
  border-top: 3px solid var(--ghp-local-ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(31, 30, 28, .09);
}


.ghp-product-page.ghp-product-page--local-bulk .ghp-gallery-main {
  border: 1px solid var(--ghp-local-line);
  border-radius: 8px;
  background: var(--ghp-local-paper);
  box-shadow: 0 18px 46px rgba(31, 30, 28, .06);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-gallery-main-image,
.ghp-product-page.ghp-product-page--local-bulk .ghp-gallery-main img {
  padding: 14px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-gallery-thumb {
  border-color: var(--ghp-local-line);
  border-radius: 4px;
  background: #fff;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-gallery-thumb:hover,
.ghp-product-page.ghp-product-page--local-bulk .ghp-gallery-thumb.is-active {
  border-color: var(--ghp-local-ink);
  box-shadow: inset 0 0 0 1px var(--ghp-local-ink);
}

/* The dedicated wholesale product must remain entirely solid-colour. */
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity:not(.hidden),
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form form.variations_form table.variations,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form form.variations_form table.variations:hover,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form form.variations_form table.variations:focus-within,
.ghp-product-page.ghp-product-page--local-bulk .ghp-package-option,
.ghp-product-page.ghp-product-page--local-bulk .ghp-package-option:hover,
.ghp-product-page.ghp-product-page--local-bulk .ghp-package-option.is-active {
  background-image: none !important;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity:not(.hidden) {
  background-color: #fff !important;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-product-title {
  margin-bottom: 12px;
  color: var(--ghp-local-ink);
  font-size: clamp(28px, 2.15vw, 34px);
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: -.025em;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-product-meta-row {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ghp-local-line);
  color: var(--ghp-local-muted);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-price {
  margin-bottom: 18px;
  color: var(--ghp-local-ink);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-sku {
  margin: 0 0 18px;
  color: var(--ghp-local-muted);
  font-size: 12px;
  letter-spacing: .02em;
}

.ghp-local-bulk-title-badge {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0 0 20px;
  padding: 14px 16px 14px 18px;
  border-top: 1px solid var(--ghp-local-line);
  border-right: 1px solid var(--ghp-local-line);
  border-bottom: 1px solid var(--ghp-local-line);
  border-left: 3px solid var(--ghp-local-accent);
  border-radius: 4px;
  background: var(--ghp-local-paper);
  box-shadow: none;
  color: var(--ghp-local-ink);
}

.ghp-local-bulk-title-badge__signal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ghp-local-accent);
  box-shadow: 0 0 0 4px var(--ghp-local-accent-soft);
}

.ghp-local-bulk-title-badge__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.ghp-local-bulk-title-badge__eyebrow {
  color: var(--ghp-local-muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .14em;
}

.ghp-local-bulk-title-badge strong {
  color: var(--ghp-local-ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.ghp-local-bulk-price-range {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 7px;
  row-gap: 4px;
  width: 100%;
}

.ghp-local-bulk-price-range__label {
  grid-column: 1 / -1;
  color: var(--ghp-local-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ghp-local-bulk-price-range__value {
  color: var(--ghp-local-accent);
  font-size: 31px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.ghp-local-bulk-price-range > small {
  color: var(--ghp-local-muted);
  font-size: 13px;
  font-weight: 650;
}

.ghp-local-bulk-price-range__context {
  grid-column: 1 / -1;
  color: var(--ghp-local-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.ghp-local-bulk-rules {
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid var(--ghp-local-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}

.ghp-local-bulk-rules__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 20px 17px;
  border-bottom: 1px solid var(--ghp-local-line);
  background: #fff;
  color: var(--ghp-local-ink);
}

.ghp-local-bulk-rules__heading {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.ghp-local-bulk-rules__eyebrow {
  color: var(--ghp-local-accent);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .14em;
}

.ghp-local-bulk-rules__head h2 {
  margin: 0;
  color: var(--ghp-local-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
}

.ghp-local-bulk-rules__head > p {
  max-width: 205px;
  margin: 0;
  color: var(--ghp-local-muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

.ghp-local-bulk-rules__minimums {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--ghp-local-line);
  background: var(--ghp-local-soft);
}

.ghp-local-bulk-rules__minimum {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 15px 20px 16px;
}

.ghp-local-bulk-rules__minimum + .ghp-local-bulk-rules__minimum {
  border-left: 1px solid var(--ghp-local-line);
}

.ghp-local-bulk-rules__minimum > span {
  color: var(--ghp-local-muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.3;
}

.ghp-local-bulk-rules__minimum strong {
  color: var(--ghp-local-ink);
  font-size: 24px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.02em;
}

.ghp-local-bulk-rules__minimum small {
  color: var(--ghp-local-muted);
  font-size: 12px;
  font-weight: 600;
}

.ghp-local-bulk-rules__table-head,
.ghp-local-bulk-rules__tier {
  display: grid;
  grid-template-columns: minmax(110px, 1.15fr) minmax(110px, .9fr) minmax(120px, 1fr);
  align-items: center;
  gap: 12px;
}

.ghp-local-bulk-rules__table-head {
  padding: 10px 20px;
  border-bottom: 1px solid var(--ghp-local-line);
  color: #8a857f;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ghp-local-bulk-rules__tier {
  min-height: 57px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--ghp-local-line);
  background: #fff;
  transition: background-color .16s ease;
}

.ghp-local-bulk-rules__tier:hover {
  background: var(--ghp-local-paper);
}

.ghp-local-bulk-rules__tier.is-best {
  background: #fcf6f5;
  box-shadow: inset 3px 0 0 var(--ghp-local-accent);
}

.ghp-local-bulk-rules__quantity {
  color: var(--ghp-local-ink);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.3;
}

.ghp-local-bulk-rules__unit-price {
  color: var(--ghp-local-ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.2;
  white-space: nowrap;
}

.ghp-local-bulk-rules__unit-price small {
  color: var(--ghp-local-muted);
  font-size: 11px;
  font-weight: 600;
}

.ghp-local-bulk-rules__saving {
  color: var(--ghp-local-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.ghp-local-bulk-rules__tier.is-best .ghp-local-bulk-rules__unit-price,
.ghp-local-bulk-rules__tier.is-best .ghp-local-bulk-rules__saving {
  color: var(--ghp-local-accent);
}

.ghp-local-bulk-rules__foot {
  padding: 15px 20px 16px;
  background: var(--ghp-local-paper);
}

.ghp-local-bulk-rules__notice,
.ghp-local-bulk-rules__currency {
  margin: 0;
  color: #47433f;
  font-size: 12px;
  line-height: 1.6;
}

.ghp-local-bulk-rules__notice {
  font-weight: 600;
}

.ghp-local-bulk-rules__currency {
  margin-top: 5px;
  color: var(--ghp-local-muted);
  font-size: 11px;
}

/* v2.3.93: purchasable wholesale order controls, English UI, solid colours only. */
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form {
  margin-top: 20px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form form.cart,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .woocommerce-variation-add-to-cart {
  gap: 12px;
}

.ghp-local-bulk-purchase-prompt {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 2px;
  padding-top: 2px;
}

.ghp-local-bulk-purchase-prompt strong {
  color: var(--ghp-local-ink);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.3;
}

.ghp-local-bulk-purchase-prompt span {
  max-width: 260px;
  color: var(--ghp-local-muted);
  font-size: 11px;
  font-weight: 560;
  line-height: 1.45;
  text-align: right;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity:not(.hidden) {
  min-height: 56px;
  margin: 0 !important;
  padding: 8px 10px 8px 16px;
  border: 1px solid var(--ghp-local-line);
  border-radius: 4px;
  background: #fff !important;
  box-shadow: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity:not(.hidden)::before {
  color: var(--ghp-local-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity:not(.hidden):hover,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity:not(.hidden):focus-within {
  border-color: #aaa39b;
  box-shadow: 0 0 0 3px rgba(31, 30, 28, .06);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity input.qty,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity input[type="number"] {
  width: 104px !important;
  max-width: 104px;
  height: 38px !important;
  min-height: 38px !important;
  border-color: #d8d3cd !important;
  border-radius: 3px !important;
  color: var(--ghp-local-ink) !important;
  font-size: 16px;
  font-weight: 760;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity input.qty:focus,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity input[type="number"]:focus {
  border-color: var(--ghp-local-ink) !important;
  box-shadow: 0 0 0 2px rgba(31, 30, 28, .08) !important;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity .minus,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity .plus {
  border-color: #d8d3cd !important;
  border-radius: 3px !important;
  background: var(--ghp-local-paper) !important;
  color: var(--ghp-local-ink) !important;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity .minus:hover,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity .plus:hover,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity .minus:focus-visible,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .quantity .plus:focus-visible {
  border-color: var(--ghp-local-ink) !important;
  background: #fff !important;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button),
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form button.single_add_to_cart_button:not(.ghp-buy-now-button) {
  width: 100%;
  min-height: 54px !important;
  border: 1px solid var(--ghp-local-ink) !important;
  border-radius: 4px !important;
  background-image: none !important;
  background-color: var(--ghp-local-ink) !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 760 !important;
  letter-spacing: .035em !important;
  text-transform: none;
  transition: background-color .16s ease, border-color .16s ease, transform .16s ease !important;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button):hover,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button):focus-visible,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form button.single_add_to_cart_button:not(.ghp-buy-now-button):hover,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form button.single_add_to_cart_button:not(.ghp-buy-now-button):focus-visible {
  border-color: #3d3935 !important;
  background-image: none !important;
  background-color: #3d3935 !important;
  box-shadow: none !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .single_add_to_cart_button.disabled,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .single_add_to_cart_button:disabled {
  border-color: #c9c4bd !important;
  background-color: #c9c4bd !important;
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}

.ghp-local-bulk-purchase-note {
  margin: 0;
  padding: 0 2px;
  color: var(--ghp-local-muted);
  font-size: 11px;
  font-weight: 520;
  line-height: 1.55;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form form.variations_form table.variations {
  border-color: var(--ghp-local-line) !important;
  border-radius: 4px !important;
  background-color: #fff !important;
  box-shadow: none !important;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form form.variations_form table.variations:hover,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form form.variations_form table.variations:focus-within {
  border-color: #aaa39b !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 3px rgba(31, 30, 28, .05) !important;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form form.variations_form table.variations select,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form form.variations_form table.variations select:hover,
.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form form.variations_form table.variations select:focus {
  border-radius: 3px !important;
  background-image: none !important;
  background-color: #fff !important;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-cart-form .stock.out-of-stock {
  position: relative;
  margin: 0;
  padding: 15px 16px 15px 18px;
  border: 1px solid #d9d5cf;
  border-left: 3px solid #8b8176;
  border-radius: 4px;
  background: var(--ghp-local-soft);
  box-shadow: none;
  color: #3d3935;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

@media (max-width: 1180px) and (min-width: 1025px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 445px);
    gap: 38px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-summary-col {
    padding: 24px;
  }
}

@media (max-width: 1024px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-summary-col {
    position: static;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-summary-col {
    padding: 21px 18px 22px;
    border-top-width: 2px;
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(31, 30, 28, .07);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-title {
    font-size: 27px;
  }

  .ghp-local-bulk-rules__head {
    display: grid;
    gap: 8px;
    padding: 17px 16px 15px;
  }

  .ghp-local-bulk-rules__head > p {
    max-width: none;
    text-align: left;
  }

  .ghp-local-bulk-rules__minimum {
    padding: 14px 16px;
  }

  .ghp-local-bulk-rules__table-head,
  .ghp-local-bulk-rules__tier {
    grid-template-columns: minmax(92px, 1.05fr) minmax(100px, .9fr) minmax(96px, 1fr);
    gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .ghp-local-bulk-rules__foot {
    padding: 14px 16px 15px;
  }

  .ghp-local-bulk-purchase-prompt {
    display: grid;
    gap: 4px;
  }

  .ghp-local-bulk-purchase-prompt span {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .ghp-local-bulk-title-badge {
    padding-right: 13px;
    padding-left: 14px;
  }

  .ghp-local-bulk-rules__minimums {
    grid-template-columns: 1fr;
  }

  .ghp-local-bulk-rules__minimum + .ghp-local-bulk-rules__minimum {
    border-top: 1px solid var(--ghp-local-line);
    border-left: 0;
  }

  .ghp-local-bulk-rules__table-head {
    display: none;
  }

  .ghp-local-bulk-rules__tier {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 12px;
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .ghp-local-bulk-rules__saving {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghp-local-bulk-rules__tier {
    transition: none;
  }
}

/* v2.3.96: stable full-bleed desktop layout for the dedicated local wholesale product.
   v2.3.95 was still losing to the legacy single-product width declarations that
   use !important. That left the shell constrained while the viewport offset was
   applied, pushing the purchase column beyond the right edge. The shell now
   overrides the complete width/margin/padding set and uses the standard
   full-bleed margin formula, keeping all three columns centred in the viewport. */
.ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three {
  width: min(100%, 1460px);
  grid-template-columns: minmax(460px, 1.28fr) minmax(340px, .92fr) minmax(310px, .8fr);
  gap: 24px;
  align-items: start;
}

@media (min-width: 1280px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three {
    --ghp-local-viewport-gutter: clamp(22px, 2.35vw, 48px);
    position: relative;
    left: auto;
    width: calc(100vw - var(--ghp-local-viewport-gutter) - var(--ghp-local-viewport-gutter)) !important;
    max-width: none !important;
    margin-right: calc(50% - 50vw + var(--ghp-local-viewport-gutter)) !important;
    margin-left: calc(50% - 50vw + var(--ghp-local-viewport-gutter)) !important;
    padding-right: clamp(18px, 1.45vw, 28px) !important;
    padding-left: clamp(18px, 1.45vw, 28px) !important;
    grid-template-columns: minmax(0, 1.42fr) minmax(330px, .78fr) minmax(330px, .72fr);
    gap: clamp(18px, 1.55vw, 30px);
    transform: none;
  }
}

@media (min-width: 1680px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three {
    grid-template-columns: minmax(0, 1.5fr) minmax(380px, .8fr) minmax(360px, .72fr);
    gap: clamp(24px, 1.7vw, 34px);
  }
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col,
.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col {
  min-width: 0;
  border: 1px solid var(--ghp-local-line);
  border-top: 2px solid var(--ghp-local-ink);
  border-radius: 6px;
  background-color: #fff;
  background-image: none;
  box-shadow: 0 16px 38px rgba(31, 30, 28, .065);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col {
  padding: 22px 22px 24px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col {
  position: sticky;
  top: 112px;
  padding: 22px;
}

body.admin-bar .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col {
  top: 144px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-product-title {
  margin-top: 15px;
  font-size: clamp(27px, 1.9vw, 32px);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-product-meta-row {
  gap: 8px 10px;
  margin-bottom: 12px;
  font-size: 11px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-share {
  width: 100%;
  margin-top: 1px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-price {
  margin-bottom: 8px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-sku {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--ghp-local-line);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules {
  margin-top: 17px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__head {
  gap: 14px;
  padding: 15px 15px 13px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__head h2 {
  font-size: 18px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__head > p {
  max-width: 145px;
  font-size: 10px;
  line-height: 1.45;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum {
  padding: 12px 14px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum strong {
  font-size: 22px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__table-head,
.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__tier {
  grid-template-columns: minmax(90px, 1fr) minmax(100px, .92fr) minmax(90px, .88fr);
  gap: 7px;
  padding-right: 14px;
  padding-left: 14px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__table-head {
  min-height: 30px;
  font-size: 9px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__tier {
  min-height: 49px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__quantity {
  font-size: 11px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__unit-price {
  font-size: 14px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__saving {
  font-size: 9px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__foot {
  padding: 12px 14px 13px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__notice {
  font-size: 10px;
  line-height: 1.5;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__currency {
  font-size: 9px;
}

.ghp-local-bulk-purchase-col__head {
  margin-bottom: 17px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ghp-local-line);
}

.ghp-local-bulk-purchase-col__head > span {
  display: block;
  margin-bottom: 6px;
  color: var(--ghp-local-accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.ghp-local-bulk-purchase-col__head h2 {
  margin: 0;
  color: var(--ghp-local-ink);
  font-family: inherit;
  font-size: 21px;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: -.015em;
}

.ghp-local-bulk-purchase-col__head p {
  margin: 8px 0 0;
  color: var(--ghp-local-muted);
  font-size: 11px;
  line-height: 1.55;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col .ghp-cart-form {
  margin-top: 0;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col .ghp-color-swatches {
  margin-bottom: 15px;
}

/* The ordinary package selector belongs to the standard category-discount
   pricing model and is intentionally excluded from this fixed-price SKU. */
.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col .ghp-package-selector {
  display: none !important;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col .ghp-local-bulk-purchase-prompt {
  display: grid;
  gap: 4px;
  margin-top: 3px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col .ghp-local-bulk-purchase-prompt span {
  max-width: none;
  text-align: left;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col .ghp-cart-form form.variations_form table.variations {
  margin-bottom: 10px !important;
  padding: 12px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col .ghp-cart-form form.variations_form table.variations select {
  min-height: 44px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col .ghp-cart-form .quantity:not(.hidden) {
  min-height: 52px;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col .ghp-cart-form .single_add_to_cart_button:not(.ghp-buy-now-button),
.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col .ghp-cart-form button.single_add_to_cart_button:not(.ghp-buy-now-button) {
  min-height: 52px !important;
}

.ghp-local-bulk-purchase-col__assurance {
  display: grid;
  gap: 4px;
  margin-top: 15px;
  padding: 13px 14px;
  border: 1px solid var(--ghp-local-line);
  border-left: 3px solid var(--ghp-local-ink);
  border-radius: 4px;
  background-color: var(--ghp-local-paper);
  background-image: none;
}

.ghp-local-bulk-purchase-col__assurance strong {
  color: var(--ghp-local-ink);
  font-size: 11px;
  font-weight: 760;
}

.ghp-local-bulk-purchase-col__assurance span {
  color: var(--ghp-local-muted);
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 1279px) and (min-width: 1025px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
    grid-template-areas:
      "gallery info"
      "gallery purchase";
    gap: 24px 34px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three .ghp-product-gallery-col {
    grid-area: gallery;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col {
    grid-area: info;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col {
    position: static;
    grid-area: purchase;
  }
}

@media (max-width: 1024px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col,
  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col {
    position: static;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three {
    padding-right: 18px;
    padding-left: 18px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col,
  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col {
    padding: 19px 17px 20px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__head > p {
    max-width: none;
  }
}

/* v2.3.97: equal-height desktop columns for the dedicated wholesale product.
   The gallery establishes the row height. The information and purchase cards
   stretch to the same bottom edge while their content remains top-aligned.
   Sticky positioning is disabled in the three-column breakpoint because a
   sticky grid item cannot reliably participate in equal-height stretching. */
@media (min-width: 1280px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three {
    align-items: stretch !important;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three > .ghp-product-gallery-col,
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three > .ghp-local-bulk-info-col,
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three > .ghp-local-bulk-purchase-col {
    align-self: stretch !important;
    height: auto !important;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col,
  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col {
    display: flex;
    flex-direction: column;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col,
  body.admin-bar .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col {
    position: relative;
    top: auto;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-purchase-col__assurance {
    margin-top: auto;
  }
}


/* v2.3.98: larger, space-filling desktop typography for the middle wholesale
   information column, plus a restrained Google blue/green delivery treatment.
   The pricing table participates in the equal-height flex column so useful
   information—not decorative empty padding—absorbs the available height. */
.ghp-product-page--local-bulk {
  --ghp-local-delivery-blue: #1a73e8;
  --ghp-local-delivery-blue-soft: #f3f8ff;
  --ghp-local-delivery-green: #188038;
  --ghp-local-delivery-green-soft: #e6f4ea;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-title-badge {
  border-left-color: var(--ghp-local-delivery-blue);
  background-color: var(--ghp-local-delivery-blue-soft);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-title-badge__signal {
  background-color: var(--ghp-local-delivery-green);
  box-shadow: 0 0 0 4px var(--ghp-local-delivery-green-soft);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-title-badge__eyebrow {
  color: var(--ghp-local-delivery-blue);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-title-badge strong {
  color: var(--ghp-local-delivery-green);
}

@media (min-width: 1280px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col {
    padding: clamp(27px, 1.85vw, 36px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-title-badge {
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: clamp(22px, 1.45vw, 28px);
    padding: clamp(17px, 1.2vw, 21px) clamp(18px, 1.35vw, 24px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-title-badge__signal {
    width: 10px;
    height: 10px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-title-badge__eyebrow {
    font-size: clamp(11px, .68vw, 13px);
    letter-spacing: .13em;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-title-badge strong {
    font-size: clamp(17px, 1vw, 20px);
    line-height: 1.38;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-product-title {
    margin-top: 0;
    margin-bottom: clamp(14px, 1vw, 20px);
    font-size: clamp(34px, 2.1vw, 42px);
    line-height: 1.11;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-product-meta-row {
    gap: 10px 14px;
    margin-bottom: clamp(17px, 1.1vw, 22px);
    padding-bottom: clamp(16px, 1vw, 20px);
    font-size: clamp(12px, .72vw, 14px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-price {
    margin-bottom: clamp(13px, .9vw, 18px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-price-range {
    column-gap: 9px;
    row-gap: 7px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-price-range__label {
    font-size: clamp(12px, .72vw, 14px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-price-range__value {
    font-size: clamp(38px, 2.4vw, 48px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-price-range > small {
    font-size: clamp(14px, .82vw, 16px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-price-range__context {
    font-size: clamp(13px, .78vw, 15px);
    line-height: 1.6;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-sku {
    margin-top: clamp(15px, 1vw, 20px);
    margin-bottom: 0;
    padding-top: clamp(14px, .95vw, 18px);
    font-size: clamp(12px, .72vw, 14px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    margin-top: clamp(22px, 1.45vw, 28px);
    margin-bottom: 0;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__head {
    gap: clamp(16px, 1vw, 22px);
    padding: clamp(18px, 1.15vw, 23px) clamp(18px, 1.25vw, 24px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__eyebrow {
    font-size: clamp(10px, .64vw, 12px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__head h2 {
    font-size: clamp(21px, 1.25vw, 25px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__head > p {
    max-width: 190px;
    font-size: clamp(11px, .7vw, 13px);
    line-height: 1.55;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum {
    gap: 8px;
    padding: clamp(16px, 1.05vw, 21px) clamp(18px, 1.2vw, 23px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum > span {
    font-size: clamp(12px, .72vw, 14px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum strong {
    font-size: clamp(28px, 1.7vw, 34px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum small {
    font-size: clamp(12px, .72vw, 14px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__table {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__table-head,
  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__tier {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr) minmax(0, .98fr);
    gap: clamp(9px, .7vw, 14px);
    padding-right: clamp(18px, 1.2vw, 23px);
    padding-left: clamp(18px, 1.2vw, 23px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__table-head {
    flex: 0 0 auto;
    min-height: 38px;
    font-size: clamp(10px, .62vw, 12px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__tier {
    flex: 1 1 0;
    min-height: 62px;
    padding-top: clamp(14px, .9vw, 18px);
    padding-bottom: clamp(14px, .9vw, 18px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__quantity {
    font-size: clamp(13px, .78vw, 15px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__unit-price {
    font-size: clamp(17px, 1.05vw, 21px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__unit-price small {
    font-size: clamp(11px, .68vw, 13px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__saving {
    font-size: clamp(11px, .68vw, 13px);
    line-height: 1.5;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__foot {
    flex: 0 0 auto;
    padding: clamp(17px, 1.1vw, 22px) clamp(18px, 1.2vw, 23px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__notice {
    font-size: clamp(12px, .74vw, 14px);
    line-height: 1.6;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-info-col .ghp-local-bulk-rules__currency {
    margin-top: 7px;
    font-size: clamp(10px, .64vw, 12px);
    line-height: 1.55;
  }
}

/* v2.3.99: match the middle and purchase cards to the rendered height of the
   left product-image stage. JavaScript writes --ghp-local-gallery-height from
   .ghp-gallery-main after the image has loaded and whenever the desktop layout
   changes. Natural height is retained below the three-column breakpoint. */
@media (min-width: 1280px) {
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three.is-local-bulk-height-synced {
    align-items: start !important;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three.is-local-bulk-height-synced > .ghp-product-gallery-col {
    align-self: start !important;
    height: auto !important;
  }

  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three.is-local-bulk-height-synced > .ghp-local-bulk-info-col,
  .ghp-product-page.ghp-product-page--local-bulk .ghp-product-shell--local-bulk-three.is-local-bulk-height-synced > .ghp-local-bulk-purchase-col {
    align-self: start !important;
    height: var(--ghp-local-gallery-height) !important;
    min-height: var(--ghp-local-gallery-height) !important;
    max-height: var(--ghp-local-gallery-height) !important;
    overflow: hidden;
  }

  /* Compact only when runtime measurement reports that enlarged v2.3.98 copy
     would exceed the image height. Typography remains larger than v2.3.97. */
  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col {
    padding: clamp(21px, 1.35vw, 25px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-title-badge {
    gap: 13px;
    margin-bottom: 15px;
    padding: 13px 16px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-title-badge strong {
    font-size: clamp(15px, .9vw, 18px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-product-title {
    margin-bottom: 10px;
    font-size: clamp(31px, 1.8vw, 36px);
    line-height: 1.08;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-product-meta-row {
    margin-bottom: 11px;
    padding-bottom: 11px;
    font-size: clamp(11px, .66vw, 13px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-price {
    margin-bottom: 9px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-price-range__value {
    font-size: clamp(36px, 2.05vw, 42px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-price-range__context {
    font-size: clamp(11px, .7vw, 13px);
    line-height: 1.45;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-sku {
    margin-top: 10px;
    padding-top: 10px;
    font-size: clamp(11px, .66vw, 13px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules {
    margin-top: 14px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__head {
    gap: 12px;
    padding: 13px 15px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__head h2 {
    font-size: clamp(18px, 1.05vw, 21px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__head > p {
    max-width: 165px;
    font-size: clamp(10px, .62vw, 12px);
    line-height: 1.4;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum {
    padding: 11px 15px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum strong {
    font-size: clamp(24px, 1.45vw, 29px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__table-head {
    min-height: 30px;
    font-size: clamp(9px, .56vw, 11px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__tier {
    min-height: 47px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__quantity {
    font-size: clamp(12px, .7vw, 14px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__unit-price {
    font-size: clamp(15px, .9vw, 18px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__saving {
    font-size: clamp(9px, .58vw, 11px);
    line-height: 1.35;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__foot {
    padding: 12px 15px 13px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__notice {
    font-size: clamp(10px, .62vw, 12px);
    line-height: 1.45;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-compact .ghp-local-bulk-info-col .ghp-local-bulk-rules__currency {
    margin-top: 4px;
    font-size: clamp(9px, .55vw, 10px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col {
    padding: 18px 20px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-local-bulk-title-badge {
    margin-bottom: 11px;
    padding: 10px 13px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-product-title {
    margin-bottom: 8px;
    font-size: clamp(29px, 1.65vw, 33px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-product-meta-row {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-local-bulk-price-range__value {
    font-size: clamp(33px, 1.9vw, 38px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-sku {
    margin-top: 7px;
    padding-top: 7px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-local-bulk-rules {
    margin-top: 10px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-local-bulk-rules__head {
    padding: 10px 13px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum {
    padding: 8px 13px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum strong {
    font-size: clamp(22px, 1.3vw, 26px);
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-local-bulk-rules__tier {
    min-height: 42px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-info-col .ghp-local-bulk-rules__foot {
    padding: 9px 13px 10px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-purchase-col {
    padding: 19px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-purchase-col__head {
    margin-bottom: 12px;
    padding-bottom: 11px;
  }

  .ghp-product-page.ghp-product-page--local-bulk .is-local-bulk-density-tight .ghp-local-bulk-purchase-col__assurance {
    margin-top: auto;
    padding: 10px 12px;
  }
}

/* v2.3.99 fitted desktop density: preserve the stronger v2.3.98 hierarchy,
   but keep every pricing row and the contact-quote notice inside the exact
   gallery-height card instead of allowing a flex child to collapse off-screen. */
@media (min-width: 1280px) {
  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col {
    padding: 20px 22px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-title-badge {
    grid-template-columns: 10px minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 11px;
    padding: 10px 13px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-title-badge__signal {
    width: 8px;
    height: 8px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-title-badge__eyebrow {
    font-size: 10px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-title-badge strong {
    font-size: 16px;
    line-height: 1.3;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-product-title {
    margin: 0 0 7px;
    font-size: clamp(30px, 1.75vw, 35px);
    line-height: 1.06;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-product-meta-row {
    gap: 6px 9px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 11px;
    line-height: 1.15;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-share {
    width: auto;
    margin-top: 0;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-price {
    margin-bottom: 6px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-price-range {
    row-gap: 3px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-price-range__label {
    font-size: 10px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-price-range__value {
    font-size: clamp(34px, 2vw, 39px);
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-price-range > small {
    font-size: 12px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-price-range__context {
    font-size: 10.5px;
    line-height: 1.35;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-sku {
    margin-top: 7px;
    padding-top: 7px;
    font-size: 10px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules {
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 9px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__head {
    flex: 0 0 auto;
    gap: 10px;
    padding: 9px 12px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__eyebrow {
    font-size: 8px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__head h2 {
    font-size: 18px;
    line-height: 1.08;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__head > p {
    max-width: 145px;
    font-size: 9px;
    line-height: 1.3;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum {
    gap: 3px;
    padding: 7px 12px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum > span {
    font-size: 9px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum strong {
    font-size: 22px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum small {
    font-size: 9px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__table {
    flex: 1 1 auto;
    min-height: 0;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__table-head,
  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__tier {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 7px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__table-head {
    flex: 0 0 24px;
    min-height: 24px;
    font-size: 8px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__tier {
    flex: 1 1 0;
    min-height: 34px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__quantity {
    font-size: 10px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__unit-price {
    font-size: 14px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__unit-price small {
    font-size: 8px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__saving {
    font-size: 8px;
    line-height: 1.25;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__foot {
    flex: 0 0 auto;
    padding: 8px 12px 9px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__notice {
    margin: 0;
    font-size: 9px;
    line-height: 1.35;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__currency {
    margin-top: 3px;
    font-size: 7.5px;
    line-height: 1.3;
  }
}

/* v2.4.00: larger middle-column typography within the existing gallery-synced
   height, plus a restrained Google Blue / Google Green wholesale table. The
   height variable and JavaScript synchronisation are intentionally unchanged;
   denser spacing funds the larger type without increasing or clipping the card. */
.ghp-product-page--local-bulk {
  --ghp-local-table-blue: #1a73e8;
  --ghp-local-table-blue-strong: #174ea6;
  --ghp-local-table-blue-soft: #e8f0fe;
  --ghp-local-table-green: #188038;
  --ghp-local-table-green-strong: #137333;
  --ghp-local-table-green-soft: #e6f4ea;
  --ghp-local-table-line: #d7e3f4;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules {
  border-color: var(--ghp-local-table-line);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__head {
  border-bottom-color: var(--ghp-local-table-line);
  background-color: #fff;
  box-shadow: inset 4px 0 0 var(--ghp-local-table-blue);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__eyebrow,
.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__head h2 {
  color: var(--ghp-local-table-blue-strong);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__minimums {
  border-bottom-color: var(--ghp-local-table-line);
  background-color: var(--ghp-local-table-green-soft);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__minimum + .ghp-local-bulk-rules__minimum {
  border-left-color: #c7dfce;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__minimum > span {
  color: #3c5f48;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__minimum strong,
.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__minimum small {
  color: var(--ghp-local-table-green-strong);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__table-head {
  border-bottom-color: var(--ghp-local-table-blue);
  background-color: var(--ghp-local-table-blue);
  color: #fff;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__tier {
  border-bottom-color: var(--ghp-local-table-line);
  background-color: #fff;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__tier:hover {
  background-color: var(--ghp-local-table-blue-soft);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__quantity {
  color: var(--ghp-local-table-blue-strong);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__unit-price {
  color: var(--ghp-local-table-green-strong);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__unit-price small {
  color: #4f6f5a;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__saving {
  color: #3f5f8f;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__tier.is-best {
  background-color: var(--ghp-local-table-green-soft);
  box-shadow: inset 4px 0 0 var(--ghp-local-table-green);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__tier.is-best .ghp-local-bulk-rules__quantity,
.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__tier.is-best .ghp-local-bulk-rules__unit-price,
.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__tier.is-best .ghp-local-bulk-rules__saving {
  color: var(--ghp-local-table-green-strong);
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__foot {
  border-top: 1px solid var(--ghp-local-table-line);
  background-color: #f8fbff;
}

.ghp-product-page.ghp-product-page--local-bulk .ghp-local-bulk-rules__notice {
  color: #24466f;
}

@media (min-width: 1280px) {
  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col {
    padding: 18px 20px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-title-badge {
    gap: 12px;
    margin-bottom: 8px;
    padding: 9px 12px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-title-badge__eyebrow {
    font-size: 10.5px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-title-badge strong {
    font-size: 17px;
    line-height: 1.24;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-product-title {
    margin: 0 0 5px;
    font-size: clamp(33px, 1.95vw, 39px);
    line-height: 1.035;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-product-meta-row {
    gap: 6px 10px;
    margin-bottom: 6px;
    padding-bottom: 6px;
    font-size: 12px;
    line-height: 1.12;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-price {
    margin-bottom: 4px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-price-range {
    row-gap: 2px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-price-range__label {
    font-size: 11.5px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-price-range__value {
    font-size: clamp(39px, 2.25vw, 45px);
    line-height: 1;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-price-range > small {
    font-size: 13px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-price-range__context {
    font-size: 11.5px;
    line-height: 1.28;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-sku {
    margin-top: 5px;
    padding-top: 6px;
    font-size: 11.5px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules {
    margin-top: 7px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__head {
    gap: 9px;
    padding: 8px 11px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__eyebrow {
    font-size: 9.5px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__head h2 {
    font-size: 20px;
    line-height: 1.04;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__head > p {
    max-width: 150px;
    font-size: 10px;
    line-height: 1.24;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum {
    gap: 2px;
    padding: 6px 11px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum > span {
    font-size: 10.5px;
    line-height: 1.15;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum strong {
    font-size: 25px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__minimum small {
    font-size: 10px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__table-head {
    flex-basis: 26px;
    min-height: 26px;
    font-size: 9.5px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__tier {
    min-height: 34px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__quantity {
    font-size: 12px;
    line-height: 1.16;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__unit-price {
    font-size: 16.5px;
    line-height: 1.08;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__unit-price small {
    font-size: 9.5px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__saving {
    font-size: 9.5px;
    line-height: 1.18;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__foot {
    padding: 7px 11px 8px;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__notice {
    font-size: 10.5px;
    line-height: 1.25;
  }

  .ghp-product-page.ghp-product-page--local-bulk :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback) .ghp-local-bulk-info-col .ghp-local-bulk-rules__currency {
    margin-top: 2px;
    font-size: 8.5px;
    line-height: 1.2;
  }
}

/* v2.4.01: force visibly larger wholesale-table typography. WooCommerce's
   generated .amount / bdi nodes can carry their own font sizing, so the parent
   font-size from v2.4.00 was not sufficient on the live WoodMart page. These
   rules target the rendered price descendants directly while preserving the
   existing gallery-synchronised middle-column height and row geometry. */
@media (min-width: 1280px) {
  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__table-head,
  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__table-head > span {
    font-size: 12.5px !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    letter-spacing: .045em;
  }

  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__quantity {
    font-size: 16px !important;
    font-weight: 750 !important;
    line-height: 1.08 !important;
  }

  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__unit-price,
  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__unit-price .woocommerce-Price-amount,
  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__unit-price .amount,
  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__unit-price bdi,
  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__unit-price .woocommerce-Price-currencySymbol {
    font-size: 21px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
  }

  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__unit-price small {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
  }

  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__saving {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    line-height: 1.14 !important;
  }

  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__minimum > span {
    font-size: 13.5px !important;
    font-weight: 750 !important;
    line-height: 1.08 !important;
  }

  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__minimum strong {
    font-size: 30px !important;
    font-weight: 800 !important;
    line-height: .95 !important;
  }

  .ghp-product-page.ghp-product-page--local-bulk
    :is(.is-local-bulk-height-synced, .is-local-bulk-height-content-fallback)
    .ghp-local-bulk-info-col
    .ghp-local-bulk-rules__minimum small {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }
}

/* v2.4.02: dedicated one-order-per-account promotion campaign product. */
.ghp-campaign-price {
    display: inline-flex;
    align-items: baseline;
    font-weight: 800;
}

.ghp-campaign-price__suffix {
    display: inline-block;
    margin-left: 8px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.ghp-campaign-notice {
    margin: 0 0 18px;
    padding: 16px 18px;
    border: 1px solid #d9e2ef;
    border-left: 4px solid #1a73e8;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26, 39, 64, 0.07);
    color: #283548;
}

.ghp-campaign-notice > strong {
    display: block;
    margin-bottom: 8px;
    color: #1a73e8;
    font-size: 15px;
    line-height: 1.35;
}

.ghp-campaign-notice ul {
    margin: 0;
    padding-left: 19px;
}

.ghp-campaign-notice li {
    margin: 4px 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.5;
}

.ghp-campaign-notice__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 12px;
    padding: 8px 15px;
    border: 1px solid #1a73e8;
    border-radius: 6px;
    background: #1a73e8;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.ghp-campaign-notice__login:hover,
.ghp-campaign-notice__login:focus-visible {
    background: #155fc0;
    border-color: #155fc0;
    color: #fff !important;
}

.ghp-campaign-notice__status {
    margin: 12px 0 0;
    color: #b3261e;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

/* v2.4.03: isolated single-item campaign product page. */
.ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 460px);
  gap: 52px;
  align-items: start;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-summary-col {
  top: 92px;
  padding: 24px;
  border: 1px solid #e2e7ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(26, 39, 64, .08);
}

body.admin-bar .ghp-product-page.ghp-product-page--campaign .ghp-campaign-summary-col {
  top: 124px;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #1a73e8;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #188038;
  box-shadow: 0 0 0 4px rgba(24, 128, 56, .12);
}

.ghp-product-page.ghp-product-page--campaign .ghp-product-title {
  margin-bottom: 12px;
  font-size: clamp(28px, 2.1vw, 38px);
  line-height: 1.14;
  font-weight: 700;
}

.ghp-product-page.ghp-product-page--campaign .ghp-product-meta-row {
  margin-bottom: 18px;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-summary-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
  color: #d93025;
  font-size: 30px;
  font-weight: 800;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-summary-price .woocommerce-Price-amount,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-summary-price .amount,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-summary-price bdi {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #d9e2ef;
  border-left: 4px solid #1a73e8;
  border-radius: 10px;
  background: #fbfcfe;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card__head {
  margin-bottom: 14px;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card__head > span {
  display: block;
  margin-bottom: 5px;
  color: #188038;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card__head h2 {
  margin: 0 0 6px;
  color: #172033;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.25;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card__head p {
  margin: 0;
  color: #5f6877;
  font-size: 13px;
  line-height: 1.55;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form {
  margin: 0;
}

/* Campaign products never expose package tiers, manual quantities, or Buy Now. */
.ghp-product-page.ghp-product-page--campaign .ghp-package-selector,
.ghp-product-page.ghp-product-page--campaign .ghp-buy-now-button,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .quantity,
.ghp-product-page.ghp-product-page--campaign + .ghp-bundle-save,
.ghp-product-page.ghp-product-page--campaign .ghp-bundle-save {
  display: none !important;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-notice {
  margin: 0 0 16px;
  padding: 14px 15px;
  box-shadow: none;
}

/* A Variable campaign may keep one flavour/option selector, but quantity stays 1. */
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations {
  display: table !important;
  width: 100%;
  margin: 0 0 14px;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 8px;
  background: transparent;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations tbody,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations tr {
  display: table-row-group;
  width: 100%;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations tr {
  display: table-row;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations th,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations td {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  vertical-align: middle;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations th.label {
  width: 96px;
  padding-right: 10px;
  color: #283548;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations select {
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 8px 38px 8px 12px;
  border: 1px solid #cfd8e5;
  border-radius: 8px;
  background-color: #fff;
  color: #172033;
  font-size: 13px;
  font-weight: 650;
  box-shadow: none;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations select:focus {
  border-color: #1a73e8;
  outline: 2px solid rgba(26, 115, 232, .16);
  outline-offset: 1px;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .reset_variations {
  display: inline-block;
  margin-top: 7px;
  color: #5f6877;
  font-size: 12px;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .woocommerce-variation {
  margin: 0 0 12px;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .single_add_to_cart_button,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form button.single_add_to_cart_button {
  width: 100%;
  min-height: 48px;
  border: 1px solid #188038;
  border-radius: 8px;
  background: #188038;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: 0 10px 22px rgba(24, 128, 56, .16);
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .single_add_to_cart_button:hover,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .single_add_to_cart_button:focus-visible {
  border-color: #146c30;
  background: #146c30;
  color: #fff;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .single_add_to_cart_button.disabled,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .single_add_to_cart_button:disabled {
  border-color: #aeb7c4;
  background: #aeb7c4;
  box-shadow: none;
  cursor: not-allowed;
}

@media (max-width: 1100px) {
  .ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 410px);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign {
    grid-template-columns: 1fr;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-summary-col,
  body.admin-bar .ghp-product-page.ghp-product-page--campaign .ghp-campaign-summary-col {
    position: static;
    top: auto;
  }
}

@media (max-width: 767px) {
  .ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign {
    gap: 22px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-summary-col {
    padding: 18px;
    border-radius: 10px;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-product-title {
    font-size: 27px;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card {
    padding: 15px;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations,
  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations tbody,
  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations tr,
  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations th,
  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations td {
    display: block;
    width: 100%;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form form.variations_form table.variations th.label {
    width: 100%;
    margin-bottom: 6px;
    padding-right: 0;
  }
}


/* v2.4.05: three-column campaign page, editable promotion copy, and cart limit reminder. */
.ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign {
  width: min(100%, 1600px);
  grid-template-columns: minmax(500px, 1.35fr) minmax(300px, .72fr) minmax(350px, .82fr);
  grid-template-areas: "campaign-gallery campaign-info campaign-purchase";
  gap: 32px;
  align-items: stretch;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-gallery-col {
  grid-area: campaign-gallery;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-info-col {
  grid-area: campaign-info;
  min-width: 0;
  height: 100%;
  padding: 24px;
  border: 1px solid #e2e7ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(26, 39, 64, .07);
  display: flex;
  flex-direction: column;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-col {
  grid-area: campaign-purchase;
  position: sticky;
  top: 92px;
  min-width: 0;
  align-self: start;
}

body.admin-bar .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-col {
  top: 124px;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-promotion-copy {
  flex: 1 1 auto;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #dce5ef;
  border-left: 4px solid #1a73e8;
  border-radius: 10px;
  background: #f8fafc;
  color: #374151;
  font-size: 14px;
  line-height: 1.7;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-promotion-copy > :first-child {
  margin-top: 0;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-promotion-copy > :last-child {
  margin-bottom: 0;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-promotion-copy h2,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-promotion-copy h3,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-promotion-copy h4 {
  margin: 18px 0 8px;
  color: #172033;
  font-weight: 750;
  line-height: 1.3;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-promotion-copy ul,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-promotion-copy ol {
  margin: 10px 0;
  padding-left: 20px;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card {
  margin-top: 0;
  padding: 20px;
  border: 1px solid #d9e2ef;
  border-left: 4px solid #1a73e8;
  border-radius: 12px;
  background: #fbfcfe;
  box-shadow: 0 14px 38px rgba(26, 39, 64, .08);
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-limit-alert[hidden] {
  display: none !important;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-limit-alert {
  margin: 0 0 16px;
  padding: 13px 14px;
  border: 1px solid #f1c7c3;
  border-left: 4px solid #d93025;
  border-radius: 8px;
  background: #fff8f7;
  color: #7a271f;
  outline: none;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-limit-alert strong,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-limit-alert span {
  display: block;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-limit-alert strong {
  margin-bottom: 4px;
  color: #b3261e;
  font-size: 13px;
  font-weight: 800;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-limit-alert span {
  font-size: 13px;
  line-height: 1.5;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-limit-alert.is-emphasized {
  animation: ghp-campaign-limit-emphasis .42s ease-out;
}

@keyframes ghp-campaign-limit-emphasis {
  0% { transform: translateY(0); }
  35% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-limit-alert.is-emphasized {
    animation: none;
  }
}

@media (max-width: 1279px) {
  .ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    grid-template-areas:
      "campaign-gallery campaign-info"
      "campaign-gallery campaign-purchase";
    align-items: start;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-col,
  body.admin-bar .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-col {
    position: static;
    top: auto;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-info-col {
    height: auto;
  }
}

@media (max-width: 900px) {
  .ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign {
    grid-template-columns: 1fr;
    grid-template-areas:
      "campaign-gallery"
      "campaign-info"
      "campaign-purchase";
  }
}

@media (max-width: 767px) {
  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-info-col,
  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card {
    padding: 17px;
    border-radius: 10px;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-promotion-copy {
    padding: 16px;
  }
}

/* v2.4.06: full-bleed desktop width for the three-column promotion campaign.
   Override the complete horizontal sizing set so WoodMart/Elementor container
   widths cannot keep the campaign shell inside the ordinary product max-width.
   The viewport gutter preserves safe breathing room and prevents horizontal
   overflow; non-campaign sections retain the ordinary 1460px content width. */
@media (min-width: 1280px) {
  .ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign {
    --ghp-campaign-viewport-gutter: clamp(20px, 2.15vw, 46px);
    position: relative !important;
    left: auto !important;
    width: calc(100vw - var(--ghp-campaign-viewport-gutter) - var(--ghp-campaign-viewport-gutter)) !important;
    min-width: 0 !important;
    max-width: none !important;
    margin-right: calc(50% - 50vw + var(--ghp-campaign-viewport-gutter)) !important;
    margin-left: calc(50% - 50vw + var(--ghp-campaign-viewport-gutter)) !important;
    padding-right: clamp(18px, 1.35vw, 28px) !important;
    padding-left: clamp(18px, 1.35vw, 28px) !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .72fr) minmax(330px, .78fr);
    gap: clamp(20px, 1.65vw, 32px);
    transform: none !important;
  }
}

@media (min-width: 1680px) {
  .ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign {
    grid-template-columns: minmax(0, 1.52fr) minmax(340px, .74fr) minmax(360px, .76fr);
    gap: clamp(26px, 1.75vw, 36px);
  }
}


/* v2.4.07: editable purchase conditions, gallery-height aligned purchase column,
   and a stronger cart-level promotion limit reminder. */
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-notice__content > :first-child {
  margin-top: 0;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-notice__content > :last-child {
  margin-bottom: 0;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-notice__content p {
  margin: 0 0 9px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.55;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-notice__content ul,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-notice__content ol {
  margin: 0;
  padding-left: 19px;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-state-marker {
  display: none !important;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-limit-alert:not([hidden]) {
  box-shadow: 0 10px 24px rgba(179, 38, 30, .10);
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .single_add_to_cart_button.is-campaign-cart-blocked,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form button.single_add_to_cart_button.is-campaign-cart-blocked {
  border-color: #b3261e;
  background: #b3261e;
  color: #fff;
  box-shadow: 0 10px 22px rgba(179, 38, 30, .16);
  cursor: not-allowed;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .single_add_to_cart_button.is-campaign-cart-blocked:hover,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-cart-form .single_add_to_cart_button.is-campaign-cart-blocked:focus-visible {
  border-color: #8f1f19;
  background: #8f1f19;
}

@media (min-width: 1280px) {
  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-col,
  body.admin-bar .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-col {
    position: static;
    top: auto;
    align-self: stretch;
    min-height: 100%;
    display: flex;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card .ghp-campaign-cart-form {
    margin-top: auto;
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign.is-campaign-height-synced .ghp-campaign-purchase-col {
    height: var(--ghp-campaign-gallery-height);
    min-height: var(--ghp-campaign-gallery-height);
    max-height: var(--ghp-campaign-gallery-height);
  }

  .ghp-product-page.ghp-product-page--campaign .ghp-product-shell--campaign.is-campaign-height-synced .ghp-campaign-purchase-card {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
}

@media (max-width: 1279px) {
  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-col,
  .ghp-product-page.ghp-product-page--campaign .ghp-campaign-purchase-card {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }
}

/* v2.4.08: customer-selectable campaign quantity while native cart quantity
   remains one quota-bearing order line. */
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector {
  margin: 0 0 16px;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector > label {
  display: block;
  margin: 0 0 8px;
  color: #172033;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__control {
  display: grid;
  grid-template-columns: 42px minmax(64px, 88px) 42px;
  width: max-content;
  min-height: 42px;
  overflow: hidden;
  border: 1px solid #cfd8e6;
  border-radius: 8px;
  background: #fff;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__button,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__input {
  min-width: 0;
  min-height: 42px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #172033;
  box-shadow: none;
  font-size: 15px;
  line-height: 1;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__button {
  padding: 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__button:first-child {
  border-right: 1px solid #e0e6ef;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__button:last-child {
  border-left: 1px solid #e0e6ef;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__button:hover,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__button:focus-visible {
  background: #f6f9fd;
  color: #1a73e8;
  outline: none;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__input {
  width: 88px;
  padding: 0 8px;
  text-align: center;
  appearance: textfield;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__input::-webkit-inner-spin-button,
.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector__input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.ghp-product-page.ghp-product-page--campaign .ghp-campaign-quantity-selector > small {
  display: block;
  max-width: 360px;
  margin-top: 7px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}
