body {
    background: #f9f9f9;
    color: #555e58;
    overflow-x: hidden;
}


.price-container {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
  }
  
  .pricing-tiers {
    margin-top: 10px;
  }
  
  .pricing-tiers h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
  }
  
  .pricing-tiers ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .pricing-tiers li {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .customization-note {
    margin-top: 10px;
    font-size: 16px;
    color: #007BFF; /* Highlight customization note */
  }
  

.product {
    display: flex;
    padding-top: 30px;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.wrapper {
    margin: 0 auto;
    width: 50%;
}

.details {
    width: 50%;
    padding: 20px;
    padding-right: 40px;
    overflow-x: hidden;
}

.chatbtn {
    display: inline-block; /* Make the link behave like a button */
    background-color: #28a745; /* Green background */
    color: #ffffff; /* White text */
    padding: 12px 20px; /* Padding for the button */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-weight: bold; /* Bold text */
    font-size: 16px; /* Font size */
    text-align: center; /* Center text in button */
    border: 2px solid #28a745; /* Same color border */
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s; /* Smooth transitions */
}

.chatbtn:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-3px); /* Move up slightly on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}

.chatbtn:active {
    transform: translateY(1px); /* Move down slightly when clicked */
    box-shadow: none; /* Remove shadow on click */
}

.chatbtn i {
    margin-right: 8px; /* Space between icon and text */
}

.price-container {
    display: flex; /* Flexbox layout for alignment */
    align-items: center; /* Center items vertically */
}

.original-price {
    text-decoration: line-through; /* Strikethrough for original price */
    color: #aaa; /* Grey color for original price */
    margin-right: 10px; /* Spacing to the right */
}

.final-price {
    color: #28a745; /* Green color for final price */
    font-size: 20px; /* Larger font size */
}

.product-specs {
    list-style-type: none; /* Remove default bullets */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.product-specs li {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    padding: 8px 0; /* Add padding for spacing */
    color: #444; /* Dark grey text color */
}

.product-specs li i {
    margin-right: 10px; /* Space between icon and text */
    color: #C0C0C0; /* Silver color for icons */
    font-size: 18px; /* Size of the icons */
}

.product-dis {
    font-size: 18px;
}

.alert-dis {
    background-color: #333; /* Darker grey background for alert */
    color: #ffffff; /* White text */
    padding: 12px; /* Padding for the alert */
    border-radius: 5px; /* Rounded corners */
    margin-top: 15px; /* Spacing above the alert */
    font-size: 14px; /* Slightly smaller font for alert */
}

.img-selection {
 display: flex;
}

.img-thumbnail:first-of-type {
    margin-top: 0;
}

.img-thumbnail {
    cursor: pointer;
    transition: .3s ease;
    opacity: .5;
}

.img-thumbnail:hover {
    opacity: 1;
}

.img-thumbnail.selected {
    opacity: 1;
}

.big-img {
    position: relative;
    height: 38rem;
    width: 100%;
    padding-bottom: 10px;
    cursor: zoom-in;
    overflow: hidden;
}
.big-img img {
    object-fit: contain;    
}

.big-img img.zoom {
    position: absolute;
    transition: width 0.2s ease-out, opacity 0.2s ease-out 0.2s; 
}

.display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo-width{
    width: 80%;
    object-fit: contain;
}

.left {
    background-color: rgba(255, 255, 255, 0.85); 
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .right {
    height: 100%;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
  }
  .iframe-container {
    height: 100%;
    width: 100%;  
  }
  .iframe-container iframe {
    width: 100%;
    height: 100%;
  }
  
  

@media (max-width: 1024px) {

    .big-img {
    position: relative;
    height: 32rem;
    width: 100%;
    object-fit: cover;
    padding-bottom: 10px;
    cursor: zoom-in;
    overflow: hidden;
}
.logo-width{
    width: 100%;
    object-fit: contain;
}
.content-2{
    display: none;
}

}

@media (max-width: 768px) {
    .product {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .wrapper {
        overflow-x: hidden;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .details {
        width: 100%;
        display: flex;
        align-items: start;
        justify-content: start;
        flex-direction: column;
    }
    .big-img img{
        position: relative;
        height: 30rem;
        width: 100%;
        object-fit: contain;
        padding-bottom: 0px;
        cursor: zoom-in;
        overflow: hidden;
    }

    .big-img img.zoom {
        position: static;
        display: none;
    }
    .display-img {
        width: 100%;
        height: 100%;
        padding-left: 20px;
        padding-right: 20px;
        object-fit: cover;
    }
    .logo-width{
        width: 100%;
        object-fit: contain;
    }
    .right-content {
        height: 270px;
        margin-top: 15px;
        overflow: hidden;
        border-radius: 10px;
    }
}

    @media (max-width: 480px) {
    .big-img {
        position: relative;
        height: 26rem;
        width: 100%;
        cursor: zoom-in;
        overflow: hidden;
    }
    .big-img img {
        object-fit: contain;

    }
    .right-content {
        height: 250px;
        margin-top: 10px;
        overflow: hidden;
        border-radius: 10px;
    }
    .wrapper {
        width: 100%;
    }
    .product {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-x: hidden;
    }
    .logo-width{
        width: 55%;
        object-fit: contain;
    }
}

@media only screen and (max-width: 575px) {

  
  
    .logo-width {
      width: 50%;
      object-fit: contain;
    }
  }