

/** Breadcrumb **/

.single-product .breadcrumb {
    background: #48484810;
    padding: 8px 4px;
    border-radius: 8px;
    font-size: 15px;
    z-index: 1;
}

.breadcrumb span{
    display: inline-flex;
    flex-direction: row;
    gap: 8px;
    margin-left: 8px;
}
.breadcrumb span:not(:last-child)::after{
    content: '/';
}

.breadcrumb span a{
    text-decoration: none;
    color: var(--primary-color);
}

/** product image **/

.single-product .product-image{
    width: 100%;
}

.product-image .product-image-main{
    position: relative;
    display: block;
    height: 480px;
    background: var(--bg-grey);
    padding: 10px;
}

.product-image-main img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image-slider{
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.product-image-slider img{
    width: 90px;
    height: 90px;
    background: var(--bg-grey);
    padding: 6px;
    cursor: pointer;
}

/** product title **/

.product-title{
    margin-top: 20px;

}
.product-title h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02rem;
}



/** Product price **/
.product-price{
    display: flex;
    position: relative;
    margin: 10px 0;
    align-items: center;
}

.product-price .offer-price {
    font-size: 32px;
    font-weight: 700;
}
.product-price .sale-price{
    font-size: 22px;
    font-weight: 500;
    text-decoration: line-through;
    color: var(--grey);
    margin-left: 12px;
}

/** Product Details **/
.product-details {
    margin: 10px 0;
    display: flex;
    gap: 20%;
    align-items: center;
}
.product-details h3{
    font-size: 18px;
    font-weight: 500;
}
.product-details p{
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.2rem;
}

.product-details h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.RingSize h4{
    font-size: 16px;
    font-weight: 500;
}
.RingSize {
    display: flex;
    gap: 14%;
    align-content: center;
    align-items: center;
}
/** Product size **/
.product-size {
    margin: 10px 0;
    display: flex;
    gap: 6%;
    align-items: center;
}
.product-size h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.product-size .size-layout{
    margin: 5px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.product-size .size-layout .size-input{
    display: none;
}
.product-size .size-layout .size{
    background: var(--bg-grey);
    padding: 10px 18px;
    border: 1px solid var(--bg-grey);
    border-radius: 4px;
    margin-left: 0px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
.product-size .size-layout .size:hover{
    border: 1px solid var(--grey);
}

.product-size .size-layout input[type="radio"]:checked + .size{
    background-color: rgb(35, 35, 35);
    border: 1px solid var(--grey);
    color: var(--bg-grey);
    box-shadow: 0 3px 6px var(--shadow);

}


/** Product Color **/
.product-color{
    margin: 10px 0;
    justify-content: center;
}
.product-color h4{
    font-size: 16px;
    font-weight: 500;
}
.product-color .color-layout{
    margin: 5px 0;
    display: flex;
    gap: 10px;
}

.product-color .color-layout label{
    border-radius: 4px;
    cursor: pointer;
    content: '';
    width: 40px;
    height: 40px;
    display: inline-block;
}

.product-color .color-layout .black{
    
    background-color: black;
}

.product-color .color-layout .red{
    background-color: red;
}
.product-color .color-layout .blue{
    background-color: blue;
}

.product-color .color-layout input[type="radio"]:checked + label{
    box-shadow: 0 3px 6px var(--shadow);
}

.product-color .color-layout .color-input{
    display: none;
}


/* product-bottom */

.product-bottom p {
    margin-bottom: 4px;
}
.pdBtm{
    margin-top: 10px;
}

.pdBtm a {
    color: #219087;
    text-decoration: none;
}

.Icn{
    font-size: 20px;
}

.pdBtm span {
    font-size: 17px;
    font-weight: 500;
    padding-left: 6px;
}
/** divider **/
.divider{
    display: block;
    height: 1px;
    width: 100%;
    background: #48484830;
    margin: 20px 0;
}

/** product Button Group **/

.product-btn-group{
    display: flex;
    gap: 15px;
}
.product-btn-group .button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
}
.product-btn-group .buy-now {
    background-color: #219087;
    color: #fff;
    border: 1px solid #219087;
    border-radius: 4px;
    cursor: pointer;
}

.product-btn-group .buy-now i{
    font-size: 20px;
}
.product-btn-group .buy-now:hover{
    box-shadow: 0 3px 6px var(--shadow);
}

.product-btn-group .add-cart {
    background-color: var(--bg-grey);
    color: var(--grey);
    border-radius: 4px;
    cursor: pointer;
    background: #f0f0f0;
    border: 1px solid #ccc;
}
.product-btn-group .add-cart i{
    font-size: 20px;
}
.product-btn-group .add-cart:hover{
    box-shadow: 0 3px 6px var(--shadow);
    background: #219087;
    color: #ffffff;
}
.product-btn-group .heart{
    color: var(--grey);
    cursor: pointer;
}
.product-btn-group .heart i{
    font-size: 20px;
}
.product-btn-group .heart:hover{
    color: #219087;
}




.product-slider {
    width: 100%;
    margin: 0 auto;
  }
  

  .main-slider {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
  }
  .main-slider img {
    width: 100%;
  }
  
  .thumbnail-slider {
    margin-top: 10px;
  }
  
  .thumbnail-slider img {
    width: 100%;
    cursor: pointer;
    border: 2px solid #d7d7d7;
    border-radius: 10px;
}
  
  .slick-track {
    display: flex !important;
    gap: 10px !important;
}
  .slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #219087!important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.options {
    display: flex;
    gap: 10px;
    margin-top: 5px;

}

.option {
    padding: 4px 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}
.option:hover{
    background-color: #219087;
    border-color: #219087;
    color: #fff;
}

.option.active {
    border-color: #219087;
    background-color: #219087;
    color: #fff;
}

#Ring-Size {
    padding: 10px;
    width: 30%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.Metaloptions img {
    border: 2px solid #ffffff;
    border-radius: 100px;
}

.current img{
    border: 2px solid #000;
    border-radius: 100px;
}
.Metaloptions img:hover{
    border: 2px solid #000;
    border-radius: 100px;
}

.tableproduct tr td {
    padding: 20px 0;
    border-bottom: 1px solid #219087;
}
.producta-body{
    padding: 20px ;
}

.product-button:not(.collapsed) {
    color: #219087!important;
    background-color: #ffffff!important;;
    border-radius: 0;
}

.shopItem p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    text-decoration: none;
    color: #2B2B2B;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


.padd{
    padding: 0 40px;
}


.owl-prev,
.owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}


.RecLeft {
    position: absolute;
    transform: translateY(-50%);
    left: -20px;
    top: -46px;
    color: #c1c1c1;
    font-size: 28px;
}

.RecLeft:hover {
    color: #0d4f4a;
}

.RecRight {
    position: absolute;
    transform: translateY(-50%);
    right: -20px;
    color: #c1c1c1;
    top: -46px;
    font-size: 28px;
}

.RecRight:hover {
    color: #0d4f4a;
}


.camg{
    margin-right: 36px;
}

.rate p{
    margin-bottom: 0px;
}

.gap-10{
    gap: 10px;
}

.text{
    text-decoration: none;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.rating p{
    margin-bottom: 0;
}



/** Responsive Mobile **/
@media screen and (max-width:520px) {
    .container{
        height: auto;
    }
    /* .row{
        display: block;
    }

    .col-6{
        width: 100%;
        display: block;
    } */

    .single-product{
        width: 100%;
        position: relative;
    }

    .product-image .product-image-main{
        width: 100%;
        height: 280px;
    }
    .product-image-slider{
        gap: 5px;
    }
    .ProdDetails .breadcrumb {
        margin-top: 20px;
        padding: 10px;
    }

    .breadcrumb {
        padding: 10px;
    }
    .product-title h2{
        font-size: 24px;
        line-height: 1.6rem;
    }
    .product-size{
        display: block;
    }
    .product-size .size-layout{
        display: block;
        margin: 10px 0;

    }
    .product-size .size-layout .size{
        padding: 6px 10px;
    }
    .product-btn-group{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .mobfl {
        justify-content: start!important;
        display: flex;
    }
    .pdBtm {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .zoomContainer{
        display: none!important;
    }
}

/** Responsive Tablet **/
@media  (min-width: 520px ) and (max-width: 1080px) {
   .container{
    display: block;
    height: auto;
    padding: 20px;
   }
    
}

.mobfl{
    text-align: right;
}

.mobfl a{
    color: #000;
}
.reviewIcn {
    color: #000;
}