/*Compose Your Box*/
#build-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin: 30px auto;
}

.available-products, .your-box {
  width: 48%;
}

#product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.praline {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #fff;
}

.praline:hover {
  transform: scale(1.05);
  cursor: pointer;
  border-color: #999;
}

.praline img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

/* Box Area */
#box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.box-slot {
  border: 1px dashed #ccc;
  border-radius: 10px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #aaa;
  background: #f9f9f9;
  position: relative;
}

.box-slot.filled {
  border: 1px solid #aaa;
  background: #fff;
  color: #333;
}

.box-slot img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.remove-slot {
  position: absolute;
  top: 4px;
  right: 6px;
  color: red;
  font-weight: bold;
  cursor: pointer;
}

.box-controls {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}



/*Product Carousel*/
.product-carousel {
/*   max-width: 1100px; */
  margin: 0px auto;
  position: relative;
  text-align: center;
}

.discover-link {
  color: #b87333;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.product-card {
  min-width: 250px;
  margin: 0 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  padding: 10px;
}

.price {
  color: #b87333;
  font-weight: 600;
  margin: 5px 0;
}

.category {
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
}

/* --- Progress bar navigation --- */
.carousel-progress {
  width: 100%;
  height: 3px;
  background: #ddd;
  margin-top: 25px;
  position: relative;
  cursor: pointer;
  display: flex;
}

.carousel-progress span {
  flex: 1;
  background: #ddd;
  transition: background 0.3s ease;
}

.carousel-progress span.active {
  background: #b87333;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
    width: 75%;
    float: right;
}
 
/* Make Gallery 25% width and place it beside the image */
 
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
    width: 25%;
    float: left;
}
 
/* Style each Thumbnail with width and margins */
 
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
    width: 90%;
    float: none;
    margin: 0 0 10% 10%;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    width: 60%;
    float: left;
    margin: 0;
    list-style: none;
}

#product-list form.woocommerce-ordering, #product-list .woocommerce-result-count {
    display: none;
}

div.elementor-location-single div.btob_notice{
	display: none;
}
div.elementor-location-single.product_cat-b2b div.btob_notice{
	display: block;
}

.voucher-wrapper {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  font-family: Arial, sans-serif;
}

.voucher-wrapper .form-title {
  text-align: center;
  margin-bottom: 0;
  font-size: 22px;
}

.voucher-wrapper .sub-text {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.voucher-wrapper .section-title {
  background: #002966;
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: center;
}

.voucher-wrapper .two-columns {
  display: flex;
  gap: 15px;
}

.voucher-wrapper .form-group {
  margin-bottom: 15px;
  width: 100%;
}

.voucher-wrapper .form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.voucher-wrapper .form-group input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.voucher-wrapper textarea {
  height: 100px;
}

.voucher-wrapper .radio-group label {
  display: block;
  margin-bottom: 6px;
}

.voucher-wrapper .summary-box {
  background: #faf7ef;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
}

.voucher-wrapper .summary-box h4 {
  margin: 0 0 10px;
}

.voucher-wrapper .summary-box p {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}

.voucher-wrapper .summary-box .total {
  font-weight: bold;
}

.voucher-wrapper .submit-btn {
  width: 100%;
  padding: 15px;
  background: #b19855;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
}

.voucher-wrapper .submit-btn:hover {
  background: #947d41;
}

.voucher-wrapper .link {
  text-align: center;
  margin: 10px 0;
}
