/*===Product-slider=================================*/
.product-slider{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 90%;
    margin: auto;
    margin: 40px auto;
}
.slider-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.product-slider-heading{
    font-size: 28px;
    text-transform: uppercase;
    font-family: 'Open Sans',sans-serif;
    color: #313131;
}
.product-box{
    width: 100%;
    padding: 15px;
    border: 2px solid #4a80a7;
    position: relative;
}
 
.product-img-container{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
}
.product-img a, 
.product-img{
    width: 100%;
    height:500px;
    display: flex;
}
 
.product-img a img{
    width: 100%;
   /*        */
    object-fit:contain;
    object-position: center;
    /*animation: fade 0.6s;*/
}
.product-img-back{          
    display: none;
 }
 .product-img-container:hover .product-img-back{
     display: block;
 }
 /*.product-img-container:hover .product-img-front{
     display: none;
 }*/
/* @keyframes fade{
     0%{
         opacity: 0;
     }
     100%{
         opacity: 1;
     }
 }*/
 .product-box-offer{
     position: absolute;
     left: 30px;
     top: 20px;
     width: 65px;
     height: 24px;
     color: #ffffff;
     background-color: #e63b3b;
     border-radius: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 0.7rem;
     letter-spacing: 1px;
     transition: none !important;
     animation: none;
     z-index: 100;
     font-family: 'Open Sans',sans-serif;
 }
.product-box-text{
     margin-top: 5px;
     font-family: 'Open Sans',sans-serif;
 }
.product-title{
    color: #333333;
    font-weight: 600;
    transition: all ease 0.3s;
    text-decoration: none;
}
.product-title:hover{
    opacity: 0.7;
    transition: all ease 0.3s;
}
.product-category{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    color: #ff25257c;
}
.product-category span{
    color: #acacac;
    font-size: 0.9rem;
    margin:5px 0px;
}
.price-buy{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.price-buy .p-price{
    font-size: 1.3rem;
    color: #333333;
    font-weight: 700;
}
.price-buy .p-buy-btn{
    color: #e63b3b;
    margin: 0px 5px;
    font-weight: 500;
    text-decoration: none;
}
.price-buy .p-buy-btn:hover{
    text-decoration: underline;
}
 
.slider-btns{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 10px auto 10px auto;
}
.swiper-button-next,
.swiper-button-prev{
    position: static !important;
    transform: translate(0,0);
    margin: 10px 0px 0px 10px !important;
}
.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 20px !important;
    font-weight: 800;
    color: #111111;
}
 
@media(max-width:500px){
    .product-slider-heading{
        text-align: center;
        font-size: 1.3rem;
    }
    .product-slider{
        width: 100%;
    }
    .product-img a,
    .product-img{
    height:230px;}
    
.product-img a img{
    animation:none;
}
.product-img-back{
    display: none;
 }
 .product-img-container:hover .product-img-back{
     display: none;
 }
 .product-img-container:hover .product-img-front{
     display: block;
 }
}
@media(max-width:400px){     
    .product-img a,
    .product-img{
    height:190px;}
    .product-box-offer{
        top: 10px ;
        left: 20px ;
    }
}






/**----------------Contact Us css-----------------**/

.styled-form {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: auto;
}

.styled-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.styled-form .form-control,
.styled-form select,
.styled-form textarea {
  border-radius: 8px;
  padding: 7px 15px;
  font-size: 14px;
  border: 1px solid #ccc;
  transition: border-color 0.3s;
}

.styled-form .form-control:focus {
  border-color: #1e88e5;
  box-shadow: 0 0 0 0.1rem rgba(30, 136, 229, 0.25);
}

.styled-form textarea {
  resize: vertical;
}

.btn-submit {
  background-color: #1e88e5;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #1565c0;
  color: #fff;
}

.field_error {
  color: red;
  font-size: 13px;
  margin-top: 4px;
}


.contact-section {

  padding: 0px 20px;
  border-radius: 12px;
 
  margin-bottom: 30px;
  max-width: 100%;
}

.contact-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.contact-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.contact-card strong {
  color: #1e88e5;
}

.contact-card span {
  display: block;
  color: #333;
  font-size: 14px;
  margin-top: 2px;
}

.contact-note {
  background: #e3f2fd;
  padding: 15px 20px;
  border-left: 4px solid #1e88e5;
  border-radius: 8px;
  margin-top: 20px;
}


.add-head h4{
    font-size:20px;
    padding: 0 20px;
}