/* ================================================================
   GALLERY NOIR CHIC — New Components
   Home Grid · Spotlight Slider · Services · Work Single · Blog · etc
   ================================================================ */

/* ══ HOME SECTION WRAPPER ══════════════════════════════════════════ */
.gnc-home-section {
  padding: 5rem 4rem 6rem;
  background: #FAFAFA;
}
.gnc-home-section--border {
  border-top: 1px solid rgba(0,0,0,0.06);
}
.gnc-home-section--dark {
  background: #0A0A0A;
  color: #FAFAFA;
}
.gnc-home-section__inner {
  max-width: 90rem;
  margin: 0 auto;
}
.gnc-home-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.gnc-home-section__view-all {
  font-size: clamp(8px, 1.1vw, 10px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(0,0,0,0.45);
  transition: opacity 0.2s;
}
.gnc-home-section__view-all:hover { opacity: 0.6; }
.gnc-home-section__view-all--light { color: rgba(255,255,255,0.4); }
.gnc-home-section__view-all--light:hover { color: rgba(255,255,255,0.8); opacity: 1; }

@media (max-width: 1280px) { .gnc-home-section { padding-left: 2.5rem; padding-right: 2.5rem; } }
@media (max-width: 768px)  { .gnc-home-section { padding: 3.5rem 1.25rem 4.5rem; } }

/* ══ HOME CARD GRID — 4-column, uniform, no zig-zag ═══════════════ */
.gnc-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.75rem;
  align-items: start;    /* top-align so all rows start at same line */
}
.gnc-home-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) { .gnc-home-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .gnc-home-grid--4 { grid-template-columns: 1fr; } }

/* ── Home Card ── */
.gnc-home-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.gnc-home-card__img-wrap {
  position: relative;
  overflow: hidden;
  background: #F0F0F0;
  margin-bottom: 1rem;
  outline: 1px solid rgba(0,0,0,0.04);
  outline-offset: -1px;
}

.gnc-home-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;   /* uniform portrait ratio — no zig-zag */
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(.25,.46,.45,.94);
}
.gnc-home-card:hover .gnc-home-card__img { transform: scale(1.04); }

.gnc-home-card__img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.2);
}
.gnc-home-card__img-placeholder--dark { color: rgba(255,255,255,0.15); }

/* Medium tag badge */
.gnc-home-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: rgba(250,250,250,0.9);
  color: rgba(0,0,0,0.55);
  padding: 3px 8px;
  pointer-events: none;
}

.gnc-home-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.gnc-home-card__title {
  font-family: var(--font-serif, 'Forum', Georgia, serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.2;
  margin: 0;
  font-synthesis: none;
}
.gnc-home-card--dark .gnc-home-card__title { color: rgba(255,255,255,0.88); }

.gnc-home-card__sub {
  font-size: clamp(8px, 1.1vw, 10px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  margin: 0;
}
.gnc-home-card--dark .gnc-home-card__sub { color: rgba(255,255,255,0.3); }

.gnc-home-card__price {
  font-size: clamp(0.8rem, 1.4vw, 0.9375rem);
  color: rgba(0,0,0,0.65);
  margin: 0.25rem 0 0;
  font-feature-settings: "tnum";
}

/* ── Dark card background ── */
.gnc-home-card--dark .gnc-home-card__img-wrap { background: rgba(255,255,255,0.06); }

/* ── Exhibition card — landscape image ratio ── */
.gnc-home-card__img--landscape {
  aspect-ratio: 4 / 3;  /* wider ratio for exhibition banners */
}
.gnc-home-card--exhibition .gnc-home-card__img-placeholder {
  aspect-ratio: 4 / 3;
}

/* ── Exhibition status tag colours ── */
.gnc-home-card__tag--current  { background: #0A0A0A; color: #FAFAFA; }
.gnc-home-card__tag--upcoming { background: rgba(250,250,250,0.92); color: rgba(0,0,0,0.6); }
.gnc-home-card__tag--past     { background: rgba(250,250,250,0.7);  color: rgba(0,0,0,0.4); }

/* ── Exhibition date line ── */
.gnc-home-card__date {
  font-size: clamp(8px, 1vw, 10px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin: 0;
}

/* ── Ensure ALL .gnc-home-card are fully clickable ── */
.gnc-home-card {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
/* Make sure nothing inside the card blocks pointer events */
.gnc-home-card * { pointer-events: none; }
/* Re-enable on the card itself so the <a> receives clicks */
.gnc-home-card { pointer-events: auto; }

/* ══ SPOTLIGHT SLIDER ══════════════════════════════════════════════ */

/* ── 0. BLOG GRID ────────────────────────────────────────────── */
.gnc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2.5rem;
  margin-top: 1rem;
}

.gnc-blog-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gnc-blog-card__img-link {
  display: block;
  overflow: hidden;
  margin-bottom: 1.25rem;
  outline: 1px solid rgba(0,0,0,.05);
  outline-offset: -1px;
}

.gnc-blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.gnc-blog-card__img-link:hover .gnc-blog-card__img { transform: scale(1.04); }

.gnc-blog-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Forum', Georgia, serif;
  font-size: 1.25rem;
  color: rgba(0,0,0,.15);
}

.gnc-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}

.gnc-blog-card__cat {
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid rgba(0,0,0,.18);
  color: rgba(0,0,0,.5);
}

.gnc-blog-card__date {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,.35);
}

.gnc-blog-card__title {
  font-family: 'Forum', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0A0A0A;
  margin: 0 0 0.75rem;
  font-synthesis: none;
}

.gnc-blog-card__title a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.gnc-blog-card__title a:hover { opacity: 0.65; }

.gnc-blog-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(0,0,0,.5);
  margin: 0 0 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gnc-blog-card__more {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.15);
  padding-bottom: 2px;
  align-self: flex-start;
  margin-top: auto;
  transition: color 0.2s, border-color 0.2s;
}
.gnc-blog-card__more:hover { color: #0A0A0A; border-color: rgba(0,0,0,.4); }

/* Blog responsive */
@media (max-width: 1024px) { .gnc-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .gnc-blog-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── 1. SERVICES SECTION ─────────────────────────────────────── */
.gnc-services {
  padding: 6rem 4rem 7rem;
  background: #0A0A0A;
  color: #FAFAFA;
}

@media (max-width: 1280px) { .gnc-services { padding-left: 2.5rem; padding-right: 2.5rem; } }
@media (max-width: 768px)  { .gnc-services { padding: 4rem 1.5rem 5rem; } }

.gnc-services__inner {
  max-width: 80rem;
  margin-inline: auto;
}

.gnc-services__header {
  margin-bottom: 4rem;
}

.gnc-services__heading {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-top: 1.25rem;
  color: #FAFAFA;
  font-synthesis: none;
}

.gnc-services__heading-em {
  color: rgba(255,255,255,0.45);
}

.gnc-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.gnc-services__card {
  padding: 2.5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}

.gnc-services__card:last-child { border-right: 0; }

.gnc-services__num {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 1.5rem;
}

.gnc-services__title {
  font-family: 'Forum', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #FAFAFA;
  margin: 0 0 1rem;
  font-synthesis: none;
}

.gnc-services__desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 0 0 1.5rem;
  flex: 1;
}

.gnc-services__cta {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gnc-services__cta:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* Services responsive */
@media (max-width: 1024px) {
  .gnc-services__grid { grid-template-columns: repeat(2, 1fr); }
  .gnc-services__card { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 2rem 1.5rem; }
  .gnc-services__card:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .gnc-services__card:nth-child(even) { border-right: 0; }
  .gnc-services__card:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 640px) {
  .gnc-services__grid { grid-template-columns: 1fr; }
  .gnc-services__card { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 2rem 0; }
  .gnc-services__card:last-child { border-bottom: 0; }
}

/* ── 2. ARTIST SPOTLIGHT SLIDER ──────────────────────────────── */
.gnc-spotlight {
  border-top: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  padding: 0;
}

/* Slider wrapper — all slides stack, only active is visible */
.gnc-spotlight__slider {
  position: relative;
}

/* Each slide */
.gnc-spotlight__slide {
  display: none;
  padding: 6rem 4rem;
}
.gnc-spotlight__slide--active { display: block; }

/* Slide fade-in animation */
@keyframes gnc-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gnc-spotlight__slide--active {
  animation: gnc-slide-in 0.5s ease both;
}

.gnc-spotlight__inner {
  max-width: 90rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
  align-items: center;
}

/* ── Text panel ── */
.gnc-spotlight__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gnc-spotlight__name {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: #0A0A0A;
  margin: 1.25rem 0 1.5rem;
  font-synthesis: none;
}
.gnc-spotlight__name em {
  color: rgba(0,0,0,0.35);
  font-style: normal;
}

.gnc-spotlight__bio {
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  line-height: 1.8;
  color: rgba(0,0,0,0.5);
  max-width: 36rem;
  margin: 0 0 2.5rem;
}

.gnc-spotlight__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gnc-spotlight__profile-link {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.gnc-spotlight__profile-link:hover { color: #0A0A0A; }

/* Slide counter (01 / 03) */
.gnc-spotlight__counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.3);
  font-feature-settings: "tnum";
}
.gnc-spotlight__counter-current { color: rgba(0,0,0,0.7); }

/* Admin tip */
.gnc-spotlight__tip {
  margin-top: 2rem;
  font-size: 11px;
  color: rgba(0,0,0,0.35);
  background: #FFFCE8;
  border: 1px solid #E8D800;
  padding: 0.75rem 1rem;
}
.gnc-spotlight__tip a { color: inherit; }

/* ── Portrait panel ── */
.gnc-spotlight__portrait {
  position: relative;
}

.gnc-spotlight__portrait-link { display: block; }

.gnc-spotlight__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  outline: 1px solid rgba(0,0,0,0.05);
  outline-offset: -1px;
  transition: transform 0.65s ease;
}
.gnc-spotlight__portrait-link:hover .gnc-spotlight__img { transform: scale(1.03); }

.gnc-spotlight__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.2);
}

.gnc-spotlight__badge {
  position: absolute;
  top: 1.5rem;
  right: -0.75rem;
  background: #0A0A0A;
  color: #FAFAFA;
  padding: 0.5rem 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.6;
  pointer-events: none;
}

/* ── Slider controls ── */
.gnc-spotlight__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0 4rem 2.5rem;
  max-width: 90rem;
  margin: 0 auto;
}

.gnc-spotlight__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(0,0,0,0.15);
  cursor: pointer;
  color: rgba(0,0,0,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.gnc-spotlight__btn:hover {
  border-color: #0A0A0A;
  color: #0A0A0A;
}

.gnc-spotlight__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.gnc-spotlight__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.gnc-spotlight__dot--active {
  background: #0A0A0A;
  transform: scale(1.3);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .gnc-spotlight__slide { padding: 4rem 2.5rem; }
  .gnc-spotlight__inner { grid-template-columns: 1fr 320px; gap: 3.5rem; }
  .gnc-spotlight__controls { padding: 0 2.5rem 2rem; }
}

@media (max-width: 768px) {
  .gnc-spotlight__slide { padding: 3rem 1.25rem 2rem; }
  .gnc-spotlight__inner { grid-template-columns: 1fr; gap: 2rem; }
  .gnc-spotlight__portrait { max-width: 280px; margin: 0 auto; order: -1; }
  .gnc-spotlight__controls { padding: 0 1.25rem 1.5rem; justify-content: center; }
  .gnc-spotlight__badge { right: -0.25rem; }
}

/* ── 3. SINGLE WORK PAGE ─────────────────────────────────────── */
.gnc-work-single {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: calc(100vh - 120px);
  margin-top: var(--gnc-header-h, 120px);
}

.gnc-work-single__image {
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: sticky;
  top: var(--gnc-header-h, 120px);
  height: calc(100vh - var(--gnc-header-h, 120px));
}

.gnc-work-single__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3rem;
}

.gnc-work-single__img-placeholder {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.2);
}

.gnc-work-single__info {
  padding: 4rem 3rem 6rem;
  border-left: 1px solid rgba(0,0,0,0.06);
  overflow-y: auto;
}

.gnc-work-single__back {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.gnc-work-single__back:hover { color: #0A0A0A; }

.gnc-work-single__title {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: #0A0A0A;
  margin: 0.75rem 0 0.5rem;
  font-synthesis: none;
}

.gnc-work-single__artist {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin: 0 0 2rem;
}

.gnc-work-single__details {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 0 0 2rem;
}

.gnc-work-single__details > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 1rem;
}

.gnc-work-single__details dt {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

.gnc-work-single__details dd {
  font-size: 13px;
  color: rgba(0,0,0,0.7);
  text-align: right;
  margin: 0;
}

.gnc-work-single__price {
  font-family: 'Forum', Georgia, serif;
  font-size: 2rem;
  color: #0A0A0A;
  margin: 0 0 2rem;
  font-synthesis: none;
}

.gnc-work-single__price-note {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.35);
  margin-top: 0.25rem;
}

/* ── Action buttons ──────────────────────────────────────────── */
.gnc-work-single__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.gnc-work-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  width: 100%;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.gnc-work-action--primary {
  background: #0A0A0A;
  color: #FAFAFA;
}
.gnc-work-action--primary:hover { background: #333; }

.gnc-work-action--secondary {
  background: transparent;
  color: #0A0A0A;
  border: 1px solid rgba(0,0,0,0.15);
}
.gnc-work-action--secondary:hover { background: rgba(0,0,0,0.04); }

.gnc-work-action--wishlist {
  background: transparent;
  color: rgba(0,0,0,0.5);
  border: 1px solid rgba(0,0,0,0.1);
  font-family: inherit;
}
.gnc-work-action--wishlist:hover { color: #c0392b; border-color: #c0392b; }

.gnc-work-action--wishlisted {
  color: #c0392b !important;
  border-color: #c0392b !important;
}
.gnc-work-action--wishlisted .gnc-wishlist-icon { fill: #c0392b; stroke: #c0392b; }

@keyframes gnc-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.gnc-work-action--pulse { animation: gnc-pulse 0.5s ease; }

.gnc-work-single__whatsapp {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #25D366;
  text-decoration: none;
  padding: 0.5rem 0;
  margin-bottom: 2.5rem;
  transition: opacity 0.2s;
}
.gnc-work-single__whatsapp:hover { opacity: 0.75; }

.gnc-work-single__desc {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 2rem;
}
.gnc-work-single__desc h3 {
  font-family: 'Forum', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  font-synthesis: none;
  margin: 0 0 1rem;
}

/* Work single responsive */
@media (max-width: 900px) {
  .gnc-work-single {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }
  .gnc-work-single__image {
    position: relative;
    top: 0;
    height: 60vw;
    min-height: 320px;
  }
  .gnc-work-single__img { padding: 1.5rem; }
  .gnc-work-single__info { padding: 2rem 1.25rem 4rem; }
}

/* ── 4. TABS (Exhibitions) ───────────────────────────────────── */
.gnc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gnc-tabs::-webkit-scrollbar { display: none; }

.gnc-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.gnc-tab:hover { color: #0A0A0A; }

.gnc-tab--active {
  color: #0A0A0A;
  border-bottom-color: #0A0A0A;
}

.gnc-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  font-size: 8px;
  letter-spacing: 0;
  color: rgba(0,0,0,0.5);
}

.gnc-tab--active .gnc-tab__count {
  background: #0A0A0A;
  color: #fff;
}

/* ── 5. SEARCH PAGE ──────────────────────────────────────────── */
.gnc-search-bar {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.gnc-search-bar__field {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0.75rem 1rem;
  background: #fff;
}

.gnc-search-bar__field--main {
  flex: 1;
  min-width: 200px;
}

.gnc-search-bar__input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
  width: 100%;
  color: #0A0A0A;
}
.gnc-search-bar__input::placeholder { color: rgba(0,0,0,0.3); }

.gnc-search-bar__select {
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0.75rem 1rem;
  background: #fff;
  font-size: 0.875rem;
  color: #0A0A0A;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(0,0,0,.35)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.gnc-search-bar__btn {
  padding: 0.75rem 2rem;
  background: #0A0A0A;
  color: #fff;
  border: none;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.gnc-search-bar__btn:hover { background: #333; }

.gnc-search-bar__clear {
  display: flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.2s;
}
.gnc-search-bar__clear:hover { color: #0A0A0A; }

/* A–Z Filter */
.gnc-az-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 2rem;
}

.gnc-az-filter__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.gnc-az-filter__item:hover { color: #0A0A0A; border-color: rgba(0,0,0,0.15); }
.gnc-az-filter__item--active {
  background: #0A0A0A;
  color: #fff !important;
  border-color: #0A0A0A;
}

.gnc-search-result-count {
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .gnc-search-bar { flex-direction: column; }
  .gnc-search-bar__select { width: 100%; }
  .gnc-search-bar__btn { width: 100%; }
}

/* ── 6. PERMANENT FLOATER ────────────────────────────────────── */
.gnc-floater {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.gnc-floater__toggle {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #0A0A0A;
  color: #FAFAFA;
  border: none;
  padding: 0.875rem 1.25rem;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
}
.gnc-floater__toggle:hover { background: #222; box-shadow: 0 6px 28px rgba(0,0,0,0.35); }

.gnc-floater__icon--close { display: none; }

.gnc-floater--open .gnc-floater__icon--open  { display: none; }
.gnc-floater--open .gnc-floater__icon--close { display: block; }

.gnc-floater__wishlist-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #c0392b;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 9px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.gnc-floater__panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  width: 280px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform-origin: bottom right;
}

.gnc-floater--open .gnc-floater__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.gnc-floater__heading {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  padding: 1rem 1.25rem 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.gnc-floater__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  color: #0A0A0A;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.15s;
}
.gnc-floater__item:last-child { border-bottom: 0; }
.gnc-floater__item:hover { background: rgba(0,0,0,0.03); }

.gnc-floater__item--whatsapp strong { color: #25D366; }
.gnc-floater__item--wishlist strong { color: #c0392b; }

.gnc-floater__item-icon { font-size: 18px; line-height: 1; flex-shrink: 0; }

.gnc-floater__item strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1px;
}

.gnc-floater__item span span,
.gnc-floater__wishlist-text {
  font-size: 11px;
  color: rgba(0,0,0,0.4);
}

@media (max-width: 480px) {
  .gnc-floater {
    bottom: 1rem;
    right: 1rem;
  }
  .gnc-floater__panel {
    width: calc(100vw - 2rem);
    right: 0;
  }
  .gnc-floater__label { display: none; }
}

/* ── 7. GENERAL BUTTON ───────────────────────────────────────── */
.gnc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
  font-family: inherit;
}

.gnc-btn--dark {
  background: #0A0A0A;
  color: #FAFAFA;
}
.gnc-btn--dark:hover { background: #333; }

.gnc-btn--outline {
  background: transparent;
  color: #0A0A0A;
  border: 1px solid rgba(0,0,0,0.2);
}
.gnc-btn--outline:hover { background: rgba(0,0,0,0.04); }
