/* =============================================
   Pos-Marketing — Site Styles
   ============================================= */

/* ---- HEADER ---- */
.gp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gp-bg-dark);
}

.gp-topbar {
  background: var(--gp-bg-darker);
  color: rgba(255,255,255,0.6);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gp-topbar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gp-topbar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gp-topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gp-topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gp-topbar__item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.gp-topbar__item a:hover {
  color: var(--gp-accent);
}

.gp-topbar__badge {
  background: var(--gp-accent);
  color: var(--gp-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--gp-radius-full);
  margin-left: 2px;
}

/* Nav */
.gp-nav {
  background: var(--gp-primary);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.gp-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 32px;
}

.gp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.gp-brand__mark {
  width: 42px;
  height: 42px;
  background: var(--gp-accent);
  color: var(--gp-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  font-family: var(--gp-font-serif);
}

.gp-brand__name {
  font-weight: 800;
  font-size: 22px;
  color: white;
}

.gp-brand__name span {
  color: white;
}

.gp-brand__subtitle {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 1px;
}

/* Nav Center (links + search inline) */
.gp-nav__center {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 700px;
}

.gp-nav__page-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.gp-nav__page-link:hover {
  color: var(--gp-accent);
}

/* Search Bar */
.gp-search {
  flex: 1;
  min-width: 0;
}

.gp-search__bar {
  display: flex;
  align-items: stretch;
  border-radius: var(--gp-radius-full);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s;
}

.gp-search__bar:focus-within {
  border-color: var(--gp-accent);
}

.gp-search__input {
  flex: 1;
  border: none;
  background: transparent;
  color: white;
  padding: 12px 20px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  min-width: 0;
}

.gp-search__input::placeholder {
  color: rgba(255,255,255,0.35);
}

.gp-search__btn {
  background: var(--gp-accent);
  color: var(--gp-primary);
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  border-radius: var(--gp-radius-full);
  margin: 3px;
  transition: background 0.2s;
}

.gp-search__btn:hover {
  background: var(--gp-accent-light);
}

/* Nav Action Icons (labeled) */
.gp-nav__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.gp-nav__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.gp-nav__action:hover {
  color: var(--gp-accent);
}

.gp-nav__action-icon {
  position: relative;
  font-size: 22px;
}

.gp-nav__action-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--gp-accent);
  color: var(--gp-primary);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid var(--gp-primary);
}

.gp-nav__action-label {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* Hamburger — hidden on desktop */
.gp-iconBtn.gp-hamburger {
  display: none;
}

/* ---- MEGA MENU ---- */
.gp-megamenu {
  background: var(--gp-bg-darker);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gp-megamenu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
}

.gp-megamenu__item {
  position: relative;
}

.gp-megamenu__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.gp-megamenu__link:hover,
.gp-megamenu__link.is-active {
  color: var(--gp-accent);
  background: rgba(255,255,255,0.04);
}

.gp-megamenu__chevron {
  font-size: 10px;
  transition: transform 0.25s;
}

.gp-megamenu__item.has-dropdown:hover .gp-megamenu__chevron {
  transform: rotate(180deg);
}

/* Dropdown Panel */
.gp-megamenu__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--gp-bg-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 0 var(--gp-radius-md) var(--gp-radius-md);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 110;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.gp-megamenu__item.has-dropdown:hover .gp-megamenu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gp-megamenu__sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-megamenu__sub-link {
  display: block;
  padding: 8px 20px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s, background 0.2s;
}

.gp-megamenu__sub-link:hover {
  color: var(--gp-accent);
  background: rgba(255,255,255,0.04);
}

.gp-megamenu__see-all {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px 6px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--gp-accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.gp-megamenu__see-all:hover {
  text-decoration: underline;
}

/* ---- MOBILE NAV OVERLAY ---- */
.gp-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--gp-bg-dark);
  flex-direction: column;
  overflow-y: auto;
}

.gp-mobile-nav.is-open {
  display: flex;
}

.gp-mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gp-mobile-nav__title {
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.gp-mobile-nav__close {
  color: rgba(255,255,255,0.7);
}

.gp-mobile-nav__body {
  padding: 12px 0;
}

.gp-mobile-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.gp-mobile-nav__link:hover {
  color: var(--gp-accent);
}

.gp-mobile-nav__arrow {
  font-size: 12px;
  transition: transform 0.25s;
}

.gp-mobile-nav__group.is-open .gp-mobile-nav__arrow {
  transform: rotate(180deg);
}

.gp-mobile-nav__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.15);
}

.gp-mobile-nav__group.is-open .gp-mobile-nav__sub {
  max-height: 500px;
}

.gp-mobile-nav__sub-link {
  display: block;
  padding: 10px 20px 10px 36px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.gp-mobile-nav__sub-link:hover {
  color: var(--gp-accent);
}

.gp-mobile-nav__sub-link--all {
  color: var(--gp-accent);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
  padding-bottom: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
}

/* Nav Icons */
.gp-nav__icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.gp-iconBtn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--gp-radius-full);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s ease;
  background: rgba(255,255,255,0.06);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.gp-iconBtn:hover {
  background: rgba(201,168,76,0.15);
  color: var(--gp-accent);
}

.gp-nav-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gp-accent);
  color: var(--gp-primary);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid var(--gp-primary);
}

/* ---- HERO ---- */
.gp-hero {
  background: var(--gp-bg-dark);
  position: relative;
  overflow: hidden;
  color: white;
}

.gp-hero__bg {
  display: none;
}

.gp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 560px;
  padding: 60px 0;
}

.gp-hero__content {
  z-index: 10;
}

.gp-hero__h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.05;
  color: white;
}

.gp-hero__accent {
  font-family: var(--gp-font-serif);
  background: var(--gp-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.gp-hero__p {
  font-size: 17px;
  opacity: 0.7;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.gp-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gp-hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-hero__image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--gp-radius-lg);
}

.gp-hero__quality-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: var(--gp-radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ---- SECTIONS ---- */
.gp-sectionHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gp-sectionHead--center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  display: block;
}

.gp-section__desc {
  color: var(--gp-text-muted);
  font-size: 16px;
  margin-top: 12px;
  line-height: 1.6;
}

/* ---- CATEGORY GRID ---- */
.gp-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gp-category-card {
  background: white;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-lg);
  padding: 32px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gp-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow-lg);
  border-color: var(--gp-accent);
}

.gp-category-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.08);
  color: var(--gp-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}

.gp-category-card:hover .gp-category-card__icon {
  background: var(--gp-accent);
  color: var(--gp-primary);
}

.gp-category-card__name {
  color: var(--gp-text);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* ---- FEATURES / WHY US ---- */
.gp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gp-feature-card {
  background: white;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.gp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow-lg);
}

.gp-feature-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.08);
  color: var(--gp-accent);
  border-radius: var(--gp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}

.gp-feature-card__title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--gp-text);
}

.gp-feature-card__desc {
  font-size: 14px;
  color: var(--gp-text-muted);
  line-height: 1.5;
}

/* ---- STATS ---- */
.gp-stats {
  background: var(--gp-bg-dark);
  padding: 64px 0;
}

.gp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.gp-stats__number {
  font-size: 48px;
  font-weight: 900;
  color: var(--gp-accent);
  font-family: var(--gp-font-serif);
  line-height: 1;
}

.gp-stats__label {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-top: 8px;
}

/* ---- CTA SECTION ---- */
.gp-cta-section {
  background: linear-gradient(135deg, var(--gp-bg-dark) 0%, var(--gp-bg-darker) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.gp-cta-section__title {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--gp-font-serif);
  margin-bottom: 16px;
  line-height: 1.3;
}

.gp-cta-section__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---- PRODUCT CARDS ---- */
.gp-product-card {
  position: relative;
  background: white;
  border-radius: var(--gp-radius-lg);
  border: 1px solid var(--gp-border);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow-lg);
  border-color: var(--gp-accent);
}

.gp-product-card__img-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gp-bg-soft);
  position: relative;
  display: block;
}

.gp-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.4s ease;
}

.gp-product-card:hover .gp-product-card__img {
  transform: scale(1.05);
}

.gp-product-card__badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.gp-product-card__badges--top {
  top: 12px;
  left: 12px;
  bottom: auto;
  right: auto;
  justify-content: flex-start;
}

.gp-card-badge {
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--gp-radius-full);
  color: white;
}

.gp-card-badge--green {
  background: var(--gp-success);
}

.gp-card-badge--red {
  background: var(--gp-error);
}

.gp-card-badge--gold {
  background: var(--gp-accent);
  color: var(--gp-primary);
}

.gp-product-card__body {
  padding: 20px;
}

.gp-product-card__category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gp-accent);
  margin-bottom: 6px;
  display: block;
}

.gp-product-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.gp-product-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gp-product-card__title a {
  text-decoration: none;
  color: var(--gp-text);
  transition: color 0.2s ease;
}

.gp-product-card__title a:hover {
  color: var(--gp-accent);
}

.gp-product-card__desc {
  font-size: 13px;
  color: var(--gp-text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gp-product-card__stars {
  color: var(--gp-accent);
  font-size: 12px;
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}

.gp-product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 12px;
  border-top: 1px solid var(--gp-border);
}

.gp-product-card__price-label {
  font-size: 12px;
  color: var(--gp-text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.gp-product-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--gp-text);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.gp-product-card__price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--gp-text-muted);
}

.gp-product-card__price-old {
  font-size: 13px;
  color: var(--gp-text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 500;
}

.gp-product-card__min-order {
  font-size: 12px;
  color: var(--gp-text-muted);
  font-weight: 600;
  background: var(--gp-bg-soft);
  padding: 4px 10px;
  border-radius: var(--gp-radius-full);
}

.gp-product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gp-product-card:hover .gp-product-card__overlay {
  opacity: 1;
}

/* ---- PRODUCT LIST PAGE ---- */
.gp-plp-hero {
  background: var(--gp-bg-dark);
  padding: 40px 0;
  color: white;
}

.gp-plp-hero__title {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--gp-font-serif);
  margin-bottom: 4px;
}

.gp-plp-hero__count {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
}

.gp-breadcrumb__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}

.gp-breadcrumb__row a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.gp-breadcrumb__row a:hover {
  color: var(--gp-accent);
}

.gp-breadcrumb__row i {
  color: rgba(255,255,255,0.3);
  font-size: 10px;
}

.gp-breadcrumb__row span {
  color: rgba(255,255,255,0.8);
}

/* Light breadcrumb variant */
.gp-breadcrumb--light .gp-breadcrumb__row a {
  color: var(--gp-text-muted);
}

.gp-breadcrumb--light .gp-breadcrumb__row i {
  color: var(--gp-border);
}

.gp-breadcrumb--light .gp-breadcrumb__row span {
  color: var(--gp-text);
  font-weight: 600;
}

.gp-plp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
}

.gp-plp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gp-plp-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.gp-plp-empty {
  text-align: center;
  padding: 80px 0;
  grid-column: 1 / -1;
}

.gp-plp-empty i {
  font-size: 48px;
  color: var(--gp-border);
  margin-bottom: 16px;
  display: block;
}

/* Pagination */
.gp-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gp-border);
}

.gp-pagination__info {
  font-size: 13px;
  color: var(--gp-text-muted);
  font-weight: 600;
}

.gp-pagination__controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gp-pagination__page,
.gp-pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 4px;
  border-radius: var(--gp-radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--gp-text);
  background: white;
  border: 1px solid var(--gp-border);
  transition: all 0.2s ease;
  cursor: pointer;
}

.gp-pagination__page:hover,
.gp-pagination__btn:hover {
  border-color: var(--gp-accent);
  color: var(--gp-accent);
  background: rgba(201,168,76,0.06);
}

.gp-pagination__page.is-active {
  background: var(--gp-primary);
  color: white;
  border-color: var(--gp-primary);
  pointer-events: none;
}

.gp-pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 40px;
  font-size: 14px;
  color: var(--gp-text-muted);
  letter-spacing: 2px;
  pointer-events: none;
}

/* Filters Sidebar */
.gp-plp-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.gp-filter-group {
  margin-bottom: 32px;
}

.gp-filter-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gp-text);
  margin-bottom: 16px;
  margin-top: 0;
}

.gp-filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--gp-text);
}

.gp-filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gp-border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--gp-primary);
  flex-shrink: 0;
}

.gp-filter-checkbox__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gp-accent);
}

.gp-filter-checkbox__label {
  flex-grow: 1;
  font-weight: 500;
}

.gp-filter-checkbox__count {
  font-size: 12px;
  color: var(--gp-text-muted);
}

.gp-price-slider {
  margin-top: 12px;
}

.gp-price-slider input[type="range"] {
  width: 100%;
  accent-color: var(--gp-primary);
  cursor: pointer;
}

.gp-price-slider__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-text);
}

/* ---- PRODUCT DETAIL PAGE ---- */
.gp-pdp-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.gp-pdp-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}

.gp-product-gallery {
  position: sticky;
  top: 100px;
  min-width: 0;
  overflow: hidden;
}

.gp-product-main-img {
  aspect-ratio: 1;
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
  background: var(--gp-bg-soft);
  border: 1px solid var(--gp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 32px;
}

.gp-product-main-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gp-product-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.gp-product-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--gp-radius-md);
  border: 2px solid var(--gp-border);
  overflow: hidden;
  cursor: pointer;
  background: white;
  flex-shrink: 0;
  padding: 8px;
  transition: all 0.2s ease;
}

.gp-product-thumb:hover {
  border-color: var(--gp-accent);
}

.gp-product-thumb.is-active {
  border-color: var(--gp-accent);
  box-shadow: 0 0 0 1px var(--gp-accent);
}

/* Product Info */
.gp-product-info {
  padding-left: 0;
}

.gp-pdp-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.gp-pdp-badge {
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--gp-radius-full);
  border: 1px solid;
}

.gp-pdp-badge--category {
  color: var(--gp-accent);
  border-color: var(--gp-accent);
  background: transparent;
}

.gp-pdp-badge--bestseller {
  color: var(--gp-text-muted);
  border-color: var(--gp-border);
  background: var(--gp-bg-soft);
}

.gp-pdp-title {
  font-family: var(--gp-font-serif);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--gp-text);
}

.gp-pdp-desc {
  font-size: 15px;
  color: var(--gp-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Specs Grid */
.gp-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.gp-spec-item {
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md);
}

.gp-spec-label {
  font-size: 11px;
  color: var(--gp-text-muted);
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gp-spec-value {
  font-weight: 700;
  color: var(--gp-text);
  font-size: 15px;
}

/* Color Select */
.gp-pdp-color-select {
  margin-bottom: 24px;
}

.gp-pdp-color-select label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--gp-text);
}

.gp-pdp-color-select .gp-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  font-size: 15px;
}

/* ---- MARKING CALCULATOR ---- */
.gp-calc {
  background: var(--gp-bg-dark);
  border-radius: var(--gp-radius-lg);
  padding: 28px;
  color: white;
  margin-bottom: 24px;
}

.gp-calc__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.gp-calc__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gp-calc__subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.gp-calc__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* Toggle Switch */
.gp-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
}

.gp-toggle input { display: none; }

.gp-toggle__slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.gp-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: 0.3s;
}

.gp-toggle input:checked + .gp-toggle__slider {
  background: var(--gp-accent);
}

.gp-toggle input:checked + .gp-toggle__slider::before {
  transform: translateX(20px);
}

/* Calc Sections */
.gp-calc__section {
  margin-top: 24px;
}

.gp-calc__section-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  color: rgba(255,255,255,0.9);
}

/* Calc white variant sections */
.gp-calc--white .gp-calc__section-title {
  color: var(--gp-text);
}

/* Marking Methods */
.gp-calc__methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-calc__method-option {
  cursor: pointer;
}

.gp-calc__method-option input {
  display: none;
}

.gp-calc__method-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--gp-radius-md);
  transition: all 0.2s;
  font-size: 14px;
}

.gp-calc__method-card:hover {
  border-color: rgba(255,255,255,0.3);
}

.gp-calc__method-option input:checked + .gp-calc__method-card {
  border-color: var(--gp-accent);
  background: rgba(201,168,76,0.08);
}

.gp-calc__method-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.2s;
}

.gp-calc__method-option input:checked + .gp-calc__method-card .gp-calc__method-check {
  background: var(--gp-accent);
  border-color: var(--gp-accent);
  color: var(--gp-primary);
}

.gp-calc__method-info {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* Calc Select */
.gp-calc__select {
  padding: 10px 36px 10px 16px;
  border-radius: var(--gp-radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: white;
  font-family: inherit;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

/* Dropzone */
.gp-calc__dropzone {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--gp-radius-md);
  padding: 32px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gp-calc__dropzone:hover {
  border-color: var(--gp-accent);
  color: var(--gp-accent);
}

.gp-calc__dropzone i {
  font-size: 32px;
}

.gp-calc__dropzone span {
  font-size: 14px;
}

.gp-calc__dropzone small {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* Quantity Input */
.gp-calc__qty-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-calc__qty {
  width: 120px;
  padding: 10px 16px;
  border-radius: var(--gp-radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: white;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.gp-calc__qty:focus {
  outline: none;
  border-color: var(--gp-accent);
}

.gp-calc__qty-min {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* Tier Buttons */
.gp-calc__tiers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.gp-calc__tier {
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--gp-radius-md);
  color: white;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  font-family: inherit;
  text-align: center;
  min-width: 60px;
}

.gp-calc__tier:hover {
  border-color: rgba(255,255,255,0.3);
}

.gp-calc__tier.is-active {
  background: var(--gp-accent);
  color: var(--gp-primary);
  border-color: var(--gp-accent);
}

.gp-calc__tier small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 2px;
}

/* Price Summary */
.gp-calc__summary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.gp-calc__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.gp-calc__summary-row span:last-child {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.gp-calc__summary-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}

.gp-calc__summary-total > span:first-child {
  font-size: 16px;
  font-weight: 700;
}

.gp-calc__total-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--gp-accent);
  font-family: var(--gp-font-serif);
  line-height: 1;
}

.gp-calc__vat {
  text-align: right;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* PDP Action Buttons */
.gp-pdp-actions {
  display: flex;
  gap: 12px;
  margin-top: 0;
}

.gp-pdp-actions__cart {
  flex: 2;
}

.gp-pdp-actions__quote {
  flex: 1;
  border-color: var(--gp-border) !important;
  color: var(--gp-text) !important;
}

/* Related Products */
.gp-related {
  padding: 64px 0;
}

.gp-related__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.gp-related__title {
  font-family: var(--gp-font-serif);
  font-size: 28px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gp-accent);
  text-underline-offset: 6px;
}

.gp-related__more {
  color: var(--gp-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gp-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ---- ABOUT PAGE ---- */
.gp-about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.gp-about-content__title {
  font-family: var(--gp-font-serif);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--gp-text);
}

.gp-about-content__subtitle {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--gp-text);
}

.gp-about-content__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gp-text-muted);
  margin-bottom: 16px;
}

.gp-about-card__inner {
  background: var(--gp-bg-dark);
  border-radius: var(--gp-radius-lg);
  padding: 32px;
  color: white;
  position: sticky;
  top: 120px;
}

.gp-about-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gp-about-card__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.gp-about-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  color: var(--gp-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.gp-about-card__label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.gp-about-card__value {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

a.gp-about-card__value:hover {
  color: var(--gp-accent);
}

/* ---- CONTACT PAGE ---- */
.gp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.gp-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gp-contact-card {
  background: white;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.gp-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--gp-shadow-lg);
  border-color: var(--gp-accent);
}

.gp-contact-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.08);
  color: var(--gp-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.gp-contact-card:hover .gp-contact-card__icon {
  background: var(--gp-accent);
  color: var(--gp-primary);
}

.gp-contact-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gp-text);
}

.gp-contact-card__value {
  color: var(--gp-text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

a.gp-contact-card__value:hover {
  color: var(--gp-accent);
}

.gp-contact-card__desc {
  font-size: 13px;
  color: var(--gp-text-muted);
  margin-top: 6px;
}

/* Contact Form */
.gp-contact-form-wrap__title {
  font-family: var(--gp-font-serif);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--gp-text);
}

.gp-contact-form-wrap__desc {
  font-size: 15px;
  color: var(--gp-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.gp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gp-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gp-contact-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gp-text);
  margin-bottom: 6px;
}

.gp-contact-form__field input,
.gp-contact-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--gp-text);
  background: white;
  transition: border-color 0.2s;
}

.gp-contact-form__field input:focus,
.gp-contact-form__field textarea:focus {
  outline: none;
  border-color: var(--gp-accent);
}

.gp-contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---- FOOTER ---- */
.gp-footer {
  background: var(--gp-bg-dark);
  color: white;
  padding: 80px 0 0;
}

.gp-footer__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.gp-footer__brand-desc {
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
}

.gp-footer__title {
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.gp-footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gp-accent);
}

.gp-footer__link {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
  font-size: 14px;
}

.gp-footer__link:hover {
  color: var(--gp-accent);
}

.gp-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.gp-footer__social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--gp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}

.gp-footer__social-icon:hover {
  border-color: var(--gp-accent);
  color: var(--gp-accent);
}

.gp-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.gp-footer__contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.1);
  color: var(--gp-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.gp-footer__newsletter-desc {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.gp-footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gp-footer__newsletter-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: white;
  border-radius: var(--gp-radius-md);
  font-family: inherit;
  font-size: 14px;
}

.gp-footer__newsletter-form input::placeholder {
  color: rgba(255,255,255,0.3);
}

.gp-footer__newsletter-form input:focus {
  outline: none;
  border-color: var(--gp-accent);
}

.gp-footer__newsletter-form button {
  width: 100%;
  padding: 12px 24px;
  background: var(--gp-accent);
  color: var(--gp-primary);
  border: none;
  border-radius: var(--gp-radius-md);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.gp-footer__newsletter-form button:hover {
  background: var(--gp-accent-light);
}

.gp-footer__bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
}

.gp-footer__bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.gp-footer__bottom a:hover {
  color: var(--gp-accent);
}

/* ---- DRAWER ---- */
.gp-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.gp-drawer.is-open {
  display: flex;
}

.gp-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}

.gp-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: white;
  box-shadow: var(--gp-shadow-xl);
  display: flex;
  flex-direction: column;
}

.gp-drawer__head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gp-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gp-drawer__title {
  font-weight: 700;
  font-size: 18px;
}

.gp-drawer__body {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}

/* ---- TOAST ---- */
.gp-toastHost {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-toast {
  background: var(--gp-primary);
  color: white;
  padding: 16px 20px;
  border-radius: var(--gp-radius-md);
  box-shadow: var(--gp-shadow-lg);
  transition: all 0.3s ease;
}

.gp-toast__t {
  font-weight: 700;
  font-size: 14px;
}

.gp-toast__p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ---- SIDEBAR TOGGLE BUTTON (mobile-only, hidden on desktop) ---- */
.gp-sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background: var(--gp-primary);
  color: white;
  border: none;
  border-radius: var(--gp-radius-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  gap: 8px;
  margin-bottom: 4px;
}

.gp-sidebar-toggle:hover {
  background: var(--gp-primary-light);
}

.gp-sidebar-toggle__chevron {
  font-size: 12px;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.gp-sidebar-toggle.is-open .gp-sidebar-toggle__chevron {
  transform: rotate(180deg);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .gp-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 0;
  }

  .gp-hero__image {
    display: none;
  }

  .gp-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-plp-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gp-plp-sidebar {
    position: static;
    display: none;
    padding-bottom: 8px;
  }

  .gp-plp-sidebar.is-open {
    display: block;
  }

  .gp-sidebar-toggle {
    display: flex;
  }

  .gp-pdp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gp-about-grid {
    grid-template-columns: 1fr;
  }

  .gp-about-card__inner {
    position: static;
  }

  .gp-contact-grid {
    grid-template-columns: 1fr;
  }

  .gp-product-gallery {
    position: static;
  }

  .gp-footer__row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .gp-iconBtn.gp-hamburger {
    display: flex;
  }

  .gp-megamenu {
    display: none;
  }

  .gp-nav__page-link {
    display: none;
  }

  .gp-search__btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .gp-nav__action-label {
    display: none;
  }

  .gp-nav__actions {
    gap: 12px;
  }

  .gp-nav__row {
    gap: 12px;
  }

  .gp-nav__links {
    display: none;
  }

  .gp-topbar {
    font-size: 12px;
    padding: 6px 0;
  }

  .gp-topbar__left {
    gap: 14px;
    flex-wrap: wrap;
  }

  .gp-topbar__right {
    display: none;
  }

  .header-logo img {
    max-height: 44px;
    width: auto;
  }

  .gp-section {
    padding: 48px 0;
  }

  .gp-sectionHead {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }

  .gp-plp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gp-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-features-grid {
    grid-template-columns: 1fr;
  }

  .gp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-stats {
    padding: 40px 0;
  }

  .gp-cta-section {
    padding: 48px 0;
  }

  .gp-cta-section__title {
    font-size: 28px;
  }

  .gp-footer {
    padding: 48px 0 0;
  }

  .gp-footer__row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .gp-pdp-actions {
    flex-direction: column;
  }

  .gp-spec-grid {
    grid-template-columns: 1fr;
  }

  .gp-plp-hero {
    padding: 28px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .gp-section {
    padding: 32px 0;
  }

  .gp-plp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gp-pagination__page,
  .gp-pagination__btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .gp-hero__h1 {
    font-size: 30px;
  }

  .gp-plp-hero {
    padding: 20px 0;
  }

  .gp-plp-hero__title {
    font-size: 24px;
  }

  .gp-pdp-title {
    font-size: 26px;
  }

  .gp-stats {
    padding: 28px 0;
  }

  .gp-stats__number {
    font-size: 36px;
  }

  .gp-stats__grid {
    gap: 16px;
  }

  .gp-search__btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .gp-cta-section {
    padding: 36px 0;
  }

  .gp-cta-section__title {
    font-size: 24px;
  }

  .gp-nav__row {
    gap: 8px;
    padding: 10px 0;
  }

  .gp-calc__tiers {
    gap: 6px;
  }

  .gp-contact-form__row {
    grid-template-columns: 1fr;
  }

  .gp-calc__tier {
    padding: 8px 12px;
    min-width: 50px;
    font-size: 13px;
  }

  .gp-product-card__body {
    padding: 14px;
  }

  .gp-product-card__price {
    font-size: 16px;
  }

  .header-logo img {
    max-height: 38px;
  }

  .gp-footer {
    padding: 36px 0 0;
  }

  .gp-footer__row {
    gap: 24px;
    padding-bottom: 28px;
  }

  .gp-hero__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .gp-hero__cta .gp-btn--lg {
    width: 100%;
    justify-content: center;
  }
}

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

.gp-hero-slider {
  position: relative;
  background: var(--gp-bg-dark);
  overflow: hidden;
  outline: none;
}

.gp-hero-slider__track {
  display: grid;
}

.gp-hero-slide {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  color: white;
  position: relative;
  overflow: hidden;
}

.gp-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Slide bg variations */
.gp-hero-slide--1 { background: linear-gradient(135deg, #1a1f36 0%, #0f1220 55%, #1a2040 100%); }
.gp-hero-slide--2 { background: linear-gradient(135deg, #12152a 0%, #1c2545 50%, #12152a 100%); }
.gp-hero-slide--3 { background: linear-gradient(135deg, #0d1020 0%, #1a1f36 50%, #16203a 100%); }

/* Geometric overlay on each slide */
.gp-hero-slide__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.gp-hero-slide__geo::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07);
}
.gp-hero-slide__geo::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}

/* Content entrance — animation (not transition) so it re-fires on each slide change */
.gp-hero-slide.is-active .gp-hero-slide__inner {
  animation: gpSlideContentIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

/* Visual / decorative right column */
.gp-hero-slide__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gold orb */
.gp-hero-slide__orb {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.06) 55%, transparent 80%);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.gp-hero-slide__orb::before {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.18);
}
.gp-hero-slide__orb::after {
  content: '';
  position: absolute;
  inset: 55px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
}
.gp-hero-slide__orb-icon {
  font-size: 68px;
  color: rgba(201,168,76,0.45);
  position: relative;
  z-index: 1;
}

/* Floating info chips around orb */
.gp-hero-slide__chip {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--gp-radius-full);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gp-hero-slide__chip i { color: var(--gp-accent); font-size: 11px; }
.gp-hero-slide__chip--tl { top: 14%; left: -6%; }
.gp-hero-slide__chip--tr { top: 18%; right: -4%; }
.gp-hero-slide__chip--bl { bottom: 18%; left: -4%; }
.gp-hero-slide__chip--br { bottom: 14%; right: -6%; }

/* Slider arrows */
.gp-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gp-hero-slider__arrow:hover {
  background: var(--gp-accent);
  border-color: var(--gp-accent);
  color: var(--gp-primary);
  transform: translateY(-50%) scale(1.08);
}
.gp-hero-slider__arrow--prev { left: 24px; }
.gp-hero-slider__arrow--next { right: 24px; }

/* Dot navigation */
.gp-hero-slider__nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
  align-items: center;
}
.gp-hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--gp-radius-full);
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.gp-hero-slider__dot.is-active {
  width: 28px;
  background: var(--gp-accent);
}

/* Autoplay progress bar */
.gp-hero-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(201,168,76,0.5);
  width: 0;
  z-index: 20;
  transition: none;
}
.gp-hero-slider__progress.is-animating {
  width: 100%;
  transition: width 6s linear;
}

/* =============================================
   PROMO BANNERS
   ============================================= */

.gp-banners {
  padding: 0 0 64px;
}
.gp-banners__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 400px;
}
.gp-banner {
  position: relative;
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease;
}
.gp-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.22);
}
.gp-banner--wide {
  grid-row: 1 / 3;
}

/* Banner backgrounds */
.gp-banner__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.gp-banner:hover .gp-banner__bg {
  transform: scale(1.04);
}
.gp-banner--1 .gp-banner__bg { background: linear-gradient(145deg, #1a2040 0%, #12152a 100%); }
.gp-banner--2 .gp-banner__bg { background: linear-gradient(145deg, #12152a 0%, #1a1f36 100%); }
.gp-banner--3 .gp-banner__bg { background: linear-gradient(145deg, #1a1f36 0%, #0d1020 100%); }

/* Diagonal stripe texture */
.gp-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(201,168,76,0.025) 24px,
    rgba(201,168,76,0.025) 48px
  );
}
/* Gold radial glow top-right */
.gp-banner__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.gp-banner__body {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
}
.gp-banner--wide .gp-banner__body {
  padding: 40px 44px;
}

.gp-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gp-accent);
  margin-bottom: 12px;
}
.gp-banner__label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gp-accent);
  display: inline-block;
}

.gp-banner__title {
  font-family: var(--gp-font-serif);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
  font-size: 22px;
}
.gp-banner--wide .gp-banner__title {
  font-size: 34px;
  margin-bottom: 16px;
}

.gp-banner__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}
.gp-banner--wide .gp-banner__desc {
  font-size: 15px;
  margin-bottom: 28px;
}

.gp-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gp-accent);
  letter-spacing: 0.02em;
  transition: gap 0.25s;
}
.gp-banner:hover .gp-banner__link {
  gap: 14px;
}

.gp-banner__icon {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(201,168,76,0.6);
  z-index: 2;
  transition: all 0.35s;
}
.gp-banner--wide .gp-banner__icon {
  width: 88px;
  height: 88px;
  font-size: 30px;
  top: 32px;
  right: 36px;
}
.gp-banner:hover .gp-banner__icon {
  background: rgba(201,168,76,0.16);
  border-color: rgba(201,168,76,0.38);
  color: var(--gp-accent);
  transform: rotate(10deg) scale(1.06);
}

/* =============================================
   PRODUCTS CAROUSEL
   ============================================= */

.gp-carousel {
  position: relative;
}
.gp-carousel__viewport {
  overflow: hidden;
  position: relative;
}
.gp-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}
.gp-carousel__track.is-dragging {
  transition: none;
  cursor: grabbing;
}
.gp-carousel__item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}
.gp-carousel__arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gp-bg);
  border: 2px solid var(--gp-border);
  color: var(--gp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: var(--gp-shadow-md);
}
.gp-carousel__arrow:hover:not(:disabled) {
  background: var(--gp-accent);
  border-color: var(--gp-accent);
  color: var(--gp-primary);
  transform: translateY(-50%) scale(1.08);
}
.gp-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.gp-carousel__arrow--prev { left: -22px; }
.gp-carousel__arrow--next { right: -22px; }
/* Fade edges hint */
.gp-carousel__viewport::before,
.gp-carousel__viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 5;
  pointer-events: none;
}
.gp-carousel__viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--gp-bg), transparent);
}
.gp-carousel__viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--gp-bg), transparent);
}
/* Dots */
.gp-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.gp-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gp-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.gp-carousel__dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--gp-accent);
}

/* ---- Responsive overrides for new components ---- */
@media (max-width: 1024px) {
  .gp-hero-slider__arrow { display: none; }
  .gp-hero-slide__visual { display: none; }

  .gp-banners__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .gp-banner--wide {
    grid-row: auto;
    grid-column: 1 / 3;
    min-height: 280px;
  }
  .gp-banner { min-height: 180px; }

  .gp-carousel__item { flex: 0 0 calc(50% - 12px); }
  .gp-carousel__arrow { display: none; }
  .gp-carousel__viewport::before,
  .gp-carousel__viewport::after { display: none; }
}

@media (max-width: 768px) {
  .gp-banners__grid {
    grid-template-columns: 1fr;
  }
  .gp-banner--wide {
    grid-column: auto;
    min-height: 240px;
  }
  .gp-banner { min-height: 160px; }
  .gp-hero-slide__chip { display: none; }
  .gp-hero-slide__orb {
    width: 220px;
    height: 220px;
  }
  .gp-hero-slide__orb-icon { font-size: 48px; }
}

@media (max-width: 480px) {
  .gp-carousel__item { flex: 0 0 100%; }
  .gp-banner__body,
  .gp-banner--wide .gp-banner__body { padding: 20px 22px; }
  .gp-banner--wide .gp-banner__title { font-size: 24px; }
  .gp-banners { padding: 0 0 40px; }
}

/* =============================================
   PROMO PRICING + OMNIBUS DIRECTIVE
   ============================================= */

/* Karta produktu — cena promo */
.gp-product-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gp-product-card__price-promo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.gp-product-card__price-new {
  font-size: 18px;
  font-weight: 800;
  color: var(--gp-accent);
  line-height: 1;
}
.gp-product-card__price-new small {
  font-size: 12px;
  font-weight: 600;
}
.gp-product-card__price-old {
  font-size: 13px;
  color: var(--gp-text-muted);
  text-decoration: line-through;
  font-weight: 400;
}
.gp-omnibus-card {
  font-size: 10px;
  color: var(--gp-text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

/* PDP — cena promo */
.gp-pdp-price {
  margin: 16px 0 24px;
}
.gp-pdp-price__promo {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.gp-pdp-price__current {
  font-size: 32px;
  font-weight: 900;
  color: var(--gp-accent);
  line-height: 1;
}
.gp-pdp-price__current small { font-size: 16px; font-weight: 600; }
.gp-pdp-price__original {
  font-size: 18px;
  color: var(--gp-text-muted);
  text-decoration: line-through;
  font-weight: 400;
}
.gp-pdp-price__regular {
  font-size: 32px;
  font-weight: 900;
  color: var(--gp-text);
  line-height: 1;
}
.gp-pdp-price__regular small { font-size: 16px; font-weight: 500; color: var(--gp-text-muted); }

/* Savings badge */
.gp-pdp-price__saving {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(229, 62, 62, 0.08);
  color: #c53030;
  border: 1px solid rgba(229, 62, 62, 0.2);
  border-radius: var(--gp-radius-full);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
}

/* Omnibus notice */
.gp-omnibus-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gp-text-muted);
  background: var(--gp-bg-soft);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-sm);
  padding: 6px 12px;
  margin-top: 8px;
  width: fit-content;
  line-height: 1.4;
}
.gp-omnibus-notice i {
  color: var(--gp-accent);
  flex-shrink: 0;
}
.gp-omnibus-notice strong {
  color: var(--gp-text);
}

/* =============================================
   SHARE BUTTONS (PDP)
   ============================================= */

.gp-pdp-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gp-border);
}
.gp-pdp-share__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-text-muted);
  flex-shrink: 0;
}
.gp-pdp-share__btns {
  display: flex;
  gap: 8px;
}
.gp-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  color: white;
}
.gp-share-btn--fb  { background: #1877f2; }
.gp-share-btn--li  { background: #0a66c2; }
.gp-share-btn--wa  { background: #25d366; }
.gp-share-btn--copy {
  background: var(--gp-bg-soft);
  color: var(--gp-text);
  border: 1px solid var(--gp-border);
}
.gp-share-btn:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.gp-share-btn--copy:hover {
  background: var(--gp-accent);
  border-color: var(--gp-accent);
  color: var(--gp-primary);
}

/* =============================================
   SOCIAL PROOF WIDGET
   ============================================= */

.gp-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gp-text-muted);
  margin-top: 12px;
}
.gp-social-proof__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gp-success);
  flex-shrink: 0;
  animation: gpPulseGreen 2s ease-in-out infinite;
}
@keyframes gpPulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.gp-social-proof strong {
  color: var(--gp-text);
  font-weight: 700;
}

/* =============================================
   STICKY CTA BAR
   ============================================= */

.gp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--gp-bg-dark);
  border-top: 1px solid rgba(201,168,76,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
}
.gp-sticky-cta.is-visible {
  transform: translateY(0);
}
.gp-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.gp-sticky-cta__product {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.gp-sticky-cta__name {
  font-size: 14px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gp-sticky-cta__price {
  font-size: 13px;
  color: var(--gp-accent);
  font-weight: 700;
}
.gp-sticky-cta__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.gp-sticky-cta__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.gp-sticky-cta__close:hover { color: white; }

@media (max-width: 480px) {
  .gp-sticky-cta__product { display: none; }
  .gp-sticky-cta__inner { justify-content: center; }
  .gp-sticky-cta__actions .gp-btn { width: 100%; justify-content: center; }
}

/* =============================================
   COOKIE / GDPR BANNER
   ============================================= */

.gp-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  z-index: 999;
  background: var(--gp-bg-dark);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--gp-radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s ease;
  pointer-events: none;
}
.gp-cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.gp-cookie-banner__inner {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gp-cookie-banner__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.gp-cookie-banner__icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.gp-cookie-banner__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.gp-cookie-banner__text p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}
.gp-cookie-banner__link {
  color: var(--gp-accent);
  text-decoration: none;
}
.gp-cookie-banner__link:hover { text-decoration: underline; }
.gp-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gp-cookie-banner__actions .gp-btn--ghost {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.15);
  font-size: 13px;
}
.gp-cookie-banner__actions .gp-btn--ghost:hover {
  background: rgba(255,255,255,0.06);
}

@media (max-width: 600px) {
  .gp-cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--gp-radius-lg) var(--gp-radius-lg) 0 0;
    max-width: none;
  }
}

/* =============================================
   MINI-CART DRAWER
   ============================================= */

/* Cart trigger button styled like gp-nav__action */
.gp-nav__action--cart {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--gp-text-muted);
  transition: color 0.2s;
}
.gp-nav__action--cart:hover { color: var(--gp-accent); }

/* Badge bounce animation */
@keyframes gpBadgeBounce {
  0%, 100% { transform: scale(1); }
  30%       { transform: scale(1.6); }
  60%       { transform: scale(0.9); }
}
.gp-nav__action-badge.is-bouncing {
  animation: gpBadgeBounce 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Drawer wrapper */
.gp-mini-cart {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.35s;
}
.gp-mini-cart.is-open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

/* Backdrop */
.gp-mini-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 30, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gp-mini-cart.is-open .gp-mini-cart__backdrop {
  opacity: 1;
}

/* Drawer panel */
.gp-mini-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--gp-bg);
  border-left: 1px solid var(--gp-border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(10,14,30,0.18);
}
.gp-mini-cart.is-open .gp-mini-cart__panel {
  transform: translateX(0);
}

/* Head */
.gp-mini-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gp-border);
  background: var(--gp-bg-soft);
  flex-shrink: 0;
}
.gp-mini-cart__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gp-text);
}
.gp-mini-cart__title i { color: var(--gp-accent); }
.gp-mini-cart__count {
  background: var(--gp-accent);
  color: var(--gp-primary);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  min-width: 22px;
  text-align: center;
}
.gp-mini-cart__close {
  width: 36px;
  height: 36px;
  border-radius: var(--gp-radius-md);
  border: 1px solid var(--gp-border);
  background: transparent;
  cursor: pointer;
  color: var(--gp-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.gp-mini-cart__close:hover { background: #fee2e2; border-color: #fca5a5; color: #dc2626; }

/* Body scroll area */
.gp-mini-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
}
.gp-mini-cart__body::-webkit-scrollbar { width: 4px; }
.gp-mini-cart__body::-webkit-scrollbar-thumb { background: var(--gp-border); border-radius: 999px; }

/* Item row */
.gp-mini-cart__item {
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gp-border);
  transition: opacity 0.25s, transform 0.25s;
}
.gp-mini-cart__item:last-child { border-bottom: none; }
.gp-mini-cart__item.is-removing { opacity: 0; transform: translateX(20px); }

.gp-mini-cart__img {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md);
  background: var(--gp-bg-soft);
  overflow: hidden;
  flex-shrink: 0;
}
.gp-mini-cart__img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.gp-mini-cart__info { min-width: 0; }
.gp-mini-cart__name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-text);
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gp-mini-cart__name:hover { color: var(--gp-accent); }
.gp-mini-cart__meta { font-size: 11px; color: var(--gp-text-muted); display: block; }
.gp-mini-cart__total {
  font-size: 13px;
  font-weight: 700;
  color: var(--gp-accent);
  display: block;
  margin-top: 2px;
}

.gp-mini-cart__remove {
  width: 32px;
  height: 32px;
  border-radius: var(--gp-radius-md);
  border: 1px solid var(--gp-border);
  background: transparent;
  cursor: pointer;
  color: var(--gp-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.gp-mini-cart__remove:hover { background: #fee2e2; border-color: #fca5a5; color: #dc2626; }

/* Empty state */
.gp-mini-cart__empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--gp-text-muted);
}
.gp-mini-cart__empty i {
  font-size: 48px;
  opacity: 0.2;
  margin-bottom: 16px;
  display: block;
}
.gp-mini-cart__empty p { margin-bottom: 20px; font-size: 15px; }

/* Footer */
.gp-mini-cart__foot {
  flex-shrink: 0;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gp-border);
  background: var(--gp-bg-soft);
}

/* Shipping bar in mini-cart */
.gp-mini-cart__shipping {
  margin-bottom: 14px;
}
.gp-mini-cart__shipping-msg {
  font-size: 12px;
  color: var(--gp-text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}
.gp-mini-cart__shipping-msg strong { color: var(--gp-accent); }
.gp-mini-cart__shipping-ok {
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gp-mini-cart__ship-bar {
  height: 5px;
  background: var(--gp-border);
  border-radius: 999px;
  overflow: hidden;
}
.gp-mini-cart__ship-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gp-accent), #e5c570);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
}
.gp-mini-cart__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--gp-text-muted);
  margin-bottom: 4px;
}
.gp-mini-cart__total-row strong {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--gp-font-serif);
  color: var(--gp-accent);
}
.gp-mini-cart__continue {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--gp-text-muted);
  text-decoration: none;
  margin-top: 10px;
  transition: color 0.2s;
}
.gp-mini-cart__continue:hover { color: var(--gp-accent); }

@media (max-width: 480px) {
  .gp-mini-cart__panel { width: 100vw; }
}

/* =============================================
   SEARCH AUTOCOMPLETE DROPDOWN
   ============================================= */

.gp-search {
  position: relative;
}

.gp-search__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--gp-bg);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-lg);
  box-shadow: 0 20px 60px rgba(10, 14, 30, 0.18), 0 4px 16px rgba(10, 14, 30, 0.08);
  z-index: 500;
  overflow: hidden;
  /* Animate in */
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.gp-search__dropdown.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading state */
.gp-search__ac-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  color: var(--gp-text-muted);
  font-size: 13px;
}
.gp-search__ac-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--gp-border);
  border-top-color: var(--gp-accent);
  border-radius: 50%;
  animation: gpAcSpin 0.65s linear infinite;
  flex-shrink: 0;
}
@keyframes gpAcSpin {
  to { transform: rotate(360deg); }
}

/* Empty state */
.gp-search__ac-empty {
  padding: 20px 16px;
  text-align: center;
  color: var(--gp-text-muted);
  font-size: 13px;
}
.gp-search__ac-empty i {
  font-size: 28px;
  opacity: 0.25;
  display: block;
  margin-bottom: 8px;
}

/* Results list header */
.gp-search__ac-header {
  padding: 10px 16px 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-bottom: 1px solid var(--gp-border);
}

/* Single result item */
.gp-search__ac-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s ease;
  color: inherit;
  border-bottom: 1px solid var(--gp-border);
}
.gp-search__ac-item:last-of-type { border-bottom: none; }
.gp-search__ac-item:hover,
.gp-search__ac-item.is-active {
  background: rgba(201, 168, 76, 0.06);
}
.gp-search__ac-item.is-active { outline: none; }

/* Thumbnail */
.gp-search__ac-img {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md);
  background: var(--gp-bg-soft);
  overflow: hidden;
  flex-shrink: 0;
}
.gp-search__ac-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Text info */
.gp-search__ac-info { min-width: 0; }
.gp-search__ac-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-text);
  line-height: 1.35;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.gp-search__ac-name mark {
  background: rgba(201, 168, 76, 0.25);
  color: var(--gp-accent);
  border-radius: 2px;
  padding: 0 1px;
}
.gp-search__ac-meta {
  font-size: 11px;
  color: var(--gp-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.gp-search__ac-code { font-weight: 600; }
.gp-search__ac-cat {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gp-accent);
  border-radius: var(--gp-radius-sm);
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Price */
.gp-search__ac-price {
  text-align: right;
  flex-shrink: 0;
}
.gp-search__ac-price__current {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--gp-accent);
  font-family: var(--gp-font-serif);
  white-space: nowrap;
}
.gp-search__ac-price__old {
  display: block;
  font-size: 11px;
  color: var(--gp-text-muted);
  text-decoration: line-through;
}

/* Footer: "see all results" */
.gp-search__ac-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--gp-bg-soft);
  border-top: 1px solid var(--gp-border);
  font-size: 12px;
  color: var(--gp-text-muted);
  cursor: pointer;
  transition: background 0.12s;
  text-decoration: none;
}
.gp-search__ac-footer:hover { background: rgba(201, 168, 76, 0.06); }
.gp-search__ac-footer strong { color: var(--gp-accent); font-size: 13px; }
.gp-search__ac-footer i { color: var(--gp-accent); }

/* Focus ring on search input when dropdown is open */
.gp-search__input:focus { outline: none; }
.gp-search__bar:focus-within {
  box-shadow: 0 0 0 3px var(--gp-accent-glow);
  border-color: var(--gp-accent);
  border-radius: var(--gp-radius-lg);
}

@media (max-width: 768px) {
  .gp-search__dropdown {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--gp-radius-lg) var(--gp-radius-lg) 0 0;
    max-height: 70vh;
    overflow-y: auto;
  }
}

/* =============================================
   INFINITE SCROLL LOADER
   ============================================= */

.gp-infinite-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 20px;
  min-height: 80px;
}

.gp-infinite-loader__spinner {
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gp-infinite-loader__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gp-accent);
  animation: gpDotPulse 1.2s ease-in-out infinite;
}
.gp-infinite-loader__dot:nth-child(1) { animation-delay: 0s; }
.gp-infinite-loader__dot:nth-child(2) { animation-delay: 0.2s; }
.gp-infinite-loader__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes gpDotPulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* End-of-results message */
.gp-infinite-end {
  text-align: center;
  padding: 28px 0 12px;
  font-size: 13px;
  color: var(--gp-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.gp-infinite-end i { color: var(--gp-accent); }
