/* =============================================
   GadżetPro — 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;
}

/* 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;
}

.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;
}

.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;
}

/* ---- 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;
  }

  .gp-plp-sidebar {
    position: static;
  }

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

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

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

  .gp-pdp-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__right {
    display: none;
  }

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

  .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-footer__row {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .gp-plp-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .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;
  }
}
