/* ================================
   GCW HERO
================================ */
.gcw-hero {
  padding: 6rem 0 3rem;
  background: rgba(243,188,8,0.05);
  text-align: center;
}

.gcw-title {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  font-weight: 700;
  font-size: 2.5rem;
}

.gcw-subtitle {
  max-width: 650px;
  margin: .6rem auto;
  color: var(--muted);
  font-size: 1.1rem;
}


/* ================================
   ABOUT GCW
================================ */
.gcw-about-section {
  padding: 3rem 0 4rem;
}

.gcw-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.gcw-about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gcw-text {
  color: var(--text);
  line-height: 1.6;
}

.gcw-list li {
  list-style: none;
  margin-bottom: .55rem;
  color: var(--text);
}

.gcw-list i {
  color: var(--gold);
  margin-right: .5rem;
}


/* ================================
   GCW PRODUCT CARDS
================================ */
.gcw-products-section {
  padding: 4rem 0;
}

.gcw-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid var(--card-border);
  text-align: center;
  transition: .3s ease;
  box-shadow: var(--glass-shadow);
}

.gcw-card:hover {
  transform: translateY(-6px);
}

.gcw-icon {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: .8rem;
}

.gcw-card-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: .5rem;
}

.gcw-card-text {
  color: var(--muted);
}


/* ================================
   GCW GALLERY
================================ */
.gcw-gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--glass-shadow);
}


/* ================================
   GCW CTA
================================ */
.gcw-cta {
  padding: 4rem 0;
  text-align: center;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .gcw-title { font-size: 2rem; }
}

@media (max-width: 576px) {
  .gcw-title { font-size: 1.7rem; }
  .gcw-gallery-img { height: 200px; }
}
