/* =========================================================
   CGST MARKETPLACE HOME
   ---------------------------------------------------------
   SECTION INDEX
   01. ROOT VARIABLES
   02. PAGE RESET / FULL-WIDTH LAYOUT
   03. GLOBAL TYPOGRAPHY / SHARED CARD STYLES
   04. HEADER / TOP CAPSULE NAV
   05. HERO LAYOUT
   06. LEFT SIDEBAR / BROWSE BY CATEGORY
   07. SEARCH BAR / HERO SEARCH
   08. HERO STATS / SPOTLIGHT
   09. BUTTONS / LINKS
   10. BRAND STRIP
   11. CATEGORY GRID
   12. PRODUCT GRID
   13. STORY SECTION
   14. LATEST ACTIVITY
   15. FINAL CTA
   16. TABLET RESPONSIVE
   17. MOBILE RESPONSIVE
   18. SEARCH MODAL / POPUP
   19. HERO RIGHT SIDE / RECENT PRODUCTS PANEL
   ========================================================= */

/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */
:root {
  --cgst-orange: #f47b20;
  --cgst-orange-deep: #d9620d;
  --cgst-orange-soft: #fff2e7;
  --cgst-ink: #131a2b;
  --cgst-ink-soft: #475067;
  --cgst-line: #e9edf4;
  --cgst-line-strong: #dfe5ec;
  --cgst-bg: #f7f8fb;
  --cgst-card: #ffffff;
  --cgst-shadow: 0 16px 36px rgba(18, 24, 38, 0.06);
  --cgst-shadow-soft: 0 10px 24px rgba(18, 24, 38, 0.05);
  --cgst-header-offset: 72px;
  --cgst-radius-xl: 26px;
  --cgst-radius-lg: 22px;
  --cgst-radius-md: 18px;
}

/* =========================================================
   02. PAGE RESET / FULL-WIDTH LAYOUT
   ========================================================= */
body.page-template-template-cgst-marketplace-home {
  background: var(--cgst-bg);
}

.page-template-template-cgst-marketplace-home .ct-container,
.page-template-template-cgst-marketplace-home .site-content,
.page-template-template-cgst-marketplace-home article.page,
.page-template-template-cgst-marketplace-home .entry-content {
  max-width: none !important;
  width: 100% !important;
}

.page-template-template-cgst-marketplace-home .entry-content > *:not(.cgst-homepage) {
  display: none;
}

.cgst-homepage {
  color: var(--cgst-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cgst-shell {
  width: min(1360px, calc(100% - 28px));
  margin: 0 auto;
}

.cgst-homepage section {
  padding: 28px 0;
}

/* =========================================================
   03. GLOBAL TYPOGRAPHY / SHARED CARD STYLES
   ========================================================= */
.cgst-homepage h1,
.cgst-homepage h2,
.cgst-homepage h3,
.cgst-aside-card-head h2 {
  margin: 0;
  color: var(--cgst-ink);
  line-height: 1.05;
}

.cgst-homepage h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  letter-spacing: -0.04em;
}

.cgst-homepage h2 {
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.03em;
}

.cgst-homepage h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.02em;
}

.cgst-eyebrow,
.cgst-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cgst-orange);
  margin-bottom: 10px;
}

.cgst-kicker {
  font-size: 12px;
}

.cgst-home-hero-copy p,
.cgst-category-body p,
.cgst-spotlight-copy p,
.cgst-final-cta p,
.cgst-story-card p,
.cgst-homepage li,
.cgst-latest-date,
.cgst-product-meta,
.cgst-product-tax {
  color: var(--cgst-ink-soft);
  line-height: 1.6;
}

.cgst-aside-card,
.cgst-home-hero-card,
.cgst-story-card,
.cgst-final-cta,
.cgst-latest-item,
.cgst-product-card,
.cgst-category-card,
.cgst-brand-card {
  background: var(--cgst-card);
  border: 1px solid var(--cgst-line);
  box-shadow: var(--cgst-shadow);
}

/* =========================================================
   05. HERO LAYOUT
   ========================================================= */
.cgst-home-hero-section {
  padding-top: 10px;
}

.cgst-home-hero-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.cgst-home-hero-aside,
.cgst-home-hero-main,
.cgst-home-hero-card,
.cgst-home-hero-panels,
.cgst-recent-products-panel {
  min-width: 0;
}

.cgst-home-hero-card {
  border-radius: var(--cgst-radius-xl);
  padding: 24px;
}

.cgst-home-hero-copy {
  max-width: 860px;
  margin-bottom: 20px;
}

.cgst-home-hero-copy h1 {
  max-width: 14ch;
}

.cgst-home-hero-copy p {
  max-width: 64ch;
  margin: 12px 0 0;
}

/* =========================================================
   06. LEFT SIDEBAR / BROWSE BY CATEGORY
   ========================================================= */
.cgst-home-hero-aside {
  position: sticky;
  top: calc(var(--cgst-header-offset) + 8px);
  align-self: start;
}

.cgst-aside-card {
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - var(--cgst-header-offset) - 32px);
  overflow: hidden;
  min-width: 0;
}

.cgst-mini-category-list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  min-width: 0;
  padding-right: 6px;
  flex: 1 1 auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 123, 32, 0.45) transparent;
}

.cgst-mini-category-list::-webkit-scrollbar {
  width: 8px;
}

.cgst-mini-category-list::-webkit-scrollbar-track {
  background: transparent;
}

.cgst-mini-category-list::-webkit-scrollbar-thumb {
  background: rgba(244, 123, 32, 0.35);
  border-radius: 999px;
}

.cgst-mini-category-list::-webkit-scrollbar-thumb:hover {
  background: rgba(244, 123, 32, 0.55);
}

.cgst-mini-category-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
  color: var(--cgst-ink);
  padding: 12px 14px;
  border-radius: 14px;
  background: #f9fafc;
  border: 1px solid #eef2f6;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  min-width: 0;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.cgst-mini-category-item:hover,
.cgst-mini-category-item.is-active {
  background: var(--cgst-orange-soft);
  border-color: rgba(244, 123, 32, 0.28);
  transform: translateY(-1px);
}

.cgst-mini-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--cgst-orange);
}

.cgst-mini-category-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.cgst-mini-category-icon-desktop {
  display: inline-flex;
}

.cgst-mini-category-icon-mobile {
  display: none;
}

.cgst-mini-category-text {
  min-width: 0;
  flex: 1 1 auto;
}

.cgst-mini-category-arrow {
  width: 16px;
  height: 16px;
  color: var(--cgst-orange);
  flex: 0 0 auto;
  margin-left: auto;
}

.cgst-mini-category-item,
.cgst-mini-category-item:visited {
  color: var(--cgst-ink) !important;
  text-decoration: none !important;
}

.cgst-mini-category-item:hover,
.cgst-mini-category-item:focus,
.cgst-mini-category-item:active,
.cgst-mini-category-item.is-active {
  color: var(--cgst-ink) !important;
  text-decoration: none !important;
  background: var(--cgst-orange-soft) !important;
  border-color: rgba(244, 123, 32, 0.28) !important;
}

.cgst-mini-category-item:hover .cgst-mini-category-text,
.cgst-mini-category-item:focus .cgst-mini-category-text,
.cgst-mini-category-item:active .cgst-mini-category-text,
.cgst-mini-category-item.is-active .cgst-mini-category-text {
  color: var(--cgst-ink) !important;
}

.cgst-mini-category-item:hover .cgst-mini-category-icon,
.cgst-mini-category-item:focus .cgst-mini-category-icon,
.cgst-mini-category-item:active .cgst-mini-category-icon,
.cgst-mini-category-item.is-active .cgst-mini-category-icon {
  color: var(--cgst-orange) !important;
}

/* =========================================================
   07. SEARCH BAR / HERO SEARCH
   ========================================================= */
.cgst-search-card {
  margin-top: 20px;
}

.cgst-search-grid {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) minmax(150px, 1fr) minmax(190px, 1fr) auto;
  gap: 0;
  padding: 14px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e9edf4;
  box-shadow: 0 14px 30px rgba(18, 24, 38, 0.05);
  align-items: stretch;
}

.cgst-search-grid:focus-within {
  border-color: rgba(244, 123, 32, 0.35);
  box-shadow: 0 14px 30px rgba(244, 123, 32, 0.08);
}

.cgst-search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: 92px;
  position: relative;
}

.cgst-search-field:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--cgst-line-strong);
}

.cgst-search-field label {
  font-size: 12px;
  font-weight: 800;
  color: var(--cgst-ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.cgst-search-field input,
.cgst-search-field select {
  border: 0;
  outline: none;
  background: transparent;
  color: var(--cgst-ink);
  font-size: 17px;
  line-height: 1.3;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.cgst-search-field input::placeholder {
  color: #8a94a7;
}

.page-template-template-cgst-marketplace-home .cgst-search-field input:focus,
.page-template-template-cgst-marketplace-home .cgst-search-field input:focus-visible,
.page-template-template-cgst-marketplace-home .cgst-search-field select:focus,
.page-template-template-cgst-marketplace-home .cgst-search-field select:focus-visible {
  outline: none !important;
  border: 0 !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

.cgst-search-field:focus-within {
  background: #fff8f3;
  border-radius: 18px;
}

.cgst-search-field:focus-within label {
  color: var(--cgst-orange);
}

.cgst-search-submit {
  align-self: stretch;
  min-width: 170px;
  min-height: auto;
  border-radius: 22px;
  margin-left: 12px;
  background: linear-gradient(180deg, var(--cgst-orange), var(--cgst-orange-deep));
  color: #fff;
  box-shadow: 0 16px 28px rgba(244, 123, 32, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease;
}

.cgst-search-submit svg {
  width: 20px;
  height: 20px;
}

.cgst-search-submit:hover {
  transform: translateY(-1px);
}

/* =========================================================
   08. HERO STATS / SPOTLIGHT
   ========================================================= */
.cgst-home-hero-panels {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 16px;
  margin-top: 18px;
  align-items: start;
}

.cgst-stat-panel {
  display: grid;
  gap: 14px;
  align-self: start;
  position: sticky;
  top: calc(var(--cgst-header-offset) + 12px);
}

.cgst-stat {
  position: relative;
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
  border: 1px solid rgba(244, 123, 32, 0.16);
  box-shadow: 0 12px 28px rgba(18, 24, 38, 0.06);
  overflow: hidden;
}

.cgst-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cgst-orange), var(--cgst-orange-deep));
}

.cgst-stat strong {
  display: block;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
  color: var(--cgst-ink);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.cgst-stat span {
  display: block;
  margin-top: 12px;
  color: var(--cgst-ink-soft);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
}

.cgst-spotlight-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--cgst-line);
  background: linear-gradient(135deg, #ffffff 0%, #fff5ed 100%);
}

.cgst-spotlight-image img,
.cgst-category-media img,
.cgst-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cgst-spotlight-copy {
  padding: 22px;
}

.cgst-spotlight-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(19, 26, 43, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cgst-stat-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  padding: 0 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--cgst-ink-soft);
  text-transform: uppercase;
}

.cgst-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #18a957;
  box-shadow: 0 0 0 5px rgba(24, 169, 87, 0.12);
  flex: 0 0 auto;
}

/* =========================================================
   09. BUTTONS / LINKS
   ========================================================= */
.cgst-btn,
.cgst-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.cgst-btn:hover,
.cgst-search-submit:hover {
  transform: translateY(-1px);
}

.cgst-spotlight-actions,
.cgst-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cgst-btn-primary {
  background: linear-gradient(180deg, var(--cgst-orange), var(--cgst-orange-deep));
  color: #fff;
  box-shadow: 0 14px 24px rgba(244, 123, 32, 0.22);
}

.cgst-btn-secondary {
  background: #fff;
  color: var(--cgst-orange);
  border: 1px solid rgba(244, 123, 32, 0.24);
}

.cgst-btn-dark {
  background: var(--cgst-ink);
  color: #fff;
}

.cgst-text-link,
.cgst-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--cgst-orange);
  font-weight: 800;
  font-size: 14px;
}

.cgst-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

/* =========================================================
   10. BRAND STRIP
   ========================================================= */
.cgst-brand-strip-section {
  background: transparent;
  border-radius: 0;
  padding: 20px 0 8px;
}

.cgst-brand-marquee-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 0;
  background: transparent;
}

.cgst-brand-marquee {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: cgstBrandScroll 35s linear infinite;
  align-items: flex-start;
  padding: 8px 6px 12px;
}

.cgst-brand-card {
  min-width: 170px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  text-align: center !important;
}

.cgst-brand-card img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 12px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(233, 237, 244, 0.9);
  box-shadow: 0 14px 30px rgba(18, 24, 38, 0.08);
  flex: 0 0 auto !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cgst-brand-card:hover img {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(18, 24, 38, 0.12);
}

.cgst-brand-card span {
  display: block !important;
  width: 100%;
  max-width: 170px;
  margin: 0 !important;
  text-align: center !important;
  line-height: 1.3;
  white-space: normal;
  font-size: 12px;
  font-weight: 800;
  color: var(--cgst-ink);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@keyframes cgstBrandScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .cgst-brand-marquee {
    gap: 18px;
    padding: 6px 4px 10px;
  }

  .cgst-brand-card {
    min-width: 140px;
    gap: 10px !important;
  }

  .cgst-brand-card img {
    width: 94px;
    height: 94px;
    padding: 10px;
    border-radius: 18px;
  }

  .cgst-brand-card span {
    max-width: 140px;
    font-size: 11px;
  }
}
/* =========================================================
   11. CATEGORY GRID
   ========================================================= */
.cgst-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cgst-category-card {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
}

.cgst-category-media {
  aspect-ratio: 1.15 / 0.84;
  background: #f0f3f8;
}

.cgst-category-body {
  padding: 18px;
}

/* =========================================================
   12. PRODUCT GRID
   ========================================================= */
.cgst-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cgst-product-card {
  border-radius: 22px;
  overflow: hidden;
}

.cgst-product-media {
  display: block;
  aspect-ratio: 1 / 0.78;
  background: #f0f3f8;
}

.cgst-product-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 180px;
  color: #8a93a7;
  font-weight: 700;
}

.cgst-product-body {
  padding: 16px;
}

.cgst-product-tax,
.cgst-product-meta {
  font-size: 13px;
}

.cgst-product-body h3 {
  margin-top: 6px;
  font-size: 20px;
}

.cgst-product-body h3 a {
  color: inherit;
  text-decoration: none;
}

.cgst-product-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

.cgst-product-meta span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f7f9fc;
  border: 1px solid #eef2f7;
}

/* =========================================================
   13. STORY SECTION
   ========================================================= */
.cgst-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cgst-story-card {
  border-radius: 24px;
  padding: 24px;
}

.cgst-story-card-accent {
  background: linear-gradient(135deg, #1b2236 0%, #111725 100%);
  color: #fff;
}

.cgst-story-card-accent h2,
.cgst-story-card-accent li,
.cgst-story-card-accent .cgst-eyebrow {
  color: #fff;
}

.cgst-story-card-accent .cgst-eyebrow {
  opacity: 0.86;
}

.cgst-story-card-accent li {
  color: rgba(255, 255, 255, 0.78);
}

.cgst-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
}

.cgst-check-list li {
  position: relative;
  padding-left: 26px;
}

.cgst-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--cgst-orange);
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.14);
}

/* =========================================================
   14. LATEST ACTIVITY
   ========================================================= */
.cgst-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cgst-latest-item {
  border-radius: 20px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--cgst-ink);
}

.cgst-latest-title {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.cgst-latest-date {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

/* =========================================================
   15. FINAL CTA
   ========================================================= */
.cgst-final-cta {
  border-radius: 26px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #fff5ec 0%, #ffffff 100%);
}

/* =========================================================
   16. TABLET RESPONSIVE
   ========================================================= */
@media (max-width: 1240px) {
  .cgst-home-hero-grid {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .cgst-category-grid,
  .cgst-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .cgst-home-hero-grid,
  .cgst-story-grid {
    grid-template-columns: 1fr;
  }

  .cgst-home-hero-aside {
    position: static;
    top: auto;
  }

  .cgst-aside-card {
    max-height: none;
    overflow: visible;
  }

  .cgst-mini-category-list {
    max-height: none;
    padding-right: 0;
  }

  .cgst-category-grid,
  .cgst-product-grid,
  .cgst-latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cgst-spotlight-card,
  .cgst-search-grid {
    grid-template-columns: 1fr;
  }

  .cgst-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cgst-search-field:not(:first-child)::before {
    display: none;
  }

  .cgst-search-field:not(:last-of-type) {
    border-bottom: 1px solid #e9edf4;
  }

  .cgst-search-submit {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    margin: 10px 0 0;
    border-radius: 18px;
  }

  .cgst-recent-products-grid--threecol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   17. MOBILE RESPONSIVE
   ========================================================= */
@media (max-width: 767px) {
  .cgst-shell {
    width: min(100% - 18px, 1360px);
  }

  .cgst-homepage section {
    padding: 20px 0;
  }

  .cgst-home-hero-card,
  .cgst-aside-card,
  .cgst-story-card,
  .cgst-final-cta {
    border-radius: 22px;
    padding: 20px;
  }

  .cgst-homepage h1 {
    font-size: 36px;
  }

  .cgst-brand-marquee {
    gap: 18px;
  }

  .cgst-brand-card {
    min-width: 120px;
  }

  .cgst-brand-card img {
    width: 88px;
    height: 88px;
    padding: 14px;
  }

  .cgst-brand-card span {
    font-size: 11px;
    max-width: 120px;
  }

  .cgst-home-hero-panels {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
  }

  .cgst-stat-panel {
    position: static;
    top: auto;
    align-self: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .cgst-stat {
    padding: 16px 14px;
    border-radius: 18px;
  }

  .cgst-stat strong {
    font-size: 24px;
    line-height: 1;
  }

  .cgst-stat span {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.3;
  }

  /* =========================================
     mobile category strip
     ========================================= */
  .cgst-mini-category-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 10px;
    margin: 0 -2px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cgst-mini-category-list::-webkit-scrollbar {
    display: none;
  }

  .cgst-mini-category-item {
    flex: 0 0 auto;
    min-width: 220px;
    max-width: 220px;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
    scroll-snap-align: start;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .cgst-mini-category-item:hover,
  .cgst-mini-category-item:focus,
  .cgst-mini-category-item:active {
    text-decoration: none !important;
    color: inherit !important;
    border-color: rgba(244, 123, 32, 0.22);
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
    transform: translateY(-1px);
    outline: none !important;
  }

  .cgst-mini-category-item:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.14);
  }

  .cgst-mini-category-item.is-active,
  .cgst-mini-category-item.current-cat,
  .cgst-mini-category-item[aria-current="page"] {
    background: #fff7ed;
    border-color: rgba(244, 123, 32, 0.26);
    box-shadow: 0 14px 28px rgba(244, 123, 32, 0.12);
  }

  .cgst-mini-category-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff1e5;
    color: #f47b20;
    flex-shrink: 0;
  }

  .cgst-mini-category-icon-desktop {
    display: none !important;
  }

  .cgst-mini-category-icon-mobile {
    display: flex !important;
  }

  .cgst-mini-category-icon-mobile svg,
  .cgst-mini-category-icon-mobile svg * {
    fill: none !important;
    stroke: currentColor !important;
  }

  .cgst-mini-category-icon-mobile svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  .cgst-mini-category-text {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
    white-space: normal;
  }

  .cgst-mini-category-text strong,
  .cgst-mini-category-text .cgst-mini-category-name {
    margin: 0;
    color: #101828;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cgst-mini-category-text span,
  .cgst-mini-category-text .cgst-mini-category-count {
    margin: 0;
    color: #f47b20;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
  }

  .cgst-mini-category-arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    flex-shrink: 0;
  }

  .cgst-mini-category-arrow svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
  }

  .cgst-mini-category-item.is-active .cgst-mini-category-arrow,
  .cgst-mini-category-item.current-cat .cgst-mini-category-arrow,
  .cgst-mini-category-item[aria-current="page"] .cgst-mini-category-arrow {
    color: #f47b20;
  }

  .cgst-recent-products-panel {
    width: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .cgst-recent-products-grid,
  .cgst-recent-products-grid--threecol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    min-width: 0;
  }

  .cgst-recent-product-card {
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .cgst-recent-product-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .cgst-recent-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cgst-recent-product-body {
    padding: 12px;
    min-height: unset;
  }

  .cgst-recent-product-title {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.3;
  }

  .cgst-recent-product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cgst-recent-product-price {
    font-size: 13px;
    line-height: 1.3;
  }

  .cgst-recent-products-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .cgst-recent-products-actions .cgst-btn {
    width: 100%;
    justify-content: center;
  }

  .cgst-category-grid,
  .cgst-product-grid,
  .cgst-latest-grid {
    grid-template-columns: 1fr;
  }

  .cgst-section-head,
  .cgst-spotlight-actions,
  .cgst-final-cta-actions {
    align-items: start;
    flex-direction: column;
  }

  .cgst-search-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .cgst-search-field {
    min-height: auto;
    padding: 14px 10px;
  }

  .cgst-search-submit,
  .cgst-btn {
    width: 100%;
  }
}/* =========================================================
   17. MOBILE RESPONSIVE
   ========================================================= */
@media (max-width: 767px) {
  .cgst-shell {
    width: min(100% - 18px, 1360px);
  }

  .cgst-homepage section {
    padding: 20px 0;
  }

  .cgst-home-hero-card,
  .cgst-aside-card,
  .cgst-story-card,
  .cgst-final-cta {
    border-radius: 22px;
    padding: 20px;
  }

  .cgst-homepage h1 {
    font-size: 36px;
  }

  .cgst-brand-marquee {
    gap: 18px;
  }

  .cgst-brand-card {
    min-width: 120px;
  }

  .cgst-brand-card img {
    width: 88px;
    height: 88px;
    padding: 14px;
  }

  .cgst-brand-card span {
    font-size: 11px;
    max-width: 120px;
  }

  .cgst-home-hero-panels {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
  }

  .cgst-stat-panel {
    position: static;
    top: auto;
    align-self: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .cgst-stat {
    padding: 16px 14px;
    border-radius: 18px;
  }

  .cgst-stat strong {
    font-size: 24px;
    line-height: 1;
  }

  .cgst-stat span {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.3;
  }

  /* =========================================
     mobile category strip
     ========================================= */
  .cgst-mini-category-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 10px;
    margin: 0 -2px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cgst-mini-category-list::-webkit-scrollbar {
    display: none;
  }

  .cgst-mini-category-item {
    flex: 0 0 auto;
    min-width: 220px;
    max-width: 220px;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
    scroll-snap-align: start;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .cgst-mini-category-item:hover,
  .cgst-mini-category-item:focus,
  .cgst-mini-category-item:active {
    text-decoration: none !important;
    color: inherit !important;
    border-color: rgba(244, 123, 32, 0.22);
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
    transform: translateY(-1px);
    outline: none !important;
  }

  .cgst-mini-category-item:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.14);
  }

  .cgst-mini-category-item.is-active,
  .cgst-mini-category-item.current-cat,
  .cgst-mini-category-item[aria-current="page"] {
    background: #fff7ed;
    border-color: rgba(244, 123, 32, 0.26);
    box-shadow: 0 14px 28px rgba(244, 123, 32, 0.12);
  }

  .cgst-mini-category-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff1e5;
    color: #f47b20;
    flex-shrink: 0;
  }

  .cgst-mini-category-icon-desktop {
    display: none !important;
  }

  .cgst-mini-category-icon-mobile {
    display: flex !important;
  }

  .cgst-mini-category-icon-mobile svg,
  .cgst-mini-category-icon-mobile svg * {
    fill: none !important;
    stroke: currentColor !important;
  }

  .cgst-mini-category-icon-mobile svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  .cgst-mini-category-text {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
    white-space: normal;
  }

  .cgst-mini-category-text strong,
  .cgst-mini-category-text .cgst-mini-category-name {
    margin: 0;
    color: #101828;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cgst-mini-category-text span,
  .cgst-mini-category-text .cgst-mini-category-count {
    margin: 0;
    color: #f47b20;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
  }

  .cgst-mini-category-arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    flex-shrink: 0;
  }

  .cgst-mini-category-arrow svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
  }

  .cgst-mini-category-item.is-active .cgst-mini-category-arrow,
  .cgst-mini-category-item.current-cat .cgst-mini-category-arrow,
  .cgst-mini-category-item[aria-current="page"] .cgst-mini-category-arrow {
    color: #f47b20;
  }

  .cgst-recent-products-panel {
    width: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .cgst-recent-products-grid,
  .cgst-recent-products-grid--threecol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    min-width: 0;
  }

  .cgst-recent-product-card {
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .cgst-recent-product-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .cgst-recent-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cgst-recent-product-body {
    padding: 12px;
    min-height: unset;
  }

  .cgst-recent-product-title {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.3;
  }

  .cgst-recent-product-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cgst-recent-product-price {
    font-size: 13px;
    line-height: 1.3;
  }

  .cgst-recent-products-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .cgst-recent-products-actions .cgst-btn {
    width: 100%;
    justify-content: center;
  }

  .cgst-category-grid,
  .cgst-product-grid,
  .cgst-latest-grid {
    grid-template-columns: 1fr;
  }

  .cgst-section-head,
  .cgst-spotlight-actions,
  .cgst-final-cta-actions {
    align-items: start;
    flex-direction: column;
  }

  .cgst-search-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .cgst-search-field {
    min-height: auto;
    padding: 14px 10px;
  }

  .cgst-search-submit,
  .cgst-btn {
    width: 100%;
  }
}

/* =========================================================
   18. SEARCH MODAL / POPUP
   ========================================================= */
.cgst-search-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.cgst-search-modal.is-open {
  display: block;
}

.cgst-search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 26, 43, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cgst-search-modal-panel {
  position: relative;
  width: min(1280px, calc(100% - 40px));
  margin: 120px auto 0;
  z-index: 2;
}

.cgst-search-card--modal {
  margin-top: 0;
}

.cgst-search-card--modal .cgst-search-grid {
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(18, 24, 38, 0.16);
}

.cgst-search-modal-close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--cgst-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(18, 24, 38, 0.12);
}

.cgst-search-modal-close svg {
  width: 20px;
  height: 20px;
}

body.cgst-search-open {
  overflow: hidden;
}

.cgst-home-hero-card > .cgst-search-card:not(.cgst-search-card--modal) {
  display: none;
}

@media (max-width: 1024px) {
  .cgst-search-modal-panel {
    width: min(100% - 20px, 1280px);
    margin-top: 90px;
  }

  .cgst-search-card--modal .cgst-search-grid {
    border-radius: 28px;
  }
}

/* =========================================================
   19. SPOTLIGHT / TRUST + RECENT PRODUCTS PANEL
   ========================================================= */
.cgst-spotlight-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cgst-spotlight-points li {
  position: relative;
  padding-left: 24px;
  color: var(--cgst-ink-soft);
  font-weight: 600;
  line-height: 1.5;
}

.cgst-spotlight-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cgst-orange);
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.12);
}

.cgst-home-hero-card {
  padding-top: 18px;
}

.cgst-search-modal,
.cgst-home-hero-panels {
  margin-top: 0;
}

.cgst-recent-products-panel {
  background: var(--cgst-card);
  border: 1px solid var(--cgst-line);
  box-shadow: var(--cgst-shadow);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cgst-recent-products-grid--threecol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cgst-recent-product-card {
  background: #fff;
  border: 1px solid #edf1f5;
  border-radius: 18px;
  overflow: hidden;
  min-width: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cgst-recent-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18, 24, 38, 0.08);
}

.cgst-recent-product-image {
  display: block;
  aspect-ratio: 1 / 0.82;
  background: #f4f6f9;
}

.cgst-recent-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cgst-recent-product-body {
  padding: 12px 12px 14px;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.cgst-recent-product-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--cgst-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cgst-recent-product-title a {
  color: inherit;
  text-decoration: none;
}

.cgst-recent-product-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--cgst-orange);
  line-height: 1.3;
}

.cgst-recent-product-price .amount {
  color: var(--cgst-orange);
}

.cgst-recent-products-empty {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 22px;
  background: linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
  border: 1px dashed rgba(230, 148, 36, 0.28);
  border-radius: 18px;
}

.cgst-recent-products-empty-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--cgst-ink);
}

.cgst-recent-products-empty-copy {
  margin: 0;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cgst-ink-soft);
}

.cgst-recent-products-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* =========================================================
   20. MOBILE FINAL TWEAKS
   ========================================================= */
@media (max-width: 767px) {
  .cgst-recent-products-grid,
  .cgst-recent-products-grid--threecol {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cgst-mini-category-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .cgst-mini-category-list::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}

/* =========================================================
   21. ABOUT SENANGJUAL + FAQ
   ========================================================= */
.cgst-about-section {
  padding-top: 8px;
}

.cgst-about-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  background: #ffffff;
  border: 1px solid var(--cgst-line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--cgst-shadow);
}

.cgst-about-mini-card {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 28px rgba(18, 24, 38, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cgst-about-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(18, 24, 38, 0.12);
}

.cgst-about-copy {
  min-width: 0;
}

.cgst-about-copy p {
  margin: 14px 0 0;
  color: var(--cgst-ink-soft);
  line-height: 1.7;
  font-size: 15px;
}

.cgst-about-points {
  display: grid;
  gap: 14px;
}


.cgst-about-mini-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.cgst-about-mini-card p {
  margin: 0;
  color: var(--cgst-ink-soft);
  line-height: 1.6;
  font-size: 14px;
}

/* FAQ */
.cgst-faq-section {
  padding-top: 8px;
}

.cgst-faq-grid {
  display: grid;
  gap: 14px;
}

.cgst-faq-item {
  background: #fff;
  border: 1px solid var(--cgst-line);
  border-radius: 20px;
  box-shadow: var(--cgst-shadow-soft);
  overflow: hidden;
}

.cgst-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 800;
  color: var(--cgst-ink);
  position: relative;
}

.cgst-faq-item summary::-webkit-details-marker {
  display: none;
}

.cgst-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  color: var(--cgst-orange);
}

.cgst-faq-item[open] summary::after {
  content: "−";
}

.cgst-faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--cgst-ink-soft);
  line-height: 1.7;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
  .cgst-about-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cgst-about-card {
    padding: 20px;
    border-radius: 22px;
    gap: 16px;
  }

  .cgst-about-copy p {
    font-size: 14px;
  }

  .cgst-about-mini-card {
    border-radius: 18px;
    padding: 16px;
  }

  .cgst-about-mini-card h3 {
    font-size: 16px;
  }

  .cgst-about-mini-card p {
    font-size: 13px;
  }

  .cgst-faq-item {
    border-radius: 18px;
  }

  .cgst-faq-item summary {
    padding: 16px 18px;
    font-size: 15px;
  }

  .cgst-faq-item summary::after {
    right: 18px;
  }

  .cgst-faq-item p {
    padding: 0 18px 18px;
    font-size: 14px;
  }
}
@media (max-width: 767px){
  .ct-header-account,
  .ct-account-item,
  .ct-header-account-dropdown,
  .ct-account-dropdown,
  a[href*="my-account"]{
    display:none !important;
  }
}

.cgst-homepage .cgst-btn,
.cgst-homepage .cgst-btn:visited {
  text-decoration: none !important;
}

.cgst-homepage .cgst-btn-primary,
.cgst-homepage .cgst-btn-primary:visited,
.cgst-homepage .cgst-btn-primary:hover,
.cgst-homepage .cgst-btn-primary:focus,
.cgst-homepage .cgst-btn-primary:active {
  color: #fff !important;
}

.cgst-homepage .cgst-btn-secondary,
.cgst-homepage .cgst-btn-secondary:visited,
.cgst-homepage .cgst-btn-secondary:hover,
.cgst-homepage .cgst-btn-secondary:focus,
.cgst-homepage .cgst-btn-secondary:active {
  color: var(--cgst-orange) !important;
}

.cgst-homepage .cgst-btn-dark,
.cgst-homepage .cgst-btn-dark:visited,
.cgst-homepage .cgst-btn-dark:hover,
.cgst-homepage .cgst-btn-dark:focus,
.cgst-homepage .cgst-btn-dark:active {
  color: #fff !important;
}
