/* =============================
   PRODUCTS GRID
============================= */

.products {
  padding: 80px 6%;
  padding-bottom: 190px;
  background: #f6f6f6;
}

.products-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.products-head {
  text-align: center;
  margin-bottom: 50px;
}

.products-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 3vw, 50px);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.products-sub {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

/* CARD */
.product-card {
  background: #fff;
  padding: 26px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.product-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.product-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* NAME */
.product-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   PRODUCT PAGE (single product)
   =============================== */

.product-page {
  padding: clamp(28px, 4vw, 56px) 16px;
  background: #f7f7f7;
}

.product-page-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition:
    background-color 0.15s ease,
    color 0.45s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;

  margin-bottom: 18px;
}

.product-back:hover {
  transform: translateY(-1px);
  background-color: #111;
  color: #e6e5e5;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

/* LEFT IMAGE CARD */
.product-hero {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: clamp(18px, 2vw, 26px);
}

.product-hero img {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: #f3f3f3;
  margin: 0 auto; /* centers horizontally */
}

/* RIGHT DETAILS */
.product-details {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  padding: clamp(18px, 2.2vw, 28px);
}

.product-title {
  font-family:
    "Bebas Neue",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(34px, 4.2vw, 54px);
  margin: 0 0 10px;
  color: #111;
}

.product-desc {
  margin: 0 0 18px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

/* META BOX */
.product-meta {
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px;
  margin: 16px 0 22px;
}

.meta-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.meta-row:last-child {
  border-bottom: none;
}

.meta-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.7);
}

.meta-value {
  font-size: 0.98rem;
  color: #111;
}

/* CTAs */
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 14px 14px;
  letter-spacing: 0.02em;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  min-height: 50px;
}

/* Make <button class="product-cta"> match <a class="product-cta"> */
button.product-cta {
  font: inherit; /* inherit font-family + size */
  line-height: inherit; /* match line-height */
  appearance: none; /* remove native button styling */
  -webkit-appearance: none;
  border: 1px solid #111; /* keep same border as .product-cta */
  cursor: pointer;
}

.product-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.product-cta.outline {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: none;
}

.product-cta.outline:hover {
  background: #f4f4f4;
}

/* OPTIONAL: WhatsApp emphasis */
#whatsappLink.product-cta {
  background: #1e1e1e;
}
/* PPE */
.ppe-tabs,
.srfs-tabs,
.isc-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.ppe-tab,
.srfs-tab,
.isc-tab {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.ppe-tab.active,
.srfs-tab.active,
.isc-tab.active {
  background: #0b1f3a;
  color: #fff;
  border-color: #0b1f3a;
}

.products-title {
  font-family:
    "Bebas Neue",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(34px, 4.2vw, 54px);
  margin: 0 0 10px;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .meta-row {
    grid-template-columns: 1fr;
  }
}

.product-features {
  margin: 12px 0 0;
  padding-left: 18px;
  line-height: 1.6;
}

.product-color-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-pill {
  width: 25px;
  height: 25px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
