:root {
    --pink: #e843e8;
}

* {
    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: all .2s linear;
}

html {
    font-size: 70%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section{

    padding: 2rem 9%;
}

.heading{
    text-align: center;
    font-size: 4rem;
    color: #333;
    padding-bottom: 1rem;
    margin: 2rem 0;
    background: rgba(255,51,153,.05);
}

.heading span{
    color: var(--pink);
}
    
.btn{
    display: inline-block;
    margin-top: 1rem;
    background: #333;
    border-radius: 5rem;
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
    padding: .9rem 3.5rem;
}

.btn:hover{
    background: 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);
}

/* Logo */
header .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

header .logo span {
    color: var(--pink);
}

/* Navbar links */
header .navbar a {
    font-size: 1.2rem;
    padding: 0 1.5rem;
    color: #666;
}

header .navbar a:hover {
    color: var(--pink);
}

/* Icons */
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: 2rem;
    cursor: pointer;
    color: #333;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    border: .1rem solid rgba(0,0,0,.3);
    display: none;
}

.home{
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: url(images/home-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content {
    max-width: 50rem;
}

.home .content h3 {
    font-size: 5rem;
    color: #333;
}

.home .content span {
    font-size: 2rem;
    color: var(--pink);
    padding: 1rem 0;
    line-height: 1.5;
}

.home .content p {
    font-size: 1rem;
    color: #999;
    line-height: 1.5;
    padding: 0 1rem;
}

.about .row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    padding-bottom: 2rem;
}

.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;

}

.about .row .video-container h3{
    position: absolute;
    top: 50%; transform: translateY(-50%);
    font-size: 3rem;
    background-color: #fff;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    mix-blend-mode: screen;

}

.about .row .content{
    flex: 1 1 40rem;
}

.about .row h3{
    font-size: 3rem;
    color:#333;
}
.about .row p{
    font-size: 1.5rem;
    color:#999;
    padding: .5rem 0;
    padding-top: 1rem;
    line-height: 1.5;

}

/* Fix icons-container sizing and icon image size */
.icons-container {
    background: #eee;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
    width: 100%;      /* full width */
    height: auto;     /* let height grow */
}

.icons-container .icons {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.05);
    padding: 2rem 2rem;
    text-align: center;
    flex: 1 1 200px;  /* responsive width */
    max-width: 220px; /* max width per icon box */
}

.icons-container .icons img {
    width: 80px;      /* large icon size */
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.icons-container .icons h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: .5rem;
}

.icons-container .icons span {
    font-size: 1rem;
    color: #999;
}

/* product section */
.products .box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.products .box-container.box {
    width: 100%;
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.products .box:hover {
    transform: translateY(-5px);
}

.products .box .image {
    position: relative;
    overflow: hidden;
}

.products .box .image img {
    width: 100%;
    border-radius: .5rem;
}

.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: 1.6rem;
 width: 50%;
 background: #e65a92;
 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: #ff3385;
 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;
}

.products .box .discount {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff3385;
    color: #fff;
    padding: .5rem;
    border-radius: .3rem;
    font-size: 1.2rem;
}

.products .box .content {
    margin-top: 1rem;
}

.products .box .content h3 {
    font-size: 1.5rem;
    color: #333;
}

.products .box .content .price {
    font-size: 1rem;
    color: #ff3385;
}

.products .box .content .price span {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-left: .5rem;
}

.review .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.review .box-container .box {
    flex: 1 1 30rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border-radius: .5rem;
    padding: 3rem 2rem;
    position: relative;
    border: .1rem solid rgba(0,0,0,.1);
    text-align: center;
}

.review .box-container .box img {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.review .box-container .box h3 {
    color: #333;
    font-size: 2.2rem;
    padding: .5rem 0;
}

.review .box-container .box p {
    color: #666;
    font-size: 1.4rem;
    padding: 1rem 0;
    line-height: 1.8;
}

.review .box-container .box .stars i {
    color: var(--pink);
    font-size: 1.7rem;
}

.contact .row {
    display: flex;
    flex-wrap: wrap-reverse;
    gap: 1.5rem;
}

.contact .row form{
   flex: 1 1 40rem;
   padding: 2rem 2.5rem;
   box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
   border: .1rem solid rgba(0,0,0,.1);
   background: #fff;
   border-radius: 5rem;
}

.contact .row image{
   flex: 1 1 40rem;
}

.contact .row form .box {
   font-size: 1.7rem;
   padding: 1rem;
   color: #333;
   text-transform: none;
   border: .1rem solid rgba(0,0,0,.1);
   border-radius: .5rem;
   margin: .7rem 0;
   width: 100%;
}

.contact .row form .box:focus {
    border-color: var(--pink);
}

.contact .row form textarea{
    height: 15rem;
    resize: none;
}

.contact .row form .btn {
   background: #000000;
   color: #fff;
   padding: 1rem 2rem;
   border: none;
   border-radius: .5rem;
   cursor: pointer;
   transition: background 0.3s ease;
}

.contact .row form .btn:hover {
   background: #333;
}

.footer {
    background: #fff;
    padding: 2rem 0;
    width: 100vw;
    margin-left: calc(50% - 50vw); /* removes side padding for full width */
}

.footer .box-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .5rem;
    margin: 0;
    padding: 0;
}

.footer .box {
    flex: 1;
    text-align: left;
    background: none;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0;
}

.footer .box h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.rem;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
}

.footer .box .links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer .box .links a {
    color: #666;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.2rem 0;
    text-align: left;
    white-space: nowrap;
}

.footer .box .links a:hover {
    color: var(--pink, #e75480);
}

.footer .credit {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    background: none;
}

.footer .credit span {
    color: var(--pink);
}

/* Remove all box-shadows and borders globally */
.footer, .footer * {
    box-shadow: none !important;
    border: none !important;
}

/* media queries */
@media (max-width:750px) {
    html {
    font-size: 55%;
}

header {
    padding:2rem;
   
}

.home {
    background-position: left;
}

@media (max-width:650px){
    header .fa-bars{
        display: block;
    }

    header .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #eee;
        border-top: .1rem solid rgba(0,0,0,.1);
    }
}
    header .navbar a{
        margin: 1.5rem;
        padding: 1.5rem;
        background: #fff;
        border-bottom: .1rem solid rgba(0,0,0,.1);
        display: block;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .home .content h3{
        font-size: 5rem;
    }

    .home .content span{
        font-size: 2.5rem;
    }

    header #toggler:checked ~ .navbar a{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width:450px) {
    html {
    font-size: 50%;
}

 .heading{
    font-size: 3rem;
 }


