/* ==========================================================================
   TURBOMEISTER — Products Page Styles
   ========================================================================== */

.products-section { background: var(--black); }

/* Filter Tabs */
.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}
.filter-tab {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--white-10);
  color: var(--steel-light);
  background: var(--black-2);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--white-10); color: var(--white); }
.filter-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Product Series Group */
.series-group {
  margin: 0;
  padding: 12px 0 !important;
}

/* Katalog — filter bar section juga rapat */
#products-container + * { padding-top: 0; }
.series-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-sm);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--white-05);
}
.series-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.series-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}
.series-desc {
  color: var(--steel);
  font-size: 0.9rem;
  max-width: 600px;
  margin-top: 4px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .products-grid { grid-template-columns: 1fr; }
  .series-header { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* AICO Special Card */
.aico-card {
  background: linear-gradient(135deg, rgba(200,168,75,0.08) 0%, var(--black-2) 100%);
  border: 1px solid var(--gold-dim);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.aico-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.aico-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: var(--sp-sm);
}
.aico-title span { color: var(--gold); }
.aico-desc {
  color: var(--steel-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.aico-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aico-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--steel-light);
}
.aico-feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.aico-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
}
.aico-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  border-radius: var(--r-md);
  overflow: hidden;
  width: 100%;
}
.aico-spec-cell {
  background: var(--black-2);
  padding: var(--sp-sm);
  text-align: center;
}
.aico-spec-val {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
}
.aico-spec-key {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--steel);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .aico-card { grid-template-columns: 1fr; }
  .aico-right { border-top: 1px solid var(--gold-dim); padding-top: var(--sp-lg); }
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.story-text p {
  color: var(--steel-light);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}
.story-text p:last-child { margin-bottom: 0; }

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red) 0%, var(--gold) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: var(--sp-md);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--black);
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 2px;
}
.timeline-event {
  font-size: 0.9rem;
  color: var(--steel-light);
  line-height: 1.5;
}
.timeline-event strong { color: var(--white); }

/* Global Presence */
.global-section { background: var(--black-2); }
.global-mega {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.global-mega-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 12vw, 10rem);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.global-mega-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 8px;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
}
.country-card {
  background: var(--black-3);
  border: 1px solid var(--white-05);
  border-radius: var(--r-md);
  padding: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s;
}
.country-card:hover { border-color: var(--gold-dim); }
.country-flag { font-size: 1.5rem; flex-shrink: 0; }
.country-name {
  font-size: 0.88rem;
  font-weight: 500;
}
.country-note {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--steel);
}
@media (max-width: 768px) {
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; }
}

/* QC Steps */
.qc-section { background: var(--black); }
.qc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--white-05);
  border: 1px solid var(--white-05);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.qc-step {
  background: var(--black-2);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
}
.qc-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(204,0,0,0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.qc-icon { font-size: 1.8rem; margin-bottom: 8px; }
.qc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.qc-desc {
  font-size: 0.8rem;
  color: var(--steel);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .qc-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .qc-steps { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-primary-card {
  background: linear-gradient(135deg, rgba(37,211,102,0.08) 0%, var(--black-2) 100%);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-primary-card:hover {
  border-color: rgba(37,211,102,0.4);
  box-shadow: 0 0 40px rgba(37,211,102,0.1);
}
.contact-wa-icon { font-size: 3.5rem; margin-bottom: var(--sp-sm); }
.contact-wa-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-sm);
}
.contact-wa-desc { color: var(--steel-light); margin-bottom: var(--sp-lg); }

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  background: var(--black-2);
  border: 1px solid var(--white-05);
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-md);
  transition: border-color 0.2s;
}
.contact-channel:hover { border-color: var(--white-10); }
.channel-icon { font-size: 1.3rem; flex-shrink: 0; }
.channel-title {
  font-weight: 600;
  font-size: 0.92rem;
}
.channel-value {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}
.faq-item {
  background: var(--black-2);
  border: 1px solid var(--white-05);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--white-10); }
.faq-q {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: var(--sp-xs);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.faq-q::before {
  content: 'T';
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: var(--red);
  color: var(--white);
  padding: 1px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-a {
  font-size: 0.87rem;
  color: var(--steel-light);
  line-height: 1.6;
  padding-left: 28px;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.marketplace-card {
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  text-align: center;
  border: 1px solid var(--white-05);
  transition: all 0.3s;
}
.marketplace-card.shopee {
  background: linear-gradient(135deg, rgba(238,77,45,0.1) 0%, var(--black-2) 100%);
}
.marketplace-card.shopee:hover {
  border-color: rgba(238,77,45,0.4);
  box-shadow: 0 8px 32px rgba(238,77,45,0.15);
}
.marketplace-card.tokped {
  background: linear-gradient(135deg, rgba(66,150,75,0.1) 0%, var(--black-2) 100%);
}
.marketplace-card.tokped:hover {
  border-color: rgba(66,150,75,0.4);
  box-shadow: 0 8px 32px rgba(66,150,75,0.15);
}
.mp-icon { font-size: 3rem; margin-bottom: var(--sp-sm); }
.mp-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.mp-note { color: var(--steel); font-size: 0.85rem; margin-bottom: var(--sp-md); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .marketplace-grid { grid-template-columns: 1fr; }
}
