/*
Theme Name: Globalberry Pro
Theme URI: https://globalberrygems.com/
Author: Globalberry Ltd., Part.
Author URI: https://globalberrygems.com/
Description: Lightweight, Thai-first B2B WordPress theme for custom golf gifts and metal golf accessories.
Version: 1.7.4
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: globalberry-pro
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --gb-navy: #11100e;
  --gb-navy-2: #1d1a15;
  --gb-green: #a87925;
  --gb-green-dark: #795317;
  --gb-gold: #c8a252;
  --gb-gold-soft: #e6cb8d;
  --gb-cream: #f8f4ea;
  --gb-sand: #ede4d2;
  --gb-white: #ffffff;
  --gb-ink: #1b1915;
  --gb-muted: #69635a;
  --gb-line: #ded4bf;
  --gb-success: #167d59;
  --gb-danger: #a63a3a;
  --gb-radius-sm: 10px;
  --gb-radius: 18px;
  --gb-radius-lg: 28px;
  --gb-shadow-sm: 0 8px 24px rgba(17, 16, 14, 0.08);
  --gb-shadow: 0 18px 52px rgba(17, 16, 14, 0.14);
  --gb-container: 1180px;
  --gb-font: "Noto Sans Thai", "Leelawadee UI", Tahoma, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--gb-ink);
  background: var(--gb-white);
  font-family: var(--gb-font);
  font-size: 17px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gb-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gb-green-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gb-gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  color: var(--gb-navy);
  font-weight: 760;
  line-height: 1.28;
  letter-spacing: -0.018em;
}

h1 {
  font-size: clamp(2.15rem, 5.4vw, 4.65rem);
}

h2 {
  font-size: clamp(1.75rem, 3.6vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.62rem);
}

p {
  margin: 0 0 1.2em;
}

ul,
ol {
  padding-inline-start: 1.35em;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--gb-navy);
  background: var(--gb-white);
  box-shadow: var(--gb-shadow);
}

.gb-container {
  width: min(calc(100% - 40px), var(--gb-container));
  margin-inline: auto;
}

.gb-section {
  padding: clamp(64px, 9vw, 118px) 0;
}

.gb-section--soft {
  background: var(--gb-cream);
}

.gb-section--navy {
  color: rgba(255, 255, 255, 0.86);
  background: var(--gb-navy);
}

.gb-section--navy h2,
.gb-section--navy h3 {
  color: var(--gb-white);
}

.gb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--gb-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gb-eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--gb-gold);
}

.gb-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.gb-section-head p {
  color: var(--gb-muted);
  font-size: 1.08rem;
}

.gb-section--navy .gb-section-head p,
.gb-section--navy .gb-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.gb-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.gb-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--gb-white);
  background: var(--gb-green);
  box-shadow: 0 9px 22px rgba(17, 101, 79, 0.2);
  font-weight: 760;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gb-button:hover {
  color: var(--gb-white);
  background: var(--gb-green-dark);
  box-shadow: 0 13px 28px rgba(17, 101, 79, 0.26);
  transform: translateY(-2px);
}

.gb-button--gold {
  color: var(--gb-navy);
  background: var(--gb-gold-soft);
  box-shadow: none;
}

.gb-button--gold:hover {
  color: var(--gb-navy);
  background: #f1dfb4;
}

.gb-button--outline {
  color: var(--gb-navy);
  background: transparent;
  border-color: rgba(11, 34, 48, 0.25);
  box-shadow: none;
}

.gb-button--outline:hover {
  color: var(--gb-navy);
  background: var(--gb-cream);
  border-color: var(--gb-gold);
  box-shadow: none;
}

.gb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Header */
.gb-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 34, 48, 0.08);
  backdrop-filter: blur(16px);
}

.gb-header-inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.gb-brand {
  display: inline-flex;
  min-width: 164px;
  align-items: center;
  gap: 11px;
  color: var(--gb-navy);
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.gb-brand:hover {
  color: var(--gb-navy);
}

.gb-custom-logo {
  width: auto;
  max-width: 220px;
  height: 48px;
  object-fit: contain;
}

.gb-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--gb-white);
  background: var(--gb-green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.18);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.gb-brand-text small {
  display: block;
  margin-top: 5px;
  color: var(--gb-muted);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.gb-primary-nav {
  justify-self: end;
}

.gb-primary-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 6px;
  align-items: center;
  list-style: none;
}

.gb-primary-nav a {
  display: block;
  padding: 10px 11px;
  border-radius: 9px;
  color: var(--gb-ink);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.gb-primary-nav a:hover,
.gb-primary-nav .current-menu-item > a,
.gb-primary-nav .current_page_item > a {
  color: var(--gb-green);
  background: var(--gb-cream);
}

.gb-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--gb-line);
  border-radius: 12px;
  color: var(--gb-navy);
  background: var(--gb-white);
  cursor: pointer;
}

.gb-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.gb-header-cta {
  padding: 10px 17px;
  font-size: 0.88rem;
}

/* Hero */
.gb-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 9vw, 112px) 0 48px;
  background: var(--gb-cream);
}

.gb-hero::before {
  position: absolute;
  width: 620px;
  height: 620px;
  top: -320px;
  right: -190px;
  border: 1px solid rgba(185, 147, 75, 0.32);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(185, 147, 75, 0.06), 0 0 0 140px rgba(185, 147, 75, 0.035);
}

.gb-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(390px, 0.93fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.gb-hero-copy h1 {
  max-width: 820px;
}

.gb-hero-copy h1 em {
  color: var(--gb-green);
  font-style: normal;
}

.gb-hero-lead {
  max-width: 710px;
  color: var(--gb-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.gb-hero-note {
  display: flex;
  margin-top: 22px;
  gap: 10px;
  align-items: flex-start;
  color: var(--gb-muted);
  font-size: 0.9rem;
}

.gb-hero-note strong {
  color: var(--gb-navy);
}

.gb-hero-visual {
  position: relative;
  min-height: 520px;
}

.gb-hero-image {
  position: absolute;
  inset: 0 0 48px 58px;
  overflow: hidden;
  border-radius: 28px 28px 120px 28px;
  background: var(--gb-navy);
  box-shadow: var(--gb-shadow);
}

.gb-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(11, 34, 48, 0.38));
}

.gb-hero-card {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(300px, 75%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--gb-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--gb-shadow);
  backdrop-filter: blur(12px);
}

.gb-hero-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gb-navy);
  font-size: 1.04rem;
}

.gb-hero-card span {
  color: var(--gb-muted);
  font-size: 0.86rem;
}

.gb-trust-strip {
  position: relative;
  margin-top: 58px;
  padding-top: 30px;
  border-top: 1px solid rgba(11, 34, 48, 0.12);
}

.gb-trust-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.gb-trust-list li {
  padding: 0 24px;
  border-right: 1px solid rgba(11, 34, 48, 0.12);
  color: var(--gb-muted);
  font-size: 0.84rem;
}

.gb-trust-list li:first-child {
  padding-left: 0;
}

.gb-trust-list li:last-child {
  border-right: 0;
}

.gb-trust-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gb-navy);
  font-size: 1.05rem;
}

/* Cards */
.gb-card {
  overflow: hidden;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  box-shadow: var(--gb-shadow-sm);
}

.gb-product-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gb-product-card:hover {
  color: inherit;
  border-color: var(--gb-gold);
  box-shadow: var(--gb-shadow);
  transform: translateY(-5px);
}

.gb-product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gb-cream);
}

.gb-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gb-product-card:hover .gb-product-card__media img {
  transform: scale(1.025);
}

.gb-product-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--gb-gold);
  background: radial-gradient(circle, rgba(185,147,75,.18) 0 24%, transparent 25%), var(--gb-navy);
  font-family: Georgia, serif;
  font-size: 3rem;
}

.gb-product-card__body {
  display: flex;
  padding: 25px;
  flex: 1;
  flex-direction: column;
}

.gb-product-card__body h3 {
  margin-bottom: 8px;
}

.gb-product-card__body p {
  margin-bottom: 18px;
  color: var(--gb-muted);
  font-size: 0.94rem;
}

.gb-text-link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 7px;
  color: var(--gb-green);
  font-size: 0.91rem;
  font-weight: 800;
}

.gb-text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.gb-product-card:hover .gb-text-link::after {
  transform: translateX(4px);
}

/* Buyer helper */
.gb-helper {
  display: grid;
  padding: clamp(28px, 5vw, 58px);
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  border-radius: var(--gb-radius-lg);
  color: rgba(255, 255, 255, 0.8);
  background: var(--gb-navy);
  box-shadow: var(--gb-shadow);
}

.gb-helper h2 {
  color: var(--gb-white);
}

.gb-helper-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gb-helper-option {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
}

.gb-helper-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gb-white);
}

/* Process */
.gb-process {
  counter-reset: process;
}

.gb-process-item {
  position: relative;
  padding: 28px;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
}

.gb-process-item::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--gb-white);
  background: var(--gb-green);
  content: counter(process, decimal-leading-zero);
  counter-increment: process;
  font-size: 0.78rem;
  font-weight: 850;
}

.gb-process-item p {
  margin: 0;
  color: var(--gb-muted);
  font-size: 0.92rem;
}

/* Proof */
.gb-proof-card {
  padding: 28px;
  border-left: 3px solid var(--gb-gold);
  border-radius: 0 var(--gb-radius) var(--gb-radius) 0;
  background: rgba(255, 255, 255, 0.055);
}

.gb-proof-card p {
  margin: 0;
}

.gb-proof-card strong {
  display: block;
  margin-top: 18px;
  color: var(--gb-gold-soft);
}

/* FAQ */
.gb-faq {
  border-top: 1px solid var(--gb-line);
}

.gb-faq details {
  border-bottom: 1px solid var(--gb-line);
}

.gb-faq summary {
  display: flex;
  padding: 22px 42px 22px 0;
  align-items: center;
  justify-content: space-between;
  color: var(--gb-navy);
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.gb-faq summary::-webkit-details-marker {
  display: none;
}

.gb-faq summary::after {
  margin-right: -34px;
  content: "+";
  color: var(--gb-green);
  font-size: 1.5rem;
  font-weight: 450;
}

.gb-faq details[open] summary::after {
  content: "\2212";
}

.gb-faq__answer {
  max-width: 820px;
  padding: 0 0 22px;
  color: var(--gb-muted);
}

/* Product page */
.gb-breadcrumbs {
  padding: 18px 0;
  color: var(--gb-muted);
  font-size: 0.82rem;
}

.gb-breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}

.gb-breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: #aeb8b4;
}

.gb-product-hero {
  padding: 34px 0 clamp(64px, 8vw, 96px);
}

.gb-product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.gb-product-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
}

.gb-product-hero__subtitle {
  color: var(--gb-green);
  font-size: 0.95rem;
  font-weight: 780;
}

.gb-product-hero__lead {
  color: var(--gb-muted);
  font-size: 1.08rem;
}

.gb-product-hero__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--gb-radius-lg);
  background: var(--gb-cream);
  box-shadow: var(--gb-shadow);
}

.gb-product-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Premium gift photography is prepared as square artwork. Keep the complete
   gift set visible instead of cropping it into the standard product ratio. */
.gb-product--premium-gift .gb-product-hero__media {
  aspect-ratio: 1 / 1;
}

.gb-product--premium-gift .gb-product-hero__media img,
.gb-product--premium-gift .gb-gallery img,
.gb-product--premium-gift .gb-detail-gallery img {
  object-fit: contain;
}

.gb-spec-grid {
  display: grid;
  margin: 28px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gb-spec {
  padding: 15px 17px;
  border: 1px solid var(--gb-line);
  border-radius: 12px;
  background: var(--gb-white);
}

.gb-spec span {
  display: block;
  color: var(--gb-muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.gb-spec strong {
  color: var(--gb-navy);
  font-size: 0.93rem;
}

.gb-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gb-gallery figure {
  margin: 0;
}

.gb-gallery a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--gb-radius);
  background: var(--gb-cream);
}

.gb-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gb-gallery a:hover img {
  transform: scale(1.025);
}

.gb-content {
  max-width: 820px;
}

.gb-content > *:first-child {
  margin-top: 0;
}

.gb-content h2,
.gb-content h3 {
  margin-top: 1.6em;
}

.gb-content img {
  border-radius: var(--gb-radius);
}

/* Structured product sub-sections */
.gb-product-sections {
  border-top: 1px solid var(--gb-line);
}

.gb-product-detail:nth-child(even) {
  background: var(--gb-cream);
}

.gb-product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: center;
}

.gb-product-detail__grid--copy-only {
  grid-template-columns: minmax(0, 820px);
}

.gb-product-detail--reverse .gb-product-detail__copy {
  order: 2;
}

.gb-product-detail--reverse .gb-detail-gallery {
  order: 1;
}

.gb-product-detail__copy h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
}

.gb-product-detail__description {
  color: var(--gb-muted);
  font-size: 1.04rem;
}

.gb-product-detail__list {
  display: grid;
  margin: 24px 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.gb-product-detail__list li {
  position: relative;
  padding: 10px 12px 10px 38px;
  border-bottom: 1px solid var(--gb-line);
}

.gb-product-detail__list li::before {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 12px;
  left: 8px;
  border-radius: 50%;
  color: var(--gb-navy);
  background: var(--gb-gold-soft);
  content: "\2713";
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

.gb-product-detail__note {
  margin: 24px 0 15px;
  color: var(--gb-muted);
  font-size: 0.91rem;
}

.gb-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gb-detail-gallery figure {
  margin: 0;
}

.gb-detail-gallery a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(200, 162, 82, 0.42);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  box-shadow: var(--gb-shadow-sm);
}

.gb-detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gb-detail-gallery a:hover img {
  transform: scale(1.025);
}

.gb-detail-gallery--1 {
  grid-template-columns: 1fr;
}

.gb-detail-gallery--1 a {
  aspect-ratio: 4 / 3;
}

.gb-product-detail__actions {
  margin-top: 0;
}

/* Metal plating guide */
.gb-plating-guide {
  border-top: 1px solid var(--gb-line);
  border-bottom: 1px solid var(--gb-line);
}

.gb-plating-guide .gb-section-head {
  margin-bottom: 30px;
}

.gb-plating-chart {
  margin: 0;
}

.gb-plating-chart__scroll {
  overflow-x: auto;
  border: 1px solid rgba(200, 162, 82, 0.48);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  box-shadow: var(--gb-shadow-sm);
  scrollbar-color: var(--gb-gold) var(--gb-sand);
  scrollbar-width: thin;
}

.gb-plating-chart__scroll a {
  display: block;
}

.gb-plating-chart img {
  width: 100%;
  height: auto;
}

.gb-plating-chart figcaption {
  margin-top: 12px;
  color: var(--gb-muted);
  font-size: 0.82rem;
}

.gb-plating-guide__actions {
  margin-top: 24px;
}

.gb-feature-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.gb-feature-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--gb-line);
  border-radius: 14px;
  background: var(--gb-white);
}

.gb-feature-list li::before {
  position: absolute;
  display: grid;
  width: 24px;
  height: 24px;
  top: 18px;
  left: 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--gb-white);
  background: var(--gb-green);
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 900;
}

/* Page and posts */
.gb-page-hero {
  padding: 64px 0;
  background: var(--gb-cream);
}

.gb-page-hero h1 {
  max-width: 900px;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

.gb-page-main {
  padding: 64px 0 96px;
}

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

.gb-post-card {
  height: 100%;
}

.gb-post-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--gb-cream);
}

.gb-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-post-card__body {
  padding: 24px;
}

.gb-post-card__meta {
  margin-bottom: 8px;
  color: var(--gb-muted);
  font-size: 0.78rem;
}

.gb-post-card h2 {
  font-size: 1.25rem;
}

.gb-post-card h2 a {
  color: var(--gb-navy);
  text-decoration: none;
}

/* Purchasing knowledge hub */
.gb-knowledge-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 0;
}

.gb-knowledge-hero::after {
  position: absolute;
  width: min(42vw, 540px);
  aspect-ratio: 1;
  top: -48%;
  right: -8%;
  border: 1px solid rgba(200, 162, 82, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 76px rgba(200, 162, 82, 0.035), 0 0 0 152px rgba(200, 162, 82, 0.022);
  content: "";
  pointer-events: none;
}

.gb-knowledge-hero .gb-container {
  position: relative;
  z-index: 1;
}

.gb-knowledge-hero h1 {
  max-width: 980px;
}

.gb-knowledge-hero .gb-hero-lead {
  max-width: 850px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.gb-knowledge-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gb-knowledge-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.gb-knowledge-benefits svg {
  flex: 0 0 auto;
  color: var(--gb-gold-soft);
}

.gb-section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.75fr);
  gap: 32px;
  margin-bottom: 40px;
}

.gb-section-heading h2,
.gb-section-heading p {
  margin-bottom: 0;
}

.gb-section-heading p {
  color: var(--gb-muted);
}

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

.gb-featured-article {
  overflow: hidden;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  box-shadow: var(--gb-shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gb-featured-article:hover {
  border-color: rgba(168, 121, 37, 0.52);
  box-shadow: var(--gb-shadow);
  transform: translateY(-4px);
}

.gb-featured-article__media {
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  place-items: center;
  color: var(--gb-gold-soft);
  background: linear-gradient(135deg, var(--gb-navy), var(--gb-navy-2));
  text-decoration: none;
}

.gb-featured-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gb-featured-article:hover .gb-featured-article__media img {
  transform: scale(1.025);
}

.gb-featured-article__body {
  padding: 26px;
}

.gb-featured-article h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.gb-featured-article h3 a,
.gb-article-row h3 a {
  color: var(--gb-navy);
  text-decoration: none;
}

.gb-featured-article h3 a:hover,
.gb-article-row h3 a:hover {
  color: var(--gb-green-dark);
}

.gb-featured-article p,
.gb-article-row p {
  color: var(--gb-muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.gb-article-category {
  color: var(--gb-green-dark);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.025em;
}

.gb-article-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gb-green-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.gb-article-link svg {
  transition: transform 180ms ease;
}

.gb-article-link:hover svg {
  transform: translateX(3px);
}

.gb-article-placeholder {
  display: grid;
  width: 82px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(230, 203, 141, 0.48);
  border-radius: 50%;
  color: var(--gb-gold-soft);
  font-family: Georgia, serif;
  font-size: 2.8rem;
}

.gb-article-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gb-article-row {
  display: grid;
  overflow: hidden;
  min-height: 190px;
  grid-template-columns: 150px minmax(0, 1fr);
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  background: var(--gb-white);
  box-shadow: 0 6px 20px rgba(17, 16, 14, 0.055);
}

.gb-article-row__media {
  display: grid;
  min-height: 100%;
  place-items: center;
  color: var(--gb-gold-soft);
  background: linear-gradient(145deg, var(--gb-navy), #30291c);
  text-decoration: none;
}

.gb-article-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-article-row__media .gb-article-placeholder {
  width: 58px;
  font-size: 2rem;
}

.gb-article-row__body {
  padding: 22px;
}

.gb-article-row h3 {
  margin: 7px 0 8px;
  font-size: 1.12rem;
}

.gb-article-row p {
  margin-bottom: 12px;
}

.gb-article-empty {
  padding: 42px;
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius);
  text-align: center;
  background: var(--gb-white);
}

.gb-article-empty p {
  margin-bottom: 0;
  color: var(--gb-muted);
}

.gb-article-pagination {
  margin-top: 38px;
}

.gb-article-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.gb-article-pagination .page-numbers {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  place-items: center;
  border: 1px solid var(--gb-line);
  border-radius: 999px;
  color: var(--gb-navy);
  background: var(--gb-white);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
}

.gb-article-pagination .page-numbers.current,
.gb-article-pagination a.page-numbers:hover {
  border-color: var(--gb-gold);
  background: var(--gb-gold-soft);
}

/* Forms */
.gb-form {
  display: grid;
  gap: 17px;
}

.gb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.gb-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--gb-navy);
  font-size: 0.86rem;
  font-weight: 760;
}

.gb-field input,
.gb-field select,
.gb-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #cbd5d1;
  border-radius: 11px;
  color: var(--gb-ink);
  background: var(--gb-white);
}

.gb-field textarea {
  min-height: 140px;
  resize: vertical;
}

.gb-field input:focus,
.gb-field select:focus,
.gb-field textarea:focus {
  border-color: var(--gb-green);
  box-shadow: 0 0 0 3px rgba(17, 101, 79, 0.12);
  outline: 0;
}

.gb-form-note {
  color: var(--gb-muted);
  font-size: 0.78rem;
}

.gb-alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.gb-alert--success {
  color: #0b4c35;
  background: #e6f6ef;
  border: 1px solid #b8e2d0;
}

.gb-alert--error {
  color: #7d2929;
  background: #fff0f0;
  border: 1px solid #f0c4c4;
}

.gb-honeypot {
  position: absolute;
  left: -9999px;
}

/* Chat-first contact page */
.gb-contact-chat {
  min-height: 100%;
  grid-template-columns: 1fr;
  align-items: start;
}

.gb-contact-chat p {
  max-width: 650px;
}

.gb-contact-chat__actions {
  margin-top: 28px;
}

.gb-contact-chat__note {
  margin: 24px 0 0;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(200, 162, 82, 0.26);
  font-size: 0.84rem;
}

.gb-contact-checklist {
  height: 100%;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--gb-line);
  border-radius: var(--gb-radius-lg);
  background: var(--gb-cream);
}

.gb-contact-checklist__list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.gb-contact-checklist__list li {
  padding: 18px 20px;
  border-left: 3px solid var(--gb-gold);
  border-radius: 0 12px 12px 0;
  background: var(--gb-white);
}

.gb-contact-checklist__list strong,
.gb-contact-checklist__list span {
  display: block;
}

.gb-contact-checklist__list span {
  margin-top: 3px;
  color: var(--gb-muted);
  font-size: 0.86rem;
}

/* How to order */
.gb-order-hero {
  padding: clamp(52px, 7vw, 96px) 0;
}

.gb-order-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.gb-order-hero__actions {
  margin-top: 30px;
}

.gb-order-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--gb-radius);
  background: var(--gb-cream);
}

.gb-order-photo::after {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(17, 16, 14, 0.58);
  content: "globalberrygems.com";
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.gb-order-hero__media {
  aspect-ratio: 1;
  border: 1px solid rgba(200, 162, 82, 0.55);
  border-radius: var(--gb-radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.gb-order-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-order-ready .gb-card {
  padding: 26px;
}

.gb-order-ready .gb-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--gb-navy);
  background: var(--gb-gold);
  font-size: 0.76rem;
  font-weight: 850;
}

.gb-order-ready p {
  margin-bottom: 0;
  color: var(--gb-muted);
  font-size: 0.9rem;
}

.gb-order-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}

.gb-order-design {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.gb-order-design__media {
  aspect-ratio: 1.14;
  border: 1px solid var(--gb-line);
  box-shadow: var(--gb-shadow);
}

.gb-order-design__media .gb-order-image {
  object-fit: contain;
  background: var(--gb-white);
}

.gb-check-list {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.gb-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gb-muted);
}

.gb-check-list svg {
  flex: 0 0 auto;
  color: var(--gb-green);
}

.gb-order-production-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gb-order-production-grid .gb-order-photo,
.gb-order-finished-grid .gb-order-photo {
  border: 1px solid rgba(200, 162, 82, 0.28);
  background: #181611;
}

.gb-order-production__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gb-order-production-grid figcaption,
.gb-order-finished-grid figcaption {
  position: relative;
  z-index: 3;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--gb-navy-2);
  font-size: 0.86rem;
  font-weight: 700;
}

.gb-order-production-grid .gb-order-photo::after,
.gb-order-finished-grid .gb-order-photo::after {
  bottom: 64px;
}

.gb-order-finished-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gb-order-finished__media {
  overflow: hidden;
  aspect-ratio: 1;
}

.gb-entry-content {
  max-width: 850px;
}

.gb-entry-content > :first-child {
  margin-top: 0;
}

.gb-entry-content > :last-child {
  margin-bottom: 0;
}

/* CTA */
.gb-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 70px);
  border-radius: var(--gb-radius-lg);
  color: rgba(255, 255, 255, 0.82);
  background: var(--gb-green-dark);
}

.gb-cta::after {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -190px;
  border: 45px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.gb-cta > * {
  position: relative;
  z-index: 1;
}

.gb-cta h2 {
  max-width: 800px;
  color: var(--gb-white);
}

.gb-cta p {
  max-width: 760px;
}

/* Footer */
.gb-site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--gb-navy);
}

.gb-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 48px;
}

.gb-site-footer h2,
.gb-site-footer h3 {
  color: var(--gb-white);
  font-size: 1rem;
}

.gb-site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.gb-site-footer a:hover {
  color: var(--gb-gold-soft);
}

.gb-site-footer .gb-footer-contact {
  display: inline-flex;
  padding: 11px 16px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(230, 203, 141, 0.5);
  border-radius: 999px;
  color: var(--gb-navy);
  background: var(--gb-gold);
  font-weight: 800;
}

.gb-site-footer .gb-footer-contact:hover {
  color: var(--gb-navy);
  background: var(--gb-gold-soft);
}

.gb-footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gb-footer-nav li + li {
  margin-top: 8px;
}

.gb-footer-bottom {
  display: flex;
  margin-top: 58px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

/* Black and gold brand treatment */
.gb-site-header {
  background: rgba(13, 12, 10, 0.97);
  border-bottom-color: rgba(200, 162, 82, 0.32);
}

.gb-brand,
.gb-brand:hover {
  color: var(--gb-white);
}

.gb-brand-text small {
  color: rgba(255, 255, 255, 0.58);
}

.gb-brand-mark {
  color: var(--gb-navy);
  background: var(--gb-gold);
  box-shadow: inset 0 0 0 5px rgba(17, 16, 14, 0.18);
}

.gb-primary-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.gb-primary-nav a:hover,
.gb-primary-nav .current-menu-item > a,
.gb-primary-nav .current_page_item > a {
  color: var(--gb-gold-soft);
  background: rgba(200, 162, 82, 0.12);
}

.gb-menu-toggle {
  color: var(--gb-gold-soft);
  background: #15130f;
  border-color: rgba(200, 162, 82, 0.48);
}

.gb-button {
  color: var(--gb-navy);
  background: var(--gb-gold);
  box-shadow: 0 9px 22px rgba(121, 83, 23, 0.2);
}

.gb-button:hover {
  color: var(--gb-navy);
  background: var(--gb-gold-soft);
  box-shadow: 0 13px 28px rgba(121, 83, 23, 0.25);
}

.gb-button--outline {
  color: var(--gb-navy);
  border-color: rgba(17, 16, 14, 0.32);
}

.gb-button--outline:hover {
  color: var(--gb-navy);
  background: var(--gb-cream);
  border-color: var(--gb-gold);
}

.gb-hero,
.gb-product-hero,
.gb-page-hero {
  color: rgba(255, 255, 255, 0.82);
  background: var(--gb-navy);
}

.gb-hero-copy h1,
.gb-product-hero h1,
.gb-page-hero h1 {
  color: var(--gb-white);
}

.gb-hero-copy h1 em,
.gb-product-hero__subtitle {
  color: var(--gb-gold-soft);
}

.gb-hero-lead,
.gb-product-hero__lead,
.gb-hero-note {
  color: rgba(255, 255, 255, 0.7);
}

.gb-hero-note strong {
  color: var(--gb-gold-soft);
}

.gb-hero::before {
  border-color: rgba(200, 162, 82, 0.36);
  box-shadow: 0 0 0 70px rgba(200, 162, 82, 0.055), 0 0 0 140px rgba(200, 162, 82, 0.028);
}

.gb-trust-strip,
.gb-product-hero + .gb-section {
  border-color: rgba(200, 162, 82, 0.25);
}

.gb-trust-list li {
  color: rgba(255, 255, 255, 0.62);
  border-right-color: rgba(200, 162, 82, 0.24);
}

.gb-trust-list strong {
  color: var(--gb-gold-soft);
}

.gb-product-hero .gb-spec {
  border-color: rgba(200, 162, 82, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.gb-product-hero .gb-spec span {
  color: rgba(255, 255, 255, 0.58);
}

.gb-product-hero .gb-spec strong {
  color: var(--gb-white);
}

.gb-product-hero .gb-button--outline,
.gb-hero .gb-button--outline,
.gb-section--navy .gb-button--outline,
.gb-cta .gb-button--outline {
  color: var(--gb-gold-soft);
  border-color: rgba(230, 203, 141, 0.58);
}

.gb-product-hero .gb-button--outline:hover,
.gb-hero .gb-button--outline:hover,
.gb-section--navy .gb-button--outline:hover,
.gb-cta .gb-button--outline:hover {
  color: var(--gb-navy);
  background: var(--gb-gold-soft);
}

.gb-breadcrumbs {
  color: rgba(255, 255, 255, 0.58);
  background: var(--gb-navy);
}

.gb-breadcrumbs a {
  color: var(--gb-gold-soft);
}

.gb-helper,
.gb-section--navy,
.gb-cta,
.gb-site-footer {
  background: var(--gb-navy);
}

.gb-card,
.gb-process-item,
.gb-feature-list li,
.gb-spec {
  border-color: var(--gb-line);
}

.gb-product-card:hover {
  border-color: var(--gb-gold);
}

.gb-product-card__placeholder {
  color: var(--gb-gold-soft);
  background: radial-gradient(circle, rgba(200, 162, 82, 0.2) 0 24%, transparent 25%), var(--gb-navy);
}

.gb-text-link,
.gb-eyebrow,
.gb-faq summary::after {
  color: var(--gb-green);
}

.gb-field input:focus,
.gb-field select:focus,
.gb-field textarea:focus {
  border-color: var(--gb-gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 82, 0.16);
}

/* Responsive */
@media (max-width: 1050px) {
  .gb-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .gb-menu-toggle {
    display: block;
    justify-self: end;
  }

  .gb-primary-nav {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: 1001;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100vh - 78px);
    height: calc(100dvh - 78px);
    padding: 24px 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #11100e;
    border-top: 1px solid rgba(200, 162, 82, 0.24);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
    transform: translateY(-8px);
    -webkit-overflow-scrolling: touch;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .gb-primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .gb-primary-nav ul {
    display: block;
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

  .gb-primary-nav a {
    padding: 15px;
    border-bottom: 1px solid rgba(200, 162, 82, 0.24);
    border-radius: 0;
    font-size: 1.02rem;
    text-align: left;
  }

  .gb-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .gb-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .gb-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .gb-header-cta {
    display: none;
  }

  .gb-hero-grid,
  .gb-product-hero__grid {
    grid-template-columns: 1fr 0.82fr;
  }

  .gb-product-detail__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 34px;
  }

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

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .gb-container {
    width: min(calc(100% - 30px), var(--gb-container));
  }

  .gb-hero-grid,
  .gb-product-hero__grid,
  .gb-product-detail__grid,
  .gb-order-hero__grid,
  .gb-order-design,
  .gb-helper,
  .gb-footer-grid {
    grid-template-columns: 1fr;
  }

  .gb-hero-visual {
    min-height: 430px;
  }

  .gb-hero-image {
    inset: 0 0 42px 34px;
  }

  .gb-trust-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .gb-trust-list li:nth-child(2) {
    border-right: 0;
  }

  .gb-trust-list li:nth-child(3) {
    padding-left: 0;
  }

  .gb-grid--3,
  .gb-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gb-section-heading {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gb-article-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gb-article-featured-grid .gb-featured-article:first-child {
    grid-column: 1 / -1;
  }

  .gb-article-list-grid {
    grid-template-columns: 1fr;
  }

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

  .gb-product-detail--reverse .gb-product-detail__copy,
  .gb-product-detail--reverse .gb-detail-gallery {
    order: initial;
  }

  .gb-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gb-brand-text small {
    display: none;
  }

  .gb-brand {
    min-width: 0;
  }

  .gb-hero {
    padding-top: 46px;
  }

  .gb-hero-visual {
    min-height: 360px;
  }

  .gb-hero-image {
    inset: 0 0 52px 0;
    border-radius: 22px 22px 78px 22px;
  }

  .gb-hero-card {
    width: 84%;
    padding: 17px;
  }

  .gb-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gb-button {
    width: 100%;
  }

  .gb-grid--2,
  .gb-grid--3,
  .gb-grid--4,
  .gb-post-grid,
  .gb-article-featured-grid,
  .gb-order-steps,
  .gb-order-production-grid,
  .gb-order-finished-grid,
  .gb-helper-options,
  .gb-spec-grid,
  .gb-feature-list,
  .gb-form-grid {
    grid-template-columns: 1fr;
  }

  .gb-article-featured-grid .gb-featured-article:first-child {
    grid-column: auto;
  }

  .gb-knowledge-benefits {
    align-items: flex-start;
    flex-direction: column;
  }

  .gb-article-row {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .gb-article-row__body {
    padding: 18px;
  }

  .gb-article-row p {
    display: none;
  }

  .gb-trust-list {
    grid-template-columns: 1fr;
  }

  .gb-trust-list li,
  .gb-trust-list li:nth-child(3) {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 34, 48, 0.1);
  }

  .gb-trust-list li:last-child {
    border-bottom: 0;
  }

  .gb-gallery {
    gap: 11px;
  }

  .gb-plating-chart__scroll a {
    width: 760px;
  }

  .gb-plating-chart img {
    width: 760px;
    max-width: none;
  }

  .gb-footer-bottom {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .gb-site-header,
  .gb-site-footer,
  .gb-actions,
  .gb-menu-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .gb-section,
  .gb-product-hero,
  .gb-page-main {
    padding: 24px 0;
  }
}
