/**
 * Gommans & Co - Nice to Wear storefront theme v9
 */
:root {
  --gc-font: 'Poppins', system-ui, sans-serif;
  --gc-black: #1a1a1a;
  --gc-red: #e31e24;
  --gc-red-dark: #c4191f;
  --gc-orange: #e8a23a;
  --gc-peach: #f6e6d8;
  --gc-teal: #1a7f7a;
  --gc-blue: #1f4f8a;
  --gc-navy: #16324f;
  --gc-gray-100: #f6f5f3;
  --gc-gray-200: #e6e4e1;
  --gc-gray-500: #6b6b6b;
  --gc-container: 1200px;
  --gc-radius: 6px;
  --gc-shadow: 0 2px 10px rgba(26, 26, 26, 0.06);
  --gc-shadow-hover: 0 12px 28px rgba(26, 26, 26, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }

/* ── Reset OpenCart chrome ── */
.gc-theme {
  font-family: var(--gc-font);
  color: var(--gc-black);
  font-size: 15px;
  line-height: 1.6;
  background: #fff;
  margin: 0;
  padding: 0;
}
.gc-theme #top,
.gc-theme header > .container > .row,
.gc-theme .breadcrumb { display: none !important; }
.gc-theme a { color: inherit; text-decoration: none; transition: color .15s ease; }
.gc-theme a:hover { color: var(--gc-red); }
.gc-theme .container {
  max-width: var(--gc-container);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.gc-theme img:not(.gc-footer__sectigo) { max-width: 100%; height: auto; }

/* ── Buttons ── */
.nt-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--gc-radius);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.2;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.nt-btn--primary { background: var(--gc-red); color: #fff !important; border-color: var(--gc-red); }
.nt-btn--primary:hover { background: var(--gc-red-dark); border-color: var(--gc-red-dark); color: #fff !important; }
.nt-btn--outline { border-color: var(--gc-black); color: var(--gc-black) !important; background: transparent; }
.nt-btn--outline:hover { background: var(--gc-black); color: #fff !important; }
.nt-btn--light { background: #fff; color: var(--gc-black) !important; border-color: #fff; }
.nt-btn--light:hover { background: var(--gc-red); border-color: var(--gc-red); color: #fff !important; }
.nt-btn--sm { padding: 10px 22px; font-size: 11px; }

.nt-section-head { text-align: center; margin: 0 0 36px; }
.nt-section-head h2 { font-size: clamp(26px, 3vw, 32px); font-weight: 700; margin: 0 0 8px; color: var(--gc-black); letter-spacing: -.01em; }
.nt-section-head p { color: var(--gc-gray-500); margin: 0; font-size: 15px; }
.nt-section-cta { text-align: center; margin-top: 32px; }
.nt-link { color: var(--gc-red); font-weight: 600; font-size: 14px; }

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.gc-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #fff;
  box-shadow: 0 1px 0 var(--gc-gray-200);
}
.gc-header__bar { background: #fff; }
.gc-header__shell {
  padding: 8px 0 10px;
}
.gc-header__row--top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px 16px;
  min-height: 54px;
}
.gc-header__lang {
  flex: 0 0 auto;
}
.gc-lang-switcher__flags {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.gc-lang-switcher__btn {
  border: 2px solid transparent;
  background: transparent;
  padding: 1px;
  border-radius: 4px;
  line-height: 0;
  cursor: pointer;
}
.gc-lang-switcher__btn.is-active {
  border-color: var(--gc-red);
}
.gc-lang-switcher__btn img {
  display: block;
  border-radius: 2px;
  width: 22px;
  height: auto;
}
.gc-header__logo {
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(280px, 50vw);
  overflow: hidden;
}
.gc-header__logo a { display: block; line-height: 0; max-width: 100%; }
.gc-header__logo img {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.gc-header__logotype { font-size: 22px; font-weight: 800; color: var(--gc-red); }

.gc-header__row--nav {
  border-top: 1px solid var(--gc-gray-200);
  margin-top: 6px;
  padding-top: 8px;
}
.gc-header__nav {
  display: flex !important;
  justify-content: center;
  width: 100%;
  min-width: 0;
}
.gc-header__nav-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 4px;
  max-width: 100%;
}
.gc-header__nav-list > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}
.gc-header__nav-list > li > a {
  display: block;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #333 !important;
  white-space: nowrap;
}
.gc-header__nav-list > li > a:hover { color: var(--gc-red) !important; }
.gc-header__nav-list .fa-angle-down { font-size: 12px; margin-left: 4px; }

/* Shop dropdown */
.gc-nav-shop { position: static; }
@media (min-width: 992px) {
  .gc-nav-shop { position: relative; }
}
.gc-nav-shop__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.gc-nav-shop__caret {
  font-size: 12px;
  transition: transform .2s ease;
}
.gc-shop-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: min(760px, calc(100vw - 32px));
  max-width: 920px;
  width: max-content;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  pointer-events: none;
}
.gc-shop-panel__inner {
  background: #fff;
  border: 1px solid var(--gc-gray-200);
  border-radius: var(--gc-radius);
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
  padding: 18px 20px 14px;
}
.gc-shop-panel__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.gc-shop-panel__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gc-gray-500);
  flex-shrink: 0;
}
.gc-shop-panel__search-wrap {
  position: relative;
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 180px;
}
.gc-shop-panel__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gc-gray-500);
  font-size: 13px;
  pointer-events: none;
}
.gc-shop-panel__search {
  width: 100%;
  height: 38px;
  padding: 0 12px 0 34px;
  border: 1px solid var(--gc-gray-200);
  border-radius: 999px;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.gc-shop-panel__search:focus {
  outline: none;
  border-color: rgba(227,30,36,.45);
  box-shadow: 0 0 0 3px rgba(227,30,36,.1);
  background: #fff;
}
.gc-shop-panel__body {
  max-height: min(62vh, 520px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  margin-right: -4px;
}
.gc-shop-panel__body::-webkit-scrollbar { width: 6px; }
.gc-shop-panel__body::-webkit-scrollbar-thumb {
  background: #d5d5d5;
  border-radius: 999px;
}
.gc-shop-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px 22px;
}
.gc-shop-panel__empty {
  margin: 24px 0 8px;
  text-align: center;
  color: var(--gc-gray-500);
  font-size: 14px;
}
.gc-shop-panel__group-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gc-red);
  margin: 0 0 10px;
}
.gc-shop-panel__group-title:hover { color: var(--gc-black); text-decoration: none; }
.gc-shop-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gc-shop-panel__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  border-radius: 8px;
  color: #333 !important;
  font-size: 14px;
  font-weight: 500;
}
.gc-shop-panel__item:hover {
  background: var(--gc-gray-100);
  color: var(--gc-red) !important;
  text-decoration: none;
}
.gc-shop-panel__thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gc-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-shop-panel__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gc-shop-panel__thumb--letter {
  font-size: 15px;
  font-weight: 800;
  color: var(--gc-red);
  background: #fde8e9;
}
.gc-shop-panel__name { line-height: 1.3; display: block; }
.gc-shop-panel__text { min-width: 0; }
.gc-shop-panel__meta {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gc-gray-500);
  line-height: 1.25;
}
.gc-shop-panel__group.is-filtered-out,
.gc-shop-panel__group [data-shop-item].is-filtered-out,
.gc-shop-panel__card.is-filtered-out {
  display: none !important;
}
.gc-shop-panel__group.is-empty {
  display: none !important;
}
.gc-shop-panel__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: var(--gc-radius);
  border: 1px solid var(--gc-gray-200);
  color: #333 !important;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.gc-shop-panel__card:hover {
  border-color: rgba(227,30,36,.35);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
  color: var(--gc-red) !important;
  text-decoration: none;
}
.gc-shop-panel__card-media {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gc-gray-100);
}
.gc-shop-panel__card-media img { width: 100%; height: 100%; object-fit: cover; }
.gc-shop-panel__card-media--letter {
  font-size: 22px;
  font-weight: 800;
  color: var(--gc-red);
  background: #fde8e9;
}
.gc-shop-panel__card-name { font-size: 14px; font-weight: 600; line-height: 1.3; }
.gc-shop-panel__footer {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gc-gray-200);
}
.gc-shop-panel__footer-link {
  font-size: 13px;
  font-weight: 600;
  color: #555 !important;
}
.gc-shop-panel__footer-link:hover { color: var(--gc-red) !important; }
.gc-shop-panel__footer-link--primary {
  color: var(--gc-red) !important;
  font-weight: 700;
}
@media (min-width: 992px) {
  .gc-nav-shop.has-panel:hover .gc-shop-panel,
  .gc-nav-shop.has-panel.is-open .gc-shop-panel {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .gc-nav-shop.has-panel:hover .gc-nav-shop__caret,
  .gc-nav-shop.has-panel.is-open .gc-nav-shop__caret {
    transform: rotate(180deg);
  }
}

.gc-header__nav-list .dropdown-menu {
  border: none;
  border-radius: var(--gc-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 8px 0;
  min-width: 200px;
}
.gc-header__nav-list .dropdown-menu a { padding: 10px 20px; font-size: 14px; color: #333 !important; display: block; }
.gc-header__nav-list .dropdown-menu a:hover { background: var(--gc-gray-100); color: var(--gc-red) !important; }

.gc-header__actions {
  flex: 0 0 auto;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  min-width: 0;
}
.gc-header__search { width: min(200px, 28vw); flex-shrink: 1; min-width: 120px; max-width: 220px; }
.gc-search.input-group { width: 100%; display: flex; }
.gc-search .form-control {
  height: 36px;
  border: 1px solid var(--gc-gray-200);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  box-shadow: none;
  font-size: 12px;
  background: var(--gc-gray-100);
  flex: 1;
  transition: border-color .15s ease, background .15s ease;
}
.gc-search .form-control:focus {
  background: #fff;
  border-color: rgba(227, 30, 36, 0.35);
  outline: none;
  box-shadow: none;
}
.gc-search .btn {
  height: 36px;
  border: 1px solid var(--gc-gray-200);
  border-left: 0;
  border-radius: 0 18px 18px 0;
  background: var(--gc-gray-100);
  color: #777;
  padding: 0 12px;
  transition: color .15s ease, background .15s ease;
}
.gc-search .btn:hover { color: var(--gc-red); background: #fff; }
.gc-header__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #333;
  font-size: 17px;
  flex-shrink: 0;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.gc-header__icon:hover { background: var(--gc-gray-100); color: var(--gc-red); border-color: var(--gc-gray-200); }
.gc-header__menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  padding: 8px;
  color: #333;
  cursor: pointer;
}

.gc-cart { margin: 0; }
.gc-cart .gc-cart__btn {
  background: var(--gc-red) !important;
  border: none !important;
  box-shadow: none !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.gc-cart .gc-cart__btn:hover { background: var(--gc-red-dark) !important; }
.gc-cart__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.gc-cart__icon .fa { font-size: 15px; color: #fff !important; }
.gc-cart__badge {
  position: absolute;
  top: -5px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #fff;
  color: var(--gc-red);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 0 0 1px var(--gc-red);
}
.gc-cart__count {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.gc-cart .dropdown-menu {
  border-radius: var(--gc-radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
  min-width: 300px;
  right: 0;
  left: auto;
}

/* ══════════════════════════════════════
   HERO — 50/50 split
   ══════════════════════════════════════ */
.nt-hero {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}
.nt-hero__text {
  flex: 1 1 50%;
  width: 50%;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(227, 30, 36, 0.06), transparent 55%),
    linear-gradient(160deg, #faf0e6 0%, var(--gc-peach) 55%, #f3dcc8 100%);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.nt-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gc-red);
  margin: 0 0 14px;
}
.nt-hero__title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: var(--gc-black);
  max-width: 480px;
  letter-spacing: -.02em;
}
.nt-hero__desc {
  color: #555;
  margin: 0 0 30px;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.65;
}
.nt-hero__visual {
  flex: 1 1 50%;
  width: 50%;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.18), transparent 45%),
    linear-gradient(145deg, #f0b24a 0%, var(--gc-orange) 45%, #d4892a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  min-height: 400px;
}
.nt-hero__visual img {
  max-width: 92%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.2));
}
.nt-hero__badge { display: none !important; }

/* ══════════════════════════════════════
   CATEGORIES — circles
   ══════════════════════════════════════ */
.nt-categories { padding: 64px 0; background: #fff; }
.nt-cat-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
}
.nt-cat-item {
  text-align: center;
  color: var(--gc-black);
  width: 130px;
  flex: 0 0 auto;
}
.nt-cat-item__circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nt-cat-item:hover .nt-cat-item__circle {
  transform: translateY(-3px);
  box-shadow: var(--gc-shadow-hover);
  border-color: rgba(227, 30, 36, 0.2);
}
.nt-cat-item__circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
.nt-cat-item__letter {
  font-size: 30px;
  font-weight: 700;
  color: var(--gc-red);
  letter-spacing: -.02em;
}
.nt-cat-item__name { font-weight: 600; font-size: 14px; display: block; }
.nt-cat-item__meta { display: block; margin-top: 2px; font-size: 11px; color: var(--gc-gray-500); font-weight: 500; }
/* Brand-aligned neutrals instead of candy pastels */
.nt-cat-item--pink .nt-cat-item__circle { background: #f8e9de; }
.nt-cat-item--blue .nt-cat-item__circle { background: #efe8e0; }
.nt-cat-item--orange .nt-cat-item__circle { background: #f4ddc8; }
.nt-cat-item--purple .nt-cat-item__circle { background: #f1e4d8; }
.nt-cat-item--red .nt-cat-item__circle { background: #f7e0df; }

/* ══════════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════════ */
.nt-products { padding: 56px 0; }
.nt-products--featured { background: var(--gc-gray-100); }
.nt-products--trending { background: #fff; }

.nt-product-grid { margin-left: -12px; margin-right: -12px; }
.nt-product-grid::before, .nt-product-grid::after { display: none; }
.nt-product-grid > [class*="col-"] { padding-left: 12px; padding-right: 12px; margin-bottom: 24px; }

.nt-product-card,
.gc-theme .product-thumb {
  background: #fff;
  border-radius: var(--gc-radius);
  overflow: hidden;
  border: 1px solid var(--gc-gray-200);
  box-shadow: var(--gc-shadow);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.nt-product-card:hover,
.gc-theme .product-thumb:hover {
  box-shadow: var(--gc-shadow-hover);
  border-color: rgba(227, 30, 36, 0.22);
  transform: translateY(-3px);
}
.nt-product-card .image,
.gc-theme .product-thumb .image {
  position: relative;
  background: #fafafa;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 1px solid var(--gc-gray-200);
}
.nt-product-card .image a,
.gc-theme .product-thumb .image a {
  display: block;
  height: 100%;
}
.nt-product-card .image img,
.gc-theme .product-thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.nt-product-card:hover .image img,
.gc-theme .product-thumb:hover .image img { transform: scale(1.05); }

.nt-product-card__cart {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gc-red);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s;
  z-index: 2;
}
.nt-product-card:hover .nt-product-card__cart { opacity: 1; transform: translateY(0); }
.nt-product-card__cart:hover { background: var(--gc-red-dark); }

.nt-product-card .caption,
.gc-theme .product-thumb .caption {
  padding: 18px 16px 20px;
  text-align: center;
  flex: 1;
}
.nt-product-card .caption h4,
.gc-theme .product-thumb .caption h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.35;
  letter-spacing: .01em;
}
.nt-product-card .caption h4 a,
.gc-theme .product-thumb .caption h4 a { color: var(--gc-black); }
.nt-product-card .price,
.gc-theme .product-thumb .price {
  color: var(--gc-red);
  font-weight: 700;
  font-size: 15px;
  margin: 0;
}
.gc-price-main,
.gc-pdp-price {
  display: block;
  color: var(--gc-red) !important;
  font-weight: 700 !important;
  font-size: 15px;
  line-height: 1.2;
}
.gc-pdp-price { font-size: 32px !important; }
.gc-price-incl,
.gc-theme .product-thumb .price-tax,
.gc-theme .price-tax {
  display: block;
  color: var(--gc-gray-500) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-top: 2px;
}
.gc-pdp-price-incl {
  display: block;
  color: var(--gc-gray-500);
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}
.gc-theme .product-thumb .caption p:not(.price) { display: none !important; }
.gc-theme .product-thumb .button-group { display: none !important; }
.gc-featured h3, .gc-theme .gommans-featured-module h3 { display: none !important; }

/* ══════════════════════════════════════
   PROMO BANNERS
   ══════════════════════════════════════ */
.nt-promos { padding: 0 0 56px; background: #fff; }
.nt-promos__row { margin-bottom: 20px; }
.nt-promos__row > [class*="col-"] { margin-bottom: 20px; }
.nt-promo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--gc-radius);
  overflow: hidden;
  min-height: 200px;
  padding: 32px 36px;
  color: #fff;
  height: 100%;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--gc-shadow);
}
.nt-promo:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--gc-shadow-hover); }
.nt-promo h3 { font-size: 22px; font-weight: 700; margin: 0 0 16px; color: #fff; line-height: 1.25; }
.nt-promo img { max-height: 130px; max-width: 42%; object-fit: contain; flex-shrink: 0; }
.nt-promo .nt-btn {
  background: #fff;
  color: var(--gc-black) !important;
  border-color: #fff;
}
.nt-promo .nt-btn:hover {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}
.nt-promo--teal { background: linear-gradient(135deg, #1a7f7a 0%, #146864 100%); }
.nt-promo--blue { background: linear-gradient(135deg, #1f4f8a 0%, #16324f 100%); }
.nt-promo--wide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--gc-navy) 0%, #0f2438 100%);
  border-radius: var(--gc-radius);
  padding: 40px 48px;
  min-height: 220px;
  color: #fff;
  text-decoration: none;
  margin-top: 0;
  box-shadow: var(--gc-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nt-promo--wide:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--gc-shadow-hover); }
.nt-promo--wide img { max-height: 170px; max-width: 40%; object-fit: contain; }
.nt-promo--wide .nt-btn {
  background: #fff;
  color: var(--gc-black) !important;
  border-color: #fff;
}
.nt-promo--wide .nt-btn:hover {
  background: transparent;
  color: #fff !important;
  border-color: #fff;
}

/* ══════════════════════════════════════
   BRANDS
   ══════════════════════════════════════ */
.nt-brands { padding: 56px 0; background: var(--gc-gray-100); }
.nt-brands__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.nt-brand-card {
  flex: 1 1 200px;
  max-width: 280px;
  background: #fff;
  border-radius: var(--gc-radius);
  padding: 48px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--gc-black);
  border: 1px solid var(--gc-gray-200);
  box-shadow: var(--gc-shadow);
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.nt-brand-card:hover {
  transform: translateY(-3px);
  color: var(--gc-red);
  border-color: rgba(227, 30, 36, 0.25);
  box-shadow: var(--gc-shadow-hover);
}

/* ══════════════════════════════════════
   SALE BANNER
   ══════════════════════════════════════ */
.nt-sale-banner {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(227, 30, 36, 0.35), transparent 50%),
    linear-gradient(135deg, #141414 0%, #2a1516 48%, #a3161b 100%);
  padding: 56px 0;
  color: #fff;
}
.nt-sale-banner__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nt-sale-banner h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; margin: 0 0 8px; color: #fff; letter-spacing: -.01em; }
.nt-sale-banner p { opacity: .9; margin: 0 0 22px; font-size: 15px; max-width: 420px; }
.nt-sale-banner__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 11px; opacity: .85; margin: 0 0 8px; }
.nt-sale-banner img { max-height: 190px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 12px 24px rgba(0,0,0,.25)); }

/* ══════════════════════════════════════
   MINI LISTS (3 columns)
   ══════════════════════════════════════ */
.nt-mini-lists { padding: 56px 0; background: #fff; }
.nt-mini-lists__title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gc-red);
}
.nt-mini-list { list-style: none; padding: 0; margin: 0; }
.nt-mini-list > li { list-style: none; margin: 0; padding: 0; }
.nt-mini-list__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gc-gray-200);
  color: inherit;
}
.nt-mini-list__item:hover { color: var(--gc-red); }
.nt-mini-list__item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--gc-radius);
  flex-shrink: 0;
}
.nt-mini-list__name { flex: 1; font-size: 13px; font-weight: 500; min-width: 0; }
.nt-mini-list__price { font-weight: 700; color: var(--gc-red); font-size: 13px; white-space: nowrap; }

/* ══════════════════════════════════════
   TESTIMONIAL
   ══════════════════════════════════════ */
.nt-testimonial {
  background-color: var(--gc-red);
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}
.nt-testimonial blockquote {
  font-size: 21px;
  font-weight: 500;
  border: none;
  margin: 0 auto 16px;
  padding: 0;
  max-width: 680px;
  line-height: 1.5;
}
.nt-testimonial cite { font-style: normal; opacity: .85; font-size: 14px; }

.nt-editorial { padding: 64px 0; background: #fff; }
.nt-editorial__inner { align-items: center; }
.nt-editorial__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 600; color: var(--gc-red); margin: 0 0 12px; }
.nt-editorial h2 { font-size: 30px; font-weight: 700; margin: 0 0 16px; }
.nt-editorial__text p { color: var(--gc-gray-500); line-height: 1.7; margin: 0 0 20px; }
.nt-editorial__media img { width: 100%; border-radius: var(--gc-radius); object-fit: cover; }

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.nt-faq { padding: 64px 0; background: #fff; }
.nt-faq h2 { font-size: 30px; font-weight: 700; margin: 0 0 28px; }
.nt-faq__media { display: flex; align-items: center; justify-content: center; }
.nt-faq__media img {
  width: 100%;
  max-width: 380px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
}
.nt-faq__list .panel { border-radius: var(--gc-radius); border-color: var(--gc-gray-200); box-shadow: none; margin-bottom: 8px; }
.nt-faq__list .panel-heading { background: var(--gc-gray-100); padding: 0; }
.nt-faq__list .panel-title { margin: 0; }
.nt-faq__list .panel-title a {
  display: block;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gc-black) !important;
}
.nt-faq__list .panel-body { font-size: 14px; color: #555; line-height: 1.6; }
.nt-faq__more { margin-top: 20px; }
.nt-faq__more .btn,
.nt-faq__more .btn-default {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--gc-radius);
  border: 2px solid var(--gc-black);
  background: transparent;
  color: var(--gc-black);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .2s ease, color .2s ease;
}
.nt-faq__more .btn:hover,
.nt-faq__more .btn-default:hover {
  background: var(--gc-black);
  color: #fff;
  border-color: var(--gc-black);
}

/* FAQ page */
.gc-faq-page { background: #fff; }
.gc-faq-hero {
  background: linear-gradient(135deg, var(--gc-gray-100) 0%, #fff 55%);
  padding: 28px 0 48px;
  border-bottom: 1px solid var(--gc-gray-200);
}
.gc-faq-hero__crumb { background: transparent; margin-bottom: 20px; padding: 0; }
.gc-faq-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin: 0 0 12px; color: var(--gc-black); }
.gc-faq-hero__subtitle { font-size: 18px; font-weight: 600; color: var(--gc-red); margin: 0 0 10px; }
.gc-faq-hero__intro { font-size: 16px; color: #555; line-height: 1.7; max-width: 560px; margin: 0 0 24px; }
.gc-faq-hero__row { align-items: center; }
.gc-faq-hero__media { display: flex; justify-content: center; }
.gc-faq-hero__media img {
  width: 100%;
  max-width: 340px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}
.gc-faq-search {
  position: relative;
  max-width: 420px;
}
.gc-faq-search .fa-search {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gc-gray-500);
}
.gc-faq-search__input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--gc-gray-200);
  border-radius: 24px;
  padding: 0 20px 0 44px;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.gc-faq-search__input:focus { outline: none; border-color: var(--gc-red); box-shadow: 0 0 0 3px rgba(227,30,36,.12); }
.gc-faq-body { padding: 48px 15px 64px; }
.gc-faq-nav-wrap { margin-bottom: 32px; }
.gc-faq-nav {
  position: sticky;
  top: 100px;
  background: var(--gc-gray-100);
  border-radius: var(--gc-radius);
  padding: 20px;
  border: 1px solid var(--gc-gray-200);
}
.gc-faq-nav__title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gc-gray-500); margin: 0 0 12px; }
.gc-faq-nav__list { list-style: none; margin: 0; padding: 0; }
.gc-faq-nav__list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--gc-gray-200);
  color: #333;
  font-weight: 500;
  font-size: 14px;
}
.gc-faq-nav__list li:last-child a { border-bottom: 0; }
.gc-faq-nav__list a:hover { color: var(--gc-red); text-decoration: none; }
.gc-faq-section { margin-bottom: 40px; scroll-margin-top: 100px; }
.gc-faq-section__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gc-red);
  display: inline-block;
}
.gc-faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.gc-faq-item {
  border: 1px solid var(--gc-gray-200);
  border-radius: var(--gc-radius);
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.gc-faq-item[open] { box-shadow: 0 8px 24px rgba(0,0,0,.06); border-color: rgba(227,30,36,.25); }
.gc-faq-item__question {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--gc-black);
  position: relative;
  user-select: none;
}
.gc-faq-item__question::-webkit-details-marker { display: none; }
.gc-faq-item__icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gc-red);
  font-size: 14px;
  transition: transform .2s ease;
}
.gc-faq-item[open] .gc-faq-item__icon { transform: translateY(-50%) rotate(45deg); }
.gc-faq-item__answer {
  padding: 0 20px 18px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}
.gc-faq-item__answer p:last-child { margin-bottom: 0; }
.gc-faq-no-match, .gc-faq-empty { color: var(--gc-gray-500); font-size: 16px; }
.gc-faq-cta { margin-top: 16px; }
.gc-faq-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--gc-black);
  color: #fff;
  border-radius: var(--gc-radius);
  padding: 28px 32px;
}
.gc-faq-cta__inner h3 { margin: 0; font-size: 20px; font-weight: 700; }
.gc-faq-cta__btn {
  background: var(--gc-red) !important;
  border-color: var(--gc-red) !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
}
@media (max-width: 991px) {
  .gc-faq-nav { position: static; }
  .gc-faq-hero__media { margin-top: 24px; }
  .gc-faq-cta__inner { text-align: center; justify-content: center; }
}

/* About page */
.gc-about-page { background: #fff; }
.gc-about-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 48%, var(--gc-red) 160%);
  color: #fff;
  padding: 28px 0 72px;
  overflow: hidden;
}
.gc-about-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.gc-about-hero__crumb { background: transparent; margin-bottom: 24px; padding: 0; }
.gc-about-hero__crumb a { color: rgba(255,255,255,.75); }
.gc-about-hero__crumb > li + li:before { color: rgba(255,255,255,.45); }
.gc-about-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.gc-about-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(227,30,36,.9);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.gc-about-hero h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; margin: 0 0 14px; line-height: 1.1; }
.gc-about-hero__subtitle { font-size: 20px; line-height: 1.5; color: rgba(255,255,255,.88); margin: 0 0 28px; max-width: 560px; }
.gc-about-hero__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  color: var(--gc-black);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.gc-about-hero__badge-year { font-size: 30px; font-weight: 800; line-height: 1; color: var(--gc-red); }
.gc-about-hero__badge-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.gc-about-body { padding: 0 15px 72px; margin-top: -36px; position: relative; z-index: 2; }
.gc-about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.gc-about-highlight {
  background: #fff;
  border: 1px solid var(--gc-gray-200);
  border-radius: var(--gc-radius);
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  text-align: center;
}
.gc-about-highlight__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gc-gray-500);
  margin-bottom: 8px;
}
.gc-about-highlight__value { display: block; font-size: 20px; font-weight: 800; color: var(--gc-black); }
.gc-about-story { align-items: center; }
.gc-about-story__copy { background: #fff; border-radius: var(--gc-radius); padding: 36px; border: 1px solid var(--gc-gray-200); box-shadow: 0 12px 36px rgba(0,0,0,.05); }
.gc-about-story__lead {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--gc-black);
  margin: 0 0 24px;
}
.gc-about-story__content { font-size: 16px; line-height: 1.8; color: #444; }
.gc-about-story__content p { margin: 0 0 16px; }
.gc-about-story__content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--gc-black); }
.gc-about-story__content ul { padding-left: 20px; margin: 0 0 16px; }
.gc-about-story__figure { margin: 0; border-radius: var(--gc-radius); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.gc-about-story__figure img { width: 100%; display: block; object-fit: cover; min-height: 360px; }
.gc-about-cta { margin-top: 48px; }
.gc-about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--gc-gray-100);
  border: 1px solid var(--gc-gray-200);
  border-radius: var(--gc-radius);
  padding: 28px 32px;
}
.gc-about-cta__inner h3 { margin: 0; font-size: 22px; font-weight: 700; color: var(--gc-black); }
.gc-about-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.gc-about-cta__btn {
  background: var(--gc-red) !important;
  border-color: var(--gc-red) !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
}
.gc-about-cta__btn-outline {
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid var(--gc-black) !important;
  color: var(--gc-black) !important;
  background: transparent !important;
}
@media (max-width: 991px) {
  .gc-about-highlights { grid-template-columns: 1fr; }
  .gc-about-story__media { margin-top: 24px; }
  .gc-about-story__copy { padding: 24px; }
  .gc-about-cta__inner { text-align: center; justify-content: center; }
  .gc-about-cta__actions { justify-content: center; width: 100%; }
}

/* ══════════════════════════════════════
   NEWS
   ══════════════════════════════════════ */
.nt-news { padding: 56px 0; background: var(--gc-gray-100); }
.nt-news-card {
  background: #fff;
  border-radius: var(--gc-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  height: 100%;
}
.nt-news-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.nt-news-card time { display: block; padding: 16px 20px 0; font-size: 12px; color: var(--gc-gray-500); }
.nt-news-card h3 { font-size: 16px; padding: 8px 20px; margin: 0; font-weight: 600; }
.nt-news-card h3 a { color: var(--gc-black); }
.nt-news-card .nt-link { padding: 4px 20px 20px; display: inline-block; }

/* ══════════════════════════════════════
   USP BAR + INSTAGRAM
   ══════════════════════════════════════ */
.nt-usp-bar { background: var(--gc-black); color: #fff; padding: 26px 0; }
.nt-usp-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 48px;
}
.nt-usp-bar li { font-size: 13px; font-weight: 500; letter-spacing: .02em; }
.nt-usp-bar .fa { margin-right: 8px; color: var(--gc-red); }

.nt-instagram {
  padding: 48px 0 56px;
  background: #fff;
  margin-bottom: 0;
  overflow: visible;
}
.nt-instagram__title { text-align: center; font-size: 24px; font-weight: 700; margin: 0 0 28px; }
.nt-instagram__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  gap: 8px;
  padding: 0 8px 8px;
}
.nt-instagram__grid span {
  flex: 1 1 16.666%;
  display: block;
  min-height: 280px;
  height: 280px;
  background-color: var(--gc-gray-100);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 2px;
}

.nt-modules { display: none !important; }

/* ══════════════════════════════════════
   INNER PAGES
   ══════════════════════════════════════ */
.gc-theme #column-left,
.gc-theme #column-right { display: none !important; }
.gc-theme #content.col-sm-9,
.gc-theme #content.col-sm-6,
.gc-theme #content.col-sm-12 {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  float: none !important;
}
.gc-theme .container > .row { margin-left: -15px; margin-right: -15px; }

.gc-theme #product-category .container,
.gc-theme #product-product .container,
.gc-theme #product-search .container,
.gc-theme #product-special .container,
.gc-theme #information-information .container,
.gc-theme #account-register .container,
.gc-theme #account-login .container,
.gc-theme #checkout-cart .container,
.gc-theme #checkout-checkout .container {
  padding-top: 32px;
  padding-bottom: 48px;
}

.gc-theme #product-category h2,
.gc-theme #product-search h2,
.gc-theme #product-special h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

/* PDP */
.gc-pdp-buybox {
  background: #fff;
  border: 1px solid var(--gc-gray-200);
  border-radius: var(--gc-radius);
  padding: 28px;
}
.gc-pdp-buybox h1 { font-size: 28px; font-weight: 700; margin: 0 0 16px; }
.gc-pdp-price { font-size: 32px !important; font-weight: 700 !important; color: var(--gc-red) !important; }
.gc-pdp-sale-unit { display: inline-block; margin-top: 4px; font-size: 14px; font-weight: 600; color: var(--gc-text-muted, #666); }
.gc-theme #button-cart,
.gc-theme .btn-gommans-cart {
  background: var(--gc-red) !important;
  border-color: var(--gc-red) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--gc-radius);
}
.gc-theme #button-cart:hover { background: var(--gc-red-dark) !important; }
.gc-theme .btn-primary { background: var(--gc-red); border-color: var(--gc-red); }
.gc-theme .btn-primary:hover { background: var(--gc-red-dark); border-color: var(--gc-red-dark); }

/* One-page checkout */
.gc-opc .gc-opc__topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gc-gray-200);
}
.gc-opc__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gc-opc__link {
  color: var(--gc-red);
  font-weight: 600;
  text-decoration: none;
}
.gc-opc__link--right { justify-self: end; }
.gc-opc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.gc-opc__section {
  background: #fff;
  border: 1px solid var(--gc-gray-200);
  border-radius: var(--gc-radius);
  margin-bottom: 20px;
  overflow: hidden;
}
.gc-opc__section-title {
  margin: 0;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--gc-gray-200);
  background: #fafafa;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gc-opc__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.gc-opc__section-body { padding: 16px; }
.gc-opc__section-body--form .form-horizontal .form-group { margin-left: 0; margin-right: 0; }
.gc-opc__section-body--form .form-horizontal .control-label {
  text-align: left;
  width: 100%;
  padding-top: 0;
  margin-bottom: 6px;
  font-weight: 600;
}
.gc-opc__section-body--form .form-horizontal .col-sm-10 { width: 100%; float: none; padding: 0; }
.gc-opc__coupon { display: flex; gap: 8px; }
.gc-opc__coupon .form-control { flex: 1; }
.gc-opc__cart-table { margin-bottom: 0; font-size: 14px; }
.gc-opc__product-name { font-weight: 600; color: var(--gc-text); }
.gc-opc__product-meta { font-size: 12px; color: var(--gc-text-muted, #666); }
.gc-opc__confirm-actions { margin-top: 16px; }
.gc-opc__notes-label { display: block; font-weight: 600; margin-bottom: 8px; }
.gc-opc__agree-wrap { margin: 12px 0; font-size: 14px; }
.gc-opc__btn-confirm {
  width: 100%;
  margin-top: 14px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  border-radius: var(--gc-radius);
  color: #fff;
  background: var(--gc-red);
  transition: background .2s ease;
}
.gc-opc__btn-confirm:hover { background: var(--gc-red-dark); color: #fff; }
.gc-opc-hidden { display: none !important; }
.gc-opc #collapse-checkout-confirm .table-responsive { display: none; }
.gc-opc #collapse-payment-method > .panel-body > p:first-child,
.gc-opc #collapse-shipping-method > .panel-body > p:first-child { display: none; }
.gc-opc #collapse-payment-method textarea[name=comment],
.gc-opc #collapse-shipping-method textarea[name=comment] { display: none; }

@media (max-width: 1199px) {
  .gc-opc__grid { grid-template-columns: 1fr 1fr; }
  .gc-opc__col--right { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .gc-opc__grid { grid-template-columns: 1fr; }
  .gc-opc__topbar { grid-template-columns: 1fr; text-align: center; }
  .gc-opc__link--right { justify-self: center; }
}

.gc-theme #information-information #content,
.gc-theme #information-contact #content {
  background: #fff;
  border-radius: var(--gc-radius);
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  max-width: 900px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.gc-footer { background: #141414; color: #a8a8a8; margin-top: 0; }
.gc-footer__main { padding: 64px 0 40px; }
.gc-footer__grid { row-gap: 32px; }
.gc-footer__name { font-size: 24px; color: #fff; margin: 0 0 12px; font-weight: 700; }
.gc-footer__tagline { font-size: 15px; line-height: 1.6; margin: 0 0 16px; color: #ccc; }
.gc-footer h5 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 20px;
}
.gc-footer ul { list-style: none; padding: 0; margin: 0; }
.gc-footer li { margin-bottom: 11px; }
.gc-footer a { color: #a8a8a8; font-size: 14px; }
.gc-footer a:hover { color: #fff; }
.gc-footer__bottom { border-top: 1px solid #2a2a2a; padding: 20px 0; background: #0f0f0f; }
.gc-footer__bottom-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 13px;
  color: #666;
}
.gc-footer__bottom p { margin: 0; }
.gc-footer__legal { margin-right: auto; }
.gc-footer__legal a { color: #888; margin: 0 6px; }
.gc-theme .gc-footer__sectigo,
.gc-footer__sectigo {
  display: inline-block !important;
  height: 30px !important;
  max-height: 30px !important;
  width: auto !important;
  max-width: 90px !important;
  margin-left: auto;
  opacity: .9;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ══════════════════════════════════════
   MOBILE
   ══════════════════════════════════════ */
@media (min-width: 992px) {
  .gc-header__logo img { max-height: 54px; }
  .gc-header__nav-list > li > a { padding: 5px 12px; font-size: 13px; }
  .gc-header__search { width: 200px; max-width: 220px; }
}

@media (min-width: 1200px) {
  .gc-header__logo { max-width: 300px; }
  .gc-header__logo img { max-height: 58px; }
  .gc-header__search { width: 220px; max-width: 240px; }
}

@media (max-width: 991px) {
  .gc-header__shell { padding: 8px 0 6px; }
  .gc-header__row--top {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    min-height: auto;
  }
  .gc-header__logo { max-width: 200px; flex: 1 1 auto; }
  .gc-header__logo img { max-height: 58px; }
  .gc-header__row--nav {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }
  .gc-header__nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gc-gray-200);
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .gc-header__nav.is-open { display: block !important; }
  .gc-header { position: relative; }
  .gc-header__nav-list { flex-direction: column !important; align-items: stretch !important; flex-wrap: wrap; }
  .gc-header__nav-list > li > a { padding: 12px 8px; border-bottom: 1px solid var(--gc-gray-200); }
  .gc-nav-shop .gc-shop-panel {
    position: static;
    transform: none;
    min-width: 0;
    max-width: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0 0 8px 12px;
  }
  .gc-nav-shop .gc-shop-panel__inner {
    box-shadow: none;
    border: none;
    padding: 8px 0 0;
    background: transparent;
  }
  .gc-nav-shop:not(.is-open) .gc-shop-panel { display: none !important; }
  .gc-nav-shop.is-open .gc-shop-panel { display: block !important; }
  .gc-nav-shop.is-open .gc-nav-shop__caret { transform: rotate(180deg); }
  .gc-shop-panel__toolbar { flex-direction: column; align-items: stretch; }
  .gc-shop-panel__search-wrap { max-width: none; }
  .gc-shop-panel__body { max-height: none; }
  .gc-shop-panel__grid { grid-template-columns: 1fr; gap: 8px; }
  .gc-shop-panel__card { flex-direction: row; text-align: left; padding: 10px 12px; }
  .gc-shop-panel__card-media { width: 44px; height: 44px; }
  .gc-shop-panel__footer { justify-content: flex-start; flex-wrap: wrap; }
  .gc-header__search { display: none; }
  .gc-header__menu-btn { display: block; }
  .nt-hero { flex-direction: column !important; }
  .nt-hero__text, .nt-hero__visual { width: 100%; flex: none; }
  .nt-hero__text { padding: 48px 24px; }
  .nt-hero__visual { min-height: 280px; }
  .nt-brands__grid { flex-direction: column; align-items: center; }
  .nt-brand-card { max-width: 100%; width: 100%; }
  .nt-instagram__grid { flex-wrap: wrap; gap: 10px; }
  .nt-instagram__grid span { flex: 1 1 calc(33.333% - 10px); min-height: 220px; height: 220px; }
  .nt-sale-banner__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 767px) {
  .nt-cat-item { width: 100px; }
  .nt-cat-item__circle { width: 90px; height: 90px; }
  .nt-promo, .nt-promo--wide { flex-direction: column; text-align: center; padding: 28px; }
  .nt-promo img, .nt-promo--wide img { max-width: 70%; margin-top: 16px; }
  .nt-product-card .image, .gc-theme .product-thumb .image { height: 200px; }
  .nt-product-card__cart { opacity: 1; transform: none; }
  .gc-footer__sectigo { margin-left: auto; }
  .nt-hero__text { padding: 40px 22px; }
}

/* ── Contact form ── */
.gc-contact-login { margin-bottom: 24px; border-radius: var(--gc-radius); }
.gc-contact-form .form-control,
.gc-contact-form select { border-radius: var(--gc-radius); min-height: 44px; }
.gc-contact-form textarea.form-control { min-height: 160px; }
.gc-contact-form legend { font-weight: 700; font-size: 18px; border: none; margin-bottom: 16px; }
.gc-contact-form .radio-inline { margin-right: 20px; font-weight: 500; }

.gc-contact-company { margin-bottom: 28px; border-radius: var(--gc-radius); border-color: var(--gc-gray-200); }
.gc-contact-company__name { font-size: 18px; font-weight: 700; margin: 0 0 10px; color: var(--gc-black); }
.gc-contact-company__address { margin: 0 0 16px; color: #555; line-height: 1.6; }
.gc-contact-company__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gc-gray-500); margin: 0 0 12px; }
.gc-contact-company__meta { margin: 0; }
.gc-contact-company__meta dt { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gc-gray-500); margin-top: 10px; }
.gc-contact-company__meta dt:first-child { margin-top: 0; }
.gc-contact-company__meta dd { margin: 4px 0 0; font-size: 15px; font-weight: 600; color: var(--gc-black); }
.gc-contact-company__phone a { font-size: 18px; font-weight: 700; color: var(--gc-black); }
.gc-contact-company__hours { font-size: 13px; color: var(--gc-gray-500); margin: 6px 0 16px; }
.gc-contact-company__email span { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gc-gray-500); margin-bottom: 4px; }
.gc-contact-company__email a { color: var(--gc-red); font-weight: 600; word-break: break-word; }
.gc-contact-company__media img { width: 100%; border-radius: var(--gc-radius); }
