﻿:root {
  --gc-black: #0b0b0b;
  --gc-yellow: #ffc800;
  --gc-dark-gray: #141414;
  --gc-light-gray: #eaeaea;
  --gc-text-soft: #b8b8b8;
  --gc-border: #2a2a2a;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top right, #1b1b1b 0%, var(--gc-black) 45%, #060606 100%);
  color: var(--gc-light-gray);
}

a {
  color: var(--gc-light-gray);
}

a:hover {
  color: var(--gc-yellow);
}

.gc-topbar {
  background: #0f0f0f;
  color: var(--gc-text-soft);
  border-bottom: 1px solid #1f1f1f;
}

.gc-header {
  background: rgba(11, 11, 11, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 200, 0, 0.35);
  z-index: 1030;
}

.gc-logo {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-g {
  color: var(--gc-yellow);
}

.gc-search-box {
  background: #171717;
  border: 1px solid var(--gc-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
}

.gc-search-box i {
  color: var(--gc-text-soft);
}

.gc-search-box input {
  background: transparent;
  border: none;
  color: #fff;
  flex: 1;
  outline: none;
}

.gc-icon-link {
  border: 1px solid var(--gc-border);
  padding: 7px 10px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.gc-icon-link i {
  color: var(--gc-yellow);
}

.gc-badge {
  position: absolute;
  right: -5px;
  top: -6px;
  background: var(--gc-yellow);
  color: #000;
  font-size: 0.7rem;
  font-style: normal;
  line-height: 1;
  border-radius: 999px;
  padding: 3px 6px;
  font-weight: 700;
}

.gc-category-nav {
  background: rgba(20, 20, 20, 0.92);
  border-top: none;
  box-shadow: 0 -12px 20px rgba(0, 0, 0, 0.35) inset, 0 10px 18px rgba(0, 0, 0, 0.22);
}

.gc-category-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gc-category-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 10px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.gc-category-row::-webkit-scrollbar {
  display: none;
}

.gc-cat-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #363636;
  background: #141414;
  color: var(--gc-light-gray);
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.gc-cat-nav-btn:hover {
  background: var(--gc-yellow);
  border-color: var(--gc-yellow);
  color: #000;
}

.gc-cat-pill {
  text-decoration: none;
  color: var(--gc-light-gray);
  background: #1a1a1a;
  border: 1px solid #262626;
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.gc-cat-pill:hover {
  border-color: rgba(255, 200, 0, 0.55);
  transform: translateY(-1px);
}

.gc-pill-hot {
  border-color: rgba(255, 200, 0, 0.45);
}

.gc-overline {
  color: var(--gc-yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.75rem;
}

.gc-hero {
  position: relative;
  background-image: url("/static/images/hero.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.gc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 8, 8, 0.88) 20%, rgba(8, 8, 8, 0.58) 60%, rgba(8, 8, 8, 0.92) 100%);
}

.gc-hero > .container {
  position: relative;
  z-index: 1;
}

.gc-muted,
.text-soft {
  color: var(--gc-text-soft);
}

.gc-hero-panel,
.gc-panel,
.gc-filter-box,
.gc-product-card,
.gc-product-detail,
.gc-newsletter,
.gc-category-card,
.gc-brand-card,
.gc-benefit,
.gc-order-card,
.gc-empty-state {
  background: linear-gradient(140deg, rgba(22, 22, 22, 0.98), rgba(14, 14, 14, 0.98));
  border: 1px solid var(--gc-border);
  border-radius: 16px;
}

.gc-promo-item {
  border-bottom: 1px solid #262626;
  padding-bottom: 10px;
}

.gc-category-card {
  display: block;
  padding: 10px;
  transition: all 0.25s ease;
}

.gc-category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gc-category-card:hover,
.gc-brand-card:hover,
.gc-benefit:hover,
.gc-panel:hover,
.gc-filter-box:hover {
  border-color: rgba(255, 200, 0, 0.35);
  transform: translateY(-2px);
}

.gc-brand-card {
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 700;
  min-height: 80px;
}

.gc-benefit {
  text-align: center;
  padding: 18px;
}

.gc-benefit i {
  font-size: 1.4rem;
  color: var(--gc-yellow);
}

.gc-product-card {
  overflow: hidden;
  transition: all 0.25s ease;
}

.gc-product-card:hover {
  border-color: rgba(255, 200, 0, 0.45);
  transform: translateY(-3px);
}

.gc-product-image-wrap {
  background: #101010;
  display: block;
  border-bottom: 1px solid #222;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.gc-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gc-home-light-cards .gc-product-card {
  background: #f7f7f7;
  border-color: #dddddd;
}

.gc-home-light-cards .gc-product-card:hover {
  border-color: #ffc800;
}

.gc-home-light-cards .gc-product-image-wrap {
  background: #ffffff;
  border-bottom-color: #e6e6e6;
}

.gc-home-light-cards .gc-product-title {
  color: #131313;
}

.gc-home-light-cards .gc-muted {
  color: #5d5d5d;
}

.gc-home-light-cards .gc-chip {
  background: #efefef;
  border-color: #dedede;
  color: #222;
}

.gc-product-title {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}

.gc-price {
  color: var(--gc-yellow);
  font-weight: 700;
  font-size: 1.2rem;
}

.gc-old-price {
  color: var(--gc-text-soft);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.gc-chip {
  background: #1f1f1f;
  border: 1px solid #303030;
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 4px 9px;
}

.gc-btn-outline {
  background: transparent;
  color: var(--gc-light-gray);
  border: 1px solid #3d3d3d;
}

.gc-btn-outline:hover {
  color: #000;
  background: var(--gc-yellow);
  border-color: var(--gc-yellow);
}

.btn-warning {
  color: #000;
  font-weight: 600;
}

.gc-control {
  background: #101010;
  border: 1px solid #2c2c2c;
  color: #f1f1f1;
}

.gc-control:focus,
.form-select.gc-control:focus {
  background: #101010;
  color: #fff;
  border-color: var(--gc-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 200, 0, 0.2);
}

.gc-control::placeholder {
  color: #8b8b8b;
}

.gc-filter-links li + li {
  margin-top: 8px;
}

.gc-filter-links a {
  color: var(--gc-text-soft);
  text-decoration: none;
}

.gc-breadcrumb,
.gc-breadcrumb a {
  color: var(--gc-text-soft);
}

.gc-thumb {
  height: 90px;
  object-fit: cover;
  width: 100%;
}

.gc-spec-list .list-group-item {
  background: #111;
  color: var(--gc-light-gray);
  border-color: #252525;
  display: flex;
  justify-content: space-between;
}

.gc-tabs .nav-link {
  background: #131313;
  color: var(--gc-text-soft);
  border-color: #2b2b2b;
}

.gc-tabs .nav-link.active {
  background: #1b1b1b;
  color: var(--gc-yellow);
}

.gc-tab-content {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-top: none;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.gc-table {
  color: var(--gc-light-gray);
}

.gc-table th,
.gc-table td {
  background: #161616;
  border-color: #2a2a2a;
}

.gc-search-form {
  display: flex;
  gap: 10px;
}

.gc-cart-img {
  width: 82px;
  height: 82px;
  border-radius: 12px;
  object-fit: cover;
}

.gc-qty-input {
  width: 90px;
}

.gc-summary-box {
  top: 120px;
}

.gc-checkout-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.gc-checkout-steps span {
  background: #151515;
  border: 1px solid #292929;
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gc-text-soft);
}

.gc-checkout-steps span.active {
  border-color: rgba(255, 200, 0, 0.5);
  color: var(--gc-yellow);
}

.gc-footer {
  background: #080808;
  border-top: 1px solid #1f1f1f;
}

.gc-footer h6 {
  color: #fff;
}

.gc-footer-links a {
  text-decoration: none;
  color: var(--gc-text-soft);
}

.gc-footer-links li + li {
  margin-top: 8px;
}

.gc-link {
  color: var(--gc-yellow);
  text-decoration: none;
}

.gc-social {
  width: 38px;
  height: 38px;
  border: 1px solid #2d2d2d;
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.gc-social:hover {
  border-color: var(--gc-yellow);
}

.gc-alert {
  border: none;
}

.gc-empty-state {
  padding: 20px;
  color: var(--gc-text-soft);
}

.gc-checklist {
  padding-left: 18px;
}

.gc-checklist li + li {
  margin-top: 10px;
}

.gc-filter-group {
  border-top: 1px solid #232323;
  padding-top: 12px;
}

.gc-checklist-filter {
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow: auto;
  padding-right: 4px;
}

.gc-check-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gc-text-soft);
  font-size: 0.9rem;
  gap: 10px;
}

.gc-check-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gc-check-row small {
  color: #8f8f8f;
}

.gc-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gc-active-filter {
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--gc-light-gray);
  font-size: 0.82rem;
  background: #121212;
}

.gc-active-filter i {
  color: var(--gc-yellow);
}

.gc-pagination .page-link {
  background: #151515;
  border-color: #2a2a2a;
  color: var(--gc-light-gray);
}

.gc-pagination .page-item.active .page-link {
  background: var(--gc-yellow);
  border-color: var(--gc-yellow);
  color: #000;
}

.gc-pagination .page-link:hover {
  color: #000;
  background: var(--gc-yellow);
  border-color: var(--gc-yellow);
}

@media (max-width: 992px) {
  .gc-nav-actions span {
    display: none;
  }

  .gc-hero {
    min-height: 55vh;
  }

  .gc-category-row {
    padding-bottom: 12px;
    mask-image: none;
  }

  .gc-category-shell {
    gap: 0;
  }

  .gc-cat-nav-btn {
    display: none !important;
  }

  .gc-product-image-wrap {
    height: 180px;
  }

  .gc-checkout-steps {
    grid-template-columns: 1fr;
  }

  .gc-summary-box {
    position: static;
  }
}
