/* --- Global Reset & Basics --- */
* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: white;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* --- Header Section --- */
.start {
    width: 100%;
    min-height: 40px;
    background-color: #f2f2ed;
    border-bottom: 1px solid #ddd;
}

.rect {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.for-flex1 {
    display: flex;
    gap: 15px;
    align-items: center;
}

.for-flex1 img {
    height: 18px;
    width: auto;
}

.free {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

/* --- Navbar --- */
.frontpage {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid #eee;
}

.bata {
    width: 100%;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-mobile {
    display: none;
}

.logo-desktop img {
    width: 100px;
}

.name {
    display: flex;
    gap: 20px;
}

.name a {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.for-flexten {
    display: flex;
    gap: 15px;
    align-items: center;
}

.s_box input {
    background: #f7f7f5;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    color: #333;
    width: 200px;
}

.three {
    display: flex;
    align-items: center;
}

.three img {
    width: 120px;
}

/* Your combined icon image */

/* --- Breadcrumbs & Title --- */
.O_Army {
    padding: 10px 20px;
    font-size: 12px;
    color: #666;
}

.page-header {
    display: flex;
    align-items: baseline;
    padding: 0 20px 10px 20px;
}

.men {
    font-size: 32px;
    font-weight: 900;
}

.number {
    font-size: 20px;
    color: #666;
    margin-left: 10px;
    font-weight: bold;
}

/* --- Category Scroll Bar --- */
.nine_main {
    background: white;
    position: sticky;
    top: 60px;
    /* Adjust based on nav height */
    z-index: 90;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}

.nine {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    /* Allows scrolling on mobile */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.nine::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar Chrome */

.box {
    border: 1px solid #ccc;
    padding: 8px 15px;
    white-space: nowrap;
    /* Prevent text wrapping */
    font-size: 14px;
    cursor: pointer;
    background: white;
}

.box:hover {
    border-color: black;
}

/* --- Sort & Filter Bar --- */
.pricess {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #f0f0f0;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.all-filters {
    display: flex;
    gap: 15px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
}

.dot_gap {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
}

/* --- PRODUCT GRID SYSTEM --- */
.product-grid {
    display: grid;
    /* Responsive Grid: 4 cols desktop, 2 tablet, 1 mobile */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    background: #fafafa;
}

.product-card {
    background: white;
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back_img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #f9f9f9;
    position: relative;
    cursor: pointer;
}

/* Product Images & Hover */
.img-1 {
     background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761482664/8362000_1_bucvfk.jpg");
   transition: all 0.30s linear;
    background-repeat: no-repeat;
}

.img-1:hover {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761482664/8362000_2_ayhtpy.jpg");
   }

.img-2 {
   background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761482664/8244046_1_txf3p5.jpg");
     transition: all 0.30s linear;
    background-repeat: no-repeat;
}

.img-2:hover {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761482663/8244046_2_vqupdz.jpg");
   }

.img-3 {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761283331/8396212_1_bg079x.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}

.img-3:hover {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761283331/8396212_2_jgm5ml.jpg");
}

.img-4 {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761283331/8396788_1_xrfcce.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}

.img-4:hover {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761283331/8396788_2_sze4e8.jpg");
}

.img-5 {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484653/8399101_1_auaisc.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}

.img-5:hover {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484652/8399101_2_1_hpnhjs.jpg");
}

.img-6 {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484652/8396095_1_izl9ez.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}

.img-6:hover {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484652/8396095_2_ctsjwl.jpg");
}

.img-7 {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484652/8364000_1_mba5xk.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}

.img-7:hover {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484646/8364000_2_ohprla.jpg");
}

.img-8 {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484646/8712733_1_maodjw.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}

.img-8:hover {
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484646/8712733_2_y6rqwx.jpg");
}

.img-9{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484646/8214523_1_atcuve.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-9:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484646/8214523_2_oyu78c.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-10{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484645/8643123_1_znkfj0.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-10:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484638/8643123_2_awwd2r.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-11{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484638/8513008_1_ixkby2.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-11:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484638/8513008_2_llkgmu.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-12{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484638/8746153_1_irjovc.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-12:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484637/8746153_2_sl4u3r.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-13{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484637/8719122_1_yxyque.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-13:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484637/8719122_2_r5qo5h.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-14{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484637/8399291_1_b3xrgr.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-14:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484637/8399291_2_wsbwkb.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-15{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484632/8214085_1_kzyctx.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-15:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484632/8214085_2_nltzcn.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-16{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484631/8392091_1_fmiusw.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-16:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484631/8392091_2_1_qbnwb6.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-17{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484626/8613151_1_azvkqa.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-17:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484625/8613151_2_1_jiyjao.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-18{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484625/8391094_1_wtqsag.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-18:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484625/8391094_2_bqmvn6.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-19{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484625/8514004_1_wu4j4e.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-19:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484623/8514004_2_1_sz7ajk.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-20{ 
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484617/8554546_1_wvrq2t.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-20:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484617/8554546_2_t9sqbk.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-21{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484617/8396001_1_rruwuy.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-21:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484617/8396001_2_ct5vsl.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-22{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484617/8712124_1_qyfcfo.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-22:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484617/8712124_2_ybh11w.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-23{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484617/8744207_1_qrvhgx.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-23:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484616/8744207_2_eijw4g.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.img-24{
    background-image:url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484616/8617309_1_rjrj2w.jpg");
   
    background-size:contain;
    background-color: rgb(240,240,240);
    background-repeat: no-repeat;
}
.img-24:hover{
    background-image: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761484616/8617309_2_1_v3lptv.jpg");
    transition: all 0.30s linear;
    background-repeat: no-repeat;
}
.nine_main{
    /* border:1px solid red; */
    width:100vw;
    height:10vh;
    background-color:white; 
    position: sticky;
    top:44px;
}


.titles {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.n {
    font-weight: bold;
    font-size: 12px;
}

.h_symbol {
    width: 24px;
    height: 24px;
    background: url("https://res.cloudinary.com/dtw64z2mf/image/upload/v1761541072/solar--heart-outline_rvbyak.svg") no-repeat center;
}

.G_Box {
    padding: 15px;
}

.Bcolor {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.BGcolor {
    font-weight: bold;
    font-size: 14px;
}

.plus img {
    width: 20px;
    cursor: pointer;
}

.colors {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.mrp {
    font-size: 12px;
    color: #888;
}

.for-flex_gap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.no {
    color: #888;
    font-size: 14px;
}

.rn {
    color: red;
    font-weight: bold;
    font-size: 16px;
}

.forty {
    background: #fee2e2;
    color: red;
    padding: 2px 5px;
    font-size: 12px;
}

/* --- Show More Button --- */
.show {
    padding: 40px 0;
    text-align: center;
}

.show_b {
    border: 1px solid black;
    padding: 10px 40px;
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
}

.show_b:hover {
    background: black;
    color: white;
}

/* --- Footer --- */
.l_main {
    background-color: #f8f8f8;
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.l_box1 {
    width: 30%;
}

.l_box2 {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.l_box21 {
    width: 23%;
    margin-bottom: 20px;
}

.red_textsb {
    color: #d60000;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.benifit {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.tomato_box {
    background: #d60000;
    color: white;
    padding: 10px 20px;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
}

.bc1 {
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    opacity: 0.6;
}

.bc {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    cursor: pointer;
}

.bc:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.find_store {
    background: #f8f8f8;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    flex-wrap: wrap;
}

.find {
    display: flex;
    gap: 30px;
    align-items: center;
}

.loco,
.loco1 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 14px;
}

.w img {
    width: 30px;
}

.icon_five img {
    height: 30px;
    width: auto;
}

.last_one {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #666;
}

/* ========================================= */
/* RESPONSIVE MEDIA QUERIES                  */
/* ========================================= */

/* TABLET (1024px and below) */
@media screen and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 items per row */
    }

    .l_box1 {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .l_box2 {
        width: 100%;
    }

    .l_box21 {
        width: 48%;
    }

    .name {
        display: none;
    }

    /* Hide navbar links */
}

/* MOBILE (768px and below) */
@media screen and (max-width: 768px) {

    /* Header */
    .rect {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .free {
        width: 100%;
        text-align: left;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .logo-mobile img {
        width: 80px;
    }

    .name,
    .s_box {
        display: none;
    }

    /* Hide search & links */
    .bata {
        padding: 10px;
        justify-content: space-between;
    }

    /* Product Grid: 1 Item Row */
    .product-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    /* Filters */
    .pricess {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .all-filters {
        margin-bottom: 10px;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }


    .l_box21 {
        width: 50%;
    }

    .find_store {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .find {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
}