/* ==========================================
   SMARTLCD STYLE
   Version 2.0
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Inter,Arial,sans-serif;

    background:#f8fafc;

    color:#111827;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

button{

    cursor:pointer;

    font-family:inherit;

}

.container{

    width:95%;

    max-width:1400px;

    margin:auto;

}

/* ==========================================
   SECTION
========================================== */

section{

    padding:70px 0;

}

.section-title{

    font-size:42px;

    font-weight:900;

    color:#111827;

    margin-bottom:40px;

}

/* ==========================================
   BUTTON
========================================== */

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 36px;

    background:#2563eb;

    color:#fff;

    border-radius:16px;

    font-size:17px;

    font-weight:700;

    transition:.3s;

}

.btn:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

}
/* ==========================================
   HEADER
========================================== */

.desktop-header{

    width:100%;

    background:#fff;

    border-bottom:1px solid #e5e7eb;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

    position:sticky;

    top:0;

    z-index:1000;

}

.header-top{

    display:flex;

    align-items:center;

    gap:35px;

    padding:22px 0;

}

/* ==========================================
   LOGO
========================================== */

.logo{

    display:flex;

    align-items:center;

    gap:18px;

    flex-shrink:0;

}

.logo img{

    width:62px;

    height:62px;

    object-fit:contain;

    transition:.3s;

}

.logo:hover img{

    transform:scale(1.05);

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-text h1{

    font-size:38px;

    font-weight:900;

    color:#111827;

    line-height:1;

}

.logo-text p{

    margin-top:6px;

    color:#64748b;

    font-size:14px;

}

/* ==========================================
   SEARCH
========================================== */

.search-form{

    flex:1;

}

.search-box{

    display:flex;

    align-items:center;

    height:62px;

    background:#fff;

    border:2px solid #dbeafe;

    border-radius:18px;

    overflow:hidden;

    transition:.3s;

}

.search-box:hover{

    border-color:#2563eb;

}

.search-box:focus-within{

    border-color:#2563eb;

    box-shadow:0 0 0 5px rgba(37,99,235,.08);

}

.search-box i{

    width:60px;

    text-align:center;

    color:#2563eb;

    font-size:22px;

}

.search-box input{

    flex:1;

    border:none;

    outline:none;

    font-size:16px;

    background:none;

}

.search-box button{

    width:150px;

    height:100%;

    border:none;

    background:#2563eb;

    color:#fff;

    font-size:16px;

    font-weight:700;

    transition:.25s;

}

.search-box button:hover{

    background:#1d4ed8;

}

/* ==========================================
   ACTIONS
========================================== */

.header-actions{

    display:flex;

    align-items:center;

    gap:14px;

}

.action-btn{

    position:relative;

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    background:#f8fafc;

    color:#334155;

    transition:.25s;

}

.action-btn:hover{

    background:#2563eb;

    color:#fff;

}

.action-btn i{

    font-size:24px;

}

.badge{

    position:absolute;

    top:-6px;

    right:-6px;

    min-width:22px;

    height:22px;

    padding:0 6px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#ef4444;

    color:#fff;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

}

/* ==========================================
   MENU
========================================== */

.desktop-menu{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:18px 0 22px;

    border-top:1px solid #eef2f7;

}

.desktop-menu a{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    border-radius:14px;

    color:#334155;

    font-size:16px;

    font-weight:700;

    transition:.25s;

}

.desktop-menu a i{

    color:#2563eb;

    font-size:18px;

}

.desktop-menu a:hover,

.desktop-menu a.active{

    background:#2563eb;

    color:#fff;

}

.desktop-menu a:hover i,

.desktop-menu a.active i{

    color:#fff;

}
/* ==========================================
   HOME
========================================== */

.home-top{

    padding:45px 0 70px;

}

.home-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    margin-bottom:55px;

}

.home-card{

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    color:#111827;

    border:1px solid #eef2f7;

    box-shadow:0 12px 30px rgba(15,23,42,.05);

    transition:.35s;

}

.home-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.home-card i{

    font-size:54px;

    color:#2563eb;

    margin-bottom:20px;

}

.home-card h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;

}

.home-card p{

    color:#64748b;

    font-size:15px;

}

.home-info{

    text-align:center;

    max-width:900px;

    margin:auto;

}

.home-info h1{

    font-size:56px;

    font-weight:900;

    margin-bottom:22px;

}

.home-info p{

    font-size:19px;

    color:#64748b;

    line-height:1.8;

}

.home-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    margin-top:35px;

    padding:18px 42px;

    background:#2563eb;

    color:#fff;

    border-radius:18px;

    font-size:17px;

    font-weight:700;

    transition:.3s;

}

.home-btn:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

}

/* ==========================================
   BRANDS
========================================== */

.brand-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));

    gap:24px;

}

.brand-card{

    background:#fff;

    border-radius:24px;

    padding:30px 20px;

    text-align:center;

    border:1px solid #eef2f7;

    color:#111827;

    transition:.35s;

    box-shadow:0 12px 30px rgba(15,23,42,.05);

}

.brand-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 22px 50px rgba(37,99,235,.14);

}

.brand-card img{

    width:90px;

    height:90px;

    margin:0 auto 18px;

    object-fit:contain;

}

.brand-card h3{

    font-size:20px;

    font-weight:700;

}

.brand-card p{

    margin-top:8px;

    color:#64748b;

    font-size:14px;

}


.favorite-btn{

    width:50px;

    height:50px;

    border:none;

    border-radius:14px;

    background:#f1f5f9;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.favorite-btn:hover{

    background:#ef4444;

    color:#fff;

}

/* ==========================================
   BADGES
========================================== */

.badge-new{

    position:absolute;

    top:16px;

    left:16px;

    background:#10b981;

    color:#fff;

    padding:6px 12px;

    border-radius:20px;

    font-size:13px;

    font-weight:700;

}

.badge-popular{

    position:absolute;

    top:16px;

    right:16px;

    background:#2563eb;

    color:#fff;

    padding:6px 12px;

    border-radius:20px;

    font-size:13px;

    font-weight:700;

}
/* ==========================================
   FOOTER
========================================== */

footer{

    margin-top:80px;

    background:#0f172a;

    color:#fff;

}

.footer{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

    padding:70px 0;

}

.footer h3{

    font-size:22px;

    margin-bottom:22px;

}

.footer p{

    color:#cbd5e1;

    line-height:1.8;

}

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul a{

    color:#cbd5e1;

    transition:.25s;

}

.footer ul a:hover{

    color:#60a5fa;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:22px 0;

    text-align:center;

    color:#94a3b8;

    font-size:14px;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

.section-title{

    font-size:32px;

}

.home-grid{

    grid-template-columns:repeat(2,1fr);

}

.products{

    grid-template-columns:repeat(2,1fr);

}

.brand-grid{

    grid-template-columns:repeat(3,1fr);

}

.footer{

    grid-template-columns:repeat(2,1fr);

}

.logo-text h1{

    font-size:30px;

}

.search-box{

    height:54px;

}

}

@media(max-width:768px){

.desktop-header{

    display:none;

}

section{

    padding:40px 0;

}

.home-grid{

    grid-template-columns:1fr;

}

.brand-grid{

    grid-template-columns:repeat(2,1fr);

    gap:16px;

}

.brand-card{

    padding:20px 12px;

}

.brand-card img{

    width:70px;

    height:70px;

}

.products{

    grid-template-columns:repeat(2,1fr);

    gap:16px;

}

.product-image{

    height:170px;

}

.product-image img{

    max-height:230px;

}

.product-info{

    padding:16px;

}

.product-title{

    font-size:15px;

    min-height:auto;

}

.price{

    font-size:22px;

}

.footer{

    grid-template-columns:1fr;

    text-align:center;

}

.home-info h1{

    font-size:30px;

}

.home-info p{

    font-size:16px;

}

.home-btn{

    width:100%;

}

}

@media(max-width:480px){

.products{

    grid-template-columns:1fr;

}

.brand-grid{

    grid-template-columns:repeat(2,1fr);

}

.section-title{

    font-size:26px;

}

.home-info h1{

    font-size:26px;

}

}

.wishlist-form{

    position:absolute;

    top:16px;

    right:16px;

    z-index:20;

    margin:0;

}
.toast-message{

    position:fixed;

    left:50%;

    bottom:90px;

    transform:translateX(-50%) translateY(20px);

    background:#111827;

    color:#fff;

    padding:14px 22px;

    border-radius:14px;

    font-size:14px;

    font-weight:600;

    white-space:nowrap;

    opacity:0;

    visibility:hidden;

    transition:all .3s ease;

    z-index:99999999;

    pointer-events:none;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    max-width:90vw;

}

.toast-message.show{

    opacity:1;

    visibility:visible;

    transform:translateX(-50%) translateY(0);

}

.toast-error{

    background:#dc2626;

}