body {
    font-family: Arial, sans-serif;
}
.product-card {
    max-width: 1600px;
    padding: 16px;
    margin: 16px auto;
    display: flex;
    gap: 20px;
    margin-bottom: var(--paddind-after-section);
}
.product-image {
    
    position: relative;
}
.product-image img {
    width: 100%;
    height: auto;
}
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    
}
.slider img {
    width: 100%;
    height: 100%;
}
.slides {
    height: 100%;
}
.slider .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slider .slides img {
    min-width: 100%;
}
.slider .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}
.slider .arrow.left {
    left: 10px;
}
.slider .arrow.right {
    right: 10px;
}
.product-details h2 {
    font-size: 20px;
    margin-bottom: 16px;
}
.product-details p {
    margin: 8px 0;
}
.product-details .price {
    font-size: 24px;
    color: green;
    margin-bottom: 16px;
}
.product-details .buy-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.product-details .buy-button:hover {
    background-color: #45a049;
}
.product-details .description, .product-details .delivery {
    border-top: 1px solid #ddd;
    padding-top: 16px;
    margin-top: 16px;
}
.option-selection {
    display: flex;
    max-width: 600px;
    flex-wrap: wrap;  
    gap: 10px;
    margin-top: 5px;
    margin-bottom: 16px;
}
.option-selection input[type="radio"] {
    display: none;
}
.option-selection label {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f4f4f4;
}
.option-selection input[type="radio"]:checked + label {
    border-color: #4CAF50;
}
.additional-services {
    width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.additional-services h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.additional-services ul {
    list-style: none;
    padding: 0;
}

.additional-services li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.service-info {
    display: flex;
    align-items: center;
}

.service-info img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.service-price {
    font-size: 1em;
    color: #000;
}
ul {
    list-style-type: none;
}
.items {
    display: flex;
    gap: 10px; 
    align-items: center;
    justify-content: flex-start;
}

.items:first-child {
    margin-top: 10px;
}

.items:not(:last-child) {
    margin-bottom: 15px;
}
.service-inner{
   display: flex;
   gap:15px;
   flex-direction:column;
  margin-bottom: 20px;
}
.total > span{
color:#000;
}
.product-image{
  width: 50%;
}
.product-details{
  width: 50%;
}
@media(max-width:1116px){
  .product-card {
    flex-direction:column;
    align-items:center;
    justify-content: center;
  }
  .product-image{
    width: 100%;
  }
  .product-details{
  width: 100%;
  }
}

.product-image {
    position: relative;
}
.product-image img {
    width: 100%;
    height: auto;
}
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}
.slider img {
    width: 100%;
    height: auto;
}
.slider .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slider .slides img {
    min-width: 100%;
    object-fit: cover;
}
.slider .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}
.slider .arrow.left {
    left: 10px;
}
.slider .arrow.right {
    right: 10px;
}
.thumbnail-slider {
    display: flex;
    overflow: hidden;
    gap: 10px;
    position: relative;
}
.thumbnail-slider .thumbnails {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.thumbnail-slider .thumbnails img {
    width: 80px;
    height: 80px;
    object-fit:cover;
    object-position:left;
    cursor: pointer;
    border: 1px solid #ddd;
    
}
.thumbnail-slider .thumbnails img:hover {
    border: 1px solid #4CAF50;
}
.thumbnail-slider .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

.thumbnail-slider .arrow.left {
    left: 0;
}
.thumbnail-slider .arrow.right {
    right: 0;
}
.product-details h2 {
    font-size: 20px;
    margin-bottom: 16px;
}
.product-details p {
    margin: 8px 0;
}
.product-details .price {
    font-size: 24px;
    color: green;
    margin-bottom: 16px;
}
.product-details .buy-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.product-details .buy-button:hover {
    background-color: #45a049;
}
.product-details .details, .product-details .delivery {
    border-top: 1px solid #ddd;
    padding-top: 16px;
    margin-top: 16px;
}
.slider {
  max-height: 600px;
}
@media(max-width:480px){
 .product-details .price{
   font-size: 18px;
  }
  
  .option-selection label{
    font-size: 13px;
  }
  .slider{
    height: 100%;
  }
  .option-selection{
    max-width:350px ;
  }
}

.service-option img{
  width: 30px!important;
  height: 30px!important;
  object-fit:contain;
  
}
.service-inner{
  align-items: flex-start!important;
  justify-content: center!important;
}
.service-option{
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
  gap:15px!important;
}
.slider .slides img{
  max-height: 390px;
  object-fit:contain;
}

#open-popup {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 660px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
    appearance: textfield;
}

.option-selection-custom {
    display: inline-block;
    padding: 10px 5px 10px 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f4f4f4;
}

.option-selection-custom label {
    border: none;
    padding: 0px;
}

.option-selection-custom input {
    border: none;
    outline: none;
    background-color: transparent;
}

.option-selection-custom select {
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}

.option-selection-custom input[type="radio"]:checked + label {
    border-color: #4CAF50;
}
