.cigar-banner-section {
  background: transparent url('../img/WHO Cigars/cigar banner.png') center center no-repeat padding-box;
  background-size: contain;
  /* Show full image */
  background-repeat: no-repeat;
  background-position: center center;

  opacity: 1;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  width: 100%;
}

.cigar-dropdown-wrapper {
  margin-top: auto;
  margin-bottom: auto;
}

.cigar-dropdown {
  appearance: none;
  padding: 0.6rem 1rem;
  border: 2px solid #FFC400;
  border-radius: 8px;
  font-family: 'Alice', serif;
  font-size: 16px;
  background-color: transparent;
  color: #FFC400;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath fill='%23FFC400' d='M0,0 L5,5 L10,0'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 10px;
  padding-right: 2rem;

  margin-top: 250px;
}

.cigar-dropdown option {
  background-color: black;
  color: #FFC400;
  padding: 0.5rem;
  font-family: 'Alice', serif;
  font-size: 16px;
}

/* Products */
.cigar-product {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1180px;
  margin: 40px auto;
  padding: 0 1rem;
}

.product-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-column {
  flex: 0 0 50%;
  /* Give more space to image */
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-column img {
  width: 100%;
  height: auto;
  max-height: 800px;
  /* Increase this if needed */
  object-fit: contain;
}

.text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-left: 1rem;
}

.product-title {
  font: normal normal normal 20px/25px Alice;
  letter-spacing: 0.2px;
  color: #FFC403;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 1rem;
}

.product-detail {
  font: normal normal normal 15px/20px Alice;
  letter-spacing: 0.23px;
  color: #FFFFFF;
  opacity: 1;
  margin: 0.2rem 0;
}

/* Responsive support */
@media (max-width: 768px) {
  .product-info-row {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0.3rem auto;
    max-width: 90%;
  }

  .label {
    width: 120px;
    text-align: right;
    padding-right: 0.5rem;
    position: relative;
  }

  .value {
    flex: 1;
    text-align: left;
    white-space: normal;
    word-break: break-word;
    display: inline-block;
    position: relative;
  }

  .value::first-letter {
    display: none;
  }

  .contact-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  .contact-item {
    width: 100%;
    text-align: center !important;
  }
}

.product-info-row {
  display: flex;
  gap: 0.5rem;
  font: normal normal normal 15px/20px Alice;
  letter-spacing: 0.23px;
  color: #FFFFFF;
  opacity: 1;
  margin: 0.2rem 0;
}

.label {
  width: 130px;
  flex-shrink: 0;
  text-align: left;
}

.value {
  flex: 1;
}

.more-info-btn {
  margin-top: 1.5rem;
  padding: 0.6rem 1.5rem;
  background-color: #e8c071;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-family: 'Alice', serif;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.more-info-btn:hover {
  background-color: #d8ae4f;
}

.cigar-modal {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #141318;
  border: 2px solid #FFC400;
  border-radius: 12px;
  padding: 1.5rem;
  width: 500px;
  max-width: 50%;
  color: white;
  font-family: 'Alice', serif;
  display: none;
  z-index: 9999;
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-description {
  font-size: 16px;
  color: white;
  text-align: center;
}

.product-grid {
  /* max-width: 1880px; */
  margin: 0 auto;
}

.product-row {
  display: flex;
  flex-wrap: wrap;
}

.cigar-product {
  flex: 1 1 calc(50% - 1rem);
  display: flex;
  gap: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  align-items: center;
  /* vertically center image/text */
  min-height: auto;
  /* optional */
}

.product-column.image-column img {
  max-width: 200px;
  height: auto;
}

.product-column.text-column {
  flex-grow: 1;
}

@media (max-width: 768px) {
  .product-row {
    flex-direction: column;
  }

  .cigar-product {
    flex: 1 1 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-column.image-column img {
    max-width: 100px;
  }

  .cigar-modal {
    width: 90%;
    max-width: 90%;
    left: 50%;
    transform: translateX(-28%);
  }
}