/* CSS */
.product-detail { padding: 3rem 0; }
.product-detail__sidebar { margin-bottom: 2rem; }
.product-detail__content { padding-left: 1rem; }

/* Card */
.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background: #fff;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.product-card__media { overflow: hidden; }
.product-card__image {
  width: 100%; object-fit: cover; display: block;
}
.product-card__body { padding: 1.5rem; }
.product-card__title {
  font-size: 1.25rem; margin-bottom: 1rem; color: #333;
}
.product-card__attributes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.attribute-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #e0e0e0;
}

.attribute-row:last-child {
  border-bottom: none;
}

.product-card__attributes dt,
.product-card__attributes dd {
  margin: 0;
  padding: 0;
}

.product-card__attributes .label {
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.product-card__attributes dd {
  color: #4b5563;
  text-align: right;
  flex: 1;
}


.product-section {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.section-heading {
  font-size: 1.5rem !important;
}

.disclaimer-text {
  text-align: justify;
  font-size: 0.9rem;        /* Adjust this value as needed */
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}




/* Info */
.product-info__heading {
  font-size: 1.3rem; margin-bottom: 1rem; color: #1f3541;
}
.product-info__text {
  line-height: 1.6; margin-bottom: 2rem; color: #444;
}
.product-info__extra {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
@media (max-width:768px) {
  .product-info__extra {
    grid-template-columns: repeat(2,1fr);
  }
}
.product-info__item.full-width {
  grid-column: 1 / -1;
}
.product-info__item h4 {
  font-size: 1rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #1f3541;
}
.product-info__item p {
  margin: 0; color: #666; line-height: 1.4;
}


/* Section Title */
.quote-form__title {
  font-size: 1.3rem;       /* Adjust as needed: 1.75rem = ~28px */
  font-weight: 600;         /* Semi-bold for emphasis */
  margin-bottom: 0.8rem;    /* Spacing below */
  margin-top: 0.5rem;       /* Optional top spacing */
  color: #1f3541;           /* Dark professional tone */
  line-height: 1.2;         /* Clean vertical rhythm */
  text-align: left;         /* Ensure left alignment */
}


/* Form controls */
.quote-form__form .form-control,
.quote-form__form .form-select {
  height: calc(1.5em + 1rem + 2px);
  font-size: 1rem;
  border-radius: 8px;
}

/* Submit Button */
.quote-form__submit {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 25px;
}


/* Card style blocks */
.quote-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}


.qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #ccc;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.qty-btn:hover {
  background-color: #f8f9fa;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.qty-display {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.qty-unit {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  line-height: 1;
  text-align: center;
}

.list-heading {
  font-size: 1.5rem; /* Adjust size as needed */
  font-weight: 600;
  margin-bottom: 1rem;
}