*{
    padding: 0px;
    margin: 0px;
}

/* this code for page index */
.header_div{
    width: 100%;
    height: 70px;
    background-color: #73B504;   
}
.header_div{
    display: flex;
    justify-content: center;
    place-items: center;
    position: relative;
}
._seaction_1_header{
    display:inline;
}
.image_for_logo{   
    position: relative;
    left:-220px;
    width: 200px;
    height: 50px;
}
.header_span_promoss{
    position: relative;
    left:-200px;
    color:#73B504;
    background-color: white;
    padding: 15px 20px ;
    border-radius: 9px;
    
    
}
.header_span_promoss:hover{
    background-color: #73B504;
    color:white ;
    border: 2px solid white;
}
._seaction_1_header_div_for_form{
    position: relative;
    left:-150px;
}

._seaction_1_header_div_for_form form input{
    width: 350px;
}
.liste_menu{
    position: absolute;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
}

.input_for_search{
    width: 80%;
    padding:  6px 10px;
    border-radius: 4px 0px 0px 4px;
    border: 2px solid white;
}
.input_for_search:hover{
    border: 2px solid white;
}
.input_for_search:focus{
    border: 2px solid white;
}
.i_for_search{
    
    padding: 5px  10px;
}
.button_for_search{
    position: relative;
    left:-5px;
    padding: 1px;
    border: 3.9px solid white;
    background-color: white;
    cursor: pointer;
}

/* .div_spleader_all{
    width: 100%;
    display: flex;
} */
 .div_spleader_all {
    width: 100%;
    display: flex;
    overflow: hidden; /* Hide the extra slides */
    white-space: nowrap;
}

.div_spleader {
    flex: 0 0 25%; /* This forces exactly 4 items (100% / 4) */
    text-align: center;
    padding: 10px 0;
}
.shadow{
box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

/* this code for footer */

.footer_class_name{
    display: flex;
    width: 100%;
    margin-top: 30px;
}
.for_footer_1{
    width: 40%;
    padding: 20px;
}
.for_footer{
    width: 20%;
    padding: 20px;
}
.for_footer ul{
     list-style: none;
}
.hr_for_footer{
    height: 3px;
    color: black;
    background-color: black ;
    margin-top: 30px;
}
.for_footer h3
,.for_footer_1 h3{
    color:#73B504
}
/* this code for page section */
.div_for_pages span a{
    text-decoration: none;
    color:black;
}
.div_for_pages span {
    border: 2px solid black;
    border-radius: 50%;
    padding: 10px;
    
}

.div_for_pages{
    text-align: center;
    margin-top: 30px;
}

/* Cart Badge */
.cart_badge {
    position: fixed;
    right: 12px;
    bottom: 32px;
    background: #ff4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    pointer-events: none;
}

/* Cart Panel Overlay */
.cart_panel_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
}
.cart_panel_overlay.open {
    display: block;
}

/* Cart Panel */
.cart_panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.cart_panel.open {
    right: 0;
}

.cart_panel_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: #73B504;
    color: #000;
}
.cart_panel_header h3 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart_panel_close {
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s;
}
.cart_panel_close:hover {
    transform: rotate(90deg);
}

/* Cart Body */
.cart_panel_body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart_empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* Cart Items */
.cart_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}
.cart_item_img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
}
.cart_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart_item_info {
    flex: 1;
    min-width: 0;
}
.cart_item_name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}
.cart_item_price {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}
.cart_item_qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}
.cart_qty_btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: background 0.15s;
    line-height: 1;
}
.cart_qty_btn:hover {
    background: #e0e0e0;
}
.cart_qty_val {
    width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 28px;
}
.cart_item_line_total {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-top: 4px;
}
.cart_item_remove {
    position: absolute;
    right: 0;
    top: 12px;
    font-size: 16px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.15s;
    padding: 4px;
}
.cart_item_remove:hover {
    color: #ff4444;
}

/* Cart Footer */
.cart_panel_footer {
    padding: 15px 20px 20px;
    border-top: 2px solid #eee;
    background: #fafafa;
}
.cart_subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}
.cart_view_btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #73B504;
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    transition: background 0.2s;
}
.cart_view_btn:hover {
    background: #7ecf00;
    color: #000;
}

/* Toast Notification */
.cart_toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.cart_toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Cart Responsive */
@media (max-width: 992px) {
    .cart_panel {
        width: 360px;
    }
    #cartIcon {
        font-size: 24px !important;
    }
}

@media (max-width: 576px) {
    .cart_panel {
        width: 100%;
        max-width: 100vw;
    }
    .cart_badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    #cartIcon {
        font-size: 22px !important;
    }
}

/* Mobile Menu */
.mobile_menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}
.mobile_menu_overlay.active {
    display: block;
}

.mobile_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999;
    overflow-y: auto;
    display: none;
}
.mobile_menu.active {
    display: block;
}

.mobile_menu_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #111;
    border-bottom: 1px solid #222;
}
.mobile_menu_logo {
    width: 130px;
    height: auto;
    filter: brightness(0) invert(1);
}
.mobile_menu_close {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.2s;
}
.mobile_menu_close:hover {
    color: #73B504;
    transform: rotate(90deg);
}

.mobile_menu_search {
    padding: 15px 20px;
    border-bottom: 1px solid #222;
    background: #0a0a0a;
}
.mobile_menu_search form {
    display: flex;
}
.mobile_search_input {
    flex: 1;
    padding: 12px 14px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
    color: #fff;
}
.mobile_search_input::placeholder {
    color: #888;
}
.mobile_search_input:focus {
    border-color: #73B504;
}
.mobile_search_btn {
    padding: 10px 16px;
    background: #73B504;
    border: none;
    color: #000;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: bold;
}

.mobile_menu_list {
    list-style: none;
    padding: 0;
}
.mobile_menu_list > li {
    border-bottom: 1px solid #1a1a1a;
}
.mobile_menu_list > li > a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}
.mobile_menu_list > li > a:hover {
    background: #111;
    color: #73B504;
}

.mobile_menu_has_sub .mobile_sub_toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile_sub_arrow {
    font-size: 20px;
    font-weight: 700;
    color: #73B504;
    transition: transform 0.3s;
}
.mobile_sub_arrow.open {
    transform: rotate(45deg);
}

.mobile_sub_menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #0d0d0d;
}
.mobile_sub_menu.open {
    max-height: 300px;
}
.mobile_sub_menu li a {
    display: block;
    padding: 12px 20px 12px 35px;
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    border-top: 1px solid #1a1a1a;
    transition: all 0.2s;
}
.mobile_sub_menu li a:hover {
    background: #151515;
    color: #73B504;
}

.mobile_menu_account {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile_menu_account a {
    display: block;
    padding: 14px 18px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    border: 1px solid #333;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s;
    background: #0a0a0a;
}
.mobile_menu_account a:hover {
    background: #73B504;
    color: #000;
    border-color: #73B504;
}

/* ==============================================
   RESPONSIVE - HEADER
   ============================================== */
@media (max-width: 1200px) {
    .image_for_logo {
        left: -120px;
        width: 170px;
        height: 42px;
    }
    .header_span_promoss {
        left: -100px;
        padding: 12px 16px;
        font-size: 14px;
    }
    ._seaction_1_header_div_for_form {
        left: -80px;
    }
    .input_for_search {
        width: 250px;
    }
}

@media (max-width: 992px) {
    .header_div {
        justify-content: flex-start;
        padding: 0 15px;
        height: 60px;
    }
    .image_for_logo {
        left: 0;
        width: 140px;
        height: 38px;
        position: static;
    }
    .header_span_promoss {
        display: none;
    }
    ._seaction_1_header_div_for_form {
        display: none;
    }
    .liste_menu {
        right: 15px;
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .header_div {
        height: 55px;
    }
    .image_for_logo {
        width: 120px;
        height: 32px;
    }
    .liste_menu {
        font-size: 30px;
        right: 10px;
    }
    .mobile_menu_logo {
        width: 110px;
    }
    .mobile_menu_list > li > a {
        padding: 13px 18px;
        font-size: 14px;
    }
    .mobile_menu_account a {
        padding: 12px 15px;
        font-size: 13px;
    }
    .mobile_search_input {
        font-size: 13px;
        padding: 10px 12px;
    }
}

/* ==============================================
   RESPONSIVE - FOOTER
   ============================================== */
@media (max-width: 992px) {
    .footer_class_name {
        flex-wrap: wrap;
    }
    .for_footer_1 {
        width: 100%;
        padding: 20px 30px;
    }
    .for_footer {
        width: 33.333%;
        padding: 15px;
    }
    .hr_for_footer {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .for_footer {
        width: 50%;
        padding: 15px 12px;
    }
    .for_footer h3,
    .for_footer_1 h3 {
        font-size: 16px;
    }
    .for_footer ul {
        font-size: 13px;
    }
    .for_footer_1 {
        padding: 20px 15px;
    }
    .for_footer_1 p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .for_footer {
        width: 50%;
        padding: 12px 10px;
    }
    .for_footer_1 {
        padding: 15px 12px;
    }
    .for_footer h3,
    .for_footer_1 h3 {
        font-size: 14px;
    }
    .for_footer ul {
        font-size: 12px;
    }
    .for_footer ul li {
        padding: 2px 0;
    }
    .hr_for_footer {
        margin-top: 15px;
        height: 2px;
    }
}

/* ==============================================
   RESPONSIVE - PAGINATION
   ============================================== */
@media (max-width: 576px) {
    .div_for_pages span {
        padding: 6px;
        font-size: 13px;
    }
    .div_for_pages span a {
        font-size: 13px;
    }
}


/* .whatsapp-logo */
.whatsapp-logo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: 9999;
}
