.accordion .accordion-item {
        border: 1px solid #ddd;
        margin-top: 10px;
        border-radius: 5px;
        overflow: hidden;
        background: white;
    }

    .accordion .accordion-toggle {
        width: 100%;
        text-align: left;
        padding: 15px;
        background: #eaeaea;
        cursor: pointer;
        font-size: 16px;
        border: none;
        outline: none;
        font-weight: bold;
    }

    .accordion .accordion-toggle.open {
        background: #d4d4d4;
    }

    .accordion .accordion-content {
        padding: 15px;
        display: none;
        background: #fff;
        animation: fadeIn 0.3s ease-in-out;
    }

    .accordion .accordion-content.active {
        display: block;
    }

    @keyframes fadeIn {
        from {opacity: 0;}
        to {opacity: 1;}
    }

     .usage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  .usage-item {
    width: calc(33.33% - 20px);
    text-align: center;
  }
  .usage-item img {
    max-width: 100px;
    margin-bottom: 10px;
  }
  .usage-item p {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: #222;
  }

  /* Responsive for smaller screens */
  @media (max-width: 768px) {
    .usage-item {
      width: calc(50% - 20px);
    }
  }

  @media (max-width: 480px) {
    .usage-item {
      width: 100%;
    }
  }

  .usp-tag {
    position: absolute;
    background-color: #e6af5d;
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
  }
  .usp-1 { top: 20px; left: 20px; }
  .usp-2 { top: 20px; right: 20px; }
  .usp-3 { bottom: 40px; left: 20px; }
  .usp-4 { bottom: 40px; right: 20px; }

  .usp-box {
    flex: 1 1 45%;
    background: #e6af5d;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
  }

  @media (max-width: 768px) {
    .usp-tag {
      display: none;
    }
    .usp-mobile-grid {
      display: block;
    }
  }

  .marble-highlight-section {
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 40px 0;
}

.marble-container {
  position: relative;
  max-width: 1000px;
  width: 100%;
}

.marble-img {
  width: 100%;
  display: block;
}

/* Label Styling */
.label {
  position: absolute;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
}

.label.left {
  left: -200px;
  flex-direction: row-reverse;
}

.label.right {
  right: -200px;
  flex-direction: row;
}

.label .dot {
  width: 7px;
  height: 7px;
  background-color: red;
  border-radius: 50%;
  z-index: 10;
}

.label .line {
  width: 60px;
  height: 1px;
  background-color: black;
  margin: 0 8px;
}

.label .text {
  line-height: 1;
}

.related-products-section .owl-carousel .item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-products-section .owl-carousel .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.related-products-section h2 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.related-products-section .owl-carousel .item img {
    max-width: 100%;
    border-radius: 10px;
    height: auto;
    object-fit: cover;
}

.related-products-section .owl-carousel .item h5 {
    margin-top: 10px;
    font-size: 16px;
    color: #111;
}

/* Main container for the product suggestions */
.product-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* Individual product cards */
.product-card {
  width: 23%; /* Desktop */
  text-align: center;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: 0.3s;
}

/* Responsive styles for tablets */
@media (max-width: 992px) {
  .product-card {
    width: 30%;
  }
}

/* Responsive styles for mobile phones */
@media (max-width: 320px) {
  .product-card {
    width: 100%;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .product-card {
    width: 90%;
  }
}

.accordion-content {
  max-height: 1;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-toggle.active {
  font-weight: bold;
}






