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

body{

    margin:0;

    font-family:'Inter',sans-serif;

    color:#202020;

    background-image:url("modern-white-background-free-vector.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    background-attachment:fixed;

}
nav{

    position: fixed;

    top: 25px;
    left: 0;

    width: 100%;

    height: 80px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 8%;

    background: rgba(248, 250, 246, 0.92);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0,0,0,0.06);

    box-shadow: 0 8px 30px rgba(0,0,0,0.04);

    z-index: 1000;

}

.logo{

    font-family:'Poppins',sans-serif;

    font-size:34px;

    font-weight:700;

}

nav ul{

    display:flex;

    list-style:none;

    gap:40px;

}

nav ul a{

    text-decoration:none;

    color:#222;

    transition:.3s;

}

nav ul a:hover{

    color:#6A994E;

}

.search-hero{

    min-height:25vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 10px 50px;

    position:relative;

}

.search-hero h1{

    font-family:'Poppins',sans-serif;

    font-size:70px;

    margin-bottom:20px;

}

/* Paragraph */

.search-hero p{

    font-size:20px;

    color:#666;

    margin-bottom:30px;

}

.search-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:0 38px;
    border:none;
    cursor:pointer;
    background:linear-gradient(135deg,#D4A017,#6A994E);
    color:white;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;
    transition:.35s;
}

.search-btn:hover{

    filter:brightness(1.06);

}
.search-box{

    display:flex;

    align-items:center;

    height:58px;

    width:800px;

    background:white;

    border-radius:50px;

    overflow:hidden;

    box-shadow:0 12px 40px rgba(0,0,0,.12);

}
.search-box input{

    flex:1;

    border:none;

    outline:none;

    padding:0 24px;

    height:100%;

    font-size:17px;

    font-family:'Inter',sans-serif;

}
.clear-search-btn{

    width:58px;

    height:100%;

    border:none;

    background:white;

    color:#999;

    cursor:pointer;

    font-size:18px;

    transition:.25s;

}

.clear-search-btn:hover{

    color:#E63946;

    background:#fafafa;

}

.clear-search-btn:hover{

    color:#E63946;

    background:#fafafa;

}

.popular-searches{

    display:flex;

    flex-wrap:wrap;  

    justify-content:center;

    gap:18px;

    margin-top:30px;

    margin-bottom:20px;

}

.popular-searches span{

    user-select:none;

    padding:12px 22px;

    background:white;

    border-radius:40px;

    cursor:pointer;

    transition:.3s;

    box-shadow:

    0 8px 20px rgba(0,0,0,.06);

}

.popular-searches span:hover{

    transform:translateY(-5px);

    background:linear-gradient(135deg,#D4A017,#6A994E);

    color:white;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.results{

    width:94%;

    max-width:1600px;

    margin:auto;

    padding:15px 0px 80px ;

}
.product-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s cubic-bezier(.22,1,.36,1);

}

.products-grid{

    width:100%;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 22px 50px rgba(0,0,0,.12);

}

.product-image{

    width:100%;

    height:280px;

    background:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}
.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    padding:15px;

    transition:.4s;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

.product-info{

    padding:22px;

}

.product-info h3{

    font-size:22px;

    margin-bottom:12px;

    font-family:'Poppins',sans-serif;

}

.price{

    font-size:24px;

    font-weight:700;

    margin-bottom:8px;

}

.quantity{

    display:flex;

    justify-content:flex-start;

    align-items:center;

    gap:18px;

    margin:18px 0 22px;

}
.quantity button{

    width:38px;

    height:38px;

    border:none;

    border-radius:50%;

    background:#f3f3f3;

    cursor:pointer;

    font-size:20px;

    transition:.3s;

}

.quantity button:hover{

    background:#6A994E;

    color:white;

}
.announcement-bar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:38px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#D4A017,#6A994E);

    color:white;

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:600;

    letter-spacing:.3px;

    z-index:2000;

}

.quantity span{

    font-size:18px;

    font-weight:600;

}

.whatsapp-btn{

    width:100%;

    padding:16px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    color:white;

    font-size:16px;

    font-weight:600;

    background:linear-gradient(135deg,#D4A017,#6A994E);

    transition:.3s;

}

.whatsapp-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(106,153,78,.35);

}
#results-title{

    display:none;

    text-align:center;

    font-family:'Poppins',sans-serif;

    font-size:30px;

    font-weight:600;

    color:#444;

    margin-bottom:25px;

    opacity:0;

    transform:translateY(20px);

    transition:.4s;

}

#results-title.show{

    opacity:1;

    transform:translateY(0);

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}
.results{

    display:none;

}
.category{

    color:#7a7a7a;

    font-size:15px;

    margin:10px 0 18px;

}
.product-image{

    position:relative;

    overflow:hidden;

}

.wishlist-btn{

    position:absolute;

    top:18px;

    right:18px;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    transition:.25s;

    z-index:20;

}

.wishlist-btn:hover{

    transform:scale(1.12);

}

.heart-icon{

    font-size:28px;

    color:#777;

    transition:.25s;

}

.wishlist-btn.active .heart-icon{

    color:#E63946;

}
.material-symbols-rounded{

    font-family:'Material Symbols Rounded';

    font-weight:normal;

    font-style:normal;

    font-size:30px;

    line-height:1;

    display:inline-block;

    white-space:nowrap;

    direction:ltr;

    -webkit-font-smoothing:antialiased;

}
.floating-wishlist{

    position:fixed;

    bottom:35px;

    right:35px;

    display:flex;

    align-items:center;

    gap:14px;

    padding:16px 22px;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:60px;

    text-decoration:none;

    color:#222;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    transition:.35s;

    z-index:9999;

}

.floating-wishlist:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 50px rgba(0,0,0,.18);

}

.floating-wishlist i{

    font-size:24px;

    color:#E63946;

}

.wishlist-text{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    font-weight:600;

}

.wishlist-count{

    width:30px;

    height:30px;

    border-radius:50%;

    background:linear-gradient(135deg,#D4A017,#6A994E);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:14px;

    font-weight:700;

}
/* ===========================
      RESPONSIVE DESIGN
=========================== */

/* Laptop */

@media (max-width:1200px){

    nav{

        padding:0 5%;

    }

    .search-hero h1{

        font-size:56px;

    }

    .products-grid{

        grid-template-columns:repeat(3,1fr);

        gap:28px;

    }

}

/* Tablet */

@media (max-width:992px){

    nav{

        padding:0 30px;

    }

    nav ul{

        gap:22px;

    }

    .search-hero{

        padding:130px 25px 40px;

    }

    .search-hero h1{

        font-size:46px;

    }

    .search-hero p{

        font-size:18px;

    }

    .search-box{

        width:100%;

    }

    .products-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* Mobile */

@media (max-width:768px){

    nav{

        height:auto;

        padding:18px 20px;

        flex-direction:column;

        gap:15px;

    }

    nav ul{

        gap:18px;

        flex-wrap:wrap;

        justify-content:center;

    }

    .search-hero{

        padding-top:145px;

    }

    .search-hero h1{

        font-size:34px;

    }

    .search-hero p{

        font-size:16px;

    }

    .search-box{

        flex-direction:column;

        border-radius:18px;

    }

    .search-box input{

        width:100%;

        padding:20px;

    }

    .search-box button{

        width:100%;

        padding:18px;

    }

    .popular-searches{

        gap:12px;

    }

    .popular-searches{

    margin-bottom:90px;

}

    .products-grid{

        grid-template-columns:1fr;

    }

    .product-image{

        height:240px;

    }

    .product-info h3{

        font-size:20px;

    }

    .price{

        font-size:22px;

    }
    .floating-wishlist{

    bottom:18px;

    right:18px;

    padding:12px 16px;

}

.wishlist-text{

    display:none;

}

.floating-wishlist i{

    font-size:22px;

}

.wishlist-count{

    width:24px;

    height:24px;

    font-size:12px;

}

}
.no-results{

    grid-column:1/-1;

    background:white;

    padding:70px 30px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.no-results h2{

    font-family:'Poppins',sans-serif;

    font-size:34px;

    margin-bottom:15px;

}

.no-results p{

    color:#666;

    font-size:18px;

}
.image-toggle{

    position:absolute;

    top:18px;

    left:18px;

    border:none;

    border-radius:30px;

    padding:10px 16px;

    cursor:pointer;

    font-size:13px;

    font-weight:600;

    color:#222;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.3s;

    z-index:20;

}

.image-toggle:hover{

    transform:translateY(-2px);

    background:white;

}
.sizes{

    margin:18px 0 22px;

}

.sizes p{

    font-size:15px;

    font-weight:600;

    color:#555;

    margin-bottom:10px;

    font-family:'Poppins',sans-serif;

}

.size-options{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin:12px 0 20px;

}

.size-btn{

    min-width:48px;

    height:42px;

    border:2px solid #e8e8e8;

    border-radius:12px;

    background:white;

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.size-btn:hover{

    border-color:#6A994E;

    color:#6A994E;

    transform:translateY(-2px);

}

.size-btn.active{

    background:linear-gradient(135deg,#D4A017,#6A994E);

    border-color:transparent;

    color:white;

    box-shadow:0 8px 20px rgba(106,153,78,.28);

}
.product-rating{

    display:flex;

    align-items:center;

    gap:10px;

    margin:8px 0 18px;

}

.stars{

    display:flex;

    gap:3px;

}

.stars i{

    color:#D4A017;

    font-size:14px;

}

.product-rating span{

    font-size:15px;

    font-weight:600;

    color:#555;

}
.trust-info{

    display:flex;

    flex-direction:column;

    gap:8px;

    margin:18px 0 22px;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:10px;

    color:#555;

    font-size:14px;

    font-weight:500;

}

.trust-item i{

    color:#6A994E;

    width:18px;

    font-size:15px;

}
.sort-bar{

    display:none;

    justify-content:flex-end;

    margin:35px 0 25px;

}
.sort-bar select{

    width:250px;

    padding:15px 20px;

    border:none;

    border-radius:18px;

    background:white;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    font-family:'Poppins',sans-serif;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.sort-bar select:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.sort-bar select:focus{

    outline:none;

    border-color:#6A994E;

}
.products-divider{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    margin:45px auto 30px;

}

.products-divider::before,

.products-divider::after{

    content:"";

    flex:1;

    max-width:430px;

    height:2px;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(212,160,23,.95),

        rgba(106,153,78,.95),

        transparent

    );

}

.products-divider span{

    margin:0 24px;

    font-size:26px;

    color:#6A994E;

}
#search-status{

    display:none;

    text-align:center;

    margin:0 0 25px;

    font-family:'Poppins',sans-serif;

    font-size:18px;

    font-weight:600;

    color:#555;

    line-height:30px;

}

#search-status strong{

    color:#222;

    font-weight:700;

}