/* =====================================================
   ISUZU PRODUCT CARD
   iOS × SONY PREMIUM STYLE
===================================================== */

.isuzu-products {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}


/* =====================================================
   SECTION HEADER
===================================================== */

.product-section-head {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.product-eyebrow {
  display: inline-block;
  margin-bottom: 12px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;

  color: #777;
}

.product-section-head h2 {
  margin: 0;

  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -2px;

  color: #151515;
}

.product-section-head h2 strong {
  color: #d71920;
}

.product-section-head p {
  max-width: 600px;
  margin: 18px auto 0;

  color: #777;
  font-size: 15px;
  line-height: 1.7;
}


/* =====================================================
   PRODUCT GRID
===================================================== */

.isuzu-product-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 26px;

  align-items: start;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.isuzu-product-card {
  position: relative;

  overflow: hidden;

  background: rgba(255,255,255,.96);

  border: 1px solid #e8e8e8;

  border-radius: 28px;

  box-shadow:
    0 10px 35px rgba(0,0,0,.055);

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease,
    border-color .35s ease;
}

.isuzu-product-card:hover {
  transform: translateY(-8px);

  border-color: #dedede;

  box-shadow:
    0 25px 65px rgba(0,0,0,.11);
}


/* =====================================================
   IMAGE
===================================================== */

.product-image-box {
  position: relative;

  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;

  background:
    radial-gradient(
      circle at center,
      #444 0%,
      #000 65%,
      #000 100%
    );

  overflow: hidden;
}

.product-image-box::after {
  content: "";

  position: absolute;

  left: 15%;
  right: 15%;
  bottom: 15px;

  height: 20px;

  background: rgba(0,0,0,.12);

  filter: blur(15px);

  border-radius: 50%;
}

.product-image {
  position: relative;
  z-index: 0;

  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: contain;

  transition:
    transform .45s cubic-bezier(.2,.8,.2,1);
}

.isuzu-product-card:hover .product-image {
  transform: scale(1.045);
}


/* =====================================================
   BADGE
===================================================== */

.product-badge {
  position: absolute;

  top: 17px;
  left: 17px;

  z-index: 5;

  padding: 7px 11px;

  border-radius: 999px;

  background: #151515;
  color: white;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1px;

  box-shadow:
    0 5px 15px rgba(0,0,0,.12);
}

.product-badge.badge-new {
  background: #d71920;
}


/* =====================================================
   CONTENT
===================================================== */

.product-content {
  padding: 25px;
}

.product-category {
  margin-bottom: 7px;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1.7px;

  color: #999;
}

.product-name {
  margin: 0;

  font-size: 17px;
  line-height: 1.15;

  letter-spacing: -.8px;

  color: #151515;
}

.product-short {
  margin: 10px 0 20px;

  min-height: 47px;

  font-size: 13px;
  line-height: 1.6;

  color: #777;
}


/* =====================================================
   PRICE TAG
===================================================== */

.product-price-tag {
  position: relative;

  margin-bottom: 18px;

  padding: 17px 18px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #fafafa,
      #f2f2f2
    );

  border: 1px solid #e6e6e6;
}

.product-price-tag::before {
  content: "";

  position: absolute;

  left: 0;
  top: 12px;
  bottom: 12px;

  width: 3px;

  background: #d71920;

  border-radius: 0 4px 4px 0;
}

.price-label {
  display: block;

  margin-bottom: 3px;

  font-size: 10px;
  font-weight: 900;

  color: #333;
}

.product-price-tag strong {
  display: block;

  font-size: 22px;

  letter-spacing: -.7px;

  color: #151515;
  font-weight: 800;
}

.product-price-tag small {
  display: block;

  margin-top: 5px;

  font-size: 9px;

  color: #333;
}


/* =====================================================
   SPEC ACCORDION
===================================================== */

.product-spec {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}


/* BUTTON */

.spec-toggle {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 2px;

  border: 0;

  background: transparent;

  cursor: pointer;

  font-family: inherit;

  color: #222;

  font-size: 13px;
  font-weight: 700;
}

.spec-toggle:active {
  transform: scale(.985);
}


/* CHEVRON */

.spec-chevron {
  width: 27px;
  height: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f3f3f3;
}

.spec-chevron i {
  width: 7px;
  height: 7px;

  display: block;

  border-right: 1.5px solid #222;
  border-bottom: 1.5px solid #222;

  transform:
    rotate(45deg)
    translateY(-2px);

  transition: transform .3s ease;
}

.product-spec.is-open .spec-chevron i {
  transform:
    rotate(225deg)
    translateY(-1px);
}


/* PANEL */

.spec-panel {
  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows .35s ease;
}

.spec-panel > .spec-table {
  overflow: hidden;
}

.product-spec.is-open .spec-panel {
  grid-template-rows: 1fr;
}


/* =====================================================
   SPEC TABLE
===================================================== */

.spec-table {
  padding-bottom: 15px;
}

.spec-row {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  padding: 9px 2px;

  font-size: 11px;

  border-bottom: 1px dashed #ededed;
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row span {
  color: #999;
}

.spec-row strong {
  color: #333;

  text-align: right;
}


/* =====================================================
   ACTION BUTTON
===================================================== */

.product-actions {
  display: grid;

  grid-template-columns: 1.35fr 1fr;

  gap: 9px;

  margin-top: 18px;
}

.product-btn {
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  border-radius: 14px;

  text-decoration: none;

  font-size: 12px;
  font-weight: 750;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.product-btn:active {
  transform: scale(.96);
}


/* WHATSAPP */

.btn-whatsapp {
  background: #007AFF;

  color: white;

  box-shadow:
    0 7px 18px rgba(0,0,0,.12);
}

.btn-whatsapp:hover {
  background: #000;

  box-shadow:
    0 10px 25px rgba(0,0,0,.18);
}


/* PHONE */

.btn-phone {
  background: white;

  color: #222;

  border: 1px solid #dedede;
}

.btn-phone:hover {
  background: #f6f6f6;
}

.btn-icon {
  font-size: 15px;
}


/* =====================================================
   PAGINATION
===================================================== */

.product-pagination {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  margin-top: 45px;
}

.pagination-numbers {
  display: flex;

  align-items: center;

  gap: 6px;
}

.pagination-arrow,
.pagination-number {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  border: 1px solid #e2e2e2;

  background: white;

  color: #555;

  font-family: inherit;

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition:
    .25s ease;
}

.pagination-arrow {
  font-size: 22px;
  font-weight: 400;
}

.pagination-number:hover,
.pagination-arrow:hover {
  border-color: #ccc;

  background: #f7f7f7;

  transform: translateY(-2px);
}

.pagination-number.active {
  background: #171717;

  border-color: #171717;

  color: white;

  box-shadow:
    0 6px 18px rgba(0,0,0,.15);
}

.pagination-arrow:disabled {
  opacity: .35;

  cursor: not-allowed;

  transform: none;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

  .isuzu-product-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap: 20px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

  .isuzu-products {
    width: min(
      100% - 24px,
      500px
    );

    padding: 55px 0;
  }


  .product-section-head {
    margin-bottom: 30px;
  }


  .product-section-head h2 {
    font-size: 34px;

    letter-spacing: -1.5px;
  }


  .product-section-head p {
    font-size: 13px;
  }


  .isuzu-product-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }


  .isuzu-product-card {
    border-radius: 24px;
  }


  .product-image-box {
    height: auto;
  }


  .product-content {
    padding: 21px;
  }


  .product-name {
    font-size: 24px;
  }


  .product-short {
    min-height: auto;
  }


  .product-price-tag strong {
    font-size: 22px;
  }


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


  .pagination-arrow,
  .pagination-number {
    width: 37px;
    height: 37px;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

  .pagination-numbers {
    gap: 3px;
  }

  .pagination-arrow,
  .pagination-number {
    width: 34px;
    height: 34px;

    font-size: 11px;
  }

}