/*=========== Product box Css ===========*/
.product {
  display: block;
  width: 100%;
  position: relative;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease; 
  -webkit-box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.07);
}

@media (max-width: 991.98px) {
    .product {margin-bottom: 30px;}
}

.product .prod-img {
    position: relative;
    display: block;
    overflow: hidden; 
    height: 270px;
    width: 100%;
    background: #f9f9f9;
}

.product .prod-img .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      opacity: 0;
      background: #000;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
}

.product .prod-img span.status {
      position: absolute;
      top: 10px;
      left: -1px;
      padding: 2px 15px;
      color: #000000;
      font-weight: 300;
      background: #950308;
}

.product .prod-img img {
    object-fit: cover;
    /* width: 200px; */
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease; 
}

.product .prod-img:hover img, .product .prod-img:focus img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); 
}
.product .img {
    display: block;
    height: 400px;
}

.product .icon {
    width: 60px;
    height: 60px;
    background: #fff;
    opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
 }

.product .icon span {
      color: #000000; 
}
.product:hover .icon {
    opacity: 1;
}
.product:hover .prod-img .overlay {
    opacity: .1;
}
.product .prod-text {
    background: #fff;
    position: relative;
    width: 100%; 
}

.product .prod-text h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    /* font-weight: 400; */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product .prod-text h3 a {
    font-family: 'Open Sans',
    sans-serif;
    color: #000000; 
}
.product .prod-text h3 a:hover{
    color: #950308; 
}
.product .prod-text p.price {
margin-bottom: 0;
color: #000000;
font-weight: 400; 
}
.product .prod-text p.price span.price-dc {
text-decoration: line-through;
color: #b3b3b3;
}
.product .prod-text p.price span.price-sale {
color: #000000; 
}
.product .prod-text .pricing, .product .prod-text .rating {
width: 50%; 
}
.product .prod-text .prod-btn {
position: absolute;
top: -50px;
left: 0;
right: 0;
opacity: 0;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
transition: all 0.3s ease; 
}
.product .prod-text .prod-btn a {
width: 100%;
}
.add-to-cart {
background: #000000;
border-color: #000000;
color: #fff; 
}

.buy-now {
background: #fff;
border-color: #fff;
color: #000000; 
}
.add-to-cart:hover,
.buy-now:hover {
    background: #950308;
    border-color: #950308;
    color: #fff;
}

@media (max-width: 991.98px) {
    .product .prod-text .prod-btn {opacity: 1; } 
    .product .prod-text .prod-btn a.add-to-cart,
    .product .prod-text .prod-btn a.buy-now {
        font-size: 10px;
    }
}

.product:hover {
    -webkit-box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.07);
}

.product:hover .prod-text .prod-btn {
    opacity: 1; 
}

/*=========== Product view page Css ===========*/
.product-view-image {
    padding: 10px;
}

.product-view-image .swiper-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.product-view-image .swiper-slide img {
    object-fit: contain;
    width: auto;
    height: auto;
    position: absolute;
}

.product-view-image .gallery-top {
    width: 100%;
    padding-bottom: 10px;
}

.product-view-image .gallery-thumbs {
    height: 35%;
    max-height: 130px;
    box-sizing: border-box;
}

.product-view-image .gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.5;
}

.product-view-image .gallery-thumbs .swiper-slide img {
    height: 100%;
    width: 100%;
}

.product-view-image .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
.product-view-image .swiper-button-next,
.product-view-image .swiper-button-prev {
    background: #f9f9f9;
    width: 40px;
    height: 40px;
    ;
}
.product-view-image .swiper-button-next::after,
.product-view-image .swiper-button-prev::after{
    font-size: 1.3rem;
}

.tag-name{
    background: #f9f9f9;
    font-size: 12px;
    padding: 5px 10px;
    margin-right: 5px;
}

.product-details .prod-desc {
    margin-top: 15px;
    margin-bottom: 24px;
}

.product-details .prod-btn {
    margin-bottom: 15px;
}

.product-tab{
    margin-top: 30px; 
}


.tab-item ul li:last-child a {
    border-right: 1px solid #ccc;
}

.tab-item ul li a {
    display: inline-flex;
    font-size: 13px;
    color: #b2b2b2;
    text-transform: uppercase;
    padding: 8px 20px;
    position: relative;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.tab-item ul li a.active {
    color: #212529;
    font-weight: 600;
}

.tab-item ul li a.active:before {
    opacity: 1;
}

.tab-item ul li a::before {
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 4px;
    background: #950308;
    content: "";
    opacity: 0;
}

.product-content {
    padding-top: 15px;
    font-size: 14px;
}

.product-content h5 {
    margin-bottom: 10px;
}
.product-content table{
    font-size: 13px;
}
.product-content .table>:not(caption)>*>* {
    padding: 2px 5px;
}
.product-content ul{
    padding-left: 0;
    margin-top: 0;
}
.product-content ul li{
    list-style: none;
}
.product-content ul li::before{
    content: "\f00c";
    padding-right: 5px;
    color: #950308;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}



/*=========== Product view page Css ===========*/
.product-cart {
    overflow-x: auto;
}
.product-cart{
   overflow: auto;
   padding: 20px;
   font-size: 14px;
}
.delivery-box {
    font-size: 12px;
    line-height: 15px;
}
.cart-info{
    display: flex;
    flex-direction: column;
    line-height: 20px;
    font-size: 12px;
}
@media (max-width: 991.98px) {
    .product-cart table{
        width: 700px;        
    }
}

.product-cart .prod-img{
    width: 100px;
}
.product-remove-btn{
    width: 34px;
    height: 34px;
}


/*=========== Product view page Css ===========*/
.address-select {
    background: #f9f9f9;
    padding: 15px;
}
.proceed-order{
    background: #f9f9f9;
    padding: 20px 10px;
}
.delivery-charge {
    font-size: 13px;
}
