* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
    overflow-x: hidden;
}

/*****************************
TOP BAR
******************************/

.top-bar {

    background: #111;
    color: white;
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 12px;
    font-size: 14px;
}

.top-bar span {

    display: flex;
    align-items: center;
    gap: 8px;

}

.top-bar i {
    color: #ffbf00;
}

/*****************************
HEADER
******************************/

header {

    background: white;
    padding: 20px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 999;

}

.logo {

    font-size: 32px;
    font-weight: 800;
    color: #111;

}

.logo span {
    color: #ffbf00;
}

.search {

    flex: 1;
    margin: 0 50px;
    position: relative;

}

.search input {

    width: 100%;
    height: 52px;
    border-radius: 40px;
    border: 1px solid #ddd;
    padding-left: 55px;
    font-size: 15px;
    outline: none;
    transition: .3s;

}

.search input:focus {

    border-color: #ffbf00;

}

.search i {

    position: absolute;
    left: 22px;
    top: 18px;
    color: #999;

}

.icons {

    display: flex;
    gap: 35px;
    align-items: center;

}

.icons a{
    color: #111;
    text-decoration: none;
}
.icon {

    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    cursor: pointer;

}

.icon i {

    font-size: 22px;
    margin-bottom: 6px;

}

/*****************************
NAVIGATION
******************************/

nav {

    background: white;
    padding: 18px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.categories {

    background: #111;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;

}

.menu {

    display: flex;
    gap: 35px;

}

.menu a {

    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: .3s;
    text-transform: capitalize;

}

.menu a:hover {

    color: #ffbf00;

}

.mobile-btn {

    display: none;
    font-size: 28px;
    cursor: pointer;

}

/*****************************
HERO
******************************/

.hero {

    padding: 50px 6%;

}

.slider {

    position: relative;
    overflow: hidden;
    border-radius: 25px;

}

.slide {

    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 60px;
    display: none;
    animation: fade .6s;

}

.slide.active {

    display: flex;

}

.left {

    width: 50%;

}

.left h5 {

    color: #ffbf00;
    margin-bottom: 10px;
    font-size: 18px;

}

.left h1 {

    font-size: 60px;
    line-height: 70px;
    margin-bottom: 25px;
    color: #111;

}

.left p {

    font-size: 17px;
    line-height: 32px;
    color: #666;
    margin-bottom: 35px;

}

.btn {

    background: #ffbf00;
    padding: 16px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    display: inline-block;
    transition: .3s;

}

.btn:hover {

    background: #111;
    color: white;

}

.right {

    width: 45%;
    text-align: center;

}

.right img {

    width: 100%;
    max-width: 480px;

}

.controls {

    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;

}

.dot {

    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;

}

.dot.active {

    background: #ffbf00;

}

/*=========================
FEATURES
=========================*/

.features {

    padding: 70px 6%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.feature-card {

    background: white;

    padding: 35px;

    text-align: center;

    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

    transition: .35s;

}

.feature-card:hover {

    transform: translateY(-8px);

}

.feature-icon {

    font-size: 45px;

    margin-bottom: 15px;

}

.feature-card h3 {

    margin-bottom: 12px;

}

.feature-card p {

    color: #777;

}





/*=========================
CATEGORY
=========================*/

.category-section {

    padding: 20px 6% 80px;

}

.section-title {

    font-size: 34px;

    margin-bottom: 40px;

}

.category-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 30px;

}

.category {

    background: white;

    padding: 25px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);

    transition: .35s;

    cursor: pointer;

}

.category:hover {

    transform: translateY(-10px);

}

.category img {

    width: 120px;

    height: 120px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 18px;

}





/*=========================
PRODUCT
=========================*/

.products {

    padding: 20px 6% 80px;

}

.title-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 40px;

}

.title-row a {

    text-decoration: none;

    color: #ffbf00;

    font-weight: 600;

}

.product-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.product {

    background: white;

    padding: 25px;

    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

    position: relative;

    transition: .35s;

}

.product:hover {

    transform: translateY(-10px);

}

.discount {

    position: absolute;

    top: 20px;

    left: 20px;

    background: #111;

    color: white;

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 13px;

}

.product img {

    width: 100%;

    height: 230px;

    object-fit: contain;

    margin-bottom: 20px;

}

.product h3 {

    margin-bottom: 12px;

}

.rating {

    color: orange;

    margin-bottom: 12px;

    font-size: 18px;

}

.price {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 20px;

}

.price del {

    font-size: 15px;

    color: #999;

    margin-left: 10px;

}

.product button {

    width: 100%;

    height: 50px;

    border: none;

    background: #ffbf00;

    font-weight: 600;

    border-radius: 40px;

    cursor: pointer;

    transition: .35s;

}

.product button:hover {

    background: #111;

    color: white;

}

/*==========================
PROMOTIONAL BANNERS
==========================*/

.promo-section {

    padding: 40px 6% 90px;

}

.promo-grid {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 30px;

}

.promo-card {

    border-radius: 25px;

    overflow: hidden;

    position: relative;

    color: white;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

}

.large {

    background: linear-gradient(135deg, #111, #444);

    padding: 70px;

    min-height: 420px;

    display: flex;

    align-items: center;

}

.small {

    padding: 40px;

    height: 195px;

    display: flex;

    align-items: center;

}

.one {

    background: linear-gradient(135deg, #ffbf00, #f59f00);

    color: #111;

    margin-bottom: 30px;

}

.two {

    background: linear-gradient(135deg, #222, #000);

}

.promo-content span {

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 600;

}

.promo-content h2 {

    font-size: 42px;

    margin: 18px 0;

    line-height: 55px;

}

.promo-content h3 {

    font-size: 28px;

    margin: 18px 0;

}

.promo-content p {

    font-size: 17px;

    line-height: 30px;

    margin-bottom: 30px;

    max-width: 500px;

}

.promo-btn {

    display: inline-block;

    padding: 15px 35px;

    background: white;

    color: #111;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}

.promo-btn:hover {

    background: #ffbf00;

}

.small a {

    color: inherit;

    font-weight: 600;

    text-decoration: none;

}



/*==========================
STATISTICS
==========================*/

.stats {

    padding: 80px 6%;

    background: #111;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    text-align: center;

    color: white;

}

.stat h1 {

    font-size: 50px;

    color: #ffbf00;

    margin-bottom: 12px;

}

.stat p {

    font-size: 18px;

    color: #ddd;

}



/*==========================
WHY CHOOSE US
==========================*/

.why {

    padding: 90px 6%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}

.why-image img {

    width: 100%;

    border-radius: 25px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.small-title {

    color: #ffbf00;

    font-weight: 600;

    letter-spacing: 2px;

}

.why-content h2 {

    font-size: 42px;

    margin: 20px 0;

    line-height: 55px;

}

.why-content p {

    line-height: 30px;

    color: #666;

    margin-bottom: 30px;

}

.why-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 40px;

    font-weight: 500;

}

/*==========================
NEWSLETTER
==========================*/

.newsletter {

    padding: 90px 6%;

    background: #111;

    color: white;

    text-align: center;

}

.newsletter h2 {

    font-size: 42px;

    margin-bottom: 20px;

}

.newsletter p {

    max-width: 650px;

    margin: auto;

    line-height: 30px;

    margin-bottom: 40px;

    color: #ccc;

}

.newsletter form {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}

.newsletter input {

    width: 450px;

    max-width: 100%;

    height: 60px;

    padding: 0 20px;

    border: none;

    border-radius: 50px;

    outline: none;

    font-size: 16px;

}

.newsletter button {

    height: 60px;

    padding: 0 35px;

    border: none;

    border-radius: 50px;

    background: #ffbf00;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}

.newsletter button:hover {

    background: white;

}



/*==========================
BRANDS
==========================*/

.brands {

    padding: 90px 6%;

    text-align: center;

}

.brand-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 25px;

    margin-top: 50px;

}

.brand-grid div {

    background: white;

    padding: 35px;

    font-size: 22px;

    font-weight: 700;

    border-radius: 15px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

    transition: .3s;

}

.brand-grid div:hover {

    transform: translateY(-8px);

}



/*==========================
FOOTER
==========================*/

footer {

    background: #1a1a1a;

    color: white;

    padding-top: 80px;

}

.footer-container {

    padding: 0 6% 60px;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

}

.footer-box h2 {

    font-size: 36px;

    margin-bottom: 20px;

}

.footer-box span {

    color: #ffbf00;

}

.footer-box p {

    line-height: 30px;

    color: #bbb;

    margin-bottom: 30px;

}

.footer-box h3 {

    margin-bottom: 20px;

}

.footer-box ul {

    list-style: none;

}

.footer-box li {

    margin-bottom: 15px;

}

.footer-box a {

    text-decoration: none;

    color: #bbb;

    transition: .3s;

}

.footer-box a:hover {

    color: #ffbf00;

}

.socials {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.copyright {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 25px;

    text-align: center;

    color: #aaa;

}



/*==========================
BACK TO TOP
==========================*/

#topBtn {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 55px;

    height: 55px;

    border: none;

    background: #ffbf00;

    font-size: 24px;

    border-radius: 50%;

    cursor: pointer;

    display: none;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);

}

/* Loader */

#loader {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: .6s;

}

.spinner {

    width: 70px;
    height: 70px;
    border: 8px solid #ddd;
    border-top: 8px solid #ffbf00;
    border-radius: 50%;
    animation: spin 1s linear infinite;

}

.reveal {

    opacity: 0;
    transform: translateY(70px);
    transition: 1s;

}

.reveal.active {

    opacity: 1;
    transform: translateY(0);

}

@keyframes spin {

    100% {

        transform: rotate(360deg);

    }

}

@keyframes fade {

    from {
        opacity: .4;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/*=========================
FLASH SALE
==========================*/

.flash-sale{

margin:80px 6%;

background:linear-gradient(135deg,#111,#2c2c2c);

border-radius:25px;

padding:60px;

display:flex;

justify-content:space-between;

align-items:center;

color:white;

overflow:hidden;

gap:40px;

}

.flash-left{

flex:1;

}

.sale-tag{

display:inline-block;

background:#ffbf00;

color:#111;

padding:10px 20px;

border-radius:40px;

font-weight:600;

margin-bottom:20px;

}

.flash-left h2{

font-size:52px;

margin-bottom:15px;

}

.flash-left p{

font-size:18px;

line-height:30px;

margin-bottom:35px;

color:#ddd;

}

.countdown{

display:flex;

gap:18px;

margin-bottom:35px;

flex-wrap:wrap;

}

.time-box{

width:90px;

height:90px;

background:white;

color:#111;

border-radius:15px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.time-box h1{

font-size:30px;

color:#ffbf00;

}

.time-box span{

font-size:13px;

font-weight:600;

}

.sale-btn{

display:inline-block;

padding:15px 35px;

background:#ffbf00;

color:#111;

text-decoration:none;

font-weight:600;

border-radius:40px;

transition:.3s;

}

.sale-btn:hover{

background:white;

transform:translateY(-3px);

}

.flash-right{

flex:1;

text-align:center;

}

.flash-right img{

width:100%;

max-width:450px;

animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}
/*==========================
REVIEWS
==========================*/

.reviews{

padding:80px 6%;

background:#f7f7f7;

}

.review-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:40px;

}

.review-header h2{

font-size:35px;

}

.write-review{

background:#111;

color:white;

padding:15px 30px;

border:none;

border-radius:40px;

cursor:pointer;

}

.review-card{

background:white;

padding:30px;

border-radius:20px;

margin-bottom:25px;

box-shadow:0 10px 25px rgba(0,0,0,.05);

transition:.3s;

}

.review-card:hover{

transform:translateY(-5px);

}

.review-top{

display:flex;

gap:20px;

align-items:center;

margin-bottom:20px;

}

.review-top img{

width:70px;

height:70px;

border-radius:50%;

object-fit:cover;

}

.review-top h3{

margin-bottom:8px;

}

.stars{

color:orange;

font-size:20px;

}

.review-card p{

line-height:30px;

color:#666;

margin:20px 0;

}

.review-image{

width:220px;

border-radius:15px;

margin-bottom:20px;

}

.review-actions{

display:flex;

gap:15px;

}

.review-actions button{

padding:12px 25px;

border:none;

background:#eee;

border-radius:30px;

cursor:pointer;

transition:.3s;

}

.review-actions button:hover{

background:#ffbf00;

}



