/* ================= 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;
}

/* ================= new mobile header ================= */


/* =========================================================
   MOBILE HEADER FIX ONLY
   Desktop design remains unchanged
   ========================================================= */

@media (max-width: 768px) {

    /* Container */
    .container {
        width: 94%;
        max-width: 100%;
        margin: 0 auto;
    }

    /* =====================================================
       TOP BAR
       ===================================================== */

    .top-bar {
        font-size: 11px;
        padding: 7px 0;
    }

    .top-flex {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .top-flex span {
        margin-left: 5px;
    }

    .divider {
        margin: 0 4px;
    }


    /* =====================================================
       MAIN HEADER
       ===================================================== */

    .main-header {
        position: relative;
        padding: 12px 0 14px;
    }

    .header-flex {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "logo logo icons"
            "search search search";
        gap: 12px;
        align-items: center;
    }


    /* =====================================================
       LOGO
       ===================================================== */

    .logo {
        grid-area: logo;
        display: flex;
        align-items: center;
        min-width: 0;
    }

    .logo img {
        height: 48px;
        max-width: 170px;
        width: auto;
        object-fit: contain;
    }

    .logo img:hover {
        transform: none;
    }


    /* =====================================================
       HEADER ICONS
       ===================================================== */

    .header-icons {
        grid-area: icons;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        white-space: nowrap;
    }

    .header-icons a,
    .header-icon,
    .wishlist-icon {
        margin: 0 !important;
        padding: 6px !important;
        font-size: 18px !important;
    }

    .header-icons i,
    .header-icon i,
    .wishlist-icon i {
        font-size: 21px !important;
    }


    /* =====================================================
       BADGES
       ===================================================== */

    .icon-badge,
    .wishlist-count {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px;
        min-height: 18px;
        font-size: 10px !important;
        line-height: 18px;
        border-width: 1px !important;
    }

    .wishlist-count {
        top: -4px !important;
        right: -5px !important;
    }


    /* =====================================================
       SEARCH AREA
       ===================================================== */

    .search-area {
        grid-area: search;
        width: 100%;
        display: flex;
        min-width: 0;
    }


    /* CATEGORY BUTTON */

    .category-dropdown {
        flex-shrink: 0;
    }

    .cat-btn {
        height: 42px;
        padding: 0 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .cat-menu {
        min-width: 190px;
        max-width: 80vw;
    }


    /* SEARCH BOX */

    .search-box {
        min-width: 0;
        width: 100%;
        height: 42px;
    }

    .search-box input {
        min-width: 0;
        width: 100%;
        height: 42px;
        padding: 10px 12px;
        font-size: 14px;
        border-left: none;
    }

    .search-box input::placeholder {
        font-size: 13px;
    }

    .search-box button {
        height: 42px;
        min-width: 45px;
        padding: 0 12px;
    }


    /* =====================================================
       ACCOUNT DROPDOWN
       ===================================================== */

    .account-menu {
        position: relative;
    }

    .account-dropdown {
        left: auto;
        right: 0;
        transform: none;
        width: 170px;
        margin-top: 8px;
    }


    /* =====================================================
       NAVBAR
       ===================================================== */

    .navbar {
        position: relative;
        top: auto;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .navbar::-webkit-scrollbar {
        display: none;
    }

    .nav-links {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: max-content;
        min-width: max-content;
        margin: 0;
        padding: 0;
        flex-wrap: nowrap;
    }

    .nav-links li {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .nav-links li a {
        display: block;
        padding: 14px 15px;
        font-size: 13px;
        white-space: nowrap;
    }

    .nav-links li a:hover {
        background: #ff3c00;
    }


    /* =====================================================
       NAV DROPDOWNS
       ===================================================== */

    .dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        min-width: 160px;
        z-index: 10000;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .container {
        width: 94%;
    }

    .main-header {
        padding: 10px 0 12px;
    }

    .header-flex {
        gap: 10px;
    }

    .logo img {
        height: 42px;
        max-width: 145px;
    }

    .header-icons {
        gap: 3px;
    }

    .header-icons a,
    .header-icon,
    .wishlist-icon {
        padding: 5px !important;
    }

    .header-icons i,
    .header-icon i,
    .wishlist-icon i {
        font-size: 19px !important;
    }

    .cat-btn {
        height: 40px;
        padding: 0 8px;
        font-size: 11px;
    }

    .search-box {
        height: 40px;
    }

    .search-box input {
        height: 40px;
        font-size: 13px;
        padding: 9px 10px;
    }

    .search-box button {
        height: 40px;
        min-width: 42px;
        padding: 0 10px;
    }

    .nav-links li a {
        padding: 13px 13px;
        font-size: 12px;
    }

    .top-bar {
        font-size: 10px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .logo img {
        height: 38px;
        max-width: 125px;
    }

    .header-icons {
        gap: 1px;
    }

    .header-icons i,
    .header-icon i,
    .wishlist-icon i {
        font-size: 17px !important;
    }

    .cat-btn {
        padding: 0 6px;
        font-size: 10px;
    }

    .search-box input::placeholder {
        font-size: 11px;
    }

}


/* ================= 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;
}


/* 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;
}









/* =========================================================
   HERO - MOBILE RESPONSIVE FIX
   Desktop design remains unchanged
   ========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       HERO SECTION
       ===================================================== */

    .hero-section {
        padding: 40px 0 45px;
        overflow: hidden;
    }

    .hero-container {
        width: 92%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        text-align: center;
    }


    /* =====================================================
       HERO TEXT
       ===================================================== */

    .hero-text {
        width: 100%;
        flex: none;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1,
    .hero-text h1 {
        font-size: 34px;
        line-height: 1.2;
        font-weight: 800;
        margin: 0 0 18px;
    }

    .hero-content h1 span,
    .hero-text h1 span {
        font-size: inherit;
    }

    .hero-content p {
        max-width: 100%;
        margin: 0 auto 28px;
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
       HERO BUTTONS
       ===================================================== */

    .hero-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 28px;
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 11px 18px;
        font-size: 14px;
        border-radius: 8px;
        white-space: nowrap;
    }


    /* =====================================================
       HERO BADGES
       ===================================================== */

    .hero-badges {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-size: 12px;
    }

    .hero-badges span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 10px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 20px;
    }


    /* =====================================================
       HERO STATS
       ===================================================== */

    .hero-stats {
        width: 100%;
        justify-content: center;
        align-items: stretch;
        gap: 8px;
        margin-top: 20px;
    }

    .hero-stats div {
        flex: 1 1 90px;
        min-width: 85px;
        max-width: 120px;
        padding: 10px 7px;
        border-radius: 10px;
    }

    .hero-stats h3 {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .hero-stats p {
        font-size: 11px;
        line-height: 1.3;
        margin: 0;
    }


    /* =====================================================
       HERO IMAGE
       ===================================================== */

    .hero-image {
        width: 100%;
        flex: none;
        text-align: center;
    }

    .hero-image img {
        width: 90%;
        max-width: 450px;
        height: auto;
        margin: 0 auto;
        display: block;
    }


    /* =====================================================
       HERO SLIDER
       ===================================================== */

    .hero-slider {
        padding: 50px 20px;
    }

    .hero-slider h1,
    .hero-slider h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero-slider p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-slider .btn {
        padding: 11px 20px;
        font-size: 14px;
    }


    /* =====================================================
       GENERAL GRID
       ===================================================== */

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cat-box,
    .product-card,
    .brand {
        padding: 15px;
        border-radius: 8px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .hero-section {
        padding: 32px 0 38px;
    }

    .hero-container {
        width: 92%;
        gap: 24px;
    }


    /* HERO TITLE */

    .hero-content h1,
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.22;
        margin-bottom: 14px;
    }


    /* HERO DESCRIPTION */

    .hero-content p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 22px;
    }


    /* BUTTONS */

    .hero-buttons {
        gap: 8px;
        margin-bottom: 22px;
    }

    .btn-primary,
    .btn-outline {
        min-height: 42px;
        padding: 10px 15px;
        font-size: 13px;
    }


    /* BADGES */

    .hero-badges {
        gap: 6px;
        font-size: 11px;
    }

    .hero-badges span {
        padding: 5px 8px;
    }


    /* STATS */

    .hero-stats {
        gap: 6px;
        margin-top: 16px;
    }

    .hero-stats div {
        min-width: 0;
        padding: 9px 5px;
        flex: 1;
    }

    .hero-stats h3 {
        font-size: 16px;
    }

    .hero-stats p {
        font-size: 10px;
    }


    /* IMAGE */

    .hero-image img {
        width: 96%;
        max-width: 380px;
    }


    /* HERO SLIDER */

    .hero-slider {
        padding: 40px 15px;
    }

    .hero-slider h1,
    .hero-slider h2 {
        font-size: 26px;
    }

    .hero-slider p {
        font-size: 14px;
    }


    /* GRID */

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cat-box,
    .product-card,
    .brand {
        padding: 12px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .hero-section {
        padding: 28px 0 32px;
    }

    .hero-container {
        width: 94%;
    }

    .hero-content h1,
    .hero-text h1 {
        font-size: 25px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 240px;
    }

    .hero-badges {
        font-size: 10px;
    }

    .hero-stats div {
        padding: 8px 3px;
    }

    .hero-stats h3 {
        font-size: 14px;
    }

    .hero-stats p {
        font-size: 9px;
    }

    .hero-image img {
        width: 100%;
    }

    .grid {
        gap: 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: 100%;
    height: 400px;
    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;
    }
}










/* =========================================================
   HERO - MOBILE RESPONSIVE FIX
   Desktop design remains unchanged
   ========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       HERO SECTION
       ===================================================== */

    .hero-section {
        padding: 40px 0 45px;
        overflow: hidden;
    }

    .hero-container {
        width: 92%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        text-align: center;
    }


    /* =====================================================
       HERO TEXT
       ===================================================== */

    .hero-text {
        width: 100%;
        flex: none;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1,
    .hero-text h1 {
        font-size: 34px;
        line-height: 1.2;
        font-weight: 800;
        margin: 0 0 18px;
    }

    .hero-content h1 span,
    .hero-text h1 span {
        font-size: inherit;
    }

    .hero-content p {
        max-width: 100%;
        margin: 0 auto 28px;
        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================================
       HERO BUTTONS
       ===================================================== */

    .hero-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 28px;
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 11px 18px;
        font-size: 14px;
        border-radius: 8px;
        white-space: nowrap;
    }


    /* =====================================================
       HERO BADGES
       ===================================================== */

    .hero-badges {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-size: 12px;
    }

    .hero-badges span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 10px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 20px;
    }


    /* =====================================================
       HERO STATS
       ===================================================== */

    .hero-stats {
        width: 100%;
        justify-content: center;
        align-items: stretch;
        gap: 8px;
        margin-top: 20px;
    }

    .hero-stats div {
        flex: 1 1 90px;
        min-width: 85px;
        max-width: 120px;
        padding: 10px 7px;
        border-radius: 10px;
    }

    .hero-stats h3 {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .hero-stats p {
        font-size: 11px;
        line-height: 1.3;
        margin: 0;
    }


    /* =====================================================
       HERO IMAGE
       ===================================================== */

    .hero-image {
        width: 100%;
        flex: none;
        text-align: center;
    }

    .hero-image img {
        width: 90%;
        max-width: 450px;
        height: auto;
        margin: 0 auto;
        display: block;
    }


    /* =====================================================
       HERO SLIDER
       ===================================================== */

    .hero-slider {
        padding: 50px 20px;
    }

    .hero-slider h1,
    .hero-slider h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero-slider p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-slider .btn {
        padding: 11px 20px;
        font-size: 14px;
    }


    /* =====================================================
       GENERAL GRID
       ===================================================== */

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cat-box,
    .product-card,
    .brand {
        padding: 15px;
        border-radius: 8px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .hero-section {
        padding: 32px 0 38px;
    }

    .hero-container {
        width: 92%;
        gap: 24px;
    }


    /* HERO TITLE */

    .hero-content h1,
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.22;
        margin-bottom: 14px;
    }


    /* HERO DESCRIPTION */

    .hero-content p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 22px;
    }


    /* BUTTONS */

    .hero-buttons {
        gap: 8px;
        margin-bottom: 22px;
    }

    .btn-primary,
    .btn-outline {
        min-height: 42px;
        padding: 10px 15px;
        font-size: 13px;
    }


    /* BADGES */

    .hero-badges {
        gap: 6px;
        font-size: 11px;
    }

    .hero-badges span {
        padding: 5px 8px;
    }


    /* STATS */

    .hero-stats {
        gap: 6px;
        margin-top: 16px;
    }

    .hero-stats div {
        min-width: 0;
        padding: 9px 5px;
        flex: 1;
    }

    .hero-stats h3 {
        font-size: 16px;
    }

    .hero-stats p {
        font-size: 10px;
    }


    /* IMAGE */

    .hero-image img {
        width: 96%;
        max-width: 380px;
    }


    /* HERO SLIDER */

    .hero-slider {
        padding: 40px 15px;
    }

    .hero-slider h1,
    .hero-slider h2 {
        font-size: 26px;
    }

    .hero-slider p {
        font-size: 14px;
    }


    /* GRID */

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cat-box,
    .product-card,
    .brand {
        padding: 12px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .hero-section {
        padding: 28px 0 32px;
    }

    .hero-container {
        width: 94%;
    }

    .hero-content h1,
    .hero-text h1 {
        font-size: 25px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 240px;
    }

    .hero-badges {
        font-size: 10px;
    }

    .hero-stats div {
        padding: 8px 3px;
    }

    .hero-stats h3 {
        font-size: 14px;
    }

    .hero-stats p {
        font-size: 9px;
    }

    .hero-image img {
        width: 100%;
    }

    .grid {
        gap: 8px;
    }

}




/* =========================================================
   FEATURED PRODUCTS
   PROFESSIONAL RESPONSIVE DESIGN
========================================================= */

.featured-products {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    box-sizing: border-box;
}

/* =========================================================
   SECTION DESCRIPTION
========================================================= */

.section-desc {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 40px;
    padding: 0 15px;

    text-align: center;

    color: #666;
    font-size: 15px;
    line-height: 1.7;

    box-sizing: border-box;
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    box-sizing: border-box;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    width: 100%;
    min-width: 0;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 16px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-6px);

    border-color: #e2e2e2;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   PRODUCT IMAGE CONTAINER
========================================================= */

.product-img {
    width: 100%;

    /*
       Responsive aspect ratio.
       Keeps every product image area consistent.
    */
    aspect-ratio: 1 / 1;

    min-height: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px;

    background: #ffffff;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   PRODUCT IMAGE
   100% WIDTH + COMPLETE IMAGE
========================================================= */

.product-img img {
    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    display: block;

    /*
       IMPORTANT:
       contain = complete image visible
       no cropping
    */
    object-fit: contain;

    object-position: center center;

    transition:
        transform 0.4s ease;
}


/* IMAGE HOVER */

.product-card:hover .product-img img {
    transform: scale(1.04);
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.product-info {
    width: 100%;

    padding: 18px;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   PRODUCT NAME
========================================================= */

.product-info h3 {
    margin: 0 0 8px;

    color: #222;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.4;

    /*
       Keep cards the same height when
       product names are different lengths.
    */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
}


/* =========================================================
   RATING
========================================================= */

.rating {
    margin: 0 0 10px;

    color: #f5a623;

    font-size: 15px;

    line-height: 1;

    letter-spacing: 1px;
}


/* =========================================================
   PRICE AREA
========================================================= */

.price {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 3px;

    margin: 0 0 15px;

    line-height: 1.2;
}


/* =========================================================
   NEW PRICE
   FIRST
========================================================= */

.new-price {
    order: 1;

    margin: 0;

    color: #ff3c00;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.2;
}


/* =========================================================
   OLD PRICE
   BELOW NEW PRICE
========================================================= */

.old-price {
    order: 2;

    margin: 0;

    color: #999999;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.2;

    text-decoration: line-through;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.product-actions {
    width: 100%;

    display: flex;

    align-items: stretch;

    gap: 10px;

    box-sizing: border-box;
}


/* COMMON BUTTON */

.btn-cart,
.btn-buy {
    flex: 1;

    min-width: 0;

    min-height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 9px 12px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    text-align: center;

    text-decoration: none;

    white-space: nowrap;

    box-sizing: border-box;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* CART BUTTON */

.btn-cart {
    background: #ff3c00;
    color: #ffffff;
}

.btn-cart:hover {
    background: #e63600;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(255, 60, 0, 0.25);
}


/* BUY BUTTON */

.btn-buy {
    background: #111111;
    color: #ffffff;
}

.btn-buy:hover {
    background: #333333;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   VIEW ALL
========================================================= */

.view-all-wrapper {
    width: 100%;

    margin-top: 42px;

    text-align: center;
}


.action-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 14px 28px;

    background: #2d74c4;
    color: #ffffff;

    border: none;
    border-radius: 12px;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.action-link i {
    transition:
        transform 0.3s ease;
}


.action-link:hover {
    background: #225fa5;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(45, 116, 196, 0.35);
}


.action-link:hover i {
    transform: translateX(6px);
}


/* =========================================================
   LARGE TABLET / SMALL LAPTOP
   1100px
========================================================= */

@media screen and (max-width: 1100px) {

    .featured-products {
        padding: 60px 20px;
    }

    .product-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 20px;
    }

    .product-info {
        padding: 16px;
    }

}


/* =========================================================
   TABLET
   800px
========================================================= */

@media screen and (max-width: 800px) {

    .featured-products {
        padding: 55px 16px;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .product-img {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .new-price {
        font-size: 18px;
    }

}


/* =========================================================
   MOBILE
   600px
========================================================= */

@media screen and (max-width: 600px) {

    .featured-products {
        padding: 45px 12px;
    }

    .section-desc {
        padding: 0 8px;

        margin-bottom: 28px;

        font-size: 14px;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .product-card {
        border-radius: 12px;
    }

    /*
       Square image area.
       Entire image remains visible.
    */

    .product-img {
        width: 100%;

        aspect-ratio: 1 / 1;

        padding: 9px;
    }

    .product-img img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    .product-info {
        padding: 11px 9px;
    }

    .product-info h3 {
        font-size: 14px;

        line-height: 1.35;

        margin-bottom: 7px;
    }

    .rating {
        font-size: 12px;

        letter-spacing: 0.5px;

        margin-bottom: 8px;
    }

    /* NEW PRICE */

    .new-price {
        font-size: 16px;
    }

    /* OLD PRICE BELOW */

    .old-price {
        font-size: 11px;
    }

    .price {
        gap: 3px;

        margin-bottom: 11px;
    }

    /* BUTTONS */

    .product-actions {
        gap: 5px;
    }

    .btn-cart,
    .btn-buy {
        min-height: 36px;

        padding: 7px 4px;

        font-size: 10px;

        border-radius: 6px;
    }

    .view-all-wrapper {
        margin-top: 30px;
    }

    .action-link {
        padding: 12px 22px;

        font-size: 14px;
    }

}


/* =========================================================
   SMALL PHONE
   400px
========================================================= */

@media screen and (max-width: 400px) {

    .featured-products {
        padding: 35px 8px;
    }

    .product-grid {
        gap: 9px;
    }

    .product-img {
        padding: 7px;
    }

    .product-info {
        padding: 9px 7px;
    }

    .product-info h3 {
        font-size: 12px;

        line-height: 1.35;
    }

    .rating {
        font-size: 10px;

        letter-spacing: 0;
    }

    .new-price {
        font-size: 14px;
    }

    .old-price {
        font-size: 10px;
    }

    .price {
        gap: 2px;

        margin-bottom: 9px;
    }

    .product-actions {
        gap: 4px;
    }

    .btn-cart,
    .btn-buy {
        min-height: 33px;

        padding: 6px 2px;

        font-size: 9px;

        border-radius: 5px;
    }

}


/* =========================================================
   VERY SMALL PHONE
   350px
========================================================= */

@media screen and (max-width: 350px) {

    .product-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .product-img {
        aspect-ratio: 1 / 1;

        padding: 15px;
    }

    .product-info {
        padding: 15px;
    }

    .product-info h3 {
        font-size: 15px;
    }

    .rating {
        font-size: 13px;
    }

    .new-price {
        font-size: 18px;
    }

    .old-price {
        font-size: 12px;
    }

    .btn-cart,
    .btn-buy {
        min-height: 40px;

        font-size: 11px;
    }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .product-card:hover {
        transform: none;

        box-shadow:
            0 4px 18px rgba(0, 0, 0, 0.06);
    }

    .product-card:hover .product-img img {
        transform: none;
    }

    .btn-cart:hover,
    .btn-buy:hover,
    .action-link:hover {
        transform: none;
    }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .product-card,
    .product-img img,
    .btn-cart,
    .btn-buy,
    .action-link,
    .action-link i {
        transition: none;
    }

}


















/* ================= 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 ================= */
/* =========================================================
   MARUWATA PROFESSIONAL FOOTER
========================================================= */

.footer {
    width: 100%;
    background: #111;
    color: #fff;
    margin-top: 70px;
    padding: 0;
    overflow: hidden;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer .container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 65px 35px 45px;
    box-sizing: border-box;
}


/* =========================================================
   FOOTER GRID
========================================================= */

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 60px;

    align-items: start;
}


/* =========================================================
   FOOTER COLUMN
========================================================= */

.footer-col {
    min-width: 0;
}


/* =========================================================
   COMPANY COLUMN
========================================================= */

.footer-col:first-child {
    padding-right: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img {
    display: block;

    width: 180px;
    max-width: 100%;
    height: auto;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.03);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.footer-col > p {
    max-width: 400px;

    margin: 0;

    color: #a9a9a9;

    font-size: 14px;
    line-height: 1.8;

    text-align: left;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-col h3 {
    position: relative;

    margin: 0 0 22px;

    color: #fff;

    font-size: 17px;
    font-weight: 700;

    letter-spacing: 0.2px;
}


/* Orange heading line */

.footer-col h3::after {
    content: "";

    display: block;

    width: 35px;
    height: 3px;

    margin-top: 10px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #ff3c00,
        #ff8a00
    );
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-col ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 13px;
}

.footer-col ul li a {
    display: inline-block;

    color: #aaa;

    font-size: 14px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-col ul li a:hover {
    color: #ff7a00;

    transform: translateX(4px);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-info {
    margin: 0;
    padding: 0;
}

.contact-info p {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin: 0 0 14px;

    color: #aaa;

    font-size: 14px;
    line-height: 1.6;

    text-align: left;
}

.contact-info p i {
    width: 18px;

    flex-shrink: 0;

    margin-top: 3px;

    color: #ff6b00;

    font-size: 15px;

    text-align: center;
}

.contact-info p a {
    color: #aaa;

    text-decoration: none;

    transition: color 0.25s ease;
}

.contact-info p a:hover {
    color: #ff7a00;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.social-icons {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}

.social-icons a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #202020;

    color: #ddd;

    font-size: 16px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-4px);

    background: #fff;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.3);
}


/* Individual social colors */

.social-icons a:hover .fa-facebook-f {
    color: #1877f2;
}

.social-icons a:hover .fa-instagram {
    color: #e4405f;
}

.social-icons a:hover .fa-youtube {
    color: #ff0000;
}

.social-icons a:hover .fa-tiktok {
    color: #000;
}

.social-icons a:hover .fa-whatsapp {
    color: #25d366;
}

.social-icons a:hover .fa-telegram {
    color: #0088cc;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.footer-newsletter {
    width: 100%;

    margin-top: 35px;

    padding-top: 30px;

    border-top: 1px solid #292929;

    text-align: center;
}

.footer-newsletter h3 {
    margin-bottom: 18px;

    color: #fff;

    font-size: 19px;
}

.footer-newsletter h3::after {
    display: none;
}


/* Newsletter form */

.footer-newsletter form {
    width: 100%;
    max-width: 600px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;
}

.footer-newsletter input {
    flex: 1;

    min-width: 0;

    height: 48px;

    padding: 0 16px;

    border: 1px solid #333;

    border-radius: 8px;

    outline: none;

    background: #1c1c1c;

    color: #fff;

    font-size: 14px;

    box-sizing: border-box;

    transition: border-color 0.25s ease;
}

.footer-newsletter input::placeholder {
    color: #777;
}

.footer-newsletter input:focus {
    border-color: #ff6b00;
}


/* Newsletter button */

.footer-newsletter button {
    height: 48px;

    padding: 0 25px;

    border: none;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #ff3c00,
            #ff8a00
        );

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(255, 90, 0, 0.25);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;

    border-top: 1px solid #292929;

    padding: 20px 25px;

    text-align: center;

    box-sizing: border-box;
}

.footer-bottom p {
    margin: 0;

    color: #777;

    font-size: 13px;

    line-height: 1.6;
}

.footer-bottom a {
    color: #aaa;

    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ff7a00;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .footer .container {
        padding: 55px 30px 40px;
    }

    .footer-grid {
        grid-template-columns:
            1.4fr
            1fr
            1fr;

        gap: 45px;
    }

    .footer-col:first-child {
        padding-right: 0;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer {
        margin-top: 50px;
    }

    .footer .container {
        padding: 45px 20px 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }


    /* All columns centered */

    .footer-col {
        width: 100%;

        text-align: center;
    }


    /* Company */

    .footer-col:first-child {
        padding-right: 0;
    }


    /* Logo */

    .footer-logo {
        display: flex;

        justify-content: center;

        align-items: center;

        margin-bottom: 18px;
    }

    .footer-logo img {
        width: 155px;
    }


    /* Description */

    .footer-col > p {
        max-width: 520px;

        margin: 0 auto;

        text-align: center;

        font-size: 14px;
    }


    /* Headings */

    .footer-col h3 {
        margin-bottom: 20px;
    }

    .footer-col h3::after {
        margin-left: auto;
        margin-right: auto;
    }


    /* Links */

    .footer-col ul li {
        margin-bottom: 11px;
    }

    .footer-col ul li a:hover {
        transform: none;
    }


    /* Contact */

    .contact-info p {
        justify-content: center;

        align-items: center;

        text-align: center;

        margin-bottom: 12px;
    }


    /* Social */

    .social-icons {
        justify-content: center;

        margin-top: 20px;
    }


    /* Newsletter */

    .footer-newsletter {
        margin-top: 30px;

        padding-top: 25px;
    }

    .footer-newsletter form {
        flex-direction: column;

        max-width: 450px;
    }

    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;

        height: 48px;
    }


    /* Bottom */

    .footer-bottom {
        padding: 18px 15px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-logo img {
        width: 140px;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    .footer-col > p,
    .footer-col ul li a,
    .contact-info p {
        font-size: 13px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        width: 38px;
        height: 38px;

        font-size: 15px;
    }

    .footer-newsletter h3 {
        font-size: 17px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

}

/*==================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;

    }

}

