:root {
    --pink: #e84393;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}
section{
    padding: 2rem 9%;
}
.heading{
    text-align: center;
    font-size: 4rem;
    color: #333;
    padding: 1rem;
    margin: 2rem 0;
    background: rgba(225,51,153,.05);
}
.heading span{
    color: var(--pink);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0.1);

}

header .logo {
    font-size: 3rem;
    color: #333;
    font-weight: bolder;
}

header .logo span {
    color: var(--pink);
}

header .navbar a {
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #666;
}

header .navbar a:hover {
    color: var(--pink);
}

header .icons a {
    font-size: 2.5rem;
    color: #333;
    margin-left: 1.5rem;
}

header .icons a:hover {
    color: var(--pink);
}

header #toggler {
    display: none;
}

header .fa-bars {
    font-size: 3rem;
    color: #333;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, .3);
    display: none;
}
.home{
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: url(images/8.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.home .content{
    max-width: 50rem;
}
.home .content h3{
    font-size: 6rem;
    color: #333;
}
.home .content span{
    font-size: 3.5rem;
    color: var(--pink);
    padding: 1rem 0;
    line-height: 1.5;
}
.home .content p{
    font-size: 1.5rem;
    color:#333;
    padding: 1rem 0;
    line-height: 1.5;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background: #333;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;
}
.btn:hover{
    background: var(--pink);
}
.about .row{
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    padding-bottom: 3rem;
}
.about .row .video-container{
    flex: 1 1 40rem;
    position: relative;
}
.about .row .video-container video{
    width: 100%;
    border: 1.5rem solid #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    height: 100%;
    object-fit: cover;
    height: 360px;
    

}
.about .row .video-container h3{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #333;
    background: #fff;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
}
.about .row .content{
    flex: 1 1 40rem;
}
.about .row .content h3{
    font-size: 3rem;
    color: #333;
}
 
.about .row .content p{
    font-size: 1.5rem;
    color: #999;
    padding: .5rem 0;
    padding-top: 1rem;
    line-height: 1.5;
}

.icons-container{
    background: #eeee;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.icons-container .icons{
    background-color: #fff;
    border: .1rem solid rgba(0, 0, 0, .1);
    padding: 2rem;
    display: flex;
    align-items: center;
    flex: 1 1 25rem;
}
.icons-container .icons img{
    height: 5rem;
    margin-right: 2rem;
}
.icons-container .icons h3{
    color: #333;
    padding-bottom: .5rem;
    font-size: 1.5rem;

}
.icons-container .icons span{
    color: #555;
    font-size: 1.3rem;
    
}

.products .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;


}
.products .box-container .box{
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
    border: 1rem solid rgba(0, 0, 0, .1);
    position: relative;

}
.products .box-container .box .discount{
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 7rem 1rem;
    font-size: 2rem;
    color: var(--pink);
    background: rgba(225,51,153,.05);
    z-index: 1;
    border-radius: .5rem;
}

.products .box-container .box .image {
    position: relative;
    text-align: center;
    padding-top: 2rem;
    overflow: hidden;
}

.products .box-container .box .image img {
    width: 100%;
    height: auto;
    max-height: 30rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.products .box-container .box:hover .image img{
    transform: scale(1.1);
}
.products .box-container .box .image .icons{
    position: absolute;
    bottom: -7rem;
    left: 0;
    right: 0;
    display: flex;
}
.products .box-container .box:hover .image .icons{
    bottom: 0;

}
.products .box-container .box .image .icons a{
    height: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    width: 50%;
    background: var(--pink);
    color: #fff;
}
.products .box-container .box .image .icons .cart-btn{
    border-left: .1rem solid #fff7;
    border-right: .1rem solid #fff7;
    width: 100%;




}
.products .box-container .box .image .icons a:hover{
    background: #333;
}
.products .box-container .box .content{
    padding: 2rem;
    text-align: center;
}
.products .box-container .box .content h3{
    font-size: 2.5rem;
    color: #333;
}
.products .box-container .box .content .price{
    font-size: 2.5rem;
    color: var(--pink);
    font-weight: bolder;
    padding-top: 1rem;

}

.products .box-container .box .content .price span{
    font-size: 1.5rem;
    color: #999;
    font-weight: lighter;
    text-decoration: line-through;

}

.review .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;


}
.review .box-container .box{
    flex: 1 1 30rem; 
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
    padding: 3rem 2rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, .1);
}
.review .box-container .box .fa-quote-right
{
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    font-size: 6rem;
    color: #eee;
}
.review .box-container .box .stars i{
    color: var(--pink);
    font-size: 2rem;


}
.review .box-container .box p{
    color: #999;
    font-size: 1.5rem;
    line-height: 2rem;
    padding-top: 2rem;
    

}
.review .box-container .box .user{
    display: flex;
    align-items: center;
    padding-top: 2rem;
}
.review .box-container .box .user img{
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}
.review .box-container .box .user h3{
    font-size: 2rem;
     color: #333;
}

.review .box-container .box .user span{
    font-size: 1.5rem;
     color: #999;
}

.contact {
    background: #f9f9f9;
    padding: 4rem 2rem;
}

.contact .heading {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--pink);
    text-transform: capitalize;
}

.contact .row {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.contact .row form {
    flex: 1 1 40rem;
    padding: 2.5rem;
    background: #fff;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    border-radius: .8rem;
}

.contact .row .image {
    flex: 1 1 40rem;
    text-align: center;
}

.contact .row .image img {
    width: 85%;
    border-radius: .8rem;
    box-shadow: 0 .3rem .8rem rgba(0,0,0,0.1);
}

.contact .row form .box,
.contact .row form textarea {
    width: 100%;
    padding: 1.3rem;
    font-size: 1.6rem;
    color: #333;
    background: #f1f1f1;
    border: none;
    outline: none;
    border-radius: .5rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.contact .row form .box:focus,
.contact .row form textarea:focus {
    background: #fff;
    border: .2rem solid var(--pink);
    box-shadow: 0 0 0.5rem rgba(225, 51, 153, 0.2);
}

.contact .row form textarea {
    height: 15rem;
    resize: none;
}

.contact .row form .btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--pink);
    color: #fff;
    padding: 1.2rem 2rem;
    font-size: 1.7rem;
    border: none;
    border-radius: .5rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact .row form .btn:hover {
    background: #333;
}
.footer {
  background: #fff0f5;
  padding: 3rem 8%;
}

.footer .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1rem;
  column-gap: 2rem;
}

.footer .box {
  flex: 1 1 22rem;
}

.footer .box h3 {
  font-size: 2rem;
  color: #e13399;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.footer .box a {
  display: block;
  font-size: 1.5rem;
  color: #555;
  padding: 0.2rem 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .box a:hover {
  color: #e13399;
  text-decoration: underline;
}

.footer .credit {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #555;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

.footer .credit span {
  color: #e13399;
  font-weight: bold;
}

/* Mobile screen optimization */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 5%;
  }

  .footer .box-container {
    flex-direction: column;
    row-gap: 1.5rem; /* Reduce vertical gap */
    align-items: center;
    text-align: center;
  }

  .footer .box {
    flex: 1 1 100%;
    margin: 0; /* Remove extra margin */
  }
}


@media(max-width:768px) {
    html .fa-bars {
        display: block;
    }

    /* Hide by default */
header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #eee;
    border-top: .1rem solid rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease;
    overflow: hidden;
}

/* Show when toggler is checked */
#toggler:checked ~ .navbar {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

    header .navbar a {
        margin: 1.5rem;
        padding: 1.5rem;
        background: #fff;
        border: 1rem solid rgba(0, 0, 0, .1);
        display: block;

    }
    .home .content h3{
        font-size: 5rem;
    }
    .home .content span{
        font-size: 2.5rem;
    }
    .icons-container .icons h3{
    font-size: 2rem;

}
.icons-container .icons span{
    font-size: 1.7rem;
    
}
}

@media(max-width:450px){
    html{
        font-size: 50%;
    }
    .heading{
        font-size: 3rem;
    }
    
}