
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* .....reset css.......  */


:root {
    --text-danger: #f63440;
    --text-gray: #aaa;
    --text-dark-gray: #777;
    --text-white: #fff;
    --bg-danger: #f63440;
    --bg-light-white: #f5f5f5;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.75rem;
    font-weight: 400;
    overflow-x: hidden;
    font-size: 1rem;
}

.btn-danger {
    background-color: var(--bg-danger);
    border-color: var(--bg-danger);
    padding: 0.8rem 1.5rem;
    font-weight: 500;
}

.btn-danger:hover {
    color: var(--text-danger);
    background: transparent;
}

#header-section .fixed-top {
    box-shadow: 0 0.125rem 0.675rem rgb(0 0 0 / 5%);

}

#header-section .nav-item .nav-link {
    color: black;
    padding: 0.5rem 1rem;
    text-align: center;
}

#header-section .nav-item .nav-link:hover,
#header-section .nav-item .nav-link:active {
    color: var(--bg-danger);
}

#header-section .navbar-toggler:focus {
    box-shadow: none;

}

#header-section .navbar-toggler-icon {
    width: unset;
    height: unset;
}

/* .........Home Css........  */

.home .home-banner-1,
.home .home-banner-2 {
    background-position: 90% center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 650px;
    position: relative;

}

.home .home-banner-1 {
    background-image: url('../images/slide1.jpg');
}

.home .home-banner-2 {
    background-image: url('../images/slide2.jpg');
}

.home .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-110%, -50%);
}

.home .banner-text h1 {
    font-size: 6rem;
}

#home-section .carousel-indicators [data-bs-target] {
    background-color: var(--bg-danger);
    width: 2.5rem;
    height: 0.313rem;
}
.testimonial .carousel-indicators [data-bs-target] {
    background-color: var(--bg-danger);
    width: 2.5rem;
    height: 0.313rem;
    position: relative;
    top: 20px;
   
}

.testimonial .carousel-control-prev,
.testimonial .carousel-control-next {
    background: transparent;
   
}


#home-section .carousel-control-prev,
#home-section .carousel-control-next {
    background: transparent;
}

#home-section .carousel-control-prev-icon,
#home-section .carousel-control-next-icon {
    color: #f63440;
    font-size: 3rem;
    font-weight: 600;
}

/* .........offers..........  */
.offers {
    padding-top: 8rem;
}

.offer-box .offer-image::before {
    position: absolute;
    content: '';
    top: 0;
    left: -100%;
    display: block;
    z-index: 2;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(to right, rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.3)100%);
    background: linear-gradient(rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.3)100%);
    transform: skewX(-25deg);

}

.offer-box .offer-image img {
    transform: scale(1.02);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-box:hover .offer-image::before {
    animation: effect 1s;
}

@keyframes effect {
    100% {
        left: 150%;
    }
}

.offers .offer-box .offer-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* z-index: 1; */
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.offers .offer-info {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: all 250ms ease-out;
}

.offers .offer-info .biggest-heading {
    color: var(--text-white);
    font-weight: 400;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0;
    text-transform: uppercase;

}

.offers .offer-info .offer-title {
    color: var(--text-white);
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.offers .offer-info .btn-outline-danger {
    color: var(--text-white);
    border-color: var(--bg-light-white);
    transition: all 0.3s ease-in-out;
}

.offers .offer-info .btn-outline-danger:hover {
    background-color: var(--bg-danger);
    border-color: var(--bg-danger);

}


/* <..............Products Section............>  */

.products {
    padding-top: 8.75rem;
}
 

.heading h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30%;
    height: 0.125rem;
    transform: translate(-50%, -50%);
    background-color: var(--bg-danger);
    border-radius: 0.625rem;
}

.products a
{
    text-decoration: none;
    color: black;
}

.product-list .products-image img
{
    transition: all 1s ease-in-out;
}
.product-list .product-image  .product-image-secondary
{
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.product-list .product-image:hover .product-image-secondary
{
    opacity: 1;
}

.product-list .product-image .sale
{
    background-color: var(--bg-danger);
    clip-path: circle();
    position: absolute;
    left: 1.5rem;
   top: 1.188rem;
   color: var(--text-white);
    padding: 0.6rem;
    line-height: 1;
    z-index: 999;
}

.product-list h3
{
    font-size: 1.125rem;
    color: black;
    transition: all 0.3s ease-in-out;
}
.product-list h3:hover
{
    color: var(--bg-danger);
}

.product-list .amount
{
    color: var(--bg-danger);
    font-weight: 500;
}

del
{
    text-decoration: line-through;
    color: var(--text-gray);
}
 
.product-name .fa 
{
    color: var(--text-gray);
}
.product-name .fa.active
{
color: var(--bg-danger);
}
 

.product-name .Add-cart
{
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
    margin-top: 0.6rem;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
     border-color: var(--bg-danger);
}
.product-name .Add-cart:hover
{
    background-color: var(--bg-danger);
    border: none;
    color: var(--text-white);
}

/* <.............up to 0ff............>  */

.up-to-off
{
    position: relative;
}
.up-to-off::before
{ content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    cursor: pointer;
}
.up-to-off img
{
    transition: all 0.5s;
    height: 40vh;
    object-fit: cover;
}
.up-to-off:hover img
{
     transform: scale(1.1);
}
.up-to-off .up-to-content h2
{
   color: var(--text-white);
   font-size: 1.625rem;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 3;
}

/* <...........Special...........>  */
.special
{
    padding: 6rem 0; 
    background-color: var(--bg-light-white);
}


.special .countdown-container
{
    padding-top: 4.375rem;
}
.special .countdown-container p
{
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.875;
}

.special .countdown-container .countdown-counter
{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 1.875rem;
}
  .countdown-container .countdown-counter li
{
   display: inline-block;
  text-align: center;
  padding: 2rem 1rem;
   width: 15%;
   border: 1px solid;
   background-color: white;
   border: none;
   border-radius: 0.313rem;
   font-weight: bold;
   margin: 0 0.313rem;
   
}
  .countdown-container .countdown-counter li span
{
  font-weight: 500;
   
}
  .countdown-container .countdown-counter del
{
   font-size: 1rem;
   
}
  .special .special-img .sale
{
   background-color: var(--bg-danger);
   clip-path: circle();
   position: absolute;
   left: 2.2rem;
   top: 1rem;
   color: var(--text-white);
    padding: 0.675rem 0.588rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 999;
   
}

/* <............Testimonial.........> */

.testimonial
{
    padding: 5rem 0 8rem;
}

.testimonial .testimonial-wrapper
{
    box-shadow: 0 0 0.563rem 0 rgb(0 0 0 / 5%);
    margin: auto;
    padding: 1rem 5rem;
    border: var(--bg-light-white);
    border-radius: 0.635rem
}
.testimonial   img
{
     border-radius: 100%;
    height: 5rem;
    width: 5rem;
    margin: 1.25rem auto;
    object-fit: cover;
    background-color: var(--bg-light-white);
    border: 0.063rem solid var(--bg-light-white);
}

.testimonial .testimonial-wrapper span
{
    color: var(--text-gray);
    font-size: 1rem;
    text-transform: uppercase;
    margin: 1rem 0;
    display: block;
}
.testimonial .testimonial-wrapper p
{
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 300;
}


.list
{
    display: flex;
    justify-content:center;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}
.list li
{
    margin: 0 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    list-style: none;
}

#categories .images
{
        display: grid;
        place-items: center;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Automatically fit columns with a minimum width of 300px and a maximum of 1fr */
        margin-top: 2%;
}

.list li:hover
{
    color: #EE4E4E;
   
    border-bottom: 1px solid #EE4E4E;
}
.list
{
    background-color: #FFBF00;
    width: 100%;
    margin:  auto;
    height: 5vh;
}

@media only screen and (max-width: 500px) {
    .list {
      font-size: 12px;
    }
  }
#categories img 
    {
        width:250px;
        height: 250px;
        margin: 10px 0;
        object-fit: cover;
        
    }



    /* ......contact page...........  */
    #contact-page .ffbox { 
        display: flex; 
        width: 80%; 
        max-width: 800px; 
        background-color: #fff; 
        border: 3px solid #e4e4e9; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
        overflow: hidden; 
        border-radius: 10px; 
        flex-wrap: wrap; 
    } 
      
    #contact-page .ffbox1 { 
        flex: 1; 
        padding: 20px; 
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    } 
      
    #contact-page .ffbox1 label { 
        display: block; 
        margin-bottom: 8px; 
    } 
      
    #contact-page .ffbox1 input, 
    #contact-page .ffbox1 textarea { 
        width: 100%; 
        padding: 8px; 
        margin-bottom: 16px; 
        box-sizing: border-box; 
        border-radius: 15px; 
        background-color: #dcdce1; 
        border: none; 
    } 
      
    #contact-page .ffbox1 textarea { 
        resize: vertical; 
    } 
      
    #contact-page .ffbox1 { 
        margin-bottom: 16px; 
    } 
      
    #contact-page .ffbox1 label { 
        margin-right: 16px; 
    } 
      
   
      
    #contact-page button { 
        width: 100%; 
        padding: 8px; 
        margin-bottom: 16px; 
        box-sizing: border-box; 
        border-radius: 15px; 
        background-color: rgb(105, 152, 111); 
        color: rgb(183, 213, 179); 
        font-size: 17px; 
        font-weight: 700; 
        border: #a2c2ee; 
    } 
      
    #contact-page button:hover { 
        background-color: rgb(52, 98, 58); 
    } 
      
    
    
   

    #contact-page
    {
        
        max-width: 60%;
        width: 100%;
        margin: auto;
    }

    /* ........footer.........  */

    

    #main-footer .container{
        max-width: 1170px;
        margin:auto;
        background-color: black !important;
       
    }
    .row{
        display: flex;
        flex-wrap: wrap;
    }
    ul{
        list-style: none;
    }
    .footer{
        background-color: #24262b;
        padding: 70px 0;
    }
    .footer-col{
       width: 25%;
       padding: 10px 15px;
    }
    .footer-col h4{
        font-size: 18px;
        color: #ffffff;
        text-transform: capitalize;
        margin-bottom: 35px;
        font-weight: 500;
        position: relative;
    }
    .footer-col h4::before{
        content: '';
        position: absolute;
        left:0;
        bottom: -10px;
        background-color: #e91e63;
        height: 2px;
        box-sizing: border-box;
        width: 50px;
    }
    .footer-col ul li:not(:last-child){
        margin-bottom: 10px;
    }
    .footer-col ul li a{
        font-size: 16px;
        text-transform: capitalize;
        color: #ffffff;
        text-decoration: none;
        font-weight: 300;
        color: #bbbbbb;
        display: block;
        transition: all 0.3s ease;
    }
    .footer-col ul li a:hover{
        color: #ffffff;
        padding-left: 8px;
    }
    .footer-col .social-links a{
        display: inline-block;
        height: 40px;
        width: 40px;
        background-color: rgba(255,255,255,0.2);
        margin:0 10px 10px 0;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        color: #ffffff;
        transition: all 0.5s ease;
    }
    .footer-col .social-links a:hover{
        color: #24262b;
        background-color: #ffffff;
    }
    
    /*responsive*/
    @media(max-width: 767px){
      .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
    }
    @media(max-width: 574px){
      .footer-col{
        width: 100%;
    }
    }
    
    
    
    #main-footer .container{
        max-width: 1170px;
        margin:auto;
    }
    #main-footer .row{
        display: flex;
        flex-wrap: wrap;
    }
    #main-footer ul{
        list-style: none;
    }
    #main-footer .footer{
        background-color: #24262b;
        padding: 70px 0;
    }
    #main-footer .footer-col{
       width: 25%;
       padding: 0 15px;
    }
    .footer-col h4{
        font-size: 18px;
        color: #ffffff;
        text-transform: capitalize;
        margin-bottom: 35px;
        font-weight: 500;
        position: relative;
    }
    .footer-col h4::before{
        content: '';
        position: absolute;
        left:0;
        bottom: -10px;
        background-color: #e91e63;
        height: 2px;
        box-sizing: border-box;
        width: 50px;
    }
    .footer-col ul li:not(:last-child){
        margin-bottom: 10px;
    }
    .footer-col ul li a{
        font-size: 16px;
        text-transform: capitalize;
        color: #ffffff;
        text-decoration: none;
        font-weight: 300;
        color: #bbbbbb;
        display: block;
        transition: all 0.3s ease;
    }
    .footer-col ul li a:hover{
        color: #ffffff;
        padding-left: 8px;
    }
    .footer-col .social-links a{
        display: inline-block;
        height: 40px;
        width: 40px;
        background-color: rgba(255,255,255,0.2);
        margin:0 10px 10px 0;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        color: #ffffff;
        transition: all 0.5s ease;
    }
    .footer-col .social-links a:hover{
        color: #24262b;
        background-color: #ffffff;
    }
    
    /*responsive*/
    @media(max-width: 767px){
      .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
    }
    @media(max-width: 574px){
      .footer-col{
        width: 100%;
    }
    }
    
    
    
    
 