/*==================================================
                GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F8FCFF;
    color: #0F172A;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    border: none;
    outline: none;
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: 1320px;
    max-width: 95%;
    margin: auto;
}

/*==================================================
                ROOT COLOR
==================================================*/

:root {
    --primary: #38BDF8;
    --primary-dark: #0EA5E9;
    --secondary: #7DD3FC;
    --white: #ffffff;
    --bg: #F8FCFF;
    --text: #0F172A;
    --paragraph: #64748B;
    --border: #D9F1FF;
    --orange: #F97316;
    --shadow: 0 15px 40px rgba(56, 189, 248, .15);
    --radius: 18px;
}

/*==================================================
                TOP BAR
==================================================*/

.top-bar {
    background: linear-gradient(90deg, #38BDF8, #7DD3FC);
    color: #fff;
    font-size: 14px;
}

.topbar-wrapper {
    min-height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.delivery-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-text i {
    font-size: 18px;
}

.top-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .35s;
}

.top-right a:hover {
    opacity: .8;
}

/*==================================================
                MAIN HEADER
==================================================*/

.main-header {
    background: var(--white);
    padding: 18px 0;
    box-shadow: 0 8px 30px rgba(15, 23, 42, .05);
}

.header-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 35px;
}

/*==================================================
                    LOGO
==================================================*/

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.logo-text h2 span {
    color: var(--primary);
}

.logo-text p {
    margin-top: 5px;
    color: var(--paragraph);
    font-size: 13px;
}

/*==================================================
                SEARCH BOX
==================================================*/

.search-form {
    display: flex;
    align-items: center;
    height: 58px;
    border: 2px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    transition: .35s;
}

.search-form:hover {
    border-color: var(--primary);
}

.search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(56, 189, 248, .12);
}

.search-form input {
    flex: 1;
    height: 100%;
    padding: 0 25px;
    font-size: 15px;
    background: transparent;
}

.search-form button {
    width: 65px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 22px;
    transition: .35s;
}

.search-form button:hover {
    background: var(--primary-dark);
}

/*==================================================
            HEADER ACTIONS
==================================================*/

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    color: var(--text);
    transition: .35s;
}

.header-action:hover {
    color: var(--primary);
}

.header-action i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #EEF9FF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transition: .35s;
}

.header-action:hover i {
    background: var(--primary);
    color: #fff;
}

.cart-btn {
    position: relative;
}

.cart-btn small {
    position: absolute;
    top: -6px;
    right: 18px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
}

.login-btn {
    padding: 13px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: .35s;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/*==================================================
                NAVIGATION
==================================================*/

.navbar {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #EAF6FF;
    border-bottom: 1px solid #EAF6FF;
    position: relative;
    z-index: 99;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

/*==============================
        CATEGORY BUTTON
==============================*/

.category-btn {
    width: 230px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: .35s;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(56, 189, 248, .25);
}

.category-btn i {
    font-size: 22px;
}

/*==============================
        MENU
==============================*/

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 30px;
    flex: 1;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 0 18px;
    color: #334155;
    font-size: 15px;
    font-weight: 500;
    transition: .35s;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 0;
    height: 3px;
    background: #38BDF8;
    border-radius: 20px;
    transition: .35s;
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0EA5E9;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 70%;
}

/*==============================
        TODAY DEAL
==============================*/

.offer-btn {
    height: 48px;
    padding: 0 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFF7ED;
    color: #F97316;
    font-weight: 600;
    transition: .35s;
}

.offer-btn:hover {
    background: #F97316;
    color: #fff;
}

.offer-btn i {
    font-size: 18px;
}

/*==============================
        MOBILE MENU BUTTON
==============================*/

.mobile-menu-btn {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #38BDF8;
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

/*==============================
        STICKY HEADER
==============================*/

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    animation: slideDown .4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*==============================
        MOBILE MENU OPEN
==============================*/

.show-menu {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    z-index: 999;
}

.show-menu li {
    width: 100%;
}

.show-menu a {
    width: 100%;
    height: 55px;
    justify-content: flex-start;
    padding: 0 20px;
    border-bottom: 1px solid #eee;
}

/*==================================================
                    HERO SECTION
==================================================*/

.hero {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FCFF, #E0F7FF);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(56, 189, 248, .10);
    top: -180px;
    right: -120px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(14, 165, 233, .08);
    left: -100px;
    bottom: -120px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

/*==============================
        LEFT CONTENT
==============================*/

.hero-content h1 {
    font-size: 58px;
    line-height: 1.15;
    color: #0F172A;
    margin: 20px 0;
    font-weight: 800;
}

.hero-content h1 span {
    color: #38BDF8;
}

.hero-content p {
    font-size: 17px;
    color: #64748B;
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 35px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    background: #E0F7FF;
    color: #0284C7;
    font-weight: 600;
    font-size: 14px;
}

/*==============================
        BUTTONS
==============================*/

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
}

.btn-primary {
    padding: 16px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: #fff;
    font-weight: 600;
    transition: .35s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(56, 189, 248, .30);
}

.btn-secondary {
    padding: 16px 34px;
    border-radius: 50px;
    border: 2px solid #38BDF8;
    color: #38BDF8;
    font-weight: 600;
    transition: .35s;
}

.btn-secondary:hover {
    background: #38BDF8;
    color: #fff;
}

/*==============================
        HERO INFO
==============================*/

.hero-info {
    display: flex;
    gap: 55px;
}

.hero-info h3 {
    font-size: 34px;
    color: #0F172A;
}

.hero-info span {
    color: #64748B;
    font-size: 14px;
}

/*==============================
        HERO IMAGE
==============================*/

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    will-change: transform;
    animation: heroFloat 4s ease-in-out infinite;
}

.discount-box {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #F97316;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 35px rgba(249, 115, 22, .35);
}

.discount-box h2 {
    font-size: 38px;
    line-height: 1;
}

.discount-box p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
}

/*==============================
        FLOAT ANIMATION
==============================*/

@keyframes heroFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0);
    }
}

/*==============================
        HERO NAVIGATION
==============================*/

.hero-navigation {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #38BDF8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: .3s;
    will-change: background;
}

.hero-prev:hover,
.hero-next:hover {
    background: #0EA5E9;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: .3s;
    will-change: width, background;
}

.hero-dot.active {
    width: 35px;
    border-radius: 20px;
    background: #38BDF8;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width: 1200px) {
    .header-wrapper {
        grid-template-columns: 220px 1fr;
    }

    .header-actions {
        display: none;
    }
}

@media (max-width: 992px) {
    .topbar-wrapper {
        flex-direction: column;
        padding: 12px 0;
        gap: 8px;
    }

    .header-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo {
        justify-content: center;
    }

    .search-form {
        width: 100%;
    }

    .nav-menu {
        display: none;
    }

    .offer-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .category-btn {
        width: 60px;
        padding: 0;
    }

    .category-btn span {
        display: none;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: auto;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-info {
        justify-content: center;
        margin-bottom: 40px;
    }

    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .logo-text p {
        display: none;
    }

    .logo-text h2 {
        font-size: 24px;
    }

    .top-right {
        flex-direction: column;
        gap: 8px;
    }

    .search-form {
        height: 52px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-info {
        gap: 25px;
        flex-wrap: wrap;
    }

    .discount-box {
        width: 90px;
        height: 90px;
    }

    .discount-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 94%;
    }

    .logo img {
        width: 52px;
        height: 52px;
    }

    .logo-text h2 {
        font-size: 22px;
    }

    .search-form input {
        padding: 0 15px;
        font-size: 14px;
    }
}

/*==================================================
                CATEGORY SECTION
==================================================*/

.category-section{

    padding:90px 0;

    background:#ffffff;

}

/*==============================
        SECTION TITLE
==============================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#E0F7FF;

    color:#0284C7;

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.section-title h2{

    font-size:42px;

    color:#0F172A;

    font-weight:700;

    margin-bottom:15px;

}

.section-title p{

    font-size:16px;

    color:#64748B;

}

/*==============================
        CATEGORY GRID
==============================*/

.category-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

/*==============================
        CATEGORY CARD
==============================*/

.category-card{

    background:#ffffff;

    border:1px solid #EAF6FF;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 25px rgba(15,23,42,.05);

    overflow:hidden;

    position:relative;

}

.category-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#38BDF8,#0EA5E9);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.category-card:hover::before{

    transform:scaleX(1);

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(56,189,248,.18);

}

/*==============================
        CATEGORY IMAGE
==============================*/

.category-card img{

    width:85px;

    height:85px;

    margin:auto;

    object-fit:contain;

    transition:.4s;

}

.category-card:hover img{

    transform:scale(1.12) rotate(5deg);

}

/*==============================
        CATEGORY TITLE
==============================*/

.category-card h3{

    margin-top:25px;

    font-size:20px;

    color:#0F172A;

    font-weight:600;

}

.category-card p{

    margin-top:8px;

    color:#64748B;

    font-size:14px;

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:992px){

.category-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.category-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:32px;

}

.category-card{

padding:30px 20px;

}

}
/*==================================================
            FEATURED PRODUCTS
==================================================*/

.featured-products{

    padding:90px 0;

    background:#F8FCFF;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==============================
        PRODUCT CARD
==============================*/

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    border:1px solid #EAF3FF;

    transition:.35s;

    box-shadow:0 10px 25px rgba(15,23,42,.05);

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(56,189,248,.18);

}

/*==============================
        BADGE
==============================*/

.product-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#F97316;

    color:#fff;

    padding:7px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    z-index:5;

}

/*==============================
        IMAGE
==============================*/

.product-image{

    position:relative;

    background:#F8FCFF;

    padding:25px;

    height:260px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.product-image img{

    max-width:100%;

    max-height:210px;

    object-fit:contain;

    transition:.4s;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

/*==============================
        ICONS
==============================*/

.product-icons{

    position:absolute;

    top:15px;

    right:-50px;

    display:flex;

    flex-direction:column;

    gap:10px;

    transition:.35s;

}

.product-card:hover .product-icons{

    right:15px;

}

.product-icons a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#38BDF8;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.product-icons a:hover{

    background:#38BDF8;

    color:#fff;

}

/*==============================
        CONTENT
==============================*/

.product-content{

    padding:22px;

}

.product-category{

    color:#38BDF8;

    font-size:13px;

    font-weight:600;

}

.product-content h3{

    margin:12px 0;

    font-size:18px;

    color:#0F172A;

    line-height:1.5;

    height:54px;

    overflow:hidden;

}

/*==============================
        RATING
==============================*/

.product-rating{

    display:flex;

    align-items:center;

    gap:4px;

    color:#FBBF24;

    font-size:15px;

    margin-bottom:15px;

}

.product-rating small{

    color:#64748B;

    margin-left:5px;

}

/*==============================
        PRICE
==============================*/

.product-price{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:20px;

}

.product-price strong{

    font-size:24px;

    color:#0F172A;

    font-weight:700;

}

.product-price del{

    color:#94A3B8;

    font-size:15px;

}

/*==============================
        BUTTON
==============================*/

.add-cart{

    width:100%;

    height:50px;

    border-radius:12px;

    background:linear-gradient(135deg,#38BDF8,#0EA5E9);

    color:#fff;

    font-size:15px;

    font-weight:600;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    transition:.35s;

}

.add-cart:hover{

    background:#0284C7;

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:1200px){

.product-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.product-grid{

grid-template-columns:1fr;

}

.product-image{

height:220px;

}

}

/*==================================================
                FLASH SALE
==================================================*/

.flash-sale{

    padding:90px 0;

    background:#ffffff;

}

.flash-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:50px;

    gap:30px;

    flex-wrap:wrap;

}

.flash-title span{

    display:inline-block;

    padding:8px 18px;

    background:#E0F7FF;

    color:#0284C7;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.flash-title h2{

    font-size:42px;

    margin:15px 0;

    color:#0F172A;

}

.flash-title p{

    color:#64748B;

}

.countdown{

    display:flex;

    gap:15px;

}

.time-box{

    width:85px;

    height:85px;

    background:#38BDF8;

    color:#fff;

    border-radius:15px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

}

.time-box h3{

    font-size:28px;

}

.time-box span{

    font-size:13px;

}

.flash-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.flash-card{

    background:#fff;

    border-radius:20px;

    border:1px solid #EAF3FF;

    padding:25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(15,23,42,.05);

}

.flash-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(56,189,248,.18);

}

.flash-card img{

    width:220px;

    height:220px;

    object-fit:contain;

    margin:auto;

}

.flash-badge{

    display:inline-block;

    margin-bottom:20px;

    background:#F97316;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.flash-card h3{

    font-size:22px;

    margin:20px 0 15px;

    color:#0F172A;

}

.flash-price{

    margin-bottom:20px;

}

.flash-price strong{

    font-size:28px;

    color:#0F172A;

}

.flash-price del{

    margin-left:10px;

    color:#94A3B8;

}

.flash-card button{

    width:100%;

    height:52px;

    border-radius:12px;

    background:#38BDF8;

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.flash-card button:hover{

    background:#0EA5E9;

}

@media(max-width:768px){

.flash-grid{

grid-template-columns:1fr;

}

.countdown{

justify-content:center;

flex-wrap:wrap;

}

.flash-header{

justify-content:center;

text-align:center;

}

}

/*==================================================
            PROMOTIONAL BANNER
==================================================*/

.promo-banner{

    padding:100px 0;

    background:linear-gradient(135deg,#EAF8FF,#F8FCFF);

}

.promo-wrapper{

    display:grid;

    grid-template-columns:280px 1fr 280px;

    align-items:center;

    gap:40px;

    background:#fff;

    border-radius:30px;

    padding:50px;

    box-shadow:0 20px 50px rgba(56,189,248,.12);

}

.promo-image{

    display:flex;

    justify-content:center;

}

.promo-image img{

    width:100%;

    max-width:260px;

    object-fit:contain;

    animation:bannerFloat 4s ease-in-out infinite;

}

.promo-content{

    text-align:center;

}

.promo-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#DFF5FF;

    color:#0284C7;

    font-size:14px;

    font-weight:600;

}

.promo-content h2{

    font-size:48px;

    margin:20px 0;

    color:#0F172A;

    line-height:1.3;

}

.promo-content h2 span{

    color:#38BDF8;

}

.promo-content p{

    color:#64748B;

    font-size:17px;

    line-height:1.8;

    max-width:650px;

    margin:auto;

}

.promo-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.feature{

    background:#F8FCFF;

    border:1px solid #DFF5FF;

    border-radius:14px;

    padding:16px;

    font-weight:600;

    color:#0F172A;

    transition:.35s;

}

.feature:hover{

    background:#38BDF8;

    color:#fff;

    transform:translateY(-4px);

}

.promo-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:18px 36px;

    border-radius:50px;

    background:linear-gradient(135deg,#38BDF8,#0EA5E9);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.promo-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(56,189,248,.30);

}

@keyframes bannerFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@media(max-width:992px){

.promo-wrapper{

grid-template-columns:1fr;

text-align:center;

padding:40px 25px;

}

.promo-image{

display:none;

}

.promo-content h2{

font-size:36px;

}

.promo-features{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.promo-content h2{

font-size:28px;

}

.promo-content p{

font-size:15px;

}

.promo-btn{

width:100%;

justify-content:center;

}

}




/*==================================================
                NEW ARRIVAL
==================================================*/

.new-arrival{

    padding:100px 0;

    background:#F8FCFF;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading span{

    display:inline-block;

    padding:10px 22px;

    background:#DFF5FF;

    color:#0284C7;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.section-heading h2{

    font-size:46px;

    margin:18px 0;

    color:#0F172A;

}

.section-heading p{

    color:#64748B;

}

.arrival-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.arrival-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 35px rgba(15,23,42,.06);

}

.arrival-card:hover{

    transform:translateY(-8px);

}

.arrival-image{

    position:relative;

    background:#F4FBFF;

    padding:25px;

}

.arrival-image img{

    width:100%;

    height:240px;

    object-fit:contain;

}

.arrival-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#F97316;

    color:#fff;

    padding:6px 14px;

    border-radius:20px;

    font-size:12px;

    font-weight:700;

}

.arrival-content{

    padding:25px;

    text-align:center;

}

.arrival-content h3{

    font-size:18px;

    min-height:55px;

}

.arrival-price{

    margin:20px 0;

}

.arrival-price strong{

    color:#38BDF8;

    font-size:24px;

}

.arrival-price del{

    color:#94A3B8;

    margin-left:8px;

}

.arrival-btn{

    display:inline-block;

    width:100%;

    padding:14px;

    border-radius:12px;

    background:#38BDF8;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.arrival-btn:hover{

    background:#0EA5E9;

}

@media(max-width:992px){

.arrival-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.arrival-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:34px;

}

}

/*==================================================
                WHY CHOOSE US
==================================================*/

.why-us{

    padding:100px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.why-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #EAF6FF;

    transition:.35s;

    box-shadow:0 15px 35px rgba(15,23,42,.05);

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(56,189,248,.18);

}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#38BDF8,#0EA5E9);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

}

.why-card h3{

    font-size:22px;

    margin-bottom:12px;

    color:#0F172A;

}

.why-card p{

    color:#64748B;

    line-height:1.8;

}

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.why-grid{

grid-template-columns:1fr;

}

}



/*==================================================
                BRAND SLIDER
==================================================*/

.brand-section{

    padding:100px 0;

    background:#F8FCFF;

}

.brand-slider{

    overflow:hidden;

    position:relative;

    margin-top:60px;

}

.brand-track{

    display:flex;

    align-items:center;

    gap:70px;

    width:max-content;

    animation:brandSlide 28s linear infinite;

}

.brand-track img{

    width:130px;

    height:60px;

    object-fit:contain;

    opacity:.75;

    filter:grayscale(100%);

    transition:.35s;

}

.brand-track img:hover{

    opacity:1;

    filter:none;

    transform:scale(1.08);

}

@keyframes brandSlide{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@media(max-width:768px){

.brand-track{

gap:40px;

}

.brand-track img{

width:90px;

height:45px;

}

}

/*==================================================
                NEWSLETTER
==================================================*/

.newsletter{

    padding:100px 0;

    background:linear-gradient(135deg,#38BDF8,#0EA5E9);

}

.newsletter-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    color:#fff;

}

.newsletter-content span{

    display:inline-block;

    padding:8px 18px;

    background:rgba(255,255,255,.15);

    border-radius:30px;

    margin-bottom:18px;

}

.newsletter-content h2{

    font-size:42px;

    margin-bottom:15px;

}

.newsletter-content p{

    max-width:550px;

    line-height:1.8;

}

.newsletter-form{

    display:flex;

    width:500px;

    max-width:100%;

    background:#fff;

    border-radius:50px;

    overflow:hidden;

}

.newsletter-form input{

    flex:1;

    padding:18px 22px;

    font-size:15px;

}

.newsletter-form button{

    width:170px;

    background:#F97316;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.newsletter-form button:hover{

    background:#ea580c;

}

@media(max-width:992px){

.newsletter-box{

flex-direction:column;

text-align:center;

}

}














/*==================================================
                    FOOTER
==================================================*/

.footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:45px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;

}

.footer-logo img{

    width:55px;

}

.footer-logo h2{

    color:#fff;

}

.footer p{

    line-height:1.8;

}

.footer h3{

    color:#fff;

    margin-bottom:20px;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    transition:.3s;

}

.footer ul li a:hover{

    color:#38BDF8;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#1E293B;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.footer-social a:hover{

    background:#38BDF8;

    color:#fff;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:50px;

    padding-top:25px;

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom a{

    color:#38BDF8;

    font-weight:600;

}

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:576px){

.footer-grid{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}

/*==========================================
        PAYMENT METHODS
==========================================*/

.payment-methods{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;

}

.payment-methods img{

    width:60px;

    height:38px;

    object-fit:contain;

    background:#fff;

    padding:5px;

    border-radius:8px;

}

/*==========================================
        TRUST BADGE
==========================================*/

.trust-badge{

    display:flex;

    flex-direction:column;

    gap:10px;

    margin-top:20px;

}

.trust-badge div{

    background:#1E293B;

    color:#fff;

    padding:12px 15px;

    border-radius:10px;

    display:flex;

    align-items:center;

    gap:10px;

    font-size:14px;

}

.trust-badge i{

    color:#38BDF8;

    font-size:18px;

}

/*==========================================
        FLOATING BUTTONS
==========================================*/

.whatsapp-btn{

position:fixed;

right:25px;

bottom:95px;

width:60px;

height:60px;

border-radius:50%;

background:#25D366;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:30px;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:999;

animation:whatsapp 1.5s infinite;

}

@keyframes whatsapp{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

#backToTop{

position:fixed;

right:25px;

bottom:20px;

width:55px;

height:55px;

border-radius:50%;

background:#38BDF8;

color:#fff;

font-size:24px;

display:none;

justify-content:center;

align-items:center;

cursor:pointer;

z-index:999;

transition:.35s;

}

#backToTop:hover{

background:#0EA5E9;

}

.ri-spin{

    animation:spin .8s linear infinite;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*==================================================
                SEARCH PAGE
==================================================*/

.search-banner{

padding:70px 0;

background:linear-gradient(135deg,#38BDF8,#0EA5E9);

color:#fff;

}

.search-banner-content{

display:flex;

justify-content:space-between;

align-items:center;

}

.search-banner h1{

font-size:46px;

margin-bottom:10px;

}

.search-banner p{

font-size:18px;

opacity:.95;

}

.search-count{

text-align:center;

background:rgba(255,255,255,.15);

padding:25px 40px;

border-radius:20px;

backdrop-filter:blur(12px);

}

.search-count h2{

font-size:48px;

margin-bottom:8px;

}

.search-filter{

background:#fff;

padding:25px 0;

border-bottom:1px solid #E5E7EB;

}

.search-filter-wrapper{

display:flex;

justify-content:space-between;

align-items:center;

gap:20px;

}

.search-filter select{

width:240px;

height:50px;

padding:0 18px;

border:2px solid #E2E8F0;

border-radius:10px;

background:#fff;

font-size:15px;

cursor:pointer;

}

.search-filter select:focus{

border-color:#38BDF8;

outline:none;

}

@media(max-width:768px){

.search-banner-content{

flex-direction:column;

text-align:center;

gap:25px;

}

.search-filter-wrapper{

flex-direction:column;

}

.search-filter select{

width:100%;

}

}

/*==================================================
                PAGINATION
==================================================*/

.pagination-section{

padding:20px 0 80px;

}

.pagination{

display:flex;

justify-content:center;

align-items:center;

gap:12px;

flex-wrap:wrap;

}

.page-number,

.page-btn{

width:48px;

height:48px;

display:flex;

justify-content:center;

align-items:center;

border-radius:12px;

background:#fff;

border:2px solid #E2E8F0;

color:#0F172A;

font-weight:600;

transition:.35s;

}

.page-number:hover,

.page-btn:hover{

background:#38BDF8;

border-color:#38BDF8;

color:#fff;

transform:translateY(-3px);

}

.page-number.active{

background:#38BDF8;

border-color:#38BDF8;

color:#fff;

box-shadow:0 10px 25px rgba(56,189,248,.25);

}

@media(max-width:576px){

.pagination{

gap:8px;

}

.page-number,

.page-btn{

width:42px;

height:42px;

}

}

/*==================================================
                404 PAGE
==================================================*/

.error-page{

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:80px 0;

background:#F8FCFF;

}

.error-wrapper{

max-width:700px;

margin:auto;

text-align:center;

}

.error-wrapper img{

width:100%;

max-width:420px;

margin:auto;

margin-bottom:35px;

animation:floatError 4s ease-in-out infinite;

}

.error-wrapper h1{

font-size:120px;

color:#38BDF8;

font-weight:800;

line-height:1;

}

.error-wrapper h2{

font-size:38px;

margin:20px 0;

}

.error-wrapper p{

max-width:550px;

margin:auto;

line-height:1.8;

color:#64748B;

margin-bottom:35px;

}

.error-search{

display:flex;

max-width:550px;

margin:auto;

margin-bottom:40px;

height:58px;

overflow:hidden;

border-radius:50px;

border:2px solid #D9F1FF;

}

.error-search input{

flex:1;

padding:0 20px;

}

.error-search button{

width:70px;

background:#38BDF8;

color:#fff;

font-size:22px;

}

.error-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

@keyframes floatError{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}

@media(max-width:768px){

.error-wrapper h1{

font-size:90px;

}

.error-wrapper h2{

font-size:28px;

}

.error-search{

height:52px;

}

}


/*==================================================
                CONTACT PAGE
==================================================*/

.contact-page{

padding:80px 0;

background:#F8FCFF;

}

.contact-cards{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin:50px 0;

}

.contact-card{

background:#fff;

padding:35px 25px;

border-radius:18px;

text-align:center;

box-shadow:0 15px 40px rgba(15,23,42,.06);

transition:.35s;

}

.contact-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(56,189,248,.18);

}

.contact-card i{

font-size:45px;

color:#38BDF8;

margin-bottom:18px;

}

.contact-card h3{

font-size:22px;

margin-bottom:10px;

color:#0F172A;

}

.contact-card p{

color:#64748B;

font-size:15px;

}

.contact-wrapper{

display:grid;

grid-template-columns:2fr 1fr;

gap:35px;

margin-top:50px;

}

.contact-form{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:0 15px 40px rgba(15,23,42,.06);

}

.contact-form h3{

margin-bottom:25px;

font-size:28px;

}

.form-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:20px;

}

.contact-form input,

.contact-form textarea{

width:100%;

padding:15px 18px;

border:2px solid #E2E8F0;

border-radius:12px;

font-size:15px;

transition:.35s;

}

.contact-form input:focus,

.contact-form textarea:focus{

border-color:#38BDF8;

box-shadow:0 0 0 5px rgba(56,189,248,.10);

}

.contact-form textarea{

resize:vertical;

margin-bottom:25px;

}

.contact-info{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:0 15px 40px rgba(15,23,42,.06);

display:flex;

flex-direction:column;

gap:18px;

}

.contact-info h3{

font-size:28px;

margin-bottom:10px;

}

.contact-info a{

display:flex;

align-items:center;

gap:14px;

padding:15px 18px;

border-radius:12px;

background:#F8FCFF;

transition:.35s;

font-weight:600;

}

.contact-info a:hover{

background:#38BDF8;

color:#fff;

transform:translateX(6px);

}

.contact-info a i{

font-size:22px;

}

@media(max-width:992px){

.contact-cards{

grid-template-columns:repeat(2,1fr);

}

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.contact-cards{

grid-template-columns:1fr;

}

.form-grid{

grid-template-columns:1fr;

}

.contact-form,

.contact-info{

padding:25px;

}

}