* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0px 25px;
}

.header {
    background: radial-gradient(#fff, #ffd6d6);
}

.header .row {
    margin-top: 70px;
}

/* navbar */
.navbar {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 20px;
    position: fixed;
    left: 0;
    top: 0;
    background: radial-gradient(#fff, #ffd6d6);
    z-index: 999;
}

nav {
    flex: 1;

}

nav ul {
    display: flex;
    list-style: none;
    justify-content: end;
}

nav ul li {
    margin-right: 20PX;

}

nav ul li a {
    text-decoration: none;
    color: #555;
    transition: all 0.5s;
}

nav ul li a:hover {
    color: #000;
    text-decoration: underline;
}

/* header */
.col-2 h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}

.col-2 p {
    color: #555;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.col-2 {
    flex-basis: 50%;
    min-width: 300px;
}

.col-2 img {
    max-width: 100%;
    padding: 50px 0;
}

.btn {
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.5s;
}

.btn:hover {
    background: #563434;
}

/* -- featured categories -- */
.categories {
    margin: 70px 0;
}

.col-3 {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.col-3 img {
    width: 100%;
}

.small-container {
    max-width: 1080px;
    margin: auto;
    padding: 0 25px;
}

/*  featured product */
.col-4 {
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: all 0.5s;
    cursor: pointer;
}

.col-4 img {
    width: 100%; 
}

.title {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}

.title::after{
    content: "";
    background: #ff523b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}
.col-4 h4{
    color: #555;
    font-weight: normal;
}
.col-4 p{
    font-size: 14px;
}
.rating .fa, .fa-regular, .fa-solid{
    color: #ff523b;
}
.col-4:hover{
    transform: translateY(-5px);
}
/* ----offer---- */
.offer{
    background: radial-gradient(#fff, #ffd6d6);
    margin-top:80px ;
    padding: 30px 0;
}
.col-2 .offer-img{
    padding: 50px;
}
small{
    color: #555;
}
/* ----testimonial----- */
.testimonial{
    padding-top: 100px;
}
.testimonial .col-3{
   text-align: center;
   padding: 40px 20px;
   box-shadow:0px 0px 20px 2px rgba(0, 0, 0, 0.1);
   cursor: pointer;
   transition: all 0.5s;
}
.testimonial .col-3:hover{
    transform: translateY(-10px);
}
.testimonial .col-3 img{
    width: 150px;
    margin-top:20px;
    border-radius: 50%;
}
.col-3 p{
    font-size: 15px;
    margin: 12px;
    color: #777;
}
.testimonial .col-3 h3{
font-weight: 600;
color: #555;
font-size:20px;
}
/* -----brands----- */
.brands{
    margin: 100px auto;
}
.col-5{
    width: 160px;
}
.col-5 img{
    width: 100%;
    cursor: pointer;
}
/* ---footer--- */
.footer{
    background: #000;
    color:#8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}
.footer p{
    color:#8a8a8a;
}
.footer h3{
    color: #FFF;
    margin-bottom: 20PX;
}
.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
    min-width: 250px;
    margin-bottom: 20px;
}
.footer-col-1{
    flex-basis: 30%;
}
.footer-col-2{
    flex: 1;
    text-align: center;
}
.footer-col-2 img{
    width:100px ;
    margin-bottom: 20px;
} 
.footer-col-3, .footer-col-4{
    flex-basis: 12%;
    text-align: center;
}
ul{
    list-style: none;
}
ul li a{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
ul li a:hover{
    text-decoration: underline;
    color: #555;
}
.app-logo{
    margin-top: 20px;
}
.app-logo img{
  width: 140px;
}
.footer hr{
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}
/* ---- footer social links----- */
.soclial-link{
text-decoration: none; 
color: #8a8a8a;
}
.soclial-link:hover{
    color: #fff;
    text-decoration: underline;
}
/* navigation burger */
#burger {
    position: absolute;
    top: 0;
    right: 15px;
}

#burger i {
    display: none;
    margin-right: 20px;
    margin-top: 20px;
    font-size: 30px;
    cursor: pointer;
}

#burger i:hover {
    color: black;
}