/* ================= HEADER SECTION================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: #2d74c4;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}
.divider {
    color: rgb(252, 95, 4);
    margin: 0 10px;
    font-weight: normal;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-flex span {
    margin-left: 15px;
}

/* ================= HEADER ================= */
.main-header {
    background: #fff;
    padding: 20px 0;
    
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.10);
}

/* ================= SEARCH AREA ================= */
.search-area {
    display: flex;
    width: 50%;
    align-items: center;
}

/* CATEGORY */
.category-dropdown {
    position: relative;
}

.cat-btn {
    padding: 10px;
    border: 1px solid #ddd;
    background: #2d74c4;
    cursor: pointer;
    border-right: none;
    color: #fff;
    font-weight: bold;
}

.cat-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.cat-menu li {
    list-style: none;
}

.cat-menu li a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

.cat-menu li a:hover {
    background: #ff3c00;
    color: #fff;
}

.category-dropdown:hover .cat-menu {
    display: block;
}

/* SEARCH */
.search-box {
    display: flex;
    flex: 1;
}

.search-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-left: none;
    outline: none;
}

.search-box button {
    padding: 10px 15px;
    border: none;
    background: #ff3c00;
    color: #fff;
    cursor: pointer;
}

/* ================= ICONS ================= */
/* ACCOUNT DROPDOWN */
/* ACCOUNT DROPDOWN */

.account-menu{
    position:relative;
    display:inline-block;
}


.account-icon{

    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#333;

}



.account-dropdown{

    position:absolute;

    top:100%;

    left:50%;

    transform:translateX(-50%);

    margin-top:10px;

    width:180px;

    background:#fff;

    padding:10px;

    border-radius:10px;

    box-shadow:0 5px 20px rgba(0,0,0,0.15);

    opacity:0;

    visibility:hidden;

    transition:0.3s;

    z-index:9999;

}



/* keep dropdown open */

.account-menu:hover .account-dropdown{

    opacity:1;

    visibility:visible;

}



.account-dropdown a{

    display:block;

    padding:12px;

    color:#333;

    text-decoration:none;

    border-radius:6px;

}



.account-dropdown a:hover{

    background:#f2f2f2;

}
/* ================= WISHLIST ICON ================= */


.wishlist-icon{

    position:relative;

    display:flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    color:#222;

    font-size:16px;

    font-weight:600;

    padding:8px 5px;

}



.wishlist-icon i{

    font-size:26px;

    color:#222;

}



/* ================= SHOP WISHLIST BUTTON ================= */


.wishlist-shop-btn{

width:40px;

height:40px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:white;

color:#ff3c00;

font-size:20px;

text-decoration:none;

border:1px solid #ddd;

transition:.3s;

}



.wishlist-shop-btn:hover{

background:#ff3c00;

color:white;

transform:scale(1.1);

}




.wishlist-icon:hover i{

    color:#ff3c00;

}





/* WISHLIST COUNT BADGE */


.wishlist-count{


    position:absolute;


    top:-8px;


    right:-12px;


    width:23px;


    height:23px;


    background:#ff0000;


    color:white;


    border-radius:50%;


    display:flex;


    justify-content:center;


    align-items:center;


    font-size:12px;


    font-weight:bold;


    border:2px solid white;


    box-shadow:0 2px 6px rgba(0,0,0,0.25);


}



.wishlist-icon:hover .wishlist-count{


    transform:scale(1.1);

    transition:.3s;

}





.header-icons a {
    margin-left: 0;
    font-size: 18px;
    color: #333;
}

.header-icons a:hover {
    color: #ff3c00;
}









/* ================= NAVBAR ================= */
.navbar {
    background: #1f2937;
    align-items: center;
}
.navbar {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    display: block;
    padding: 20px 18px;
    color: #fff;
    text-decoration: none;
}

.nav-links li a:hover {
    background: #ff3c00;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    background: #fff;
    min-width: 150px;
}

.dropdown-menu li a {
    color: #333;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
/* ================= STICKY HEADER ================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
}

.navbar {
    position: sticky;
    top: 100px; /* Adjust to your main-header height */
    z-index: 9998;
}





/* ================= HERO PROFESSIONAL ================= */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff7f0, #f5f7ff);
}

.hero-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* TEXT */
.hero-text {
    flex: 1;
}

.hero-content h1{

    font-family:'Poppins', sans-serif;

    font-size:55px;

    font-weight:800;

    line-height:1.2;

    color:#222;

}


.hero-content h1 span{

    color:#2d74c4;

    font-family:'Playfair Display', serif;

    font-style:italic;

    font-weight:700;

}


.hero-content p{

    font-family:'Roboto', sans-serif;

    font-size:18px;

    color:#555;

    line-height:1.8;

    max-width:600px;
    margin-bottom:50px;

}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom:50px;
}

.btn-primary {
    background: #ff3c00;
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #2d74c4;
}

.btn-outline {
    border: 2px solid #2d74c4;
    color: #ff3c00;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 8px;
}

.btn-outline:hover {
    background: #2d74c4;
    color: #fff;
}

/* ================= HERO STATS ================= */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-stats div {
    text-align: center;
    padding: 10px 15px;
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    min-width: 100px;
    transition: 0.3s;
}

.hero-stats div:hover {
    transform: translateY(-5px);
}

.hero-stats h3 {
    font-size: 22px;
    color: #ff3c00;
    margin-bottom: 5px;
}

.hero-stats p {
    font-size: 13px;
    color: #333;
}

------------------------------------------- need change
/* BADGES */
.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #333;
}
----------------------------------------------
/* IMAGE */
.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
    }
}





/* ================= GENERAL ================= */


/* ================= HERO ================= */
.hero-slider {
    background: linear-gradient(to right, #ff3c00, #ff7a00);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-slider .btn {
    background: #fff;
    color: #ff3c00;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
}

/* ================= GRID ================= */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.cat-box, .product-card, .brand {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

/* ================= FLASH SALE ================= */
/*================================
 PREMIUM GLASS SALE DESIGN
================================*/


.sale-section{

    padding:10px 0;

    background:#f3f4f6;

}


/* MAIN BACKGROUND */


.sale-container{




    margin:auto;

    padding:50px;


    background:
    linear-gradient(
    135deg,
    #4338ca,
    #06b6d4
    );




    position:relative;

    overflow:hidden;


}


/* LIGHT EFFECT */


.sale-container::before{


    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:white;

    opacity:.12;

    border-radius:30%;

    top:-200px;

    right:-100px;


}




.sale-container::after{


    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:#fff;

    opacity:.08;

    border-radius:50%;

    bottom:-150px;

    left:-100px;


}



/* GLASS BOX */


.sale-glass{


    display:flex;

    align-items:center;

    justify-content:space-between;


    padding:50px;


    background:

    rgba(255,255,255,.12);


    backdrop-filter:blur(15px);


    border:

    1px solid rgba(255,255,255,.25);


    border-radius:30px;


}



/* CONTENT */


.sale-content{


    width:50%;

    color:white;

    position:relative;

    z-index:2;


}



.sale-badge{


    display:inline-block;


    padding:10px 22px;


    border-radius:50px;


    background:white;


    color:#4338ca;


    font-weight:700;


    font-size:14px;


    margin-bottom:25px;


}




.sale-content h2{


    font-size:55px;


    font-weight:800;


    line-height:1.1;


    margin-bottom:20px;


}



.sale-content h2 span{


    display:block;


    color:#fef08a;


    font-size:65px;


}




.sale-content p{


    font-size:18px;


    line-height:1.8;


    color:rgba(255,255,255,.9);


    max-width:520px;


    margin-bottom:35px;


}




/* BUTTON */


.sale-btn{


    display:inline-flex;


    align-items:center;


    gap:12px;


    padding:16px 38px;


    background:white;


    color:#4338ca;


    border-radius:50px;


    text-decoration:none;


    font-weight:800;


    transition:.35s;


}




.sale-btn:hover{


    transform:translateY(-5px);


    background:#fef08a;


}





/* IMAGE */


.sale-image{


    width:50%;


    position:relative;


    display:flex;


    justify-content:center;


    align-items:center;


}



/* DISCOUNT CIRCLE */


.discount-circle{


    position:absolute;


    top:0;


    right:40px;


    width:110px;


    height:110px;


    border-radius:50%;


    background:#fef08a;


    color:#111827;


    display:flex;


    flex-direction:column;


    justify-content:center;


    align-items:center;


    font-size:40px;


    font-weight:900;


    z-index:3;


    transform:rotate(15deg);


}



.discount-circle small{


    font-size:18px;


}




.sale-image img{


    width:460px;


    max-width:none;


    margin-right:-100px;


    position:relative;


    z-index:2;


    filter:
    drop-shadow(
    0 40px 40px rgba(0,0,0,.35)
    );


    transition:.5s;


}



.sale-image img:hover{


    transform:

    scale(1.08)

    translateY(-15px);


}





/* TABLET */


@media(max-width:900px){


.sale-glass{


    flex-direction:column-reverse;


    text-align:center;


    padding:40px 25px;


}



.sale-content,

.sale-image{


    width:100%;


}



.sale-content h2{


    font-size:40px;


}



.sale-content h2 span{


    font-size:48px;


}



.sale-image img{


    width:350px;


    margin:0;


}


.discount-circle{


    right:20px;


}



}



/* MOBILE */


@media(max-width:600px){


.sale-container{


    padding:15px;


}



.sale-content h2{


    font-size:30px;


}



.sale-content h2 span{


    font-size:38px;


}



.sale-image img{


    width:280px;


}



.sale-btn{


    width:100%;


    justify-content:center;


}


}

/* ================= FEATURED CATEGORIES SECTION ================= --*/

/* ================= FEATURED CATEGORIES ================= */
.featured-categories {
    padding: 60px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
}
/* ================= SECTION DESCRIPTION ================= */
.section-desc {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* GRID */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.category-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.category-card img {
    width: 90%;
    height: 360px;
    object-fit: cover;
    transition: 0.3s;
}

.category-card h3 {
    padding: 15px;
    font-size: 18px;
    color: #333;
}

/* HOVER EFFECT */
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-card:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}



/* ================= FEATURED PRODUCTS ================= */



.featured-products {
    padding: 60px 0;
    background: #fff;
}

.section-desc {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 15px;
    color: #666;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE */
.product-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* INFO */
.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.rating {
    font-size: 14px;
    color: #f5a623;
    margin-bottom: 5px;
}


.price {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
    justify-content: center; 
}

/* OLD PRICE */
.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 10px;
}

/* NEW PRICE */
.new-price {
    color: #ff3c00;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ACTION BUTTONS */
.product-actions {
    display: flex;
    gap: 10px;
}

.btn-cart {
    flex: 1;
    background: #ff3c00;
    color: #fff;
    text-align: center;
    padding: 8px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
}

.btn-buy {
    flex: 1;
    background: #111;
    color: #fff;
    text-align: center;
    padding: 8px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
}

.btn-cart:hover {
    background: #e63600;
}

.btn-buy:hover {
    background: #333;
}

/* ================= VIEW ALL BUTTON ================= */
.view-all-wrapper {
    text-align: center;
    margin-top: 30px;
}
.action-link{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:14px 28px;

    background:#2d74c4;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:700;

    border-radius:15px;
    border:none;

    transition:all .35s ease;
}

.action-link i{
    transition:.35s;
}

.action-link:hover{
    transform:translateY(-4px) scale(1.03);
    box-shadow:
        0 18px 40px rgba(255,106,0,.5),
        0 0 25px rgba(255,106,0,.4);
}

.action-link:hover i{
    transform:translateX(6px);
}



/* RESPONSIVE */
@media(max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}




/* ================= NEWSLETTER ================= */

.newsletter-section{

    padding:80px 0;

    background:#f8fafc;

}


.newsletter-container{

    width:100%;

    min-height:420px;

    padding:70px 8%;

    background:linear-gradient(135deg,#0f172a,#1d4ed8,#2563eb);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    position:relative;

    overflow:hidden;

}





.newsletter-container::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(255,255,255,0.1);

    border-radius:50%;

    right:-80px;

    top:-80px;

}





.newsletter-content{

    max-width:650px;

    color:white;

    position:relative;

    z-index:2;

}




.newsletter-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;

}





.newsletter-content h2{

    font-size:38px;

    line-height:1.2;

    margin-bottom:15px;

}




.newsletter-content p{

    font-size:17px;

    opacity:.9;

    line-height:1.7;

    margin-bottom:30px;

}




.newsletter-form{

    display:flex;

    background:white;

    border-radius:25px;

    padding:6px;

    max-width:550px;

}





.newsletter-form input{

    flex:1;

    border:none;

    outline:none;

    padding:16px 22px;

    font-size:15px;

    border-radius:50px;

}



.newsletter-form button{

    border:none;

    background:#ff6b00;

    color:white;

    padding:0 30px;

    border-radius:20px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:10px;

}



.newsletter-form button:hover{

    background:#e85d00;

}




.newsletter-content small{

    display:block;

    margin-top:18px;

    opacity:.8;

}




.newsletter-image{

    width:260px;

    height:260px;

    background:rgba(255,255,255,.12);

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:white;

    position:relative;

}





.newsletter-icon{

    font-size:70px;

    margin-bottom:15px;

}




.offer-box{

    background:white;

    color:#111827;

    padding:15px 25px;

    border-radius:15px;

    text-align:center;

    position:absolute;

    bottom:20px;

    right:-20px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}




.offer-box h3{

    color:#ff6b00;

    font-size:24px;

    margin:0;

}



.offer-box p{

    margin:5px 0 0;

    font-size:14px;

}




@media(max-width:900px){


.newsletter-container{

    flex-direction:column;

    text-align:center;

    padding:35px 25px;

}



.newsletter-form{

    margin:auto;

}



.newsletter-image{

    display:none;

}



}



@media(max-width:600px){


.newsletter-form{

    flex-direction:column;

    background:transparent;

    gap:10px;

}



.newsletter-form input{

    background:white;

}



.newsletter-form button{

    height:50px;

    justify-content:center;

}



.newsletter-content h2{

    font-size:28px;

}


}
/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    .grid {
        grid-template-columns: 1fr;
    }
}






/* ================= FOOTER ================= */

.footer .container {
    max-width: 1500px;
    margin: auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    text-align: left; /* better ecommerce look */
}

.footer {
    background: #111;
    color: #fff;
    padding: 50px 0 0;
    margin-top: 50px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #f26b21;
}

.footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* hover effect */
.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    text-align: justify;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.contact-info i {
    color: #ff3c00;
    font-size: 16px;
}
/* ================= SOCIAL ICONS ================= */
.social-icons {
    display: flex;
    gap: 12px;
    justify-content: left; /* or left if footer column */
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    

    width: 40px;
    height: 40px;

    background: #222;
    color: #fff;
    border-radius: 50%;

    font-size: 16px;
    text-decoration: none;

    transition: 0.3s;
}

/* hover effect */
.social-icons a:hover {
    transform: translateY(-5px);
    background: #fff;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255,60,0,0.3);
}
.social-icons a:hover .fa-youtube { color: #FF0000; }
.social-icons a:hover .fa-tiktok { color: #000000; }
.social-icons a:hover .fa-facebook-f { color: #1877F2; }
.social-icons a:hover .fa-instagram { color: #E4405F; }
.social-icons a:hover .fa-whatsapp { color: #25D366; }
.social-icons a:hover .fa-telegram { color: #0088cc; }



.footer-col ul li a:hover {
    color: #ff3c00;
}

/* NEWSLETTER */
.footer-newsletter {
    margin-top: 40px;
    text-align: center;
}

.footer-newsletter h3 {
    margin-bottom: 10px;
}

.footer-newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-newsletter input {
    padding: 10px;
    width: 250px;
    border: none;
    outline: none;
}

.footer-newsletter button {
    padding: 10px 20px;
    border: none;
    background: #ff3c00;
    color: #fff;
    cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #aaa;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-newsletter form {
        flex-direction: column;
    }
}



/*==================Hhhhhhhhhh======================*/


/* ================= PROFESSIONAL CART ICON ================= */


.header-icons{

    display:flex;
    align-items:center;
  

}



.cart-icon{

    position:relative;

    display:flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    color:#222;

    font-size:16px;

    font-weight:600;

    padding:8px 5px;

}



.cart-icon i{

    font-size:26px;

    color:#222;

}



.cart-icon:hover i{

    color:#ff3c00;

}



/* CART NUMBER RED ROUND */

.cart-count{


    position:absolute;


    top:-8px;


    right:-12px;



    width:23px;

    height:23px;


    background:#ff0000;


    color:#fff;


    border-radius:50%;


    display:flex;


    justify-content:center;


    align-items:center;


    font-size:12px;


    font-weight:bold;


    border:2px solid #fff;


    box-shadow:0 2px 6px rgba(0,0,0,0.25);


    line-height:1;


}



.cart-icon:hover .cart-count{


    transform:scale(1.1);


    transition:.3s;


}
/* FINAL HEADER ICON GAP FIX */

.header-icons{
    display:flex;
    align-items:center;
    gap:25px;
}

.account-menu,
.wishlist-icon,
.cart-icon{
    margin:0;
}

.wishlist-icon,
.cart-icon{
    padding:5px;
}

/* ================= HEADER ICON FINAL GAP FIX ================= */
/* ==========================================================
   HEADER ICONS
========================================================== */

.header-icons{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
}


/* ICON LINK */

.header-icon{

    position:relative;

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#333;

    background:#ffffff;

    border:1px solid #e5e5e5;

    border-radius:50%;

    transition:all .3s ease;

}


/* ICON */

.header-icon i{

    font-size:20px;

}


/* HOVER */

.header-icon:hover{

    background:#fff;

    color:#ffffff;

    border-color:#ff3c00;

    transform:translateY(-3px);

    box-shadow:0 8px 20px rgba(255,60,0,.25);

}


/* BADGE */

.icon-badge{

    position:absolute;

    top:-6px;

    right:-6px;

    min-width:20px;

    height:20px;

    padding:0 5px;

    background:#ff0000;

    color:#ffffff;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:11px;

    font-weight:700;

    border:2px solid #ffffff;

    line-height:1;

}


/* ACTIVE */

.header-icon:active{

    transform:scale(.95);

}


/* RESPONSIVE */

@media(max-width:768px){

    .header-icons{

        gap:12px;

    }

    .header-icon{

        width:40px;

        height:40px;

    }

    .header-icon i{

        font-size:18px;

    }

}

.quick-icons{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:25px;
    padding:15px 0;
    flex-wrap:wrap;
}

.quick-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    min-width:100px;
}

.quick-item i{
    font-size:40px;
    color:#e63946;
    margin-bottom:10px;
    transition:.3s;
}

.quick-item span{
    font-size:16px;
    font-weight:600;
    color:#333;
}

.quick-item:hover i{
    color:#ff9800;
    transform:scale(1.1);
}

.divider{
    width:1px;
    height:70px;
    background:#dcdcdc;
}

@media (max-width:768px){

    .divider{
        display:none;
    }

    .quick-icons{
        gap:30px;
    }

}


/* CATEGORY + SEARCH SIZE FIX */

.search-area{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
}


/* CATEGORY BUTTON SMALL */

.cat-btn{

    width:180px;
    height:45px;

    padding:0 15px;

    font-size:13px;

    white-space:nowrap;

}


/* ================= CATEGORY DROPDOWN FIX ================= */

.category-dropdown{
    position:relative;
}


.cat-btn{

    width:180px;
    height:45px;

    background:#2d74c4;
    color:white;

    border:none;

    cursor:pointer;

    font-weight:bold;

}


/* MENU */

.cat-menu{

    display:block;

    opacity:0;

    visibility:hidden;

    position:absolute;

    top:50px;

    left:0;

    width:260px;

    background:#fff;

    padding:10px 0;

    margin:0;

    list-style:none;

    border-radius:8px;

    box-shadow:0 8px 25px rgba(0,0,0,.15);

    z-index:99999;

    transition:.3s;

}


/* SHOW */

.category-dropdown:hover .cat-menu{

    opacity:1;

    visibility:visible;

}



/* ITEM */

.cat-menu li{

    list-style:none;

}


.cat-menu li a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 18px;

    text-decoration:none;

    color:#333;

    font-size:15px;

}


.cat-menu li a i{

    width:22px;

    color:#2d74c4;

}


.cat-menu li a:hover{

    background:#ff3c00;

    color:white;

}


.cat-menu li a:hover i{

    color:white;

}











.success-message{

background:#e8fff0;

border:1px solid #28a745;

color:#198754;

padding:15px;

border-radius:12px;

margin-bottom:20px;

text-align:center;

font-weight:600;

}


.error-message{

background:#ffe8e8;

border:1px solid #dc3545;

color:#dc3545;

padding:15px;

border-radius:12px;

margin-bottom:20px;

text-align:center;

font-weight:600;

}









/* =========================
   SEARCH PAGE DESIGN
========================= */

.search-page{
    padding:60px 0;
    background:#f7f8fc;
    min-height:70vh;
}


.search-title{
    text-align:center;
    margin-bottom:40px;
}


.search-title h2{
    font-size:32px;
    color:#222;
    margin-bottom:10px;
}


.search-title span{
    color:#f53333;
    font-weight:bold;
}


/* PRODUCT GRID */

.product-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}


/* PRODUCT CARD */

.product-card{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:.3s;
    padding-bottom:20px;

}


.product-card:hover{

    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);

}



.product-card img{

    width:100%;
    height:350px;
    object-fit:cover;

}



.product-card h3{

    font-size:18px;
    color:#333;
    margin:15px;

}



.product-card p{

    color:#f53333;
    font-size:20px;
    font-weight:bold;
    margin:0 15px;

}



.product-card a{

    text-decoration:none;

}



/* NO RESULT */

.no-result{

    background:white;
    padding:40px;
    text-align:center;
    border-radius:15px;
    font-size:18px;
    color:#777;

}



/* MOBILE */

@media(max-width:992px){

    .product-grid{

        grid-template-columns:repeat(3,1fr);

    }

}



@media(max-width:768px){

    .product-grid{

        grid-template-columns:repeat(2,1fr);

    }

}



@media(max-width:480px){

    .product-grid{

        grid-template-columns:1fr;

    }

}