/*
Theme Name: smokecartel
Description: This is a child theme for Flatsome Theme cloned to Grasscity.com style
Author: UX Themes & Antigravity
Template: flatsome
Version: 3.0
*/

/* ==========================================================================
   1. DESIGN TOKENS & TYPOGRAPHY
   ========================================================================== */
:root {
  --gc-red: #e1251c;
  --gc-red-hover: #c41f17;
  --gc-dark-red: #b52e27;
  --gc-black: #111111;
  --gc-text: #222222;
  --gc-muted: #666666;
  --gc-light-bg: #f8f9fa;
  --gc-border: #e5e5e5;
  --gc-green: #0d8756;
  --gc-radius-sm: 6px;
  --gc-radius-md: 10px;
  --gc-radius-lg: 14px;
  --gc-font: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body,
button,
input,
select,
textarea,
.nav-line-bottom>li>a,
.box-text {
  font-family: var(--gc-font) !important;
}

/* ==========================================================================
   2. TOP BAR & HEADER
   ========================================================================== */
#top-bar {
  background-color: var(--gc-red) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  border-bottom: none !important;
}

#top-bar a {
  color: #ffffff !important;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

#top-bar a:hover {
  opacity: 0.85;
}

.gc-topbar-promo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Header tweaks */
.header-main {
  background: #ffffff !important;
  border-bottom: 1px solid var(--gc-border);
}

.header-nav a {
  font-weight: 600 !important;
  color: var(--gc-black) !important;
  text-transform: none !important;
  font-size: 14.5px !important;
}

.header-nav a:hover {
  color: var(--gc-red) !important;
}

/* Header Bottom Nav Bar */
.header-bottom {
  background: #ffffff !important;
  border-top: 1px solid #f0f0f0 !important;
  border-bottom: 1px solid #e8e8e8 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) !important;
}

.header-bottom-nav {
  gap: 8px !important;
  display: flex !important;
  align-items: center !important;
}

.header-bottom-nav>li>a {
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  color: #1a1a1a !important;
  letter-spacing: -0.2px;
  padding: 14px 12px !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: color 0.2s ease !important;
}

/* Chevron arrow styling */
.header-bottom-nav>li>a>i.icon-angle-down {
  font-size: 11px !important;
  margin-left: 6px !important;
  color: #777777 !important;
  transition: transform 0.25s ease, color 0.2s ease !important;
  font-weight: 600 !important;
}

/* Active / Hover state for main navigation links */
.header-bottom-nav>li:hover>a,
.header-bottom-nav>li.current-menu-item>a {
  color: #000000 !important;
}

.header-bottom-nav>li:hover>a>i.icon-angle-down {
  transform: rotate(180deg) !important;
  color: #000000 !important;
}

/* Animated active underline indicator */
.header-bottom-nav>li>a::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 12px !important;
  right: 12px !important;
  height: 2px !important;
  background-color: transparent !important;
  transition: all 0.2s ease !important;
  border-radius: 2px !important;
}

.header-bottom-nav>li:hover>a::after,
.header-bottom-nav>li.current-menu-item>a::after {
  background-color: #000000 !important;
}

/* ==========================================================================
   MEGA MENU STYLES (Grasscity 2-part layout: Left Sidebar + 3-Col Grid)
   ========================================================================== */

/* Wide Nav container alignment for mega menu */
#wide-nav {
  overflow: visible !important;
}

#wide-nav>.flex-row.container {
  position: relative !important;
  overflow: visible !important;
}

#wide-nav .flex-col {
  position: static !important;
}

.header-bottom-nav {
  position: static !important;
  overflow: visible !important;
}

.header-bottom-nav>li.has-dropdown {
  position: relative !important;
}

.header-bottom-nav>li.has-dropdown:has(ul.gc-mega-panel) {
  position: static !important;
  /* Allows absolute mega panel to anchor to #wide-nav > .flex-row.container */
}

/* Dropdown Container */
.header-bottom-nav>li.has-dropdown>ul.nav-dropdown.gc-mega-panel {
  position: absolute !important;
  top: 100% !important;
  left: 15px !important;
  right: 15px !important;
  width: calc(100% - 30px) !important;
  max-width: none !important;
  min-height: 420px;
  background: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid #e8e8e8 !important;
  padding: 32px 40px !important;
  display: block !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 99999 !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

.header-bottom-nav>li.has-dropdown:hover>ul.nav-dropdown.gc-mega-panel {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Clear Flatsome default column styling inside mega panel */
.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 250px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  position: static !important;
  /* allows child absolute panel to position relative to gc-mega-panel */
}

/* Left Sidebar Tab Button */
.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab>a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 250px !important;
  padding: 12px 20px !important;
  margin-bottom: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  border-radius: 8px !important;
  background: transparent !important;
  transition: all 0.15s ease !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  cursor: pointer;
}

/* Chevron arrow on tab */
.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab>a::after {
  content: "›" !important;
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  color: #222222 !important;
  margin-left: 10px !important;
  transition: transform 0.15s ease;
}

/* Active and hover tab: gray pill background */
.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab.is-active>a,
.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab>a:hover {
  background: #f1f1f1 !important;
  color: #111111 !important;
}

/* Right Content Subcategory List (Hidden by default, Grid when active) */
.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab>ul.sub-menu {
  display: none !important;
  position: absolute !important;
  top: 30px !important;
  bottom: 30px !important;
  left: 320px !important;
  right: 40px !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 0 0 30px !important;
  margin: 0 !important;
  list-style: none !important;
  z-index: 10 !important;
  overflow-y: auto;
}

/* Active tab's submenu displayed in a 3-column grid */
.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab.is-active>ul.sub-menu {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-flow: dense;
  align-content: start !important;
  gap: 16px 40px !important;
}

/* Subcategory Links */
.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab>ul.sub-menu>li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab>ul.sub-menu>li>a {
  display: inline-block !important;
  padding: 4px 0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #222222 !important;
  text-transform: none !important;
  line-height: 1.4 !important;
  transition: color 0.15s ease !important;
  background: transparent !important;
}

.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab>ul.sub-menu>li>a:hover {
  color: var(--gc-red) !important;
  background: transparent !important;
  padding-left: 0 !important;
  text-decoration: underline !important;
}

/* View All link item */
.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab>ul.sub-menu>li.gc-view-all-link>a,
.header-bottom-nav ul.gc-mega-panel>li.gc-sidebar-tab>ul.sub-menu>li:last-child>a {
  font-weight: 600 !important;
}

/* Clean standard dropdowns */
.header-bottom-nav .nav-dropdown:not(.gc-mega-panel) {
  border-radius: 8px !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #eaeaea !important;
  background-color: #ffffff !important;
  padding: 8px 0 !important;
  min-width: 240px !important;
}

.header-bottom-nav .nav-dropdown:not(.gc-mega-panel) li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.header-bottom-nav .nav-dropdown:not(.gc-mega-panel) li a {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #333333 !important;
  padding: 9px 20px !important;
  display: block !important;
  transition: all 0.15s ease;
  line-height: 1.4 !important;
}

.header-bottom-nav .nav-dropdown:not(.gc-mega-panel) li a:hover {
  background-color: #f7f7f7 !important;
  color: var(--gc-red) !important;
  padding-left: 24px !important;
}

.header-search-form input[type="search"] {
  border-radius: 99px !important;
  background-color: #f1f1f1 !important;
  border: 1px solid transparent !important;
  padding: 10px 18px !important;
  font-size: 14px;
}

.header-search-form input[type="search"]:focus {
  background-color: #ffffff !important;
  border-color: #222 !important;
}

#top-bar .nav-divided>li+li>a:after {
  display: none !important;
}

.cart-icon strong {
  background-color: var(--gc-red) !important;
  color: #fff !important;
  border-radius: 99px !important;
}

.nav-tabs>li.active>a,
.tabgroup .nav-tabs>li.active>a,
.nav-line-bottom>li.active>a {
  border-bottom: 2.5px solid var(--gc-red) !important;
  color: var(--gc-red) !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   HOMEPAGE: SECTION TITLES (.gc-ux-title)
   Applies to all [title class="gc-ux-title"] across homepage sections
   ========================================================================== */
.gc-ux-title {
  margin-bottom: 24px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--gc-border) !important;
}

.gc-ux-title .section-title {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  margin: 0 !important;
  border-bottom: none !important;
}

.gc-ux-title .section-title b {
  display: none !important;
}

.gc-ux-title .section-title-main {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--gc-black) !important;
  letter-spacing: -0.3px !important;
  line-height: 1.2 !important;
}

.gc-ux-title a {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--gc-red) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  transition: gap 0.2s ease, color 0.2s ease !important;
}

.gc-ux-title a:hover {
  gap: 8px !important;
  color: var(--gc-red-hover) !important;
}

/* ==========================================================================
   HOMEPAGE: WOOCOMMERCE PRODUCT CARDS (Grasscity Clean Box Style)
   ========================================================================== */
.product-small.box {
  background: #ffffff;
  border: 1px solid #ebebeb !important;
  border-radius: var(--gc-radius-md) !important;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-small.box:hover {
  border-color: #d1d1d1 !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-3px);
}

.product-small .box-image {
  background: #ffffff;
  padding: 16px;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-small .box-image img {
  border-radius: 4px;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-small.box:hover .box-image img {
  transform: scale(1.04);
}

/* Product Card Cleanups */
.product-small .box-text .product-cat {
  display: none !important;
}

.product-small .box-text {
  padding: 14px 14px 16px 14px !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gc-product-brand {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #777777;
  margin-bottom: 5px;
}

.product-small .name a {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--gc-black) !important;
  line-height: 1.35 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
  margin-bottom: 10px;
}

.product-small .name a:hover {
  color: var(--gc-red) !important;
}

/* Product Price Styling */
.product-small .box-text .price-wrapper {
  margin-top: auto;
  padding-top: 6px;
}

.product-small .box-text .price {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--gc-red) !important;
  display: block !important;
}

.product-small .box-text del .amount {
  color: #999999 !important;
  font-weight: 400 !important;
  font-size: 13px !important;
}

.product-small .box-text ins {
  text-decoration: none !important;
}

.product-small .box-text ins .amount {
  color: var(--gc-red) !important;
  font-weight: 800 !important;
}

/* ==========================================================================
   HOMEPAGE SECTION 1: HERO PROMO BANNER (.gc-home-hero-section)
   ========================================================================== */
.gc-home-hero-section {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.gc-home-hero-section .section-content {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.gc-hero-banner-ux {
  border-radius: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.gc-hero-banner-ux .text-box {
  width: 100% !important;
  max-width: 620px !important;
  padding-left: max(24px, calc((100vw - 1570px) / 2 + 15px)) !important;
}

.gc-hero-content {
  max-width: 580px;
  padding: 10px 0;
  text-align: left;
}

.gc-hero-badge {
  display: inline-block;
  background-color: var(--gc-red);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.gc-hero-title {
  font-size: 48px !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  color: #111111 !important;
  margin-bottom: 14px !important;
  letter-spacing: -1px;
}

.gc-hero-desc {
  font-size: 17px;
  color: #333333;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.45;
}

.gc-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gc-red) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 13px 32px !important;
  border-radius: 99px !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(225, 37, 28, 0.35);
  text-decoration: none !important;
}

.gc-hero-btn:hover {
  background-color: var(--gc-red-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 37, 28, 0.45);
  color: #ffffff !important;
}

/* ==========================================================================
   HOMEPAGE SECTION 2: BEST SELLERS SLIDER (.gc-home-bestsellers-section)
   ========================================================================== */
.gc-home-bestsellers-section {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* Section Title: Clean, bold without underline or view-all link */
.gc-home-bestsellers-section .gc-bestsellers-title,
.gc-home-bestsellers-section .gc-ux-title,
.gc-home-bestsellers-section .section-title-container {
  border: none !important;
  border-bottom: none !important;
  margin-bottom: 22px !important;
  padding-bottom: 0 !important;
}

.gc-home-bestsellers-section h2.section-title,
.gc-home-bestsellers-section .section-title,
.gc-home-bestsellers-section .section-title-normal {
  border: none !important;
  border-bottom: none !important;
  margin: 0 !important;
  text-transform: none !important;
}

.gc-home-bestsellers-section .section-title b,
.gc-home-bestsellers-section .section-title a,
.gc-home-bestsellers-section .section-title:after,
.gc-home-bestsellers-section .section-title:before {
  display: none !important;
  border: none !important;
}

.gc-home-bestsellers-section h2.section-title span,
.gc-home-bestsellers-section .section-title-normal span,
.gc-home-bestsellers-section .section-title span,
.gc-home-bestsellers-section .section-title-main {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #111111 !important;
  letter-spacing: -0.4px !important;
  text-transform: none !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Outer Card Container: Border on the Outside so image matches text frame width */
.gc-home-bestsellers-section .product-small.box {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.25s ease !important;
}

.gc-home-bestsellers-section .product-small.box:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-4px) !important;
}

/* Image Box: Seamless inside the outer card with full width */
.gc-home-bestsellers-section .product-small .box-image {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
  position: relative !important;
  overflow: hidden !important;
}

.gc-home-bestsellers-section .product-small.box:hover .box-image {
  border-color: transparent !important;
  box-shadow: none !important;
}

.gc-home-bestsellers-section .product-small .box-image img {
  max-height: 210px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}

.gc-home-bestsellers-section .product-small.box:hover .box-image img {
  transform: scale(1.05) !important;
}

/* Text Container */
.gc-home-bestsellers-section .product-small .box-text {
  padding: 0 !important;
  text-align: left !important;
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.gc-home-bestsellers-section .product-small .title-wrapper {
  margin-bottom: 4px !important;
}

/* 1. Brand Tag */
.gc-home-bestsellers-section .gc-product-brand {
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #6b7280 !important;
  height: 18px !important;
  line-height: 18px !important;
  margin-bottom: 4px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* 2. Product Title: Fixed 42px Height for Perfect Row Alignment */
.gc-home-bestsellers-section .product-small .name {
  margin: 0 0 6px 0 !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  overflow: hidden !important;
}

.gc-home-bestsellers-section .product-small .name a {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.38 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  height: 42px !important;
  margin-bottom: 0 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.gc-home-bestsellers-section .product-small .name a:hover {
  color: var(--gc-red) !important;
}

/* 3. Price Wrapper: Locked Baseline Alignment Across All Cards */
.gc-home-bestsellers-section .product-small .box-text .price-wrapper {
  margin-top: auto !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding-top: 4px !important;
}

.gc-home-bestsellers-section .product-small .box-text .price {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  margin: 0 !important;
  height: 44px !important;
  min-height: 44px !important;
}

/* Regular Price Strikethrough (Top Line) */
.gc-home-bestsellers-section .product-small .box-text del {
  font-size: 12px !important;
  color: #9ca3af !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
  display: block !important;
  height: 18px !important;
  line-height: 18px !important;
  margin-bottom: 2px !important;
  order: 1 !important;
}

.gc-home-bestsellers-section .product-small .box-text del .amount {
  color: #9ca3af !important;
  font-weight: 400 !important;
  font-size: 12px !important;
}

/* Sale Price Red (Bottom Line) */
.gc-home-bestsellers-section .product-small .box-text ins {
  text-decoration: none !important;
  font-size: 17.5px !important;
  font-weight: 800 !important;
  color: var(--gc-red) !important;
  display: block !important;
  height: 22px !important;
  line-height: 22px !important;
  order: 2 !important;
  margin: 0 !important;
}

.gc-home-bestsellers-section .product-small .box-text ins .amount {
  color: var(--gc-red) !important;
  font-weight: 800 !important;
  font-size: 17.5px !important;
}

/* Non-Sale Single Price: Positioned at Bottom Line to Align with Sale Prices */
.gc-home-bestsellers-section .product-small .box-text .price>.amount,
.gc-home-bestsellers-section .product-small .box-text .price>bdi {
  color: #111827 !important;
  font-size: 17.5px !important;
  font-weight: 800 !important;
  height: 22px !important;
  line-height: 22px !important;
  order: 2 !important;
  margin: 0 !important;
}

/* Hide Elements Excluded by User Instruction */
.gc-home-bestsellers-section .product-small .box-text .product-cat,
.gc-home-bestsellers-section .product-small .star-rating,
.gc-home-bestsellers-section .product-small .woocommerce-product-rating,
.gc-home-bestsellers-section .product-small .badge-container,
.gc-home-bestsellers-section .product-small .badge,
.gc-home-bestsellers-section .product-small .callout,
.gc-home-bestsellers-section .product-small .onsale,
.gc-home-bestsellers-section .product-small .image-tools,
.gc-home-bestsellers-section .product-small .add-to-cart-button,
.gc-home-bestsellers-section .product-small .out-of-stock-label,
.gc-home-bestsellers-section .product-small .screen-reader-text {
  display: none !important;
}

/* CRITICAL: Slider Viewport MUST be overflow: hidden so off-screen slides do NOT leak out */
.gc-home-bestsellers-section .flickity-viewport {
  overflow: hidden !important;
  border-radius: 4px !important;
}

.gc-home-bestsellers-section .row,
.gc-home-bestsellers-section .col,
.gc-home-bestsellers-section .col-inner,
.gc-home-bestsellers-section .slider,
.gc-home-bestsellers-section .slider-wrapper {
  overflow: visible !important;
}

/* Slider Navigation Buttons: Elegant Circular White Floating Buttons */
.gc-home-bestsellers-section button.flickity-button,
.gc-home-bestsellers-section .flickity-prev-next-button {
  background: #ffffff !important;
  color: #111111 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16) !important;
  border: 1px solid #e5e7eb !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: 25 !important;
  top: 125px !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: opacity 0.25s ease, transform 0.2s ease, background 0.2s ease !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.gc-home-bestsellers-section .slider-wrapper:hover .flickity-prev-next-button,
.gc-home-bestsellers-section:hover .flickity-prev-next-button {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.gc-home-bestsellers-section .flickity-prev-next-button:hover {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.gc-home-bestsellers-section .flickity-prev-next-button.previous {
  left: -20px !important;
}

.gc-home-bestsellers-section .flickity-prev-next-button.next {
  right: -20px !important;
}

.gc-home-bestsellers-section .flickity-prev-next-button svg,
.gc-home-bestsellers-section .flickity-prev-next-button .flickity-button-icon {
  width: 16px !important;
  height: 16px !important;
  fill: #111111 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: block !important;
}

.gc-home-bestsellers-section .flickity-prev-next-button path,
.gc-home-bestsellers-section .flickity-prev-next-button .arrow {
  fill: #111111 !important;
}

.gc-home-bestsellers-section .flickity-prev-next-button:hover svg,
.gc-home-bestsellers-section .flickity-prev-next-button:hover .flickity-button-icon,
.gc-home-bestsellers-section .flickity-prev-next-button:hover path,
.gc-home-bestsellers-section .flickity-prev-next-button:hover .arrow {
  fill: #ffffff !important;
}

/* ==========================================================================
   HOMEPAGE SECTION 3: PRODUCT HIGHLIGHTS (.gc-home-highlights-section)
   ========================================================================== */
.gc-home-highlights-section {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.gc-highlights-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 24px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #ebebeb !important;
}

.gc-highlights-heading {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #111111 !important;
  letter-spacing: -0.3px !important;
  margin: 0 !important;
  text-transform: uppercase !important;
}

.gc-highlights-viewall {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--gc-red) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.gc-highlights-viewall:hover {
  color: #111111 !important;
}

.gc-highlights-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

.gc-highlight-card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px !important;
  padding: 0 !important;
  text-align: left !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.25s ease !important;
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  height: 100% !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.gc-highlight-card:hover {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-4px) !important;
}

.gc-highlight-img-wrap {
  width: 100% !important;
  height: 310px !important;
  background: #f3f4f6 !important;
  border-radius: 0 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

.gc-highlight-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transition: transform 0.4s ease !important;
  display: block !important;
}

.gc-highlight-card:hover .gc-highlight-img-wrap img {
  transform: scale(1.05) !important;
}

.gc-highlight-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 18px !important;
  gap: 14px !important;
  width: 100% !important;
  background: #ffffff !important;
  min-height: 72px !important;
  margin-top: auto !important;
}

.gc-highlight-title {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  flex: 1 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.gc-highlight-btn-wrap {
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.gc-highlight-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #111111 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 99px !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
}

.gc-highlight-card:hover .gc-highlight-btn {
  background: var(--gc-red) !important;
  transform: scale(1.03) !important;
}

/* ==========================================================================
   HOMEPAGE SECTION 4: COLLECTION TABS & PRICE BEAT (.gc-home-tabs-section)
   ========================================================================== */
.gc-home-tabs-section {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.gc-price-beat-banner {
  background: linear-gradient(135deg, #e1251c 0%, #b52e27 100%) !important;
  border-radius: 12px !important;
  padding: 24px 30px !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 25px !important;
  box-shadow: 0 6px 18px rgba(225, 37, 28, 0.25) !important;
}

.gc-price-beat-text h4 {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 4px 0 !important;
}

.gc-price-beat-text p {
  font-size: 14.5px !important;
  margin: 0 !important;
  opacity: 0.95 !important;
  color: #ffffff !important;
}

.gc-price-beat-btn {
  background: #ffffff !important;
  color: #111111 !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 99px !important;
  font-size: 13.5px !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.gc-price-beat-btn:hover {
  background: #111111 !important;
  color: #ffffff !important;
}

.gc-home-tabs-section .nav-tabs {
  margin-bottom: 24px !important;
  border-bottom: 2px solid #eeeeee !important;
  display: flex !important;
  gap: 20px !important;
}

.gc-home-tabs-section .nav-tabs>li>a {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #666666 !important;
  padding: 12px 18px !important;
  border-bottom: 3px solid transparent !important;
  transition: all 0.2s ease !important;
}

.gc-home-tabs-section .nav-tabs>li.active>a,
.gc-home-tabs-section .nav-tabs>li>a:hover {
  color: var(--gc-red) !important;
  border-bottom-color: var(--gc-red) !important;
}

.gc-home-tabs-section .tab-panels {
  border: none !important;
  padding: 0 !important;
}

/* Tabs Product Grid Styling */
.gc-home-tabs-section .product-small.box {
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.gc-home-tabs-section .product-small.box:hover {
  border-color: #cfcfcf !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06) !important;
}

.gc-home-tabs-section .product-small .box-image {
  height: 200px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
}

.gc-home-tabs-section .product-small .box-image img {
  max-height: 175px !important;
  width: auto !important;
  object-fit: contain !important;
}

.gc-home-tabs-section .product-small .name {
  height: 38px !important;
  min-height: 38px !important;
  overflow: hidden !important;
  margin-bottom: 6px !important;
}

.gc-home-tabs-section .product-small .name a {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  line-height: 1.35 !important;
}

.gc-home-tabs-section .product-small .box-text .price-wrapper {
  margin-top: auto !important;
  height: 32px !important;
  display: flex !important;
  align-items: flex-end !important;
}

/* ==========================================================================
   HOMEPAGE SECTION 5: DUAL SPOTLIGHT (.gc-home-spotlight-section)
   ========================================================================== */
.gc-home-spotlight-section {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.gc-spotlight-header {
  margin-bottom: 24px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #ebebeb !important;
}

.gc-spotlight-heading {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #111111 !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.gc-spotlight-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
}

.gc-spotlight-card {
  position: relative !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
  min-height: 400px !important;
  display: flex !important;
  align-items: flex-end !important;
  padding: 34px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

.gc-spotlight-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.82) 100%) !important;
  z-index: 1 !important;
}

.gc-spotlight-content {
  position: relative !important;
  z-index: 2 !important;
  color: #ffffff !important;
  max-width: 480px !important;
}

.gc-spotlight-brand {
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #ffc107 !important;
  margin-bottom: 6px !important;
  display: inline-block !important;
}

.gc-spotlight-title {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
  line-height: 1.25 !important;
}

.gc-spotlight-pricing {
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
}

.gc-spotlight-vip {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
}

.gc-spotlight-btn {
  display: inline-block !important;
  background: #ffffff !important;
  color: #111111 !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 99px !important;
  font-size: 13.5px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.gc-spotlight-btn:hover {
  background: var(--gc-red) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   HOMEPAGE SECTION 6: CATEGORY SHOWCASE (.gc-home-categories-section)
   ========================================================================== */
.gc-home-categories-section {
  padding-top: 30px !important;
  padding-bottom: 35px !important;
}

.gc-categories-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  margin-bottom: 24px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #ebebeb !important;
}

.gc-categories-heading {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #111111 !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.gc-categories-viewall {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--gc-red) !important;
  text-decoration: none !important;
}

.gc-category-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 18px !important;
}

.gc-category-card {
  position: relative !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  height: 270px !important;
  text-decoration: none !important;
  display: block !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.gc-category-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14) !important;
}

.gc-category-img-wrap {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.gc-category-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.gc-category-card:hover .gc-category-img-wrap img {
  transform: scale(1.08) !important;
}

.gc-category-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.85) 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 18px !important;
  z-index: 2 !important;
  transition: background 0.3s ease !important;
}

.gc-category-card:hover .gc-category-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.92) 100%) !important;
}

.gc-category-card-title {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  margin-bottom: 6px !important;
  line-height: 1.2 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gc-category-card-cta {
  color: #ffc107 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  transition: transform 0.2s ease !important;
}

.gc-category-card:hover .gc-category-card-cta {
  transform: translateX(3px) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   HOMEPAGE SECTION 7: PIONEER STORY (.gc-home-pioneer-section)
   ========================================================================== */
.gc-home-pioneer-section {
  background: #fbfbfb !important;
  border-top: 1px solid #ebebeb !important;
  border-bottom: 1px solid #ebebeb !important;
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.gc-pioneer-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 48px !important;
}

.gc-pioneer-col-img {
  flex: 1 !important;
  min-width: 0 !important;
}

.gc-pioneer-img {
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07) !important;
}

.gc-pioneer-img img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  display: block !important;
}

.gc-pioneer-col-text {
  flex: 1 !important;
  min-width: 0 !important;
}

.gc-pioneer-content h2 {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #111111 !important;
  line-height: 1.25 !important;
  margin-bottom: 16px !important;
}

.gc-pioneer-content p {
  font-size: 15px !important;
  color: #555555 !important;
  line-height: 1.65 !important;
  margin-bottom: 16px !important;
}

.gc-pioneer-badges {
  display: flex !important;
  gap: 16px !important;
  margin-top: 24px !important;
  flex-wrap: wrap !important;
}

.gc-pioneer-badge-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #ffffff !important;
  padding: 10px 18px !important;
  border-radius: 99px !important;
  border: 1px solid #e2e2e2 !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  color: #111111 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.gc-pioneer-badge-item svg {
  color: var(--gc-red) !important;
  flex-shrink: 0 !important;
}

/* ==========================================================================
   HOMEPAGE SECTION 8: BRAND QUALITIES & VALUE PROPS (.gc-home-qualities-section)
   ========================================================================== */
.gc-home-qualities-section {
  padding-top: 45px !important;
  padding-bottom: 40px !important;
}

.gc-qualities-header {
  margin-bottom: 24px !important;
  text-align: center !important;
}

.gc-qualities-headline {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #111111 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.5px !important;
}

.gc-qualities-subtext {
  font-size: 15px !important;
  color: #666666 !important;
  margin: 0 !important;
}

.gc-pills-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin-bottom: 30px !important;
}

.gc-pill-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #f1f1f1 !important;
  padding: 8px 18px !important;
  border-radius: 99px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  border: 1px solid #e5e5e5 !important;
}

.gc-pill-dot {
  width: 8px !important;
  height: 8px !important;
  background: var(--gc-red) !important;
  border-radius: 50% !important;
}

.gc-qualities-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.gc-quality-card {
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 14px !important;
  padding: 24px 20px !important;
  text-align: center !important;
  transition: transform 0.25s, box-shadow 0.25s !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.gc-quality-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06) !important;
}

.gc-quality-img {
  width: 100% !important;
  height: 170px !important;
  margin-bottom: 18px !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}

.gc-quality-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.gc-quality-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #111111 !important;
  margin-bottom: 10px !important;
}

.gc-quality-desc {
  font-size: 14px !important;
  color: #666666 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* ==========================================================================
   HOMEPAGE SECTION 9: CABANA CLUB JOIN BANNER (.gc-home-cabana-section)
   ========================================================================== */
.gc-home-cabana-section {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.gc-join-banner-container {
  border-radius: 12px !important;
  overflow: hidden !important;
  width: 100% !important;
}

.gc-join-banner-row1 {
  background: var(--gc-red) !important;
  padding: 28px 32px !important;
}

.gc-join-banner-inner {
  display: grid !important;
  grid-template-columns: 140px 1fr auto !important;
  align-items: center !important;
  gap: 24px !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

.gc-join-banner-logo img {
  max-width: 130px !important;
  height: auto !important;
  display: block !important;
}

.gc-join-banner-text .gc-banner-title {
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.2 !important;
}

.gc-join-banner-text .gc-banner-subtitle {
  color: #ffffff !important;
  font-size: 16.5px !important;
  margin: 0 !important;
  font-weight: 400 !important;
  opacity: 0.95 !important;
}

.gc-join-banner-actions {
  display: flex !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}

.gc-btn-join {
  background: #ffffff !important;
  color: #111111 !important;
  font-weight: 800 !important;
  padding: 12px 26px !important;
  border-radius: 99px !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.gc-btn-join:hover {
  background: #111111 !important;
  color: #ffffff !important;
}

.gc-btn-learn {
  background: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid #ffffff !important;
  font-weight: 700 !important;
  padding: 11px 22px !important;
  border-radius: 99px !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.gc-btn-learn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* ==========================================================================
   HOMEPAGE SECTION 10: BRAND MARQUEE (.gc-home-marquee-section)
   ========================================================================== */
.gc-home-marquee-section {
  padding-top: 15px !important;
  padding-bottom: 20px !important;
}

.gc-marquee-wrapper {
  background: var(--gc-dark-red) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  padding: 22px 0 !important;
  position: relative !important;
  width: 100% !important;
}

.gc-marquee-track {
  display: flex !important;
  width: max-content !important;
  animation: gcMarqueeScroll 28s linear infinite !important;
}

.gc-marquee-track:hover {
  animation-play-state: paused !important;
}

.gc-marquee-group {
  display: flex !important;
  align-items: center !important;
  gap: 60px !important;
  padding-right: 60px !important;
  flex-shrink: 0 !important;
}

.gc-marquee-item {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.gc-marquee-item img {
  height: 38px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
  opacity: 0.85 !important;
  display: block !important;
  transition: opacity 0.25s, transform 0.25s !important;
}

.gc-marquee-item:hover img {
  opacity: 1 !important;
  transform: scale(1.08) !important;
}

@keyframes gcMarqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

/* ==========================================================================
   HOMEPAGE SECTION 11: FAQ ACCORDION (.gc-home-faq-section)
   ========================================================================== */
.gc-home-faq-section {
  padding-top: 30px !important;
  padding-bottom: 50px !important;
}

.gc-faq-header {
  margin-bottom: 24px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #ebebeb !important;
}

.gc-faq-heading {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #111111 !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.gc-faq-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.gc-faq-item {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.gc-faq-item.is-open {
  border-color: #d1d5db !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
}

.gc-faq-question {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 18px 22px !important;
  background: transparent !important;
  border: none !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  color: #111111 !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
  margin: 0 !important;
}

.gc-faq-question:hover {
  color: var(--gc-red) !important;
}

.gc-faq-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #f3f4f6 !important;
  color: #4b5563 !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease, background-color 0.2s ease !important;
}

.gc-faq-item.is-open .gc-faq-icon {
  transform: rotate(180deg) !important;
  background: #fee2e2 !important;
  color: var(--gc-red) !important;
}

.gc-faq-answer {
  padding: 0 22px 18px 22px !important;
  color: #4b5563 !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
}

.gc-faq-answer p {
  margin: 0 !important;
}

/* ==========================================================================
   HOMEPAGE: RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 991px) {
  .gc-highlights-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .gc-spotlight-grid {
    grid-template-columns: 1fr !important;
  }

  .gc-category-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .gc-pioneer-wrapper {
    flex-direction: column !important;
  }

  .gc-qualities-grid {
    grid-template-columns: 1fr !important;
  }

  .gc-join-banner-inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .gc-join-banner-logo img {
    margin: 0 auto !important;
  }

  .gc-join-banner-actions {
    justify-content: center !important;
  }
}

@media (max-width: 640px) {
  .gc-hero-title {
    font-size: 32px !important;
  }

  .gc-hero-content {
    padding: 15px 5px !important;
  }

  .gc-highlights-grid {
    grid-template-columns: 1fr !important;
  }

  .gc-price-beat-banner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
  }

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

  .gc-pioneer-badges {
    flex-direction: column !important;
  }
}

/* ==========================================================================
   16. GRASSCITY FOOTER STYLING (UX Builder Architecture)
   ========================================================================== */
.footer-wrapper {
  background: #ffffff !important;
}

.gc-footer-ux-section {
  background-color: #ffffff !important;
  border-top: 1px solid #eeeeee !important;
  color: var(--gc-text);
  font-family: var(--gc-font);
}

.gc-footer-heading {
  font-size: 15px;
  font-weight: 800;
  color: #000000 !important;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.gc-newsletter-title {
  font-size: 22px !important;
  line-height: 1.2;
}

.gc-footer-desc {
  font-size: 14.5px;
  color: #666666;
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 420px;
}

.gc-newsletter-field {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 440px;
}

.gc-newsletter-input {
  flex: 1;
  background: #f4f4f4 !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 99px !important;
  padding: 12px 20px !important;
  font-size: 14px !important;
  color: #222 !important;
  outline: none;
  transition: all 0.2s ease;
  height: 46px !important;
  margin: 0 !important;
}

.gc-newsletter-input:focus {
  background: #ffffff !important;
  border-color: #111111 !important;
}

.gc-newsletter-btn {
  background: #111111 !important;
  color: #ffffff !important;
  border-radius: 99px !important;
  padding: 0 28px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border: none !important;
  height: 46px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.gc-newsletter-btn:hover {
  background: var(--gc-red) !important;
}

/* UX Menu Styling inside Footer */
.gc-ux-footer-menu {
  gap: 11px !important;
}

.gc-ux-footer-menu .ux-menu-title {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #000000 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.2px;
  text-transform: none !important;
}

.gc-ux-footer-menu .ux-menu-link {
  margin: 0 !important;
  padding: 0 !important;
}

.gc-ux-footer-menu .ux-menu-link__link {
  color: #666666 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
  padding: 0 !important;
}

.gc-ux-footer-menu .ux-menu-link__link:hover {
  color: var(--gc-red) !important;
  padding-left: 2px !important;
}

/* Middle Row: Payments & Socials */
.gc-footer-middle-row {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 16px 0;
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.gc-footer-payments {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gc-payments-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #888888;
  letter-spacing: 0.5px;
}

.gc-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gc-pay-badge {
  display: inline-flex;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

/* Social Icons via Flatsome [follow] */
.gc-footer-middle-row .social-icons .button.icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1px solid #e2e2e2 !important;
  color: #222222 !important;
  background: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 4px !important;
  transition: all 0.25s ease !important;
}

.gc-footer-middle-row .social-icons .button.icon:hover {
  border-color: var(--gc-red) !important;
  color: #ffffff !important;
  background: var(--gc-red) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Footer Bottom: Copyright & Legal */
.gc-footer-bottom-row {
  font-size: 13px;
  color: #777777;
  padding-top: 5px;
}

.gc-footer-copyright p {
  margin: 0;
  font-size: 13px;
  color: #777777;
}

.gc-footer-copyright a {
  color: #555555;
  text-decoration: underline;
}

.gc-footer-copyright a:hover {
  color: var(--gc-red);
}

.gc-footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.gc-footer-legal a {
  color: #777777 !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.gc-footer-legal a:hover {
  color: var(--gc-red) !important;
}

.gc-legal-sep {
  color: #cccccc;
  font-size: 10px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .gc-footer-middle-row .col {
    margin-bottom: 15px;
  }

  .gc-footer-middle-row .col:last-child {
    margin-bottom: 0;
  }

  .gc-footer-legal {
    justify-content: flex-start !important;
    margin-top: 10px;
  }
}

/* Hide empty Flatsome absolute footer when custom UX block footer handles legal/copyright */
.footer-wrapper .absolute-footer {
  display: none !important;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE UX BLOCK STYLES (.custom-product-page)
   ========================================================================== */

/* Main Product Section */
.gc-product-main-section {
  padding-top: 24px !important;
  padding-bottom: 40px !important;
  background: #ffffff !important;
}

/* Breadcrumbs & Navigation Row */
.gc-product-top-row {
  margin-bottom: 24px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #f3f4f6 !important;
  align-items: center !important;
}

.gc-product-top-row .product-breadcrumb-container nav.woocommerce-breadcrumb,
.gc-product-top-row .breadcrumbs {
  font-size: 13px !important;
  color: #6b7280 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gc-product-top-row nav.woocommerce-breadcrumb a,
.gc-product-top-row .breadcrumbs a {
  color: #4b5563 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.2s ease !important;
}

.gc-product-top-row nav.woocommerce-breadcrumb a:hover,
.gc-product-top-row .breadcrumbs a:hover {
  color: var(--gc-red) !important;
}

.gc-product-top-row .product-next-prev-nav {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 8px !important;
}

.gc-product-top-row .product-next-prev-nav a {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  border: 1px solid #e5e7eb !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #374151 !important;
  transition: all 0.2s ease !important;
  background: #ffffff !important;
}

.gc-product-top-row .product-next-prev-nav a:hover {
  border-color: #111111 !important;
  background: #111111 !important;
  color: #ffffff !important;
}

/* Gallery Column */
.gc-product-gallery-col {
  padding-right: 30px !important;
}

.gc-product-gallery-col .woocommerce-product-gallery {
  position: relative !important;
}

.gc-product-gallery-col .product-thumbnails img {
  border-radius: 8px !important;
  border: 1.5px solid #e5e7eb !important;
  transition: border-color 0.2s ease, transform 0.2s ease !important;
  padding: 4px !important;
  background: #ffffff !important;
}

.gc-product-gallery-col .product-thumbnails .is-nav-selected img,
.gc-product-gallery-col .product-thumbnails img:hover {
  border-color: #111111 !important;
}

.gc-product-gallery-col .woocommerce-product-gallery__image img {
  border-radius: 12px !important;
  border: 1px solid #f3f4f6 !important;
  background: #ffffff !important;
}

.gc-product-gallery-col .badge.on-sale {
  background: var(--gc-red) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  border-radius: 6px !important;
  padding: 4px 10px !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  border: none !important;
}

/* Product Summary Column */
.gc-product-summary-col {
  padding-left: 20px !important;
}

/* Brand Link */
.gc-single-product-brand {
  margin-bottom: 8px !important;
}

.gc-single-product-brand a {
  display: inline-block !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #6b7280 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.gc-single-product-brand a:hover {
  color: var(--gc-red) !important;
}

/* Title */
.gc-product-summary-col .product-title-container .product-title {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.4px !important;
  margin: 0 0 10px 0 !important;
}

.gc-product-summary-col .product-title-container .is-divider {
  display: none !important;
}

/* Ratings */
.gc-product-summary-col .woocommerce-product-rating {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
}

.gc-product-summary-col .star-rating {
  color: #f59e0b !important;
}

.gc-product-summary-col .woocommerce-review-link {
  font-size: 13px !important;
  color: #6b7280 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

/* Price */
.gc-product-summary-col .product-price-container {
  margin-bottom: 18px !important;
}

.gc-product-summary-col .price {
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--gc-red) !important;
  margin: 0 !important;
}

.gc-product-summary-col .price del {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #9ca3af !important;
  text-decoration: line-through !important;
  order: 1 !important;
}

.gc-product-summary-col .price ins {
  text-decoration: none !important;
  color: var(--gc-red) !important;
  order: 2 !important;
}

.gc-product-summary-col .price>.amount {
  color: #111827 !important;
}

/* Excerpt */
.gc-product-summary-col .woocommerce-product-details__short-description {
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  color: #4b5563 !important;
  margin-bottom: 22px !important;
}

/* Add to Cart Container & Buttons */
.gc-product-summary-col .cart {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 24px !important;
  flex-wrap: wrap !important;
}

.gc-product-summary-col .quantity {
  display: inline-flex !important;
  align-items: center !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  height: 48px !important;
  background: #ffffff !important;
  margin: 0 !important;
}

.gc-product-summary-col .quantity .button {
  height: 48px !important;
  width: 40px !important;
  border: none !important;
  background: transparent !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #374151 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}

.gc-product-summary-col .quantity .button:hover {
  background: #f3f4f6 !important;
  color: #111111 !important;
}

.gc-product-summary-col .quantity input.qty {
  height: 48px !important;
  width: 52px !important;
  border: none !important;
  background: transparent !important;
  text-align: center !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.gc-product-summary-col .single_add_to_cart_button {
  height: 48px !important;
  border-radius: 8px !important;
  background: var(--gc-red) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  padding: 0 36px !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(225, 37, 28, 0.28) !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.gc-product-summary-col .single_add_to_cart_button:hover {
  background: #c01e16 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(225, 37, 28, 0.38) !important;
}

/* Perks Box */
.gc-product-perks-box {
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 18px 20px !important;
  margin: 24px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.gc-perk-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
}

.gc-perk-icon {
  color: var(--gc-red) !important;
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

.gc-perk-content strong {
  display: block !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-bottom: 2px !important;
}

.gc-perk-content span {
  display: block !important;
  font-size: 12.5px !important;
  color: #6b7280 !important;
  line-height: 1.4 !important;
}

/* Product Meta */
.gc-product-summary-col .product_meta {
  border-top: 1px solid #f3f4f6 !important;
  padding-top: 16px !important;
  margin-top: 20px !important;
  font-size: 13px !important;
  color: #6b7280 !important;
  line-height: 1.8 !important;
}

.gc-product-summary-col .product_meta>span {
  display: block !important;
  margin-bottom: 4px !important;
}

.gc-product-summary-col .product_meta a {
  color: #111827 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.gc-product-summary-col .product_meta a:hover {
  color: var(--gc-red) !important;
}

/* Share Wrap */
.gc-product-share-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 16px !important;
  padding-top: 14px !important;
  border-top: 1px solid #f3f4f6 !important;
}

.gc-share-label {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Section 2: Tabs */
.gc-product-tabs-section {
  background: #f9fafb !important;
  border-top: 1px solid #e5e7eb !important;
}

.gc-product-tabs-section .woocommerce-tabs .nav-tabs {
  border-bottom: 2px solid #e5e7eb !important;
  margin-bottom: 0 !important;
  display: flex !important;
  gap: 28px !important;
}

.gc-product-tabs-section .woocommerce-tabs .nav-tabs>li>a {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #6b7280 !important;
  padding: 14px 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  position: relative !important;
  background: transparent !important;
  transition: color 0.2s ease !important;
}

.gc-product-tabs-section .woocommerce-tabs .nav-tabs>li.active>a,
.gc-product-tabs-section .woocommerce-tabs .nav-tabs>li>a:hover {
  color: #111827 !important;
  border-bottom: 3px solid var(--gc-red) !important;
  margin-bottom: -2px !important;
}

.gc-product-tabs-section .woocommerce-Tabs-panel {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-top: none !important;
  border-radius: 0 0 12px 12px !important;
  padding: 32px !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #374151 !important;
}

/* Section 3: Related Products */
.gc-product-related-section {
  background: #ffffff !important;
  border-top: 1px solid #e5e7eb !important;
  padding-top: 40px !important;
  padding-bottom: 50px !important;
}

.gc-product-related-section .related>h2,
.gc-product-related-section .related>h3,
.gc-product-related-section .product-section-title-related,
.gc-product-related-section .related-products-wrapper>h2,
.gc-product-related-section .related-products-wrapper>h3 {
  display: none !important;
}

.gc-product-related-section .product-small.box {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.25s ease !important;
}

.gc-product-related-section .product-small.box:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-4px) !important;
}

.gc-product-related-section .product-small .box-image {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  height: 220px !important;
  min-height: 220px !important;
  max-height: 220px !important;
  margin-bottom: 12px !important;
  position: relative !important;
  overflow: hidden !important;
}

.gc-product-related-section .product-small .box-image .image-none,
.gc-product-related-section .product-small .box-image .image-none a {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.gc-product-related-section .product-small .box-image img {
  position: static !important;
  display: block !important;
  margin: 0 auto !important;
  max-height: 200px !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}

.gc-product-related-section .product-small.box:hover .box-image img {
  transform: scale(1.05) !important;
}

.gc-product-related-section .product-small .box-text {
  padding: 0 !important;
  text-align: left !important;
}

.gc-product-related-section .product-small .name {
  margin: 0 0 6px 0 !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  overflow: hidden !important;
}

.gc-product-related-section .product-small .name a {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.38 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.gc-product-related-section .product-small .price {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: var(--gc-red) !important;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .gc-product-gallery-col {
    padding-right: 0 !important;
    margin-bottom: 24px !important;
  }

  .gc-product-summary-col {
    padding-left: 0 !important;
  }

  .gc-product-summary-col .product-title-container .product-title {
    font-size: 22px !important;
  }
}

/* ==========================================================================
   CATEGORY PAGE: GRASSCITY STYLE OVERRIDES
   ========================================================================== */
.shop-page-title.category-page-title {
  display: none !important;
}

.gc-shop-page {
  background-color: #f7f9fa;
  min-height: 80vh;
}

.gc-shop-page.category-page-row {
  align-items: flex-start !important;
}

/* Category Header */
.gc-category-header {
  background: #ffffff;
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.gc-category-title {
  font-size: 40px !important;
  font-weight: 800 !important;
  color: #111;
  margin-bottom: 12px;
}

.gc-category-desc {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Toolbar */
.gc-shop-toolbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.gc-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gc-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 99px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.gc-filter-toggle:hover {
  background: #f8f8f8;
}

.gc-product-count {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.gc-toolbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gc-sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gc-sort-label {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.gc-sort-wrap select {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 6px 32px 6px 12px;
  font-size: 14px;
  background-color: #fff;
}

.gc-view-toggle {
  display: flex;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 2px;
}

.gc-view-btn {
  background: transparent;
  border: none;
  padding: 6px;
  border-radius: 4px;
  color: #999;
  cursor: pointer;
}

.gc-view-btn.active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Shop Body Layout */
.gc-shop-body {
  padding: 30px 0 60px;
}

.gc-shop-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Sidebar */
.gc-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  position: sticky;
  padding: 24px !important;
}

.gc-sidebar .widget>ul>li ul {
  border-left: none;
}

.gc-sidebar .widget>ul>li ul li {
  margin-left: 15px;
  border-top: 1px dashed #eee;
}

.gc-filter-group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.gc-filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.gc-filter-group-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  margin-bottom: 12px;
}

.gc-filter-group-toggle[aria-expanded="false"] .gc-filter-arrow {
  transform: rotate(-180deg);
}

.gc-filter-arrow {
  transition: transform 0.2s;
}

.gc-filter-group-body {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.gc-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gc-filter-item {
  margin-bottom: 8px;
}

.gc-filter-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #444;
}

.gc-filter-check {
  display: none;
}

.gc-check-custom {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  background: #fff;
}

.gc-filter-check:checked+.gc-check-custom {
  background: var(--gc-red);
  border-color: var(--gc-red);
}

.gc-filter-check:checked+.gc-check-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gc-filter-name {
  flex-grow: 1;
}

.gc-filter-count {
  color: #999;
  font-size: 12px;
}

/* Product Area */
.gc-product-area {
  padding-left: 30px;
  padding-top: 0 !important;
}

.gc-product-area .shop-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.gc-product-area .woocommerce-notices-wrapper:empty {
  display: none !important;
  margin: 0 !important;
}

/* Force CSS Grid on Flatsome's product row to fix 1-column stacking */
.gc-product-area .products.row {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
  align-items: start !important;
}

.gc-product-area .products.row::before,
.gc-product-area .products.row::after {
  display: none !important;
  /* Remove clearfix which breaks CSS grid */
}

.gc-product-area .products.row>.col {
  max-width: 100% !important;
  flex-basis: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* Hide Flatsome's native toolbars (we use our custom one) */
.category-filtering {
  display: none !important;
}

.gc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gc-product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.25s ease;
}

.gc-product-card:hover {
  border-color: #d1d1d1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.gc-card-image-wrap {
  position: relative;
  margin-bottom: 12px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gc-card-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.gc-product-card:hover .gc-card-img-primary {
  transform: scale(1.08);
}

.gc-badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.gc-badge-sale {
  background: var(--gc-red);
  color: #fff;
}

.gc-badge-oos {
  background: #333;
  color: #fff;
}

.gc-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gc-card-brand {
  font-size: 11px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.gc-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.4;
}

.gc-card-price {
  margin-top: auto;
  font-size: 16px;
  font-weight: 700;
  color: var(--gc-red);
}

.gc-card-price del {
  color: #999;
  font-size: 13px;
  font-weight: 400;
  margin-right: 6px;
}

.gc-card-price ins {
  text-decoration: none;
}

.gc-card-actions {
  margin-top: 16px;
}

.gc-card-actions .button.gc-add-to-cart,
.gc-card-actions .button.gc-view-options,
.gc-add-to-cart,
.gc-view-options {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  background: #f5f5f5;
  color: #111;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  margin: 0;
  min-height: 0;
  line-height: 1.3;
  letter-spacing: normal;
  box-shadow: none;
  box-sizing: border-box;
}

.gc-card-actions .button.gc-add-to-cart:hover,
.gc-card-actions .button.gc-view-options:hover,
.gc-add-to-cart:hover,
.gc-view-options:hover {
  background: #e5e5e5;
  color: #111;
}

.gc-card-actions .button.gc-add-to-cart.loading {
  opacity: 0.6;
  position: relative;
  pointer-events: none;
}

.gc-card-actions a.added_to_cart {
  display: block !important;
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  background: #111;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  margin: 0;
  box-sizing: border-box;
  line-height: 1.3;
}

.gc-card-actions a.added_to_cart:hover {
  background: #333;
  color: #fff;
}

/* Sidebar collapsed state */
.gc-sidebar-collapsed .gc-sidebar {
  display: none;
}

/* Responsive */
@media (max-width: 1023px) {
  .gc-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    height: 100vh;
    width: 280px;
    z-index: 1000;
    border-radius: 0;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .gc-sidebar-open {
    left: 0;
  }

  .gc-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .gc-overlay-visible {
    opacity: 1;
    visibility: visible;
  }

  .gc-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
  }

  .gc-sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
}

/* ==========================================================================
   SIDEBAR WIDGETS (Native WooCommerce / Flatsome)
   ========================================================================== */
.gc-sidebar .widget {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.gc-sidebar .widget:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.gc-sidebar .widget-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
  text-transform: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gc-sidebar .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gc-sidebar .widget ul li {
  margin-bottom: 8px;
  padding: 0;
}

.gc-sidebar .widget ul li a {
  color: #444;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.gc-sidebar .widget ul li a:hover {
  color: var(--gc-red);
}

.gc-sidebar .widget ul li .count {
  color: #999;
  font-size: 12px;
  margin-left: 4px;
}
/* Fix Flatsome Swatch Images */
.ux-swatch--image {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}
.ux-swatch--image img.ux-swatch__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 !important;
}
