.inquiry-page {
  padding: 70px 0;
  background: #fafafa;
}

.breadcrumb-sec {
  text-align: right;
  margin-bottom: 25px;
  color: #777;
  font-size: 15px;
}

.breadcrumb-sec span {
  margin: 0 8px;
}

.inquiry-wrapper{
    display:flex;
    gap:30px;
    align-items:flex-start;
}

.products-section{
    flex:1;
}

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.section-title h4{
    margin:0;
    font-weight:600;
}

.section-title span{
    background:#980e1b;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:14px;
}

.products-list{
    max-height:550px;
    overflow-y:auto;
    padding-right:8px;
}

.product-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:15px;
    margin-bottom:15px;
    transition:.3s;
}

.product-card:hover{
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.product-image{
    width:80px;
    height:80px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-content{
    flex:1;
}

.product-content h5{
    margin-bottom:5px;
    font-size:18px;
}

.product-content p{
    margin:0;
    color:#777;
}

.product-qty{
    text-align:center;
    min-width:70px;
}

.product-qty span{
    display:block;
    color:#888;
    font-size:13px;
}

.product-qty strong{
    font-size:22px;
    color:#0d6efd;
}

.summary-card{
    width:320px;
    background:#fff;
    border-radius:15px;
    padding:25px;
    border:1px solid #e5e5e5;
    position:sticky;
    top:100px;
}

.summary-card h4{
    margin-bottom:20px;
}

.summary-item{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.summary-item:last-child{
    border-bottom:none;
}

.product-details {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.product-image {
  width: 140px;
  height: 140px;
  border: 1px solid #ececec;
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.product-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.product-info {
  flex: 1;
}

.product-info h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
}

.qty-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.qty-section span {
  font-size: 18px;
  font-weight: 500;
}

.qty-box {
  display: flex;
  align-items: center;
}

.qty-box button {
  width: 50px;
  height: 50px;
  border: 1px solid #d9d9d9;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
}

.qty-box input {
  width: 70px;
  height: 50px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-left: none;
  border-right: none;
  font-size: 20px;
}

.estimate-card {
  margin-top: 45px;
}

.estimate-card h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

.price-box {
  width: 280px;
  height: 58px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.price-box span {
  padding: 0 18px;
  font-size: 22px;
  border-right: 1px solid #d9d9d9;
}

.price-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 18px;
  font-size: 20px;
}

.continue-btn {
  margin-top: 45px;
  display: flex;
  justify-content: flex-end;
}

.continue-btn button {
  border: none;
  background: #0d6efd;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  transition: 0.3s;
}

.continue-btn button:hover {
  background: #084fc7;
}

/* Responsive */

@media (max-width: 992px) {
  .product-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .qty-section {
    justify-content: center;
  }

  .price-box {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .inquiry-wrapper {
    padding: 20px;
  }

  .product-info h3 {
    font-size: 22px;
  }

  .qty-section {
    flex-direction: column;
    gap: 15px;
  }

  .qty-box button {
    width: 42px;
    height: 42px;
  }

  .qty-box input {
    height: 42px;
    width: 60px;
    font-size: 18px;
  }

  .price-box {
    height: 50px;
  }

  .continue-btn button {
    width: 100%;
    justify-content: center;
  }

  .breadcrumb-sec {
    text-align: left;
  }
}
.inquiry-form-card {
  margin-top: 50px;
  background: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.form-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #222;
  border-bottom: 1px solid #ececec;
  padding-bottom: 15px;
}

.inquiry-form-card label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.inquiry-form-card label span {
  color: #e63946;
}

.inquiry-input {
  height: 56px;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  padding: 0 18px;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: none;
}

.inquiry-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* .captcha-wrapper input {
  flex: 1;
} */

.captcha-box {
  min-width: 140px;
  height: 56px;
  border: 1px dashed #0d6efd;
  border-radius: 10px;
  background: #f8fbff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
}

.captcha-box span:nth-child(1) {
  color: #f25c37;
}

.captcha-box span:nth-child(2) {
  color: #38b000;
}

.captcha-box span:nth-child(3) {
  color: #f4a261;
}

.captcha-box span:nth-child(4) {
  color: #4361ee;
}

.submit-btn {
  border: none;
  background: #0d6efd;
  color: #fff;
  padding: 14px 50px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #084fc7;
  transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 991px) {
  .inquiry-form-card {
    padding: 25px;
  }

  .form-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .inquiry-form-card {
    padding: 20px;
    margin-top: 35px;
  }

  .form-title {
    font-size: 22px;
    text-align: center;
  }

  .captcha-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-box {
    width: 100%;
    min-width: 100%;
  }

  .submit-btn {
    width: 100%;
  }
}
.captcha-box {
  min-width: 160px;
  height: 56px;
  border: 1px dashed #babcbf;
  border-radius: 10px;
  background: #f8fbff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.captcha-box span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #333;
  user-select: none;
}

.captcha-refresh {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #0d6efd;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.captcha-refresh:hover {
  transform: rotate(180deg);
}
