/* Offcanvas */
.offcanvas {
  width: 420px !important;
}

.offcanvas-header {
  border-bottom: 1px solid #e9ecef;
  padding: 18px 20px;
}

.offcanvas-title {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
}

.offcanvas-body {
  padding: 20px;
}

/* Inquiry Card */
.inquiry-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}

.inquiry-img {
  width: 90px;
  height: 90px;
  background: #f7f7f7;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.inquiry-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inquiry-content {
  flex: 1;
  min-width: 0;
}

.product-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #222;
  line-height: 1.5;
  word-break: break-word;
}

.product-qty {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
}

.product-qty span {
  font-weight: 600;
}

.delete-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 22px;
  color: #000;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.delete-btn:hover {
  color: #dc3545;
  transform: scale(1.08);
}

/* ---------- Tablet ---------- */

@media (max-width: 991px) {
  .offcanvas {
    width: 360px !important;
  }

  .product-title {
    font-size: 17px;
  }

  .product-qty {
    font-size: 15px;
  }

  .inquiry-img {
    width: 80px;
    height: 80px;
  }
}

/* ---------- Mobile ---------- */

@media (max-width: 767px) {
  .offcanvas {
    width: 100% !important;
  }

  .offcanvas-header {
    padding: 15px;
  }

  .offcanvas-body {
    padding: 15px;
  }

  .inquiry-card {
    gap: 12px;
    padding: 12px 0;
  }

  .inquiry-img {
    width: 70px;
    height: 70px;
  }

  .product-title {
    font-size: 15px;
    line-height: 1.4;
  }

  .product-qty {
    margin-top: 6px;
    font-size: 14px;
  }

  .delete-btn {
    font-size: 20px;
  }
}

/* ---------- Small Mobile ---------- */

@media (max-width: 480px) {
  .offcanvas-title {
    font-size: 18px;
  }

  .inquiry-card {
    gap: 10px;
  }

  .inquiry-img {
    width: 60px;
    height: 60px;
  }

  .product-title {
    font-size: 14px;
  }

  .product-qty {
    font-size: 13px;
  }

  .delete-btn {
    font-size: 18px;
  }
}
.inquiry-btn-wrapper {
  margin-top: 25px;
}

.inquiry-now-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding: 12px 20px;
  border-radius: 50px;
  background: #0d6efd;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.inquiry-now-btn:hover {
  background: #0b5ed7;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .inquiry-now-btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
  }
}
