/*
Theme Name: Global Diploma
Theme URI: https://globaldiploma.com
Author: Global Diploma Design
Author URI: https://globaldiploma.com
Description: A premium WooCommerce-ready WordPress theme for Global Diploma Design. Fully compatible with Elementor page builder. Features a deep navy (#1a3a52) and gold (#d4af37) color scheme, mega menu with country selector, cart drawer, and all WooCommerce templates customized to match the original design.
Version: 2.2.58
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: global-diploma
Tags: e-commerce, woocommerce, elementor, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready

This theme requires WooCommerce and works best with Elementor (free).
*/

/* =========================================================
   GLOBAL DIPLOMA — MASTER STYLESHEET
   Brand colors:
     Navy Dark:  #0f2638
     Navy:       #1a3a52
     Navy BG:    #0a1c2c
     Gold:       #d4af37
     Gold Light: #e6c14a
     Gold Dark:  #b8951f
   Fonts: Montserrat (headings), Open Sans (body)
   ========================================================= */

/* Fonts loaded via wp_enqueue_style in functions.php (do not @import here). */

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --gd-navy-dark:    #0f2638;
  --gd-navy:         #1a3a52;
  --gd-navy-bg:      #0a1c2c;
  --gd-gold:         #d4af37;
  --gd-gold-light:   #e6c14a;
  --gd-gold-dark:    #b8951f;
  --gd-white:        #ffffff;
  --gd-gray-50:      #f9fafb;
  --gd-gray-100:     #f3f4f6;
  --gd-gray-200:     #e5e7eb;
  --gd-gray-400:     #9ca3af;
  --gd-gray-600:     #4b5563;
  --gd-gray-700:     #374151;
  --gd-gray-900:     #111827;
  --gd-radius:       0.5rem;
  --gd-radius-lg:    0.75rem;
  --gd-radius-xl:    1rem;
  --gd-radius-2xl:   1.25rem;
  --gd-shadow-sm:    0 1px 2px 0 rgb(0 0 0 / 0.05);
  --gd-shadow:       0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --gd-shadow-lg:    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --gd-shadow-2xl:   0 25px 50px -12px rgb(0 0 0 / 0.25);
  --gd-transition:   all 0.2s ease;
  --gd-max-width:    1280px;
  --gd-container-px: 1rem;
  --header-height:   80px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gd-gray-700);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gd-navy);
}

a { color: var(--gd-navy); text-decoration: none; transition: var(--gd-transition); }
a:hover { color: var(--gd-gold); }

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

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button { cursor: pointer; border: none; background: none; }

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.gd-container {
  width: 100%;
  max-width: var(--gd-max-width);
  margin-inline: auto;
  padding-inline: var(--gd-container-px);
}

@media (min-width: 640px)  { :root { --gd-container-px: 1.5rem; } }
@media (min-width: 1024px) { :root { --gd-container-px: 2rem; } }

.gd-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.gd-grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.gd-grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

@media (min-width: 768px) {
  .gd-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .gd-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gd-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gd-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .gd-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Section spacing */
.gd-section { padding-block: 5rem; }
.gd-section-sm { padding-block: 3rem; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--gd-radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--gd-transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gd-gold);
  color: var(--gd-navy-dark);
  box-shadow: 0 4px 14px 0 rgb(212 175 55 / 0.3);
}
.btn-primary:hover {
  background: var(--gd-gold-light);
  color: var(--gd-navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px 0 rgb(212 175 55 / 0.4);
}

.btn-secondary {
  background: var(--gd-navy);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--gd-navy-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--gd-navy);
  border: 2px solid var(--gd-gold);
}
.btn-outline:hover {
  background: var(--gd-gold);
  color: var(--gd-navy-dark);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.gd-top-bar {
  background: var(--gd-navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  padding: 0.5rem 0;
}
.gd-top-bar a, .gd-top-bar button {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.gd-top-bar a:hover, .gd-top-bar button:hover { color: var(--gd-gold); }
.gd-top-bar .top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.gd-top-bar .top-bar-left,
.gd-top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}
.gd-top-bar .top-bar-right a {
  white-space: nowrap;
}
.gd-top-bar .sep { color: rgba(255,255,255,0.25); }
.gd-top-bar .gold { color: var(--gd-gold); font-weight: 600; }

/* =========================================================
   MAIN HEADER
   ========================================================= */
.gd-header {
  position: relative;
  top: auto;
  z-index: 300;
  background: #fff;
  box-shadow: 0 1px 0 0 var(--gd-gray-200);
  overflow: visible;
}

.gd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.6rem;
  flex-wrap: nowrap;
  min-width: 0;
  position: relative;
}

/* Logo */
.gd-logo { flex-shrink: 0; display: flex; align-items: center; }
.gd-logo-img {
  display: block;
  height: 54px;
  width: auto;
  max-width: min(300px, 62vw);
  object-fit: contain;
}
.gd-logo-img--sm,
.gd-logo-img--footer {
  height: 42px;
  max-width: 240px;
}
.gd-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.gd-logo-text span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gd-navy);
  letter-spacing: -0.025em;
}
.gd-logo-text span:last-child {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gd-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop nav */
.gd-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gd-gray-700);
  flex: 0 1 auto;
  justify-content: center;
  min-width: 0;
}
@media (min-width: 1024px) { .gd-nav { display: flex; } }

.gd-nav > a,
.gd-nav > .gd-dropdown > button {
  color: var(--gd-gray-700);
  padding: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.gd-nav > a:hover,
.gd-nav > .gd-dropdown > button:hover { color: var(--gd-navy); }

/* Nav underline on active */
.gd-nav > a.active,
.gd-nav > .gd-dropdown > button.active {
  color: var(--gd-navy);
  font-weight: 600;
}

/* Shop Now special */
.gd-nav .nav-shop-btn {
  color: var(--gd-navy) !important;
  font-weight: 700;
}
.gd-nav .nav-shop-btn:hover { color: var(--gd-gold) !important; }

/* Mega dropdown — open via .is-open (JS) / :focus-within; not bare :hover.
   Shop mega uses position:static so CSS :hover on the trigger dies when the
   cursor moves into the full-width panel (classic “disappears when I use it”). */
.gd-dropdown { position: relative; padding: 0.5rem 0; }
.gd-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  padding-top: 0.75rem;
}
.gd-dropdown.is-open .gd-dropdown-panel,
.gd-dropdown:focus-within .gd-dropdown-panel { display: block; }

@media (min-width: 1024px) {
  .gd-dropdown--shop {
    position: static;
  }

  .gd-dropdown--shop .gd-dropdown-panel {
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    top: 100%;
    padding-top: 0.5rem;
    display: none;
    justify-content: center;
  }

  .gd-dropdown--shop.is-open .gd-dropdown-panel,
  .gd-dropdown--shop:focus-within .gd-dropdown-panel {
    display: flex;
  }

  /* Invisible bridge so the cursor can reach the panel without a dead zone */
  .gd-dropdown--shop .gd-dropdown-panel::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -0.5rem;
    height: 0.5rem;
  }

  .gd-dropdown--shop .gd-mega-menu {
    width: min(840px, calc(100vw - 2.5rem));
    flex: 0 1 auto;
    position: relative;
  }
}

.gd-mega-menu {
  background: #fff;
  border-radius: var(--gd-radius-xl);
  box-shadow: var(--gd-shadow-2xl);
  border: 1px solid var(--gd-gray-100);
  overflow: hidden;
  width: min(720px, calc(100vw - 2rem));
}

.gd-mega-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: min(420px, 60vh);
  overflow-y: auto;
}
@media (min-width: 900px) {
  .gd-mega-columns { grid-template-columns: 1fr 1fr 1fr; }
}

.gd-mega-body {
  padding: 0.4rem 0.65rem 0.65rem;
  max-height: min(360px, 55vh);
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .gd-mega-body {
    max-height: min(320px, 50vh);
  }
}

.gd-mega-grid.gd-mega-grid--all {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1px;
  padding: 0;
}

.gd-mega-grid.gd-mega-grid--all .gd-mega-item {
  padding: 0.35rem 0.45rem;
}

@media (max-width: 767px) {
  .gd-mega-grid.gd-mega-grid--all {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
.gd-mega-col {
  padding: 0.5rem 0.625rem;
  min-width: 0;
}
.gd-mega-col + .gd-mega-col {
  border-top: 1px solid var(--gd-gray-100);
}
@media (min-width: 900px) {
  .gd-mega-col + .gd-mega-col {
    border-top: none;
    border-left: 1px solid var(--gd-gray-100);
  }
}
.gd-mega-col-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gd-gray-400);
  margin: 0 0.75rem 0.5rem;
  padding-top: 0.25rem;
}

.gd-mega-col .gd-mega-grid {
  grid-template-columns: 1fr;
  padding: 0;
}

.gd-mega-header {
  background: linear-gradient(135deg, var(--gd-navy) 0%, var(--gd-navy-dark) 100%);
  color: #fff;
  padding: 0.55rem 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.gd-mega-header .mega-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gd-gold);
  font-weight: 700;
}
.gd-mega-header .mega-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.9);
  margin-top: 2px;
}
.gd-mega-header .mega-view-all {
  background: var(--gd-gold);
  color: var(--gd-navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: var(--gd-radius);
  white-space: nowrap;
}
.gd-mega-header .mega-view-all:hover { background: var(--gd-gold-light); }

.gd-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 0.75rem;
}

.gd-mega-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.5rem;
  border-radius: var(--gd-radius);
  transition: background 0.15s;
  text-align: left;
  width: 100%;
  min-height: 0;
}
.gd-mega-item:hover { background: #fdfaf0; }
.gd-mega-item .flag { font-size: 1.15rem; flex-shrink: 0; line-height: 1; }
.gd-mega-item .country-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gd-gray-900);
  line-height: 1.2;
}
.gd-mega-item .country-sub {
  display: none; /* keep rows single-line — less vertical depth */
}
.gd-mega-item:hover .country-name { color: var(--gd-navy); }
.gd-mega-item .chevron { margin-left: auto; color: var(--gd-gray-200); font-size: 0.875rem; }
.gd-mega-item:hover .chevron { color: var(--gd-gold); }

.gd-mega-footer {
  background: var(--gd-gray-50);
  border-top: 1px solid var(--gd-gray-100);
  padding: 0.5rem 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: var(--gd-gray-600);
  flex-wrap: wrap;
}
.gd-mega-footer a { color: var(--gd-navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.gd-mega-footer a:hover { color: var(--gd-gold); }
.gd-mega-footer .country-count { color: var(--gd-gray-400); }
.gd-mega-footer .country-count strong { color: var(--gd-gold); font-weight: 700; }

/* Support dropdown */
.gd-support-menu {
  background: #fff;
  border-radius: var(--gd-radius-xl);
  box-shadow: var(--gd-shadow-2xl);
  border: 1px solid var(--gd-gray-100);
  overflow: hidden;
  width: 260px;
  padding: 0.375rem 0;
}
.gd-support-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--gd-gray-700);
  font-weight: 500;
}
.gd-support-menu a:hover { background: #fdfaf0; color: var(--gd-navy); }

/* Header right cluster — search + CTAs stay in one non-overlapping group */
.gd-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
  min-width: 0;
}

/* Header search toggle + overlay */
.gd-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--gd-navy);
  background: transparent;
  border: 1px solid var(--gd-gray-200);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.gd-search-toggle:hover,
.gd-search-toggle[aria-expanded="true"] {
  background: #fdfaf0;
  border-color: var(--gd-gold);
  color: var(--gd-navy);
}

.gd-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 1rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.gd-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gd-search-overlay-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(15, 38, 56, 0.55);
  cursor: pointer;
}
.gd-search-overlay-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  background: #fff;
  border-radius: var(--gd-radius-xl, 16px);
  box-shadow: var(--gd-shadow-2xl);
  border: 1px solid var(--gd-gray-100);
  padding: 1.25rem 1.25rem 1.5rem;
  transform: translateY(-12px);
  transition: transform 0.2s ease;
}
.gd-search-overlay.is-open .gd-search-overlay-panel {
  transform: translateY(0);
}
.gd-search-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.gd-search-overlay-title {
  margin: 0;
  font-size: 1.125rem;
  color: var(--gd-navy);
}
.gd-search-overlay-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--gd-gray-600);
}
.gd-search-overlay-close:hover {
  background: var(--gd-gray-50, #f9fafb);
  color: var(--gd-navy);
}
.gd-search-overlay-body .woocommerce-product-search {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}
.gd-search-overlay-body .woocommerce-product-search input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--gd-gray-200);
  border-radius: 8px;
}
.gd-search-overlay-body .woocommerce-product-search input[type="search"]:focus {
  outline: none;
  border-color: var(--gd-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.gd-search-overlay-body .woocommerce-product-search button {
  flex: 0 0 auto;
  min-width: 48px;
  height: 48px;
  padding: 0 1.25rem;
  border-radius: 8px;
  background: var(--gd-gold);
  color: var(--gd-navy-dark);
  font-weight: 700;
}
.gd-search-overlay-body .woocommerce-product-search button:hover {
  background: var(--gd-gold-light);
}
.gd-search-overlay-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--gd-gray-500);
}
body.gd-search-open {
  overflow: hidden;
}

@media (min-width: 1024px) and (max-width: 1535px) {
  .gd-nav {
    gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .gd-header-inner {
    flex-wrap: nowrap;
  }
}

.gd-header-actions {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
  min-width: 0;
}
@media (min-width: 768px) {
  .gd-header-actions { gap: 0.5rem; }
}
@media (min-width: 1400px) {
  .gd-header-right { gap: 0.875rem; }
  .gd-header-actions { gap: 0.625rem; }
}

.gd-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  border-radius: var(--gd-radius);
  color: var(--gd-gray-600);
  transition: var(--gd-transition);
}
.gd-action-btn:hover { background: var(--gd-gray-100); color: var(--gd-navy); }

.gd-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gd-gold);
  color: var(--gd-navy-dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--gd-radius);
  position: relative;
  transition: var(--gd-transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.gd-cart-btn:hover { background: var(--gd-gold-dark); color: var(--gd-navy-dark); }
.gd-cart-label { display: none; }
@media (min-width: 768px) {
  .gd-cart-btn { padding: 0.625rem 1.25rem; }
  .gd-cart-label { display: inline; }
}
@media (max-width: 767px) {
  .gd-cart-btn { padding: 0.625rem 0.75rem; }
}
.gd-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 10px;
  background: var(--gd-navy-dark);
  color: var(--gd-gold);
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.gd-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gd-navy);
}
@media (min-width: 1024px) { .gd-hamburger { display: none; } }

/* Header CTAs (xl only) */
.gd-header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--gd-radius);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: var(--gd-transition);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}
@media (min-width: 1280px) { .gd-header-cta { display: flex; } }
@media (min-width: 1400px) {
  .gd-header-cta {
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem;
  }
}

.gd-header-cta-sample {
  color: var(--gd-navy);
  border: 1px solid rgba(212,175,55,0.4);
}
.gd-header-cta-sample:hover { background: #fdfaf0; color: var(--gd-navy); }

.gd-header-cta-quote {
  color: var(--gd-navy);
  border: 1px solid var(--gd-gray-200);
}
.gd-header-cta-quote:hover { background: #fdfaf0; color: var(--gd-navy); }

/* =========================================================
   MOBILE MENU DRAWER
   ========================================================= */
.gd-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 500;
}
.gd-mobile-overlay.open { display: block; }

.gd-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 380px;
  background: #fff;
  z-index: 600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: var(--gd-shadow-2xl);
  overflow: hidden;
}
.gd-mobile-drawer.open { transform: translateX(0); }

.gd-mobile-drawer-header {
  background: var(--gd-navy);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.gd-mobile-drawer-header span {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gd-gold);
  font-weight: 700;
}
.gd-mobile-drawer-header button { color: #fff; padding: 0.25rem; }
.gd-mobile-drawer-header button:hover { color: var(--gd-gold); }

.gd-mobile-drawer-body { flex: 1; overflow-y: auto; }

.gd-mobile-quick-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--gd-gray-100);
}
.gd-mobile-quick-btns .q-btn {
  padding: 0.75rem;
  border-radius: var(--gd-radius);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}
.q-btn-shop { background: var(--gd-gold); color: var(--gd-navy); }
.q-btn-cart { background: var(--gd-navy); color: #fff; }
.q-btn-sample { border: 1px solid rgba(212,175,55,0.4); color: var(--gd-navy); background: #fff; }
.q-btn-quote { border: 1px solid var(--gd-gray-200); color: var(--gd-navy); background: #fff; }

.gd-mobile-nav-section {
  border-top: 1px solid var(--gd-gray-100);
  padding: 0.5rem;
}
.gd-mobile-nav-label {
  padding: 0.5rem 0.75rem 0.25rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gd-navy);
  font-weight: 700;
}
.gd-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--gd-radius);
  color: var(--gd-gray-800, #1f2937);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  transition: background 0.15s;
}
.gd-mobile-nav-link:hover { background: var(--gd-gray-50); color: var(--gd-navy); }
.gd-mobile-nav-link .chevron { color: var(--gd-gray-200); }

.gd-mobile-drawer-footer {
  border-top: 1px solid var(--gd-gray-100);
  background: var(--gd-gray-50);
  padding: 1rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gd-mobile-drawer-footer a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gd-gray-700);
}
.gd-mobile-drawer-footer a:hover { color: var(--gd-navy); }
.gd-mobile-drawer-footer .ico { color: var(--gd-gold); }

/* =========================================================
   HERO SECTION
   ========================================================= */
.gd-hero {
  position: relative;
  overflow: hidden;
  background: var(--gd-navy-dark);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.gd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.gd-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--gd-navy-dark) 0%, rgba(15,38,56,0.85) 55%, transparent 100%);
}

.gd-hero-orb-1 {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  filter: blur(48px);
}
.gd-hero-orb-2 {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  filter: blur(64px);
}

.gd-hero-content {
  position: relative;
  padding-block: 5rem 4rem;
}
@media (min-width: 768px) { .gd-hero-content { padding-block: 8rem 6rem; } }

.gd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gd-gold);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.gd-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 750px;
}
.gd-hero h1 .gold-line { color: var(--gd-gold); display: block; }

.gd-hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.gd-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gd-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 520px;
}

.gd-hero-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gd-hero-stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--gd-radius);
  background: rgba(212,175,55,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gd-gold);
  font-size: 1rem;
}
.gd-hero-stat-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  display: block;
}
.gd-hero-stat-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  display: block;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.gd-how { background: var(--gd-gray-50); }

.gd-section-header { text-align: center; margin-bottom: 3.5rem; }
.gd-section-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gd-gold);
  margin-bottom: 0.75rem;
}
.gd-section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--gd-navy); margin-bottom: 1rem; }
.gd-section-header p { font-size: 1.125rem; color: var(--gd-gray-600); max-width: 640px; margin-inline: auto; }

.gd-step-card {
  position: relative;
  background: #fff;
  border-radius: var(--gd-radius-2xl);
  border: 1px solid var(--gd-gray-100);
  padding: 1.75rem;
  transition: var(--gd-transition);
}
.gd-step-card:hover {
  border-color: var(--gd-gold);
  box-shadow: var(--gd-shadow-lg);
}

.gd-step-number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gd-navy);
  color: var(--gd-gold);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gd-shadow-lg);
  font-family: 'Montserrat', sans-serif;
}

.gd-step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--gd-radius-lg);
  background: rgba(26,58,82,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--gd-navy);
  transition: var(--gd-transition);
}
.gd-step-card:hover .gd-step-icon {
  background: rgba(212,175,55,0.15);
  color: var(--gd-gold);
}

.gd-step-card h3 { font-size: 1.25rem; color: var(--gd-navy); margin-bottom: 0.5rem; }
.gd-step-card p { color: var(--gd-gray-600); line-height: 1.6; }

/* =========================================================
   WHY US
   ========================================================= */
.gd-why {
  background: var(--gd-navy-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gd-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.gd-why .gd-section-header h2,
.gd-why .gd-section-header p { color: #fff; }
.gd-why .gd-section-header p { color: rgba(255,255,255,0.7); }

.gd-feature-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--gd-radius-2xl);
  padding: 1.75rem;
  transition: var(--gd-transition);
}
.gd-feature-card:hover {
  border-color: rgba(212,175,55,0.5);
  background: rgba(255,255,255,0.1);
}

.gd-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--gd-radius);
  background: var(--gd-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--gd-navy-dark);
  transition: transform 0.2s;
}
.gd-feature-card:hover .gd-feature-icon { transform: scale(1.1); }

.gd-feature-card h3 { font-size: 1.25rem; color: #fff; margin-bottom: 0.5rem; }
.gd-feature-card p { color: rgba(255,255,255,0.7); line-height: 1.6; }

.gd-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .gd-stats-row { grid-template-columns: repeat(4, 1fr); } }

.gd-stat-item { text-align: center; }
.gd-stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gd-gold);
  margin-bottom: 0.25rem;
}
.gd-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}

/* =========================================================
   FREE SAMPLE + CUSTOM QUOTE SECTION
   ========================================================= */
.gd-cta-section { background: linear-gradient(to bottom, var(--gd-gray-50), #fff); }

.gd-sample-card {
  background: #fff;
  border-radius: var(--gd-radius-2xl);
  border: 1px solid var(--gd-gray-200);
  overflow: hidden;
  transition: var(--gd-transition);
  box-shadow: var(--gd-shadow-sm);
}
.gd-sample-card:hover {
  border-color: var(--gd-gold);
  box-shadow: var(--gd-shadow-2xl);
}
.gd-sample-card-accent { height: 6px; background: linear-gradient(to right, var(--gd-gold), var(--gd-gold-light), var(--gd-gold)); }
.gd-sample-card-body { padding: 2rem 2.25rem 2.5rem; }

.gd-quote-card {
  background: var(--gd-navy);
  border-radius: var(--gd-radius-2xl);
  overflow: hidden;
  transition: var(--gd-transition);
  box-shadow: var(--gd-shadow-sm);
  color: #fff;
  position: relative;
}
.gd-quote-card::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  filter: blur(32px);
  pointer-events: none;
}
.gd-quote-card:hover { box-shadow: var(--gd-shadow-2xl); }
.gd-quote-card-accent { height: 6px; background: linear-gradient(to right, var(--gd-gold), var(--gd-gold-light), var(--gd-gold)); }
.gd-quote-card-body { padding: 2rem 2.25rem 2.5rem; position: relative; }

.gd-card-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }

.gd-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--gd-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.375rem;
}
.gd-card-icon-sample { background: #fdfaf0; border: 1px solid rgba(212,175,55,0.3); color: var(--gd-gold); }
.gd-card-icon-quote  { background: var(--gd-gold); color: var(--gd-navy); }

.gd-card-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gd-gold);
  margin-bottom: 0.25rem;
}
.gd-card-title { font-size: 1.625rem; font-weight: 700; line-height: 1.2; }
.gd-sample-card .gd-card-title { color: var(--gd-navy); }
.gd-quote-card .gd-card-title  { color: #fff; }

.gd-card-desc { line-height: 1.65; margin-bottom: 1.25rem; }
.gd-sample-card .gd-card-desc { color: var(--gd-gray-600); }
.gd-quote-card .gd-card-desc  { color: rgba(255,255,255,0.75); }

.gd-checklist { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.gd-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
}
.gd-sample-card .gd-checklist li { color: var(--gd-gray-700); }
.gd-quote-card  .gd-checklist li { color: rgba(255,255,255,0.85); }
.gd-checklist .check { color: var(--gd-gold); flex-shrink: 0; margin-top: 2px; }

/* Lead capture forms */
.gd-lead-form { display: flex; flex-direction: column; gap: 0.75rem; }
.gd-lead-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 480px) { .gd-lead-form .form-row { grid-template-columns: 1fr; } }

.gd-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--gd-radius);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gd-input-light {
  border: 1px solid var(--gd-gray-200);
  background: #fff;
  color: var(--gd-gray-900);
}
.gd-input-light::placeholder { color: var(--gd-gray-400); }
.gd-input-light:focus { border-color: var(--gd-gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }

.gd-input-dark {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.gd-input-dark::placeholder { color: rgba(255,255,255,0.45); }
.gd-input-dark:focus { border-color: var(--gd-gold); background: rgba(255,255,255,0.1); outline: none; }
.gd-input-dark option { color: var(--gd-gray-900); background: #fff; }

.gd-lead-form textarea { resize: none; }

.gd-form-note {
  text-align: center;
  font-size: 0.6875rem;
  padding-top: 0.25rem;
}
.gd-sample-card .gd-form-note { color: var(--gd-gray-400); }
.gd-quote-card  .gd-form-note { color: rgba(255,255,255,0.5); }

/* Success state */
.gd-form-success {
  border-radius: var(--gd-radius-xl);
  padding: 1.25rem;
  text-align: center;
}
.gd-form-success-sample {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.gd-form-success-quote {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(212,175,55,0.3);
}

/* =========================================================
   REVIEWS
   ========================================================= */
.gd-reviews { background: linear-gradient(to bottom, #fff, var(--gd-gray-50)); }

.gd-reviews-page { background: #fff; }
.gd-reviews-page-inner { max-width: 920px; margin-inline: auto; }
.gd-testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}
.gd-testimonial-quote {
  margin: 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gd-gray-100);
  text-align: center;
}
.gd-testimonial-quote:first-child { padding-top: 0; }
.gd-testimonial-quote p {
  margin: 0;
  color: var(--gd-gray-700);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-style: italic;
}
.gd-testimonial-quote p::before { content: open-quote; }
.gd-testimonial-quote p::after { content: close-quote; }
.gd-reviews-widget-section {
  padding-top: 1rem;
  border-top: 1px solid var(--gd-gray-100);
}
.gd-reviews-widget-section .gd-section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.gd-reviews-widget-section h2 {
  color: var(--gd-navy);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
}
.gd-reviews-widget-section p {
  color: var(--gd-gray-600);
  margin: 0;
}
.gd-nicejob-widget {
  display: flex;
  justify-content: center;
  min-height: 120px;
}
.gd-nicejob-widget--sidebar {
  min-height: 80px;
}
.gd-sidebar-left-panel--reviews {
  margin-top: 1.25rem;
}
.gd-sidebar-left-note {
  color: var(--gd-gray-600);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}
.gd-sidebar-left-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.gd-sidebar-left-content .gd-support-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}
.gd-sidebar-left-content .gd-support-img-grid figure {
  margin: 0;
}
.gd-sidebar-left-content .gd-support-img-grid figcaption {
  font-size: 0.75rem;
  color: var(--gd-gray-600);
  margin-top: 0.375rem;
}

.gd-review-card {
  background: #fff;
  border-radius: var(--gd-radius-2xl);
  border: 1px solid var(--gd-gray-100);
  padding: 1.75rem;
  box-shadow: var(--gd-shadow-sm);
  transition: var(--gd-transition);
  position: relative;
}
.gd-review-card:hover { box-shadow: var(--gd-shadow-lg); }

.gd-review-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(212,175,55,0.2);
}
.gd-stars { display: flex; gap: 2px; color: var(--gd-gold); margin-bottom: 1rem; }
.gd-review-text { color: var(--gd-gray-700); line-height: 1.65; margin-bottom: 1.5rem; }
.gd-reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gd-gray-100);
}
.gd-reviewer-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--gd-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.gd-reviewer-name {
  font-weight: 600;
  color: var(--gd-navy);
  font-size: 0.9375rem;
}
.gd-reviewer-role { font-size: 0.75rem; color: var(--gd-gray-400); }

/* =========================================================
   CTA NEWSLETTER BANNER
   ========================================================= */
.gd-newsletter {
  background: linear-gradient(135deg, var(--gd-navy) 0%, var(--gd-navy-dark) 50%, var(--gd-navy) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.gd-newsletter::before {
  content: '';
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  filter: blur(64px);
}
.gd-newsletter::after {
  content: '';
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.05);
  filter: blur(64px);
}
.gd-newsletter .gd-section-header h2 { color: #fff; }
.gd-newsletter .gd-section-header p { color: rgba(255,255,255,0.7); }

.gd-newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin-inline: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.gd-newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 1rem 1.25rem;
  border-radius: var(--gd-radius);
  border: none;
  background: #fff;
  color: var(--gd-gray-900);
  font-size: 0.9375rem;
  outline: none;
}
.gd-newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(212,175,55,0.4); }

/* =========================================================
   COUNTRY GRID
   ========================================================= */
.gd-country-grid .gd-grid-3 { gap: 1rem; }

.gd-country-card {
  background: #fff;
  border: 1px solid var(--gd-gray-100);
  border-radius: var(--gd-radius-xl);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--gd-transition);
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.gd-country-card:hover {
  border-color: var(--gd-gold);
  box-shadow: var(--gd-shadow-lg);
  transform: translateY(-2px);
}
.gd-country-card .flag { font-size: 2rem; flex-shrink: 0; }
.gd-country-card .country-name { font-size: 1rem; font-weight: 700; color: var(--gd-navy); }
.gd-country-card .country-tagline { font-size: 0.8125rem; color: var(--gd-gray-400); margin-top: 2px; }

/* =========================================================
   SAMPLES PAGE / SHOP
   ========================================================= */
.gd-product-card {
  background: #fff;
  border: 1px solid var(--gd-gray-100);
  border-radius: var(--gd-radius-xl);
  overflow: hidden;
  transition: var(--gd-transition);
}
.gd-product-card:hover {
  border-color: var(--gd-gold);
  box-shadow: var(--gd-shadow-lg);
  transform: translateY(-3px);
}
.gd-product-image { position: relative; overflow: hidden; background: #2a2118; }
.gd-product-image img {
  width: 100%;
  aspect-ratio: 210 / 297; /* A4 portrait */
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s;
  background: #2a2118;
}
.gd-product-card:hover .gd-product-image img { transform: scale(1.05); }
.gd-product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gd-navy);
  color: var(--gd-gold);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gd-product-body { padding: 1.25rem; }
.gd-product-name { font-size: 1rem; font-weight: 700; color: var(--gd-navy); margin-bottom: 0.5rem; }
.gd-product-desc { font-size: 0.875rem; color: var(--gd-gray-600); margin-bottom: 1rem; line-height: 1.5; }
.gd-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gd-gray-100);
}
.gd-product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gd-navy);
}
.gd-product-price .from { font-size: 0.75rem; font-weight: 400; color: var(--gd-gray-400); }

/* =========================================================
   WOOCOMMERCE OVERRIDES
   ========================================================= */

/* General woo */
.woocommerce .woocommerce-breadcrumb { font-size: 0.875rem; color: var(--gd-gray-400); margin-bottom: 2rem; }

/* Products grid */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.woocommerce ul.products li.product { margin: 0 !important; width: auto !important; }

.woocommerce ul.products li.product a img {
  border-radius: var(--gd-radius-xl);
  border: 1px solid var(--gd-gray-100);
}

.woocommerce .price { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--gd-navy); }
.woocommerce .price del { color: var(--gd-gray-400); font-size: 1rem; }
.woocommerce .price ins { text-decoration: none; color: var(--gd-navy); }

/* WooCommerce buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--gd-gold) !important;
  color: var(--gd-navy-dark) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  border-radius: var(--gd-radius) !important;
  padding: 0.75rem 1.5rem !important;
  border: none !important;
  transition: var(--gd-transition) !important;
  font-size: 0.9375rem !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--gd-gold-dark) !important;
  color: var(--gd-navy-dark) !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--gd-navy) !important;
  color: #fff !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--gd-navy-dark) !important;
  color: #fff !important;
}

/* Single product */
.woocommerce div.product .product_title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gd-navy);
  margin-bottom: 0.5rem;
}
.woocommerce div.product .woocommerce-product-rating { margin-bottom: 1rem; }
.woocommerce div.product .woocommerce-product-rating .star-rating span::before { color: var(--gd-gold); }
.woocommerce .star-rating span::before { color: var(--gd-gold); }

/* Cart table */
.woocommerce table.cart td.actions .coupon .input-text {
  border: 1px solid var(--gd-gray-200);
  border-radius: var(--gd-radius);
  padding: 0.5rem 0.75rem;
}

/* Checkout */
.woocommerce .checkout .form-row label { font-weight: 600; color: var(--gd-gray-700); margin-bottom: 0.25rem; }
.woocommerce .checkout .form-row input.input-text,
.woocommerce .checkout .form-row select,
.woocommerce .checkout .form-row textarea {
  border: 1px solid var(--gd-gray-200);
  border-radius: var(--gd-radius);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}
.woocommerce .checkout .form-row input.input-text:focus,
.woocommerce .checkout .form-row select:focus,
.woocommerce .checkout .form-row textarea:focus {
  border-color: var(--gd-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

#order_review { background: var(--gd-gray-50); border-radius: var(--gd-radius-xl); padding: 1.5rem; }
#order_review h3 { font-size: 1.25rem; color: var(--gd-navy); margin-bottom: 1rem; }

/* My account */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--gd-navy);
  border-radius: var(--gd-radius-xl);
  overflow: hidden;
  padding: 0.5rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: var(--gd-radius);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  transition: var(--gd-transition);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: rgba(212,175,55,0.15);
  color: var(--gd-gold);
}

/* Notices */
.woocommerce-message, .woocommerce-info {
  border-top-color: var(--gd-gold) !important;
}
.woocommerce-error { border-top-color: #ef4444 !important; }

/* =========================================================
   FAQ SECTION
   ========================================================= */
.gd-faq-item {
  border: 1px solid var(--gd-gray-200);
  border-radius: var(--gd-radius-lg);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.gd-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.125rem 1.25rem;
  background: #fff;
  font-weight: 600;
  color: var(--gd-navy);
  font-size: 1rem;
  text-align: left;
  transition: background 0.15s;
}
.gd-faq-question:hover { background: var(--gd-gray-50); }
.gd-faq-question.open { background: var(--gd-gray-50); }
.gd-faq-icon { color: var(--gd-gold); font-size: 1.25rem; flex-shrink: 0; transition: transform 0.2s; }
.gd-faq-question.open .gd-faq-icon { transform: rotate(45deg); }
.gd-faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--gd-gray-600);
  line-height: 1.65;
  background: #fff;
}
.gd-faq-answer.open { display: block; }

/* =========================================================
   BLOG
   ========================================================= */
.gd-blog-card {
  background: #fff;
  border: 1px solid var(--gd-gray-100);
  border-radius: var(--gd-radius-xl);
  overflow: hidden;
  transition: var(--gd-transition);
}
.gd-blog-card:hover { box-shadow: var(--gd-shadow-lg); transform: translateY(-3px); }
.gd-blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.gd-blog-body { padding: 1.25rem; }
.gd-blog-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gd-gold);
  background: rgba(212,175,55,0.1);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.gd-blog-title { font-size: 1.125rem; color: var(--gd-navy); margin-bottom: 0.5rem; line-height: 1.35; }
.gd-blog-excerpt { font-size: 0.9375rem; color: var(--gd-gray-600); line-height: 1.6; }
.gd-blog-meta { font-size: 0.8125rem; color: var(--gd-gray-400); margin-top: 1rem; }

/* Elementor blog archive (Theme Builder) */
.gd-blog-archive-posts .elementor-posts-container {
  gap: 1.5rem;
}
.gd-blog-archive-posts .elementor-post__card {
  border: 1px solid var(--gd-gray-100);
  border-radius: var(--gd-radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--gd-shadow-sm);
  transition: var(--gd-transition);
}
.gd-blog-archive-posts .elementor-post__card:hover {
  box-shadow: var(--gd-shadow-lg);
  transform: translateY(-3px);
}
.gd-blog-archive-posts .elementor-post__title a {
  color: var(--gd-navy);
  font-family: 'Montserrat', sans-serif;
}
.gd-blog-archive-posts .elementor-post__title a:hover {
  color: var(--gd-gold);
}
.gd-blog-archive-posts .elementor-post__read-more {
  color: var(--gd-navy);
  font-weight: 600;
}
.gd-blog-archive-posts .elementor-pagination .page-numbers {
  border-radius: var(--gd-radius);
}
.gd-blog-archive-posts .elementor-pagination .page-numbers.current {
  background: var(--gd-navy);
  border-color: var(--gd-navy);
  color: #fff;
}

/* Blog category filter pills */
.gd-blog-filter-section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}
.gd-blog-filter-section .elementor-widget-shortcode {
  margin-bottom: 0;
}
.gd-blog-filter {
  margin: 0 0 1.5rem;
}
.gd-blog-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gd-blog-filter__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: var(--gd-navy);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.gd-blog-filter__pill:hover {
  border-color: var(--gd-gold);
  color: var(--gd-navy);
}
.gd-blog-filter__pill.is-active {
  background: var(--gd-navy);
  border-color: var(--gd-navy);
  color: #fff;
}

/* =========================================================
   SINGLE POST — Option A (Journal article)
   ========================================================= */
.gd-single-post--legacy .gd-single-post-legacy-meta {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.75rem;
}
.gd-single-post--legacy .gd-single-post-legacy-inner {
  max-width: 780px;
  margin-inline: auto;
}
.gd-single-post--legacy .gd-single-post-legacy-thumb {
  margin-bottom: 2rem;
  border-radius: var(--gd-radius-xl);
  overflow: hidden;
}
.gd-single-post--legacy .gd-single-post-legacy-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.gd-single-post--legacy .gd-single-post-legacy-content {
  padding-block: 0;
}

.gd-single-post--option-a {
  background: var(--gd-gray-50);
}

.gd-single-post-backbar {
  background: #fff;
  border-bottom: 1px solid var(--gd-gray-200);
}
.gd-single-post-backbar-inner {
  max-width: var(--gd-max-width);
  padding-block: 0.875rem;
}
.gd-single-post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gd-gray-600);
  text-decoration: none;
  transition: var(--gd-transition);
}
.gd-single-post-back:hover {
  color: var(--gd-navy);
}
.gd-single-post-back-icon {
  line-height: 1;
}

.gd-single-post-shell {
  padding: 1.5rem var(--gd-container-px) 3rem;
}
@media (min-width: 768px) {
  .gd-single-post-shell {
    padding: 2rem var(--gd-container-px) 4rem;
  }
}

.gd-single-post-box {
  max-width: var(--gd-max-width);
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--gd-gray-200);
  border-radius: var(--gd-radius-2xl);
  box-shadow: var(--gd-shadow-lg);
  overflow: hidden;
}

.gd-single-post-layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .gd-single-post-layout {
    grid-template-columns: minmax(0, 1fr) 19.5rem;
    align-items: start;
  }
}

.gd-single-post-main {
  min-width: 0;
  padding: 1.75rem 1.25rem 2rem;
}
@media (min-width: 768px) {
  .gd-single-post-main {
    padding: 2.25rem 2rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .gd-single-post-main {
    padding: 2.5rem 2.5rem 2.75rem;
  }
}

.gd-single-post-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gd-gold);
  margin-bottom: 0.625rem;
}

.gd-single-post-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.625rem, 3.2vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gd-navy);
  margin-bottom: 1rem;
}

.gd-single-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0;
  font-size: 0.8125rem;
  color: var(--gd-gray-400);
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gd-gray-100);
}
.gd-single-post-meta-item {
  display: inline-flex;
  align-items: center;
}
.gd-single-post-meta-item + .gd-single-post-meta-item::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gd-gray-200);
  margin: 0 0.75rem;
}

.gd-single-post-featured {
  margin-bottom: 1.75rem;
  border-radius: var(--gd-radius-xl);
  overflow: hidden;
  border: 1px solid var(--gd-gray-100);
}
.gd-single-post-featured-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.gd-single-post-content {
  color: var(--gd-gray-700);
  font-size: 1.03125rem;
  line-height: 1.78;
}
.gd-single-post-content > p:first-child {
  font-size: 1.0625rem;
  color: var(--gd-gray-600);
  margin-bottom: 1.5rem;
}
.gd-single-post-content h2,
.gd-single-post-content h3,
.gd-single-post-content h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--gd-navy);
  line-height: 1.3;
  margin: 2rem 0 0.75rem;
}
.gd-single-post-content h2 { font-size: 1.4375rem; }
.gd-single-post-content h3 { font-size: 1.1875rem; }
.gd-single-post-content p { margin-bottom: 1.25rem; }
.gd-single-post-content ul,
.gd-single-post-content ol {
  margin: 0 0 1.25rem 1.25rem;
}
.gd-single-post-content li { margin-bottom: 0.5rem; }
.gd-single-post-content a {
  color: var(--gd-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gd-single-post-content a:hover { color: var(--gd-gold-dark); }
.gd-single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--gd-radius-lg);
  margin: 1.5rem 0;
}
.gd-single-post-content blockquote {
  border-left: 3px solid var(--gd-gold);
  padding: 0.5rem 0 0.5rem 1.125rem;
  margin: 1.5rem 0;
  color: var(--gd-gray-600);
  font-style: italic;
  background: var(--gd-gray-50);
  border-radius: 0 var(--gd-radius) var(--gd-radius) 0;
}

.gd-single-post-cta {
  margin-top: 2.5rem;
  padding: 1.75rem 1.25rem;
  border-radius: var(--gd-radius-xl);
  background: linear-gradient(135deg, var(--gd-navy) 0%, var(--gd-navy-dark) 100%);
  color: #fff;
  text-align: center;
}
@media (min-width: 640px) {
  .gd-single-post-cta { padding: 2rem 1.75rem; }
}
.gd-single-post-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: #fff;
}
.gd-single-post-cta-text {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.25rem;
  max-width: 26rem;
  margin-inline: auto;
  font-size: 0.9375rem;
}
.gd-single-post-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar */
.gd-single-post-sidebar {
  padding: 0 1.25rem 1.75rem;
  background: var(--gd-gray-50);
  border-top: 1px solid var(--gd-gray-100);
}
@media (min-width: 1024px) {
  .gd-single-post-sidebar {
    padding: 2.5rem 1.5rem 2.5rem 1.25rem;
    border-top: none;
    border-left: 1px solid var(--gd-gray-100);
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
    max-height: calc(100vh - var(--header-height) - 2rem);
    overflow-y: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gd-single-post-sidebar {
    padding: 0 2rem 2rem;
  }
}

.gd-single-post-sidebar-panel {
  background: #fff;
  border: 1px solid var(--gd-gray-200);
  border-radius: var(--gd-radius-xl);
  padding: 1.125rem 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--gd-shadow-sm);
}
.gd-single-post-sidebar-panel:last-child {
  margin-bottom: 0;
}

.gd-single-post-sidebar-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gd-navy);
  margin: 0 0 0.875rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gd-gray-100);
}

.gd-single-post-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gd-single-post-cat-item {
  margin: 0 0 0.25rem;
}
.gd-single-post-cat-item:last-child {
  margin-bottom: 0;
}
.gd-single-post-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5625rem 0.625rem;
  border-radius: var(--gd-radius);
  text-decoration: none;
  color: var(--gd-gray-700);
  font-size: 0.875rem;
  line-height: 1.35;
  transition: var(--gd-transition);
}
.gd-single-post-cat-link:hover {
  background: var(--gd-gray-50);
  color: var(--gd-navy);
}
.gd-single-post-cat-link.is-active {
  background: rgba(26, 58, 82, 0.07);
  color: var(--gd-navy);
  font-weight: 600;
}
.gd-single-post-cat-name {
  min-width: 0;
}
.gd-single-post-cat-count {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gd-gray-500);
  background: var(--gd-gray-100);
  padding: 0.125rem 0.4375rem;
  border-radius: 999px;
  min-width: 1.625rem;
  text-align: center;
}
.gd-single-post-cat-link.is-active .gd-single-post-cat-count {
  background: var(--gd-navy);
  color: #fff;
}

.gd-single-post-sidebar-widgets .widget {
  margin-bottom: 1rem;
}
.gd-single-post-sidebar-widgets .widget:last-child {
  margin-bottom: 0;
}

.gd-single-post-related {
  margin: 0;
  padding: 2rem 1.25rem 2.25rem;
  border-top: 1px solid var(--gd-gray-100);
  background: var(--gd-gray-50);
}
@media (min-width: 768px) {
  .gd-single-post-related {
    padding: 2.25rem 2rem 2.75rem;
  }
}
.gd-single-post-related-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gd-navy);
  margin-bottom: 1.25rem;
}
.gd-single-post-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .gd-single-post-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gd-single-post-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================
   LEGAL PAGES — boxed layout + sidebar
   ========================================================= */
.gd-legal-page-wrap {
  background: var(--gd-gray-50);
  padding: 0;
}

.gd-legal-page {
  width: 100%;
}

.gd-legal-shell {
  padding: 1.5rem var(--gd-container-px) 3rem;
}
@media (min-width: 768px) {
  .gd-legal-shell {
    padding: 2rem var(--gd-container-px) 4rem;
  }
}

.gd-legal-box {
  max-width: 72rem;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--gd-gray-200);
  border-radius: var(--gd-radius-2xl);
  box-shadow: var(--gd-shadow-lg);
  overflow: hidden;
}

.gd-legal-box-header {
  padding: 1.75rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--gd-gray-100);
  background: linear-gradient(180deg, rgba(15, 38, 56, 0.04) 0%, #fff 100%);
}
@media (min-width: 768px) {
  .gd-legal-box-header {
    padding: 2rem 2rem 1.5rem;
  }
}

.gd-legal-box-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gd-gold);
  margin-bottom: 0.5rem;
}

.gd-legal-box-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gd-navy);
  margin: 0;
}

.gd-legal-layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .gd-legal-layout {
    grid-template-columns: minmax(0, 1fr) 16.5rem;
    align-items: start;
  }
}

.gd-legal-main {
  min-width: 0;
  padding: 1.5rem 1.25rem 2rem;
}
@media (min-width: 768px) {
  .gd-legal-main {
    padding: 1.75rem 2rem 2.25rem;
  }
}

.gd-legal-content {
  color: var(--gd-gray-700);
  font-size: 0.96875rem;
  line-height: 1.75;
  max-width: 42rem;
}
.gd-legal-lead {
  font-size: 1.03125rem;
  color: var(--gd-gray-600);
  margin-bottom: 1.25rem;
}
.gd-legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gd-navy);
  margin: 1.75rem 0 0.625rem;
  padding-top: 0.25rem;
  line-height: 1.35;
}
.gd-legal-content h2:first-child {
  margin-top: 0;
}
.gd-legal-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gd-navy);
  margin: 1.25rem 0 0.5rem;
  line-height: 1.35;
}
.gd-legal-content p {
  margin-bottom: 0.875rem;
}
.gd-legal-content p:last-child {
  margin-bottom: 0;
}
.gd-legal-content a {
  color: var(--gd-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gd-legal-content a:hover {
  color: var(--gd-gold-dark);
}
.gd-legal-content ul,
.gd-legal-content ol {
  margin: 0 0 0.875rem 1.125rem;
}
.gd-legal-content li {
  margin-bottom: 0.375rem;
}
.gd-legal-sidebar {
  padding: 0 1.25rem 1.5rem;
  background: var(--gd-gray-50);
  border-top: 1px solid var(--gd-gray-100);
}
@media (min-width: 1024px) {
  .gd-legal-sidebar {
    padding: 1.75rem 1.25rem 1.75rem 1rem;
    border-top: none;
    border-left: 1px solid var(--gd-gray-100);
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
    max-height: calc(100vh - var(--header-height) - 2rem);
    overflow-y: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gd-legal-sidebar {
    padding: 0 2rem 2rem;
  }
}

.gd-legal-sidebar-panel {
  background: #fff;
  border: 1px solid var(--gd-gray-200);
  border-radius: var(--gd-radius-xl);
  padding: 1rem 0.875rem;
  margin-bottom: 0.875rem;
  box-shadow: var(--gd-shadow-sm);
}
.gd-legal-sidebar-panel:last-child {
  margin-bottom: 0;
}

.gd-legal-sidebar-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gd-navy);
  margin: 0 0 0.75rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--gd-gray-100);
}

.gd-legal-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gd-legal-nav-item {
  margin: 0 0 0.2rem;
}
.gd-legal-nav-link {
  display: block;
  padding: 0.5rem 0.5625rem;
  border-radius: var(--gd-radius);
  text-decoration: none;
  color: var(--gd-gray-700);
  font-size: 0.8125rem;
  line-height: 1.35;
  transition: var(--gd-transition);
}
.gd-legal-nav-link:hover {
  background: var(--gd-gray-50);
  color: var(--gd-navy);
}
.gd-legal-nav-link.is-active {
  background: rgba(26, 58, 82, 0.07);
  color: var(--gd-navy);
  font-weight: 600;
}

.gd-legal-sidebar-text {
  font-size: 0.8125rem;
  color: var(--gd-gray-600);
  line-height: 1.5;
  margin-bottom: 0.875rem;
}
.gd-legal-sidebar-btn {
  width: 100%;
  justify-content: center;
}

.gd-legal-sidebar-widgets .widget {
  margin-bottom: 0.875rem;
}

.gd-footer-legal-link {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--gd-gold);
  font-size: 0.8125rem;
  text-decoration: none;
}
.gd-footer-legal-link + .gd-footer-legal-link {
  margin-left: 0.75rem;
}
.gd-footer-legal-link:hover {
  text-decoration: underline;
}

/* Elementor legal pages */
.gd-legal-elementor-page {
  width: 100%;
}
.gd-legal-elementor-shell > .elementor-container {
  max-width: 1200px;
}
.gd-legal-elementor-box {
  overflow: hidden;
}
.gd-legal-elementor-sidebar-col > .elementor-element-populated {
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
}
@media (min-width: 1024px) {
  .gd-legal-elementor-sidebar-col > .elementor-element-populated {
    border-top: none;
    border-left: 1px solid #f3f4f6;
    min-height: 100%;
  }
}
.gd-legal-elementor-main .elementor-widget-text-editor {
  max-width: 42rem;
}

/* Left sidebar pages (support / policy) */
.gd-sidebar-left-page-wrap,
.gd-sidebar-left-elementor-page {
  width: 100%;
}
.gd-sidebar-left-shell {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}
.gd-sidebar-left-box {
  background: #fff;
  border: 1px solid var(--gd-gray-200);
  border-radius: var(--gd-radius-xl);
  box-shadow: var(--gd-shadow-sm);
  overflow: hidden;
}
.gd-sidebar-left-box-header {
  padding: 1.75rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--gd-gray-100);
}
.gd-sidebar-left-box-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gd-gold);
  margin: 0 0 0.5rem;
}
.gd-sidebar-left-box-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gd-navy);
  margin: 0;
}
.gd-sidebar-left-layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .gd-sidebar-left-layout {
    grid-template-columns: minmax(220px, 280px) 1fr;
  }
}
.gd-sidebar-left-aside-wrap {
  background: var(--gd-gray-50);
  border-bottom: 1px solid var(--gd-gray-100);
}
@media (min-width: 1024px) {
  .gd-sidebar-left-aside-wrap {
    border-bottom: none;
    border-right: 1px solid var(--gd-gray-100);
    position: sticky;
    top: calc(var(--header-height, 72px) + 1rem);
    align-self: start;
    max-height: calc(100vh - var(--header-height, 72px) - 2rem);
    overflow-y: auto;
  }
}
.gd-sidebar-left-panel {
  background: #fff;
  border: 1px solid var(--gd-gray-200);
  border-radius: var(--gd-radius-xl);
  padding: 0.875rem;
  margin: 1rem;
  box-shadow: var(--gd-shadow-sm);
}
.gd-sidebar-left-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gd-navy);
  margin: 0 0 0.75rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--gd-gray-100);
}
.gd-sidebar-left-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gd-sidebar-left-nav-item {
  margin: 0 0 0.2rem;
}
.gd-sidebar-left-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.5625rem;
  border-radius: var(--gd-radius);
  text-decoration: none;
  color: var(--gd-gray-700);
  font-size: 0.8125rem;
  line-height: 1.35;
  transition: var(--gd-transition);
}
.gd-sidebar-left-nav-link:hover {
  background: var(--gd-gray-50);
  color: var(--gd-navy);
}
.gd-sidebar-left-nav-link.is-active {
  background: rgba(26, 58, 82, 0.07);
  color: var(--gd-navy);
  font-weight: 600;
}
.gd-sidebar-left-main {
  padding: 1rem 1.5rem 2rem;
}
.gd-sidebar-left-content h2 {
  font-size: 1.125rem;
  color: var(--gd-navy);
  margin: 1.5rem 0 0.75rem;
}
.gd-sidebar-left-content ul {
  padding-left: 1.25rem;
}
.gd-support-img-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}
.gd-support-img-row img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.gd-support-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}
.gd-support-img-grid figure {
  margin: 0;
}
.gd-support-img-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.gd-support-img-grid figcaption {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}
.gd-country-link-flag {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}
.gd-sidebar-left-elementor-aside-col > .elementor-element-populated {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}
@media (min-width: 1024px) {
  .gd-sidebar-left-elementor-aside-col > .elementor-element-populated {
    border-bottom: none;
    border-right: 1px solid #f3f4f6;
    min-height: 100%;
  }
}
.gd-sidebar-left-elementor-main-col .elementor-widget-text-editor {
  max-width: 42rem;
}

@media (max-width: 767px) {
  .gd-sidebar-left-page-wrap {
    padding: 0;
    background: #fff;
  }

  .gd-sidebar-left-shell {
    padding: 0 0 1rem;
  }

  .gd-sidebar-left-box {
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
  }

  .gd-sidebar-left-box-header {
    padding: 1rem 1rem 0.75rem;
  }

  .gd-sidebar-left-aside-wrap {
    padding: 0.625rem 0.75rem 0.5rem;
  }

  .gd-sidebar-left-main {
    padding: 0.75rem 1rem 1rem;
  }

  .gd-sidebar-left-panel {
    margin: 0 0 0.5rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.625rem;
    box-shadow: none;
  }

  .gd-sidebar-left-aside-wrap .gd-sidebar-left-panel:last-child {
    margin-bottom: 0;
  }

  .gd-sidebar-left-nav:not(.gd-country-links-list) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.125rem;
  }

  .gd-sidebar-left-nav-link {
    padding: 0.4375rem 0.5rem;
    font-size: 0.6875rem;
  }

  .gd-sidebar-left-title {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .gd-sidebar-left-content h2 {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .gd-sidebar-left-content h2:first-child {
    margin-top: 0.25rem;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.gd-footer { background: var(--gd-navy-bg); color: var(--gd-gray-400); }

.gd-footer-strip {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.25rem;
}
.gd-footer-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: center;
}
.gd-footer-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  justify-content: center;
}
.gd-footer-strip-item .ico { color: var(--gd-gold); font-size: 1.125rem; flex-shrink: 0; }
.gd-footer-strip-item .text { color: rgba(255,255,255,0.85); }
.gd-footer-strip-item .text .gold { color: var(--gd-gold); font-weight: 600; }

.gd-footer-main {
  padding-block: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .gd-footer-main { grid-template-columns: repeat(2, 1fr); }
  .gd-footer-col--countries { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .gd-footer-main { grid-template-columns: 2fr 1.5fr 1fr; }
  .gd-footer-col--countries { grid-column: auto; }
}

.gd-footer-col--shop .gd-footer-brand {
  margin-bottom: 2rem;
}

.gd-footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 380px;
  margin-top: 1.25rem;
}

.gd-footer-newsletter { display: flex; gap: 0.5rem; max-width: 340px; margin-top: 1.5rem; }
.gd-footer-newsletter input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--gd-radius);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
}
.gd-footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.gd-footer-newsletter input:focus { border-color: var(--gd-gold); }
.gd-footer-newsletter button {
  background: var(--gd-gold);
  color: var(--gd-navy-bg);
  padding: 0.625rem 1rem;
  border-radius: var(--gd-radius);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--gd-transition);
}
.gd-footer-newsletter button:hover { background: var(--gd-gold-light); }

.gd-footer-socials { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.gd-footer-socials a {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: var(--gd-radius);
  background: rgba(255,255,255,0.05);
  color: var(--gd-gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--gd-transition);
  font-size: 0.75rem;
}
.gd-footer-socials a:hover { background: var(--gd-gold); color: var(--gd-navy-bg); }

.gd-footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.gd-footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.gd-footer-col--countries .gd-footer-country-list {
  display: block;
  column-count: 1;
  column-gap: 1.5rem;
}
@media (min-width: 480px) {
  .gd-footer-col--countries .gd-footer-country-list { column-count: 2; }
}
.gd-footer-col--countries .gd-footer-country-list li {
  break-inside: avoid;
  margin-bottom: 0.625rem;
}
.gd-footer-col ul li a {
  color: var(--gd-gray-400);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.15s;
}
.gd-footer-col ul li a:hover { color: var(--gd-gold); }

.gd-footer-contact { padding-block: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.gd-footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .gd-footer-contact-grid { grid-template-columns: repeat(3, 1fr); } }
.gd-footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.gd-footer-contact-item .ico { color: var(--gd-gold); font-size: 1.125rem; margin-top: 2px; }
.gd-footer-contact-item .title { font-size: 0.9375rem; font-weight: 600; color: #fff; }
.gd-footer-contact-item .sub { font-size: 0.75rem; }

/* Footer contact boxes moved into the left column (no full-width strip spacing). */
.gd-footer-contact--inside-shop {
  padding-block: 0;
  border-top: none;
  margin-top: 1.5rem;
}
.gd-footer-contact--inside-shop .gd-footer-contact-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gd-footer-contact--inside-shop .gd-footer-contact-grid {
    grid-template-columns: 1fr;
  }
}

.gd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #07151f;
  padding-block: 1.5rem;
}
.gd-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.gd-footer-copyright { font-size: 0.75rem; text-align: left; color: var(--gd-gray-400); line-height: 1.5; flex: 1 1 280px; }

.gd-payment-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
}
.gd-payment-badges span { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gd-gray-400); font-weight: 700; }
.gd-payment-badges-row { display: flex; gap: 0.375rem; }
.gd-payment-badge {
  background: #fff;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  box-shadow: var(--gd-shadow-sm);
}
.badge-visa  { color: #1a1f71; }
.badge-mc    { color: #eb001b; }
.badge-amex  { color: #006fcf; }
.badge-disc  { color: #ff6000; }
.badge-pp    { color: #003087; }
.badge-btc   { color: #f7931a; }

/* =========================================================
   CART DRAWER (slide-over)
   ========================================================= */
.gd-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 700;
  backdrop-filter: blur(2px);
}
.gd-cart-overlay.open { display: block; }

.gd-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #fff;
  z-index: 800;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: var(--gd-shadow-2xl);
}
.gd-cart-drawer.open { transform: translateX(0); }

.gd-cart-drawer-header {
  background: var(--gd-navy);
  color: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gd-cart-drawer-header h3 { font-size: 1.0625rem; color: #fff; }
.gd-cart-drawer-header button { color: rgba(255,255,255,0.7); transition: color 0.15s; }
.gd-cart-drawer-header button:hover { color: var(--gd-gold); }

.gd-cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem; }
.gd-cart-drawer-footer { padding: 1.25rem; border-top: 1px solid var(--gd-gray-100); }

.gd-cart-item {
  display: flex;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--gd-gray-100);
}
.gd-cart-item:last-child { border-bottom: none; }
.gd-cart-item img { width: 72px; height: 56px; object-fit: cover; border-radius: var(--gd-radius); flex-shrink: 0; }
.gd-cart-item-info { flex: 1; min-width: 0; }
.gd-cart-item-name { font-weight: 600; color: var(--gd-navy); font-size: 0.9375rem; }
.gd-cart-item-meta { font-size: 0.8125rem; color: var(--gd-gray-400); margin-top: 2px; }
.gd-cart-item-price { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gd-navy); font-size: 1rem; }

.gd-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gd-navy);
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--gd-gray-100);
}

/* =========================================================
   REASSURANCE BAR (just above footer, or inline)
   ========================================================= */
.gd-reassurance {
  background: var(--gd-navy);
  color: rgba(255,255,255,0.85);
  padding-block: 1.25rem;
}
.gd-reassurance-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.gd-reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.gd-reassurance-item .ico { color: var(--gd-gold); }

/* =========================================================
   ELEMENTOR COMPATIBILITY HELPERS
   ========================================================= */

/* Ensure Elementor sections use our fonts */
.elementor-widget-heading .elementor-heading-title {
  font-family: 'Montserrat', sans-serif;
}
.elementor-widget-text-editor { font-family: 'Open Sans', sans-serif; }

/* Custom Elementor color palette tokens */
.e-con, .elementor-section, .elementor-widget-wrap { --gd-navy: #1a3a52; --gd-gold: #d4af37; }

/* =========================================================
   PAGE-SPECIFIC LAYOUTS
   ========================================================= */
.gd-page-hero {
  background: linear-gradient(135deg, var(--gd-navy) 0%, var(--gd-navy-dark) 100%);
  color: #fff;
  padding-block: 4rem;
  text-align: center;
}
.gd-page-hero h1 { color: #fff; font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.gd-page-hero p { color: rgba(255,255,255,0.75); font-size: 1.125rem; max-width: 600px; margin-inline: auto; }
.gd-page-hero--compact { padding-block: 2.75rem; }

.gd-form-page-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .gd-form-page-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 2.5rem; }
}
.gd-form-page-aside h2 {
  color: var(--gd-navy);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  margin: 0.25rem 0 1rem;
}
.gd-form-page-aside .gd-checklist { margin-bottom: 1.75rem; }
.gd-form-page-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: #fff;
  border: 1px solid var(--gd-gray-100);
  border-radius: 12px;
}
.gd-form-page-trust-icon { font-size: 1.25rem; line-height: 1; }
.gd-form-page-trust strong {
  display: block;
  color: var(--gd-navy);
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}
.gd-form-page-trust span {
  display: block;
  color: var(--gd-gray-600);
  font-size: 0.8125rem;
}
.gd-form-page-card { height: 100%; }
.gd-form-page-aside-note {
  margin-top: 1.25rem;
  padding: 1.125rem 1.25rem;
  background: #fdfaf0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
}
.gd-form-page-aside-note__label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gd-gold);
}
.gd-form-page-aside-note p {
  margin: 0;
  color: var(--gd-gray-700);
  font-size: 0.875rem;
  line-height: 1.55;
}
.gd-form-page-aside-note__link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gd-navy);
}
.gd-form-page-aside-note__link:hover { color: var(--gd-gold); }
.gd-custom-quote-compact { padding-block: 2.5rem; }
.gd-custom-quote-compact .gd-card-desc {
  margin: 0 0 1.25rem;
  color: var(--gd-gray-600);
  font-size: 0.9375rem;
}
/* Elementor shell for compact quote shortcode — no extra chrome */
.gd-custom-quote-elementor.elementor-section,
.elementor-section.gd-custom-quote-elementor {
  margin: 0 !important;
}
.gd-custom-quote-elementor > .elementor-container {
  max-width: none !important;
  padding: 0 !important;
}
.gd-jotform-embed {
  margin-top: 0.5rem;
  min-height: 520px;
}
.gd-jotform-embed iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.gd-content-area { max-width: 900px; margin-inline: auto; padding-block: 3rem; }

/* ── About Us (full-width bands) ─────────────────────────── */
.gd-about-page { width: 100%; }
.gd-about-band { padding-block: 3.5rem; }
.gd-about-band--intro { padding-top: 2.5rem; background: #fff; }
.gd-about-band--split { background: var(--gd-gray-50); border-block: 1px solid var(--gd-gray-100); }
.gd-about-band--countries { background: linear-gradient(160deg, var(--gd-navy) 0%, var(--gd-navy-dark) 100%); color: #fff; }
.gd-about-band--cta { background: #fff; padding-bottom: 4.5rem; }

.gd-about-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gd-gold);
  margin-bottom: 0.75rem;
}
.gd-about-lead {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.75;
  color: var(--gd-gray-700);
  max-width: 920px;
  margin: 0;
}

.gd-about-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .gd-about-split { grid-template-columns: 1.4fr 1fr; gap: 3.5rem; }
}
.gd-about-split-main h2,
.gd-about-band h2 {
  color: var(--gd-navy);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}
.gd-about-split-main p { color: var(--gd-gray-700); line-height: 1.75; margin-bottom: 1rem; }
.gd-about-aside-note { font-size: 0.875rem; color: var(--gd-gray-600); margin-top: 1rem; line-height: 1.6; }

.gd-about-stats { display: grid; gap: 0.875rem; }
.gd-about-stat {
  background: #fff;
  border: 1px solid var(--gd-gray-100);
  border-radius: var(--gd-radius-lg);
  padding: 1.125rem 1.25rem;
  box-shadow: 0 1px 2px rgba(26, 58, 82, 0.04);
}
.gd-about-stat strong { display: block; font-size: 1.5rem; color: var(--gd-navy); line-height: 1.2; }
.gd-about-stat span { font-size: 0.8125rem; color: var(--gd-gray-600); }

.gd-about-section-head { text-align: center; margin-bottom: 2rem; }
.gd-about-section-head .gd-section-eyebrow { color: var(--gd-gold); }
.gd-about-section-head h2 { margin-bottom: 0.5rem; }
.gd-about-section-head p { color: var(--gd-gray-600); max-width: 640px; margin-inline: auto; }
.gd-about-section-head--light .gd-section-eyebrow,
.gd-about-section-head--light h2,
.gd-about-section-head--light p { color: rgba(255, 255, 255, 0.92); }
.gd-about-section-head--light .gd-section-eyebrow { color: var(--gd-gold); }
.gd-about-section-head--light p { color: rgba(255, 255, 255, 0.72); }

.gd-about-offer-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .gd-about-offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gd-about-offer-grid { grid-template-columns: repeat(3, 1fr); } }
.gd-about-offer-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.125rem 1.25rem;
  background: var(--gd-gray-50);
  border: 1px solid var(--gd-gray-100);
  border-radius: var(--gd-radius-lg);
  font-weight: 600;
  color: var(--gd-navy);
  line-height: 1.45;
}
.gd-about-offer-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gd-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
}

.gd-about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

.gd-about-country-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { .gd-about-country-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gd-about-country-grid { grid-template-columns: repeat(3, 1fr); } }
.gd-about-country-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--gd-radius-lg);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--gd-transition);
}
.gd-about-country-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--gd-gold);
}
.gd-about-country-card-arrow { color: var(--gd-gold); font-size: 1.125rem; }

.gd-about-country-card--light {
  background: #fff;
  border-color: var(--gd-gray-100);
  color: var(--gd-navy);
}
.gd-about-country-card--light:hover {
  background: #fdfaf0;
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--gd-navy);
}
.gd-about-country-card-flag { font-size: 1.35rem; flex-shrink: 0; }
.gd-about-country-card--light .gd-about-country-card-label { flex: 1; }

.gd-other-countries-page .gd-about-band--split { background: #fff; }
.gd-other-countries-products { margin-top: 1rem; }
.gd-other-countries-shop-link { text-align: center; margin-top: 2rem; }

.gd-about-cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background: var(--gd-gray-50);
  border: 1px solid var(--gd-gray-100);
  border-radius: var(--gd-radius-xl);
}
.gd-about-cta-panel h2 { margin: 0 0 0.5rem; font-size: 1.375rem; color: var(--gd-navy); }
.gd-about-cta-panel p { margin: 0; color: var(--gd-gray-600); max-width: 520px; line-height: 1.6; }

/* Footer logo on dark background */
.gd-footer-brand .gd-logo-img--light { height: 42px; max-width: 260px; }
.gd-footer-brand .gd-logo-img:not(.gd-logo-img--light) {
  background: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  box-sizing: content-box;
}

/* Custom Quote — compact theme layout (Elementor bypassed on front) */
.gd-custom-quote-page .entry-content > .elementor > .elementor-section:not(:first-child),
.gd-custom-quote-page .entry-content > .e-con:not(:first-child) {
  padding-block: 2.5rem !important;
}

/* Country landing — keep FAQ/help columns boxed; space key content blocks */
.gd-country-page .elementor-element-3b27c320 > .elementor-container,
.gd-country-page .elementor-element-74a0b434 > .elementor-container {
  max-width: 1200px;
  margin-inline: auto;
}
.gd-country-page .elementor-element-3b27c320,
.gd-country-page .elementor-element-74a0b434 {
  padding-block: 5rem !important;
}

/* Country landing — FAQ/help columns aligned; tighter help sidebar */
.gd-country-page .elementor-element-3b27c320 > .elementor-container > .elementor-row {
  align-items: flex-start;
}
.gd-country-page .elementor-element-4f5a299c > .elementor-widget-wrap {
  gap: 0;
}
.gd-country-page .elementor-element-4f5a299c .elementor-widget-icon-box {
  margin: 0 !important;
  padding: 0 !important;
}
.gd-country-page .elementor-element-4f5a299c .elementor-widget-icon-box .elementor-icon-box-wrapper {
  margin: 0;
  gap: 0.75rem;
}
.gd-country-page .elementor-element-4f5a299c .elementor-widget-icon-box + .elementor-widget-icon-box {
  margin-top: 0.5rem !important;
}
.gd-country-page .elementor-element-4f5a299c .elementor-widget-icon-box .elementor-icon-box-description {
  margin-top: 0.15rem;
}
.gd-country-page .elementor-element-4bd146e7 {
  display: none !important;
}
.gd-country-page .elementor-element-b18eca7 {
  margin-block: 0.75rem 1rem;
}
.gd-country-page .elementor-element-4f5a299c .elementor-widget-button {
  margin-top: 0.75rem;
}

/* =========================================================
   SAMPLES GALLERY PAGE
   ========================================================= */
.gd-samples-hero {
  background: linear-gradient(135deg, var(--gd-navy-dark) 0%, var(--gd-navy) 55%, var(--gd-navy-dark) 100%);
  color: #fff;
  padding-block: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gd-samples-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(var(--gd-gold) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.gd-samples-hero .gd-container { position: relative; }
.gd-samples-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin: 0.75rem 0 1rem;
}
.gd-samples-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.gd-samples-features {
  border-bottom: 1px solid var(--gd-gray-100);
  padding-block: 2.5rem;
}
.gd-samples-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.gd-samples-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--gd-radius-lg);
  background: rgba(212,175,55,0.15);
  color: var(--gd-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gd-samples-feature h3 {
  color: var(--gd-navy);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.gd-samples-feature p {
  color: var(--gd-gray-600);
  font-size: 0.875rem;
  margin: 0;
}
.gd-samples-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.gd-samples-filter {
  border: 0;
  background: var(--gd-gray-100);
  color: var(--gd-gray-700);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--gd-transition);
}
.gd-samples-filter:hover { background: var(--gd-gray-200); }
.gd-samples-filter.is-active {
  background: var(--gd-navy);
  color: #fff;
}
.gd-samples-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .gd-samples-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .gd-samples-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.gd-samples-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--gd-radius-xl);
  background: var(--gd-gray-100);
  border: 0;
  padding: 0;
  cursor: zoom-in;
}
.gd-samples-item.is-hidden { display: none; }
.gd-samples-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gd-samples-item:hover img { transform: scale(1.08); }
.gd-samples-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gd-samples-item:hover .gd-samples-item-overlay { opacity: 1; }
.gd-samples-item-zoom {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gd-gold);
  color: var(--gd-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  margin-top: auto;
}
.gd-samples-item-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem;
  text-align: left;
}
.gd-samples-item-country {
  display: block;
  color: var(--gd-gold);
  font-size: 0.75rem;
  font-weight: 700;
}
.gd-samples-item-title {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}
.gd-samples-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  flex-direction: column;
}
.gd-samples-lightbox[hidden] { display: none !important; }
.gd-samples-lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--gd-radius-lg);
}
.gd-samples-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.gd-samples-lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  color: #fff;
}
.gd-samples-lightbox-country {
  display: block;
  color: var(--gd-gold);
  font-size: 0.875rem;
  font-weight: 700;
}
.gd-samples-lightbox-title {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}
.gd-samples-cta {
  background: linear-gradient(135deg, var(--gd-navy) 0%, var(--gd-navy-dark) 100%);
  color: #fff;
}
.gd-samples-cta h2 { color: #fff; margin-bottom: 0.75rem; }
.gd-samples-cta p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.text-gold  { color: var(--gd-gold) !important; }
.text-navy  { color: var(--gd-navy) !important; }
.bg-navy    { background-color: var(--gd-navy) !important; }
.bg-gold    { background-color: var(--gd-gold) !important; }
.hidden     { display: none; }
.sr-only    { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* No-scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */
@media (max-width: 767px) {
  .gd-hero-stats { grid-template-columns: 1fr 1fr; }
  .gd-hero-stats > *:last-child { grid-column: span 2; justify-content: center; }
  .gd-top-bar .top-bar-left { display: none; }
  .gd-footer-main { grid-template-columns: 1fr; }
}

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

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .gd-header, .gd-footer, .gd-cart-drawer, .gd-mobile-drawer { display: none; }
  body { font-size: 12pt; }
}

/* =========================================================
   MOBILE RESPONSIVE FIXES — Elementor Container overrides
   Targets Elementor's flex containers on mobile (<768px)
   ========================================================= */

@media (max-width: 767px) {

  /* ── Global container fixes ── */
  .elementor-container,
  .e-con,
  .e-con-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Force all inner row containers to stack vertically on mobile */
  .e-con > .e-con,
  .elementor-container > .elementor-row {
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }

  /* All columns take full width on mobile */
  .e-con > .e-con,
  .elementor-col-25,
  .elementor-col-33,
  .elementor-col-50,
  .elementor-col-66 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* ── Hero section ── */
  .elementor-element .elementor-widget-heading h1 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
  }

  /* Hero background section padding */
  .e-con[style*="background-image"] {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* Hero buttons — stack vertically */
  .e-con .e-con .elementor-widget-button {
    width: 100% !important;
  }
  .e-con .e-con .elementor-widget-button .elementor-button {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* ── Section padding ── */
  .e-con {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Inner containers — less padding on mobile */
  .e-con > .e-con {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  /* ── Country grid — 1 column on mobile ── */
  .e-con a[href*="country"] {
    display: flex !important;
    width: 100% !important;
  }

  /* ── How It Works — stack cards ── */
  /* Step cards full width */
  .e-con .e-con[style*="border"] {
    width: 100% !important;
    margin-bottom: 16px !important;
  }

  /* ── Why Us feature cards ── */
  .e-con[style*="rgba(255,255,255,0.06)"] {
    width: 100% !important;
    margin-bottom: 16px !important;
  }

  /* ── Stats row — 2x2 grid on mobile ── */
  .e-con .e-con .elementor-widget-heading[style*="42px"] {
    font-size: 32px !important;
  }

  /* ── CTA cards — stack ── */
  .e-con > .e-con[style*="background:#fff"],
  .e-con > .e-con[style*="background:#1a3a52"],
  .e-con > .e-con[style*="background-color:#fff"],
  .e-con > .e-con[style*="background-color:#1a3a52"] {
    width: 100% !important;
    margin-bottom: 24px !important;
  }

  /* ── Reviews — single column ── */
  .elementor-widget-star-rating {
    justify-content: flex-start !important;
  }

  /* ── Footer grid ── */
  .e-con[style*="#0a1c2c"] > .e-con,
  .e-con[style*="0a1c2c"] .e-con {
    flex-direction: column !important;
  }

  /* ── Headings scale down ── */
  .elementor-widget-heading h2 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }

  .elementor-widget-heading h3 {
    font-size: 1.25rem !important;
  }

  /* ── Prevent horizontal overflow ── */
  .elementor-section,
  .e-con,
  .elementor-widget-wrap {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* ── Icon list items wrap properly ── */
  .elementor-icon-list-items {
    flex-direction: column !important;
  }

  /* ── Buttons full width in CTA sections ── */
  .e-con > .elementor-widget-button .elementor-button-wrapper {
    width: 100% !important;
  }
  .e-con > .elementor-widget-button .elementor-button {
    width: 100% !important;
    justify-content: center !important;
  }

  /* ── Newsletter form ── */
  .gd-newsletter-form {
    flex-direction: column !important;
  }
  .gd-newsletter-form input {
    width: 100% !important;
    min-width: unset !important;
  }

  /* ── Footer bottom bar ── */
  .gd-footer-bottom-inner {
    flex-direction: column !important;
    text-align: center !important;
  }

  .gd-payment-badges {
    align-items: center !important;
  }

  /* ── Header mobile ── */
  .gd-nav { display: none !important; }
  .gd-hamburger { display: flex !important; }
  .gd-header-cta { display: none !important; }
  .gd-header-inner { gap: 0.75rem; }
  .gd-logo-text span:first-child { font-size: 1.0625rem; }

  /* ── Top bar — hide left side on mobile ── */
  .top-bar-left { display: none !important; }
  .top-bar-right { width: 100% !important; justify-content: center !important; }
}

/* ── Tablet fixes (768px – 1023px) ── */
@media (min-width: 768px) and (max-width: 1023px) {

  .elementor-widget-heading h1 {
    font-size: 2.5rem !important;
  }

  .elementor-widget-heading h2 {
    font-size: 2rem !important;
  }

  /* 2-column grid for cards on tablet */
  .e-con > .e-con {
    flex-wrap: wrap !important;
  }

  /* Step cards — 2 per row on tablet */
  .e-con > .e-con > .e-con {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
  }

  .e-con,
  .e-con-inner {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* ── Elementor specific container responsive fixes ── */
@media (max-width: 767px) {

  /* Target Elementor's own responsive classes */
  .elementor-hidden-mobile { display: none !important; }

  /* Fix flex containers that don't wrap */
  .e-con[style*="flex-direction:row"],
  .e-con[style*="flex-direction: row"] {
    flex-direction: column !important;
  }

  /* But keep button rows horizontal if only 2 items */
  .elementor-widget-button + .elementor-widget-button {
    margin-top: 12px !important;
  }

  /* Country cards in grid */
  .e-con .e-con a[href*="country="] {
    flex: 0 0 100% !important;
    width: 100% !important;
  }

  /* Fix inner sections that hold 3-col or 4-col layouts */
  .e-con[class*="elementor-element"] {
    flex-wrap: wrap !important;
  }
  .e-con[class*="elementor-element"] > .e-con {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
}

/* =========================================================
   SHOP & SINGLE PRODUCT STYLES
   ========================================================= */

/* ── Shop breadcrumb (boxed, matches page container) ──── */
.gd-shop-breadcrumb-bar {
    background: #e8f0f7;
    border-bottom: 1px solid #d7e3ee;
    padding: 0.75rem 0;
}
.gd-shop-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gd-navy);
    letter-spacing: 0;
    width: fit-content;
    max-width: 100%;
}
.gd-shop-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.gd-shop-breadcrumb li:not(:last-child)::after {
    content: '›';
    color: #8aa0b4;
    font-weight: 500;
}
.gd-shop-breadcrumb a {
    color: var(--gd-navy);
    text-decoration: none;
}
.gd-shop-breadcrumb a:hover {
    color: var(--gd-gold);
}
.gd-shop-breadcrumb [aria-current="page"] {
    color: #5a738a;
    font-weight: 500;
}

/* ── Shop Hero ─────────────────────────────────────────── */
.gd-shop-hero {
    background: linear-gradient(135deg, var(--gd-navy) 0%, var(--gd-navy-dark) 100%);
    padding: 2.5rem 0;
}
.gd-shop-hero-box,
.gd-shop-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem 3rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 960px;
}
.gd-shop-hero-text {
    flex: 1 1 260px;
    max-width: 36rem;
}
.gd-shop-hero-text h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 0.5rem;
}
.gd-shop-hero-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin: 0;
    max-width: 34rem;
}
.gd-shop-hero-stats {
    display: flex;
    gap: 1.75rem;
    flex-shrink: 0;
}
.gd-shop-stat { text-align: center; min-width: 4.5rem; }
.gd-shop-stat .num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gd-gold);
    letter-spacing: 0;
    line-height: 1.15;
}
.gd-shop-stat .lbl {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.55);
}

/* Country tabs stay inside page container */
.gd-country-tabs-wrap .gd-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gd-country-tabs-wrap .gd-container::-webkit-scrollbar { display: none; }

/* ── Country Tab Bar ───────────────────────────────────── */
.gd-country-tabs-wrap {
    background: var(--gd-navy-dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gd-country-tabs-wrap::-webkit-scrollbar { display: none; }
.gd-country-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    white-space: nowrap;
    min-width: max-content;
}
.gd-country-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.125rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}
.gd-country-tab:hover { color: #fff; border-bottom-color: rgba(212,175,55,0.4); }
.gd-country-tab.active { color: var(--gd-gold); border-bottom-color: var(--gd-gold); }

/* ── Shop Layout Grid ──────────────────────────────────── */
.gd-shop-layout { padding: 2.5rem 0 4rem; }
.gd-shop-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 1023px) {
    .gd-shop-grid { grid-template-columns: 1fr; }
}

/* ── Sidebar ───────────────────────────────────────────── */
.gd-shop-sidebar {
    position: sticky;
    top: 100px;
}
.gd-sidebar-toggle {
    display: none;
    width: 100%;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: var(--gd-navy);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    border-radius: var(--gd-radius);
    cursor: pointer;
    margin-bottom: 1rem;
}
.gd-sidebar-toggle-chevron { margin-left: auto; transition: transform 0.2s; }
.gd-sidebar-toggle[aria-expanded="true"] .gd-sidebar-toggle-chevron { transform: rotate(180deg); }
@media (max-width: 1023px) {
    .gd-sidebar-toggle { display: flex; }
    .gd-sidebar-body { display: none; }
    .gd-sidebar-body.open { display: block; }
}

.gd-sidebar-widget {
    background: #fff;
    border: 1px solid var(--gd-gray-100);
    border-radius: var(--gd-radius-xl);
    padding: 1.25rem;
    margin-bottom: 1rem;
}
.gd-sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gd-navy);
    margin: 0 0 0.875rem;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid var(--gd-gold);
}

/* Filter list */
.gd-filter-list { list-style: none; padding: 0; margin: 0; }
.gd-filter-list li { margin: 0; }
.gd-filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.625rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--gd-gray-700);
    text-decoration: none;
    transition: all 0.15s;
    font-family: 'Open Sans', sans-serif;
}
.gd-filter-link:hover { background: #fdfaf0; color: var(--gd-navy); }
.gd-filter-link.active {
    background: rgba(212,175,55,0.12);
    color: var(--gd-navy);
    font-weight: 600;
}
.gd-filter-count {
    background: var(--gd-gray-100);
    color: var(--gd-gray-400);
    font-size: 0.6875rem;
    padding: 2px 6px;
    border-radius: 99px;
}
.gd-filter-link.active .gd-filter-count {
    background: var(--gd-gold);
    color: var(--gd-navy-dark);
}

/* Sidebar CTA widgets */
.gd-sidebar-cta {
    text-align: center;
    background: var(--gd-gray-50);
}
.gd-sidebar-cta-dark {
    background: var(--gd-navy);
    border-color: var(--gd-navy);
}
.gd-sidebar-cta-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.gd-sidebar-cta h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gd-navy);
    margin: 0 0 0.25rem;
}
.gd-sidebar-cta-dark h4 { color: #fff; }
.gd-sidebar-cta p {
    font-size: 0.8125rem;
    color: var(--gd-gray-600);
    margin: 0 0 1rem;
    line-height: 1.5;
}
.gd-sidebar-cta-dark p { color: rgba(255,255,255,0.7); }
.gd-sidebar-cta-btn {
    display: block;
    background: var(--gd-gold);
    color: var(--gd-navy-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
    border-radius: var(--gd-radius);
    text-decoration: none;
    transition: var(--gd-transition);
}
.gd-sidebar-cta-btn:hover { background: var(--gd-gold-light); color: var(--gd-navy-dark); }

/* WooCommerce price filter inside sidebar */
.gd-sidebar-widget .widget_price_filter .price_slider_wrapper { padding: 0.5rem 0; }

/* ── Shop Toolbar ──────────────────────────────────────── */
.gd-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--gd-gray-50);
    border: 1px solid var(--gd-gray-100);
    border-radius: var(--gd-radius);
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.gd-shop-result-count {
    font-size: 0.875rem;
    color: var(--gd-gray-600);
}
.gd-shop-result-count .woocommerce-result-count { margin: 0; }
.gd-shop-ordering select {
    border: 1px solid var(--gd-gray-200);
    border-radius: var(--gd-radius);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    outline: none;
    color: var(--gd-gray-700);
}
.gd-shop-ordering select:focus { border-color: var(--gd-gold); }

/* ── Product Grid ──────────────────────────────────────── */
.woocommerce .gd-shop-main ul.products,
ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
    margin: 0 !important;
    padding: 0 !important;
}
@media (max-width: 1199px) { ul.products { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 639px)  { ul.products { grid-template-columns: 1fr !important; } }

/* ── Product Card ──────────────────────────────────────── */
li.gd-product-card {
    background: #fff;
    border: 1px solid var(--gd-gray-100);
    border-radius: var(--gd-radius-xl);
    overflow: hidden;
    transition: var(--gd-transition);
    display: flex;
    flex-direction: column;
    list-style: none !important;
    margin: 0 !important;
    width: auto !important;
}
li.gd-product-card:hover {
    border-color: var(--gd-gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}
.gd-product-image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 210 / 297; /* A4 portrait — full diploma visible */
    background: #2a2118;
}
img.gd-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}
li.gd-product-card:hover img.gd-product-img { transform: scale(1.03); }
.gd-product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--gd-navy) 0%, var(--gd-navy-dark) 100%);
}
.gd-product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gd-badge-sale { background: #ef4444; color: #fff; }
.gd-badge-featured { background: var(--gd-navy); color: var(--gd-gold); }
.gd-product-flag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.gd-product-info {
    padding: 1rem 1.125rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.gd-product-cat {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gd-gold);
    margin-bottom: 0.375rem;
}
.gd-product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gd-navy);
    margin: 0 0 0.375rem;
    line-height: 1.3;
}
.gd-product-name a { color: inherit; text-decoration: none; }
.gd-product-name a:hover { color: var(--gd-gold); }
.gd-product-excerpt {
    font-size: 0.8125rem;
    color: var(--gd-gray-400);
    line-height: 1.5;
    margin-bottom: 0.875rem;
    flex: 1;
}
.gd-product-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gd-gray-100);
    margin-top: auto;
    gap: 0.5rem;
}
.gd-product-price-wrap { display: flex; flex-direction: column; }
.gd-from { font-size: 0.6875rem; color: var(--gd-gray-400); }
.gd-product-price-wrap .woocommerce-Price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gd-navy);
}
.gd-product-cta {
    background: var(--gd-gold);
    color: var(--gd-navy-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    border-radius: var(--gd-radius);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--gd-transition);
}
.gd-product-cta:hover { background: var(--gd-gold-light); color: var(--gd-navy-dark); }

/* ── Shop pagination ───────────────────────────────────── */
.gd-shop-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}
.woocommerce-pagination ul {
    display: flex;
    gap: 0.375rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid var(--gd-gray-200);
    border-radius: var(--gd-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gd-gray-700);
    text-decoration: none;
    transition: var(--gd-transition);
}
.woocommerce-pagination ul li a:hover { border-color: var(--gd-gold); color: var(--gd-navy); }
.woocommerce-pagination ul li span.current {
    background: var(--gd-navy);
    border-color: var(--gd-navy);
    color: #fff;
}

/* ── Shop empty state ──────────────────────────────────── */
.gd-shop-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--gd-gray-400);
}
.gd-shop-empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.gd-shop-empty h3 { font-size: 1.5rem; color: var(--gd-navy); margin-bottom: 0.5rem; }
.gd-shop-empty a { color: var(--gd-gold); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ═══════════════════════════════════════════════════════ */

.gd-product-breadcrumb-bar {
    background: var(--gd-gray-50);
    border-bottom: 1px solid var(--gd-gray-100);
    padding: 0.75rem 0;
}
.gd-woo-breadcrumb {
    font-size: 0.875rem;
    color: var(--gd-gray-400);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.gd-woo-breadcrumb a { color: var(--gd-navy); text-decoration: none; }
.gd-woo-breadcrumb a:hover { color: var(--gd-gold); }
.gd-woo-breadcrumb .sep { color: var(--gd-gray-300, #d1d5db); margin: 0 0.25rem; }

.gd-single-product-wrap { padding: 2.5rem 0 0; }
.gd-single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 1023px) { .gd-single-product-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Gallery — A4 portrait samples + horizontal slider */
.gd-product-gallery-wrap {
    margin-bottom: 1.5rem;
    /* Narrower so A4 height fits without max-height clipping */
    max-width: 400px;
}
.gd-product-main-img {
    position: relative;
    border-radius: var(--gd-radius-xl);
    overflow: hidden;
    border: 1px solid var(--gd-gray-100);
    background: #2a2118;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 210 / 297; /* Exact A4 portrait */
    height: auto;
    max-height: none;
}
.gd-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--gd-navy);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px;
}
.gd-gallery-nav:hover {
    background: var(--gd-gold);
    color: var(--gd-navy-dark);
}
.gd-gallery-nav--prev { left: 0.65rem; }
.gd-gallery-nav--next { right: 0.65rem; }
.gd-product-main-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.65rem;
    box-sizing: border-box;
}
img.gd-single-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}
.gd-product-main-img:hover img.gd-single-img { transform: scale(1.02); }
.gd-no-img {
    width: 100%;
    aspect-ratio: 210 / 297;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--gd-navy) 0%, var(--gd-navy-dark) 100%);
}
@media (max-width: 1023px) {
    .gd-product-gallery-wrap { max-width: min(100%, 360px); margin-left: auto; margin-right: auto; }
}
.gd-product-gallery-flag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

/* Sample designs carousel (like samedaydiplomas) */
.gd-product-gallery-slider {
    position: relative;
    margin-top: 0.85rem;
    padding: 0 2.25rem;
}
.gd-product-gallery-strip {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0.15rem 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gd-product-gallery-strip::-webkit-scrollbar {
    display: none;
}
.gd-gallery-strip-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #555;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px;
}
.gd-gallery-strip-nav:hover {
    background: var(--gd-gold);
    color: var(--gd-navy-dark);
}
.gd-gallery-strip-nav--prev { left: 0; }
.gd-gallery-strip-nav--next { right: 0; }
.gd-gallery-thumb {
    flex: 0 0 calc(50% - 0.4rem);
    min-width: 120px;
    max-width: 180px;
    aspect-ratio: 210 / 297; /* A4 portrait thumbs */
    height: auto;
    padding: 0.35rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    scroll-snap-align: start;
    box-sizing: border-box;
}
.gd-gallery-thumb:hover,
.gd-gallery-thumb.active {
    border-color: var(--gd-gold);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.gd-gallery-thumb:focus-visible {
    outline: 2px solid var(--gd-navy);
    outline-offset: 2px;
}
.gd-gallery-thumb .gd-thumb-img,
img.gd-thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #2a2118;
    border-radius: 6px;
}
@media (max-width: 640px) {
    .gd-product-gallery-slider { padding: 0 2rem; }
    .gd-gallery-thumb {
        flex: 0 0 78%;
        max-width: none;
        min-width: 0;
    }
}

/* Simple product lightbox */
.gd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 22, 34, 0.88);
    padding: 1.5rem;
}
.gd-lightbox.is-open { display: flex; }
.gd-lightbox img {
    max-width: min(96vw, 1100px);
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.gd-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--gd-navy);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
.gd-lightbox-close:hover { background: var(--gd-gold); }
.gd-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gd-navy);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px;
}
.gd-lightbox-nav:hover {
    background: var(--gd-gold);
}
.gd-lightbox-nav--prev { left: 1rem; }
.gd-lightbox-nav--next { right: 1rem; }
@media (max-width: 640px) {
    .gd-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    .gd-lightbox-nav--prev { left: 0.5rem; }
    .gd-lightbox-nav--next { right: 0.5rem; }
}

/* Trust badges */
.gd-product-trust-badges {
    background: var(--gd-gray-50);
    border: 1px solid var(--gd-gray-100);
    border-radius: var(--gd-radius-xl);
    padding: 1.25rem;
    margin-bottom: 1rem;
}
.gd-trust-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gd-navy);
    margin: 0 0 1rem;
}
.gd-trust-items { display: flex; flex-direction: column; gap: 0.875rem; }
.gd-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}
.gd-trust-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.gd-trust-item strong { display: block; font-size: 0.875rem; color: var(--gd-navy); font-family: 'Montserrat', sans-serif; }
.gd-trust-item p { font-size: 0.8125rem; color: var(--gd-gray-600); margin: 2px 0 0; line-height: 1.4; }

/* Sample CTA */
.gd-product-sidebar-cta { text-align: center; }
.gd-product-sample-btn {
    display: block;
    background: #fff;
    border: 2px solid var(--gd-gold);
    color: var(--gd-navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--gd-radius);
    text-decoration: none;
    transition: var(--gd-transition);
}
.gd-product-sample-btn:hover { background: var(--gd-gold); color: var(--gd-navy-dark); }
.gd-product-sample-note {
    font-size: 0.75rem;
    color: var(--gd-gray-400);
    margin: 0.5rem 0 0;
}

/* Product info col */
.gd-single-cat-label {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gd-gold);
    background: rgba(212,175,55,0.1);
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 0.875rem;
}
h1.gd-single-product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--gd-navy);
    margin: 0 0 0.875rem;
    line-height: 1.2;
}
.gd-single-rating-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}
.gd-stars-static { color: var(--gd-gold); font-size: 1.125rem; }
.gd-review-count { font-size: 0.875rem; color: var(--gd-gray-400); }
.gd-single-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gd-gray-100);
}
.gd-price-from { font-size: 0.75rem; color: var(--gd-gray-400); margin-bottom: 2px; }
.gd-single-price .woocommerce-Price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gd-navy);
}
.gd-single-short-desc {
    font-size: 0.9375rem;
    color: var(--gd-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* What's included checklist */
.gd-single-includes {
    background: var(--gd-gray-50);
    border-radius: var(--gd-radius-lg);
    padding: 1.125rem 1.25rem;
    margin-bottom: 1.5rem;
}
.gd-single-includes h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gd-navy);
    margin: 0 0 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.gd-single-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (max-width: 480px) { .gd-single-checklist { grid-template-columns: 1fr; } }
.gd-single-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gd-gray-700);
    line-height: 1.4;
}
.gd-single-checklist .ck { color: var(--gd-gold); font-weight: 700; flex-shrink: 0; }

/* Add to cart */
.gd-single-atc-wrap {
    margin-bottom: 1.5rem;
}
.gd-single-atc-wrap .quantity input {
    border: 1px solid var(--gd-gray-200);
    border-radius: var(--gd-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    width: 80px;
    text-align: center;
}
.gd-single-atc-wrap .single_add_to_cart_button {
    background: var(--gd-gold) !important;
    color: var(--gd-navy-dark) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 0.875rem 2rem !important;
    border-radius: var(--gd-radius) !important;
    border: none !important;
    transition: var(--gd-transition) !important;
    flex: 1;
}
.gd-single-atc-wrap .single_add_to_cart_button:hover {
    background: var(--gd-gold-light) !important;
}
.gd-single-atc-wrap form.cart {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Delivery options */
.gd-single-delivery {
    background: #fff;
    border: 1px solid var(--gd-gray-100);
    border-radius: var(--gd-radius-lg);
    padding: 1.125rem 1.25rem;
    margin-bottom: 1.25rem;
}
.gd-single-delivery h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gd-navy);
    margin: 0 0 0.875rem;
}
.gd-delivery-options { display: flex; flex-direction: column; gap: 0.625rem; }
.gd-delivery-opt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem;
    border-radius: var(--gd-radius);
    border: 1px solid var(--gd-gray-100);
    transition: border-color 0.15s;
}
.gd-delivery-opt:hover { border-color: var(--gd-gold); }
.gd-delivery-icon { font-size: 1.25rem; flex-shrink: 0; }
.gd-delivery-opt strong { display: block; font-size: 0.875rem; color: var(--gd-navy); font-family: 'Montserrat', sans-serif; }
.gd-delivery-opt p { font-size: 0.75rem; color: var(--gd-gray-400); margin: 0; }
.gd-delivery-price {
    margin-left: auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gd-navy);
    white-space: nowrap;
}

/* Custom quote prompt */
.gd-single-custom-prompt {
    font-size: 0.875rem;
    color: var(--gd-gray-600);
    padding: 0.875rem;
    background: var(--gd-gray-50);
    border-radius: var(--gd-radius);
    line-height: 1.5;
}
.gd-single-custom-prompt a { color: var(--gd-gold); font-weight: 600; text-decoration: none; }
.gd-single-custom-prompt a:hover { text-decoration: underline; }

/* Product tabs */
.gd-product-tabs-wrap {
    padding: 3rem 0;
    border-top: 1px solid var(--gd-gray-100);
    margin-top: 2rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gd-gray-100);
    padding: 0;
    margin: 0 0 2rem;
    list-style: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    border: none;
    border-radius: 0;
    background: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gd-gray-600);
    padding: 0.875rem 1.5rem;
    display: block;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    text-decoration: none;
    transition: all 0.2s;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover { color: var(--gd-navy); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--gd-navy);
    border-bottom-color: var(--gd-gold);
}
.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

/* Related products */
.gd-related-products-wrap {
    padding: 3rem 0 4rem;
    background: var(--gd-gray-50);
}
.gd-related-header {
    margin-bottom: 2rem;
}
.gd-related-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    color: var(--gd-navy);
    margin: 0.25rem 0 0;
}
ul.gd-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (max-width: 1023px) { ul.gd-products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 639px)  { ul.gd-products-grid { grid-template-columns: 1fr; } }

/* ── WooCommerce Search Form ───────────────────────────── */
.woocommerce-product-search {
    display: flex;
    gap: 0.5rem;
}
.woocommerce-product-search input[type="search"] {
    flex: 1;
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--gd-gray-200);
    border-radius: var(--gd-radius);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    min-width: 220px;
}
.woocommerce-product-search input[type="search"]:focus { border-color: var(--gd-gold); }
.woocommerce-product-search button {
    background: var(--gd-gold);
    color: var(--gd-navy-dark);
    border: none;
    border-radius: var(--gd-radius);
    padding: 0.625rem 0.875rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: var(--gd-transition);
}
.woocommerce-product-search button:hover { background: var(--gd-gold-light); }

/* ── Mobile responsive shop ────────────────────────────── */
@media (max-width: 767px) {
    .gd-shop-hero-box,
    .gd-shop-hero-inner { flex-direction: column; align-items: flex-start; }
    .gd-shop-hero-stats { gap: 1rem; }
    .gd-shop-stat .num { font-size: 1.5rem; }
    .gd-single-checklist { grid-template-columns: 1fr; }
    .gd-single-atc-wrap form.cart { flex-direction: column; }
    .gd-single-atc-wrap .single_add_to_cart_button { width: 100%; text-align: center; }
}

/* =========================================================
   COUNTRY ROUTES — Phase 1 sub-navigation
   ========================================================= */
.gd-country-subnav {
  background: var(--gd-white);
  border-bottom: 1px solid var(--gd-gray-200);
}
.gd-country-subnav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
}
.gd-country-subnav-list a {
  color: var(--gd-gray-600);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.gd-country-subnav-list a:hover,
.gd-country-subnav-list a.is-active {
  color: var(--gd-navy);
  border-bottom-color: var(--gd-gold);
}

/* Homepage / shop — full country catalogue */
.gd-homepage-country-grid {
  gap: 1rem;
}
.gd-shop-country-index {
  padding: 3.5rem 0 4.5rem;
  background: var(--gd-gray-50, #f9fafb);
}
.gd-shop-country-index-head {
  margin-bottom: 2.5rem;
}
.gd-shop-country-index-footer {
  margin-top: 2.5rem;
  text-align: center;
}
.gd-shop-country-index-footer p {
  color: var(--gd-gray-600);
  margin: 0 0 1.25rem;
}
.gd-shop-country-index-footer p a {
  color: var(--gd-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gd-shop-country-index-footer p a:hover {
  color: var(--gd-gold);
}
.gd-shop-country-index-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.gd-shop-country-index-ctas .btn {
  text-decoration: none;
}
.gd-shop-country-index-ctas .btn-primary {
  color: var(--gd-navy-dark);
}
.gd-shop-country-index-ctas .btn-primary:hover {
  color: var(--gd-navy-dark);
}
.gd-shop-country-index-ctas .btn-secondary {
  color: #fff;
}
.gd-shop-country-index-ctas .btn-secondary:hover {
  color: #fff;
}
.gd-homepage-country-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gd-white);
  border: 1px solid var(--gd-gray-200);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gd-homepage-country-card:hover {
  border-color: var(--gd-gold);
  box-shadow: 0 4px 12px rgba(26, 58, 82, 0.08);
}
.gd-homepage-country-card .flag {
  font-size: 2rem;
  flex-shrink: 0;
}
.gd-homepage-country-card-body {
  flex: 1;
  min-width: 0;
}
.gd-homepage-country-card .country-sub {
  font-size: 0.75rem;
  color: var(--gd-gray-400);
  margin-top: 0.15rem;
}
.gd-homepage-country-visit {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gd-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gd-country-landing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.gd-country-landing-below p {
  color: var(--gd-gray-600);
  max-width: 40rem;
  margin: 0 auto 1rem;
  text-align: center;
}

/* Country landing — reference template */
.gd-country-breadcrumb-bar {
  background: #e8f0f7;
  border-bottom: 1px solid #d7e3ee;
  padding: 1rem 0;
}
.gd-country-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--gd-navy);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.gd-country-breadcrumb-link:hover { color: var(--gd-gold); }

.gd-country-hero {
  background: var(--gd-navy);
  padding: 5rem 0 4.25rem;
  text-align: center;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.gd-country-hero-inner {
  width: 100%;
}
.gd-country-hero-code {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: var(--gd-gold);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gd-country-hero-flag {
  margin: 0 0 0.75rem;
  font-size: 3rem;
  line-height: 1;
}
.gd-country-hero-tagline {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  max-width: 40rem;
  margin-inline: auto;
}
.gd-country-hero-language {
  margin: 0;
  color: var(--gd-gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.gd-country-hero-title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
}
.gd-country-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gd-country-subnav-bar {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 290;
  background: #fff;
  border-bottom: 1px solid var(--gd-gray-200);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.gd-country-subnav-bar--page-top {
  width: 100%;
  border-top: 1px solid var(--gd-gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
body.gd-country-page .gd-country-subnav-bar--page-top {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  body.gd-country-page .gd-country-subnav-bar--page-top {
    display: none;
  }
}
.gd-country-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
}
.gd-country-subnav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  color: var(--gd-navy);
}
.gd-country-subnav-flag {
  font-size: 1.5rem;
  line-height: 1;
}
.gd-country-subnav-code {
  color: var(--gd-gold);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
}
.gd-country-subnav-name { font-size: 1rem; }
.gd-country-subnav-bar .gd-country-subnav-list {
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}

.gd-country-stats {
  background: #fff;
  border-bottom: 1px solid var(--gd-gray-200);
  padding: 1.75rem 0;
}
.gd-country-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gd-country-stat {
  text-align: center;
  padding: 0.5rem;
}
.gd-country-stat-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.gd-country-stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gd-navy);
}
.gd-country-stat-label {
  font-size: 0.8125rem;
  color: var(--gd-gray-500);
  margin-top: 0.15rem;
}

.gd-country-catalog {
  background: var(--gd-gray-50);
  padding: 3rem 0;
}
.gd-country-catalog-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.gd-country-catalog-header h2 {
  margin: 0.35rem 0 0.75rem;
  color: var(--gd-navy);
}
.gd-country-catalog-header p {
  color: var(--gd-gray-600);
  margin: 0;
}
.gd-country-catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 20;
  isolation: isolate;
}
.gd-country-filter {
  border: 1px solid var(--gd-gray-300);
  background: #fff;
  color: var(--gd-navy);
  border-radius: 999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 21;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
  line-height: 1.2;
}
.gd-country-filter.is-active {
  background: var(--gd-navy);
  border-color: var(--gd-navy);
  color: #fff;
}
.gd-country-filter-count {
  opacity: 0.8;
  font-weight: 500;
  pointer-events: none;
}
.gd-country-catalog-groups {
  position: relative;
  z-index: 1;
}
.gd-country-catalog .products::before,
.gd-country-catalog .products::after {
  display: none !important;
  content: none !important;
  pointer-events: none !important;
}
.gd-country-catalog-group { margin-bottom: 2.5rem; }
.gd-country-catalog-group-title {
  font-size: 1.125rem;
  color: var(--gd-navy);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gd-gray-200);
}
.gd-country-product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gd-country-product-grid::before,
.gd-country-product-grid::after { display: none; }

.gd-country-explore-cards {
  background: #fff;
  padding: 0 0 3rem;
}
.gd-country-explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.gd-country-explore-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--gd-navy);
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  text-decoration: none;
}
.gd-country-explore-card h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1.125rem;
}
.gd-country-explore-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}
.gd-country-explore-link {
  flex-shrink: 0;
  color: var(--gd-gold);
  font-weight: 700;
  white-space: nowrap;
}

.gd-country-bottom-cta,
.gd-country-landing-cta {
  display: none !important;
}

body.gd-country-page .gd-content-wrap {
  overflow: visible;
}

/* Country pages: location subnav below header; global nav stays visible. */
.gd-mobile-country-nav {
  border-bottom: 1px solid var(--gd-gray-200);
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
}
.gd-mobile-country-nav-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem 0.75rem;
  font-weight: 700;
  color: var(--gd-navy);
}
.gd-mobile-country-nav-flag {
  font-size: 1.5rem;
  line-height: 1;
}
.gd-mobile-country-nav .gd-mobile-nav-link.is-active {
  color: var(--gd-navy);
  background: rgba(212, 175, 55, 0.12);
}

body.gd-country-page #main,
body.gd-country-page .site-main,
body.gd-country-page #gd-primary {
  overflow: visible;
}
.gd-country-subnav-bar.is-stuck {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.gd-country-landing-section {
  scroll-margin-top: 1.5rem;
  padding: 3rem 0;
}
.gd-country-landing-section:nth-of-type(even) {
  background: var(--gd-gray-50);
}
.gd-country-landing-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.gd-country-landing-section-header h2 {
  margin: 0.35rem 0 0;
  color: var(--gd-navy);
}
.gd-country-landing-empty {
  text-align: center;
  color: var(--gd-gray-500);
  padding: 2rem 1rem;
  margin: 0;
  background: #fff;
  border: 1px dashed var(--gd-gray-200);
  border-radius: var(--gd-radius-xl);
}
.gd-country-landing-faq-list {
  max-width: 800px;
  margin-inline: auto;
}
.gd-country-landing-blog-grid .gd-blog-title {
  font-size: 1.125rem;
}
.gd-country-blog-archive-lead {
  margin: 0.5rem 0 0;
  max-width: 40rem;
  color: var(--gd-gray-600);
  font-size: 1rem;
  font-weight: 400;
}
.gd-country-samples-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .gd-country-samples-preview-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.gd-country-samples-preview-item {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: var(--gd-navy);
  aspect-ratio: 3 / 4;
}
.gd-country-samples-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gd-country-samples-preview-item:hover img { transform: scale(1.05); }
.gd-country-samples-preview-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(10, 28, 44, 0.92));
  color: #fff;
}
.gd-country-samples-preview-country {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gd-gold);
  margin-bottom: 0.25rem;
}
.gd-country-samples-preview-title {
  display: block;
  font-size: 0.875rem;
  line-height: 1.35;
}

.gd-country-bottom-cta {
  background: var(--gd-navy);
  padding: 3.5rem 0;
  text-align: center;
}
.gd-country-bottom-cta-inner {
  max-width: 720px;
}
.gd-country-bottom-cta-code {
  color: var(--gd-gold);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.gd-country-bottom-cta h2 {
  color: #fff;
  margin: 0 0 0.75rem;
}
.gd-country-bottom-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.5rem;
}
.gd-country-bottom-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 991px) {
  .gd-country-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gd-country-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gd-mega-grid:not(.gd-mega-grid--all) { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .gd-country-subnav-inner { flex-direction: column; align-items: flex-start; }
  .gd-country-subnav-bar .gd-country-subnav-list { justify-content: flex-start; }
  .gd-country-explore-grid { grid-template-columns: 1fr; }
  .gd-country-product-grid { grid-template-columns: 1fr; }
  .gd-country-landing-section-header { flex-direction: column; align-items: flex-start; }
}
