:root {
    --white-color: white;
    --black-color: black;
    --text-color: white;
    --btn-text-color: #003366;
    --btn-background-color: #FFD700;
    --hover-background-color: #e6be00;
    --light-gray: #f2f2f2;
    --dark-gray: #404040;
    --off-white: #f8f8f8;
    --light-beige: #f5f5dc;
    --charcoal: #333333;
    --soft-green: #99cc99;
    --whatsapp-color: #25D366;
    --facebook-color: #3B5998;
    --twitter-color: black;
    --firstheader-menu-color: #fff6f6;
    --instagram-color: -webkit-linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
    --youtube-color: #FF0000;

    --sale-badge: #FF5733;
    --add-to-cart: #FFC107;
    --wishlist-btn: #FF4081;
    
    --primary-btn-bg: #FF6F61;
    --hint-background-color: #e74c3c;

    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --border-color: #e0e0e0;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

body{
    background-color: var(--background-color);
}

input,
select {
    border: none;
    outline: none;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 50px !important;
    background-color: var(--add-to-cart);
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 50px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.popup_container {
    min-width: 300px;
    max-width: 500px;
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    position: fixed;
    top: 15%;
    right: -100%;
    z-index: 99999;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
}

.popup_container.success {
    background-color: #28a745;
    color: var(--white-color);
}

.popup_container.error {
    background-color: #dc3545;
    color: var(--white-color);
}

.popup_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    color: var(--white-color);
}

.popup_icon.success {
    background-color: #1e7e34;
}

.popup_icon.error {
    background-color: #c82333;
}

.popup_content {
    font-size: 16px;
    font-weight: 500;
    flex-grow: 1;
}

.popup_container.show {
    right: 20px;
    opacity: 1;
}

.success .popup_icon.error {
    display: none;
}

.error .popup_icon.success {
    display: none;
}

.customscrollbar::-webkit-scrollbar {
    width: 3px;
}

.customscrollbar::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.customscrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #777;
}

.customscrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.image,
.video {
    width: 100%;
    height: 100%;
}

.header_main_container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    top: 0;
    padding: 0 5%;
    position: fixed;
    z-index: 1;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header_menu_name {
    color: var(--black-color);
}

.header_group {
    display: flex;
    align-items: center;
}

.header_group.header_logo {
    /*position: absolute;*/
    /*left: 0;*/
}

.login_left_background .header_logo_container {
    margin-top: 15%;
    margin-left: 20%;
    height: 70px;
    margin-bottom: 5%;
}

.header_logo_container {
        width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_image {
    max-height: 60px;
    width: auto;
}

.header_menu_list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header_group.header_menu {
    /*position: absolute;*/
    /*left: 10%;*/
}

.header_menu_item {
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.header_menu_item:hover {
    color: #ff5e00;
}

.header_group.header_icons {
    /*position: absolute;*/
    /*right: 0;*/
}

.header_menu_group_icon {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: var(--black-color);
}

.mobile_menu_toggle {
    display: none;
}

.header_icon_list {
    display: flex;
    gap: 30px;
}

.header_icon_container {
    font-size: 24px;
    color: var(--black-color);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.header_icon_container:hover {
    color: #ff5e00;
}

.product_share_container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.share_label {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.share_btn {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.share_btn:hover {
  transform: scale(1.1);
}

.whatsapp_share{
    color: var(--whatsapp-color);
}
.facebook_share{
    color: var(--facebook-color);
}
.youtube_share{
    color: var(--youtube-color);
}
.instagram_share {
  background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menutoggle{
    display: none;
}

.cart_count {
    position: absolute;
    top: -10px;
    right: -15px;
    background-color: var(--btn-background-color);
    color: var(--white-color);
    font-size: 12px;
    padding: 3px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease-in-out;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .header_main_container {
        flex-direction: column;
        padding: 10px 5%;
    }

    .header_menu_list {
        flex-direction: column;
        gap: 15px;
    }

    .header_icon_list {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .header_main_container {
        flex-direction: row;
        justify-content: space-between;
    }

    .header_group {
        flex-direction: column;
    }

    .header_logo_container {
        margin-bottom: 10px;
    }

    .header_icon_list {
        gap: 15px;
    }
    
    .header_icon_container {
        font-size: 20px;
    }
    
    .cart_count {
        top: -10px;
        right: -10px;
        font-size: 10px;
        width: 14px;
        height: 14px;
    }
}

.slider_wrapper {
    position: relative;
    width: 100vw; /* Full viewport width */
    height: 100vh;
    overflow: hidden; /* Hide overflow! */
}

.slider {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 100%; /* We’ll handle transform with 100% per slide */
}

.first_session_container {
    flex: 0 0 100vw; /* Take full viewport width */
    height: 100vh;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white-color);
}

.first_session_group {
    display: grid;
    text-align: left;
    gap: 10px;
    padding-left: 5%;
}

.fs_title .fs_content {
    font-size: 2rem;
    font-weight: 300;
    font-family: cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fs_heading {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.fs_heading .fs_content {
    font-size: 5rem;
    font-weight: bold;
}

.fs_content_short {
    display: flex;
    flex-direction: column;
    font-size: 5rem;
    font-weight: bold;
    color: #ff5252;
    line-height: 1;
}

.fs_hint {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 30px;
}

.fs_content_box {
    background-color: #ff5252;
    color: var(--white-color);
    padding: 12px 25px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
}

.fs_button {
    display: inline-block;
    margin-top: 20px;
}

.fs_button .fs_content {
    font-weight: 600;
    font-size: 1.2rem;
    padding: 15px 40px;
    border: 3px solid #ff5252;
    background: #ff5252;
    color: var(--white-color);
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    width: max-content;
}

.fs_button .fs_content:hover {
    background: white;
    color: var(--black-color);
}

.second_session_container {
    display: flex;
    gap: 5px;
    padding: 5px;
}

.ss_left_group {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.ss_first_group {
    width: calc(60% - 4.25%);
    height: 250px;
    background-color: #0188ca;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2%;
    color: var(--white-color);
}

.ss_second_group {
    width: calc(40% - 4.25%);
    height: 250px;
    background-color: #24252a;
    position: relative;
    padding: 2%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--white-color);
}

.ss_third_group {
    width: 100%;
    height: 250px;
    background-color: #f4a084;
    position: relative;
    display: grid;
    justify-items: right;
}

.ss_right_group {
    width: 25%;
    display: flex;
    align-items: stretch;
}

.ss_fourth_group {
    width: 100%;
    background-color: #f0efed;
    position: relative;
    align-items: flex-start;
    justify-items: center;
}

@media (max-width: 768px) {
    .second_session_container {
        flex-direction: column;
    }

    .ss_left_group,
    .ss_right_group {
        width: 100%;
    }

    .ss_fourth_group {
        height: 250px;
    }
}

.ss_first_image_container {
    position: absolute;
    height: 250px;
    right: 15%;
    bottom: 0;
}

.ss_first_image {
    height: 250px;
    width: 100%;
}

.ss_second_image_container {
    position: absolute;
    height: 250px;
    left: -5%;
    bottom: 0;
}

.ss_second_image {
    height: 250px;
    width: 100%;
}

.ss_third_image_container {
    position: absolute;
    height: 250px;
    left: 5%;
}

.ss_third_image {
    height: 250px;
    width: 100%;
}

.ss_fourth_image_container {
    position: absolute;
    height: 350px;
    width: 100%;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, 0);
}

.ss_fourth_image {
    height: 400px;
    width: 100%;
    object-fit: contain;
}

.ss_first_content_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 50%;
    margin-left: 5%;
}

.ss_first_hint {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.ss_first_title {
    font-size: 1.8rem;
    font-weight: bold;
}

.ss_first_offer_group {
    font-size: 1.5rem;
    font-weight: bold;
    color: yellow;
}

.ss_first_sub_group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ss_first_sub_title {
    font-size: 0.8rem;
    font-weight: 500;
}

.ss_first_sub_offer {
    background-color: white;
    color: #ff5252;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
}

.ss_first_sub_btn {
    background-color: yellow;
    color: var(--black-color);
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.ss_first_sub_btn:hover {
    background-color: orange;
}

.ss_second_content_group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    row-gap: 15px;
    text-align: right;
    max-width: 60%;
    margin-right: 5%;
}

.ss_second_title {
    font-size: 1.8rem;
    font-weight: bold;
}

.ss_second_hint {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 1;
    color: var(--black-color);
    padding: 10px;
    background-color: white;
    transform: rotate(-2deg);
}

.ss_second_sub_group {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: right;
}

.ss_second_sub_text {
    font-size: 0.6rem;
    font-weight: bold;
    color: gray;
    letter-spacing: 1px;
    border-radius: 5px;
    transform: rotate(-90deg);
}

.ss_second_offer {
    background-color: #ff5252;
    color: var(--white-color);
    padding: 10px 20px;
    font-size: 0.8rem;
    margin-right: 5px;
    font-weight: bold;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.ss_second_offer_txt {
    font-size: 1rem;
    font-weight: bold;
}

.ss_second_sub_btn {
    background-color: black;
    color: var(--white-color);
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 20px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.ss_second_sub_btn:hover {
    background-color: orange;
}

.ss_third_content_group {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    justify-items: center;
    gap: 8px;
    row-gap: 15px;
    text-align: right;
    width: 65%;
    margin-right: 5%;
}

.ss_third_sub_group {
    gap: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
}

.ss_third_hint {
    word-spacing: 10px;
    letter-spacing: 5px;
    opacity: 0.8;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white-color);
    font-family: "Segoe Script", "Savoye LET";
}

.ss_third_title {
    width: 100%;
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--white-color);
    font-family: 'Arial', sans-serif;
}

.ss_third_sub_group {
    gap: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
}

.ss_third_offer {
    font-size: 7rem;
    font-weight: bold;
    color: var(--white-color);
}

.ss_third_offer_txt {
    width: 2rem;
    font-size: 1.7rem;
    font-weight: bold;
    display: flex;
    text-align: center;
    color: var(--white-color);
    word-break: break-all;
}

.ss_fourth_heading {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 5px;
    margin-top: 5%;
    margin-bottom: 2%;
}

.ss_fourth_title {
    font-size: 2.5rem;
    font-weight: bold;
}

.ss_fourth_hint {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2%;
}

.ss_fourth_btn {
    position: absolute;
    background-color: black;
    color: var(--white-color);
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 20px;
    cursor: pointer;
    transition: background 0.3s;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.third_session_container {
    padding: 2%;
    background-color: transparent;
}

.ts_session_title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 15px 0;
    color: var(--heading-color);
}

.ts_session_title p {
    font-size: 16px;
    margin: 1% 0;
    font-weight: 400;
    color: var(--black-color);
}

.product_slider_wrapper {
    overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.product_session_slider {
    display: flex;
    gap: 15px;
    scroll-behavior: smooth;
}

.product_card_container {
    flex: 0 0 auto;
    width: 270px;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    scroll-snap-align: start;
}


.product_card_container:hover {
    transform: translateY(-5px);
}

.product_label {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    padding: 5px;
    font-weight: 600;
    border-radius: 4px;
    background-color: var(--btn-background-color);
}

.product_card_image_container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: url(http://127.0.0.1:8000/build/assets/default/cardbg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 250px;
    position: relative;
    border: solid;
    border-radius: 4px 4px 0 0;
    border-width: 2px 2px 0 2px;
    border-color: white;
}

.product_card_container_image {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: white;
}

.product_card_image {
    position: absolute;
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.product_card_colors {
    display: none;
    gap: 5px;
    flex-direction: column;
    position: absolute;
    top: 12px;
    left: 10px;
}

.product_color {
    padding: 8px;
    border-radius: 20px;
}

.product_card_image.active {
    opacity: 1;
}

.product_card_back_image {
    display: none;
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

/* .product_card_container:hover .product_card_image {
    display: none;
    opacity: 0;
}

.product_card_container:hover .product_card_back_image {
    display: block;
    opacity: 1;
} */

.product_card_details {
    text-align: left;
    padding: 12px 10px;
    position: relative;
    background: #fff;
    /* border-radius: 0 0 10px 10px;  */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.product_card_title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_card_price {
    font-weight: bold;
    font-size: 1rem;
    color: #e74c3c;
    display: flex;
    gap: 8px;
    align-items: center;
}

.product_card_price span {
    background: var(--price-background-color);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.product_card_price del {
    font-size: 0.9rem;
}

.product_card_price span {
    color: var(--price-color);
    font-size: 1.2rem;
}

.product_card_group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 35px;
    position: relative;
}

.product_card_btn {
    color: var(--black-color);
    border: solid;
    border-width: 1px;
    border-color: black;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    gap: 5px;
    height: 15px;
    align-items: center;
    justify-content: center;
}

.product_card_btn:hover {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: var(--white-color);
}

.product_card_wish_btn {
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: absolute;
    font-size: 18px;
    top: 12px;
    right: 10px;
    color: #888;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.product_card_wish_btn:hover {
    color: #e74c3c;
    transform: scale(1.2);
}

.product_card_view_btn {
    height: 35px;
    border: solid;
    padding: 0 10px;
    border-width: 1px;
    cursor: pointer;
    display: grid;
    align-items: center;
    position: absolute;
    right: 50%;
    transform: translateX(0);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.product_group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 5%;
}


.testimonials {
    text-align: center;
    padding: 50px 20px;
    background: transparent;
}

.testimonials_heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--heading-color);
}

.testimonial_container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial_card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    transition: transform 0.3s ease-in-out;
}

.testimonial_card:hover {
    transform: translateY(-5px);
}

.testimonial_text {
    font-weight: 400;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial_user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial_user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial_user h4 {
    font-size: 1.2rem;
    color: var(--black-color);
    margin: 0;
    font-weight: 600;
}

.testimonial_user span {
    font-size: 1rem;
    color: #777;
    font-weight: 600;
}

.b2b_loyalty {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.loyalty_container {
    max-width: 1000px;
    margin: auto;
}

.loyalty_container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f8d210;
    /* Gold Accent */
}

.loyalty_container p {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 40px;
}

.loyalty_tiers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.tier_card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    text-align: center;
}

.tier_card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(255, 215, 0, 0.4);
}

.tier_card h3 {
    font-size: 22px;
    font-weight: bold;
    color: #f8d210;
    margin-bottom: 8px;
}

.tier_card p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 15px;
}

.tier_card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 10px;
}

.tier_card ul li {
    font-size: 15px;
    color: #fff;
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
}

.tier_card ul li::before {
    content: "✔";
    color: #f8d210;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 4px;
}

.join_now {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #f8d210;
    color: #000;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.join_now:hover {
    background: #ffd700;
    transform: scale(1.05);
}

.custom_pricing {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.pricing_container {
    max-width: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.pricing_container h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f8d210;
}

.pricing_container p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
}

.form_group {
    margin-bottom: 20px;
    text-align: left;
}

.form_group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #f8d210;
}

.form_group input,
.form_group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
}

.form_group textarea {
    height: 100px;
    resize: none;
}

.quote_btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #f8d210;
    color: #000;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.quote_btn:hover {
    background: #ffd700;
    transform: scale(1.05);
}


.fourth_session_container {
    padding: 2%;
    background-color: transparent;
}

.fs_session_title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 15px 0;
    color: var(--heading-color);
}

.fs_session_group {
    display: flex;
    gap: 10px;
}

.fs_session_offer_container {
    width: 25%;
    height: 400px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.fs_offer_image {
    width: 100%;
    height: 400px;
}

.fs_session_product_container {
    display: flex;
    gap: 5px;
    width: 75%;
    padding: 0 10px;
    height: 400px;
    align-items: center;
}

.fs_group.fs_first_group {
    display: flex;
}

.fs_first_group .fs_left_group {
    align-items: center;
    width: 50%;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.fs_first_group .fs_right_group {
    width: 50%;
    height: 500px;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

.fs_first_group .fs_banner_image_container {
    position: absolute;
    width: 55%;
    bottom: 5%;
    right: 0;
}

.fs_banner_image {
    height: 500px;
}

.fs_group.fs_second_group {
    display: flex;
}

.fs_second_group .fs_left_group {
    width: 50%;
    height: 500px;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

.fs_second_group .fs_banner_image_container {
    position: absolute;
    left: 0;
    bottom: 0;
}

.fs_second_group .fs_right_group {
    align-items: center;
    width: 50%;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.fs_right_sub_group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 25px;
    height: 400px;
    margin-left: 8%;
}

.fs_right_title,
.fs_left_title {
    font-family: Poppins, sans-serif;
    font-size: 3rem;
    font-weight: bolder;
}

.fs_right_title {
    text-align: left;
}

.fs_left_title {
    text-align: right;
}

.fs_right_conent,
.fs_left_conent {
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    width: max-content;
}

.fs_right_conent {
    text-align: left;
}

.fs_left_conent {
    text-align: right;
}

.fs_right_btn,
.fs_left_btn {
    width: max-content;
    border: solid;
    border-color: black;
    color: var(--black-color);
    font-size: 1rem;
    font-weight: bold;
    padding: 20px 40px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.fs_left_sub_group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 25px;
    height: 400px;
    padding-right: 8%;
}

.sixth_seesion_container {
    padding: 5%;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
}

.ss_group {
    width: 20%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ss_icon_container {
    background-color: black;
    color: var(--white-color);
    font-size: 3rem;
    padding: 6%;
    border-radius: 50%;
}

.ss_icon_txt {
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
}

.ss_icon_txt p {
    font-weight: 400;
    font-size: 0.8rem;
    margin-top: 5%;
}

.footer_main_container {
    background: rgb(34, 37, 41);
    padding: 4% 4% 2% 4%;
    display: flex;
    flex-wrap: wrap;
}

.footer_group_one {
    width: 20%;
    height: fit-content;
}

.footer_group_title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--btn-background-color);
    margin-bottom: 5%;
}

.footer_group_sub_title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 2%;
    margin-top: 2%;
}

.footer_group_sub_tXT {
    font-size: 0.70rem;
    font-weight: 400;
    color: #f2f2f2;
    padding: 5px 0;
    letter-spacing: 1px;
    margin-bottom: 2%;
}

.footer_group_two {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
}

.footer_top_group {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.footer_group {
    width: 33%;
}

.footer_group_one.footer_logo_wrapper {
    display: grid;
    align-items: center;
    justify-content: center;
}

.footer_group_link {
    font-size: 0.8rem;
    font-weight: 400;
    color: #ededed;
    padding: 5px 0;
    cursor: pointer;
}

.footer_group_link i {
    font-size: 1.5rem;
}

.socialmedia_heading{
    margin-top: 8%;
}

.footer_group_txt {
    color: var(--white-color);
    font-size: 0.8rem;
    font-weight: 400;
}

.footer_group_link_group {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    width: 100%;
}

.footer_bottom_group {
    width: 100%;
}

.footer_copyright {
    color: var(--white-color);
    text-align: center;
    margin: 5% 0 2% 0;
}

.category_banner_container {
    height: 250px;
    position: relative;
    display: flex;
    background-color: #8ee2fe;
}

.category_banner_heading {
    width: 22%;
    height: 250px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 25%;
}

.category_banner_title {
    font-size: 2rem;
    font-weight: bold;
}

.category_banner_btn {
    width: max-content;
    border: solid;
    border-color: black;
    color: var(--black-color);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 10px 25px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.category_banner_offer {
    width: 30%;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.category_banner_image_container {
    position: absolute;
    height: 290px;
    border: 0;
    left: 65%;
    transform: translate(-50%, 0);
}

.category_banner_image_container .ss_first_image {
    height: 290px;
    transform: rotate(10deg);
    width: 300px;
}

.category_main_container {
    display: flex;
    flex-wrap: wrap;
    padding: 2% 5%;
    background-color: transparent;
    position: relative;
}

.empty_product_container {
    display: none;
    width: 86%;
    text-align: center;
    padding: 2% 0;
    border-radius: 4px;
    background-color: var(--btn-background-color);
}

.category_side_filter {
    width: 20%;
    height: fit-content;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 2px
}

.csf_filter_group {
    border: solid;
    border-width: 0 0 1px 0;
    margin: 10px 0;
    padding: 10px 15px;
}

.csf_heading_group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
}

.csf_filter_group_items {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: auto;
    display: none;
}

.csf_heading {
    font-size: 1.6rem;
    font-weight: bold;
}

.csf_reset_btn {
    font-size: 1rem;
    font-size: 0.8rem;
    cursor: pointer;
}

.category_product_container {
    width: 80%;
}

.category_product_group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
    justify-content: center;
}

.csf_filter_heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    background-color: var(--btn-background-color);
}

.csf_filter_items {
    font-size: 1rem;
    margin-left: 20px;
    margin-bottom: 5px;
    padding: 10px 0 10px 5px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    background-color: var(--light-beige);
}

.csf_filter_color_reference {
    background-color: black;
    padding: 5px 10px;
    min-width: 10px;
    min-height: 20px;
    border-radius: 20px;
}

.csf_filter_size_reference {
    display: block;
    position: relative;
    min-width: 20px;
    text-align: center;
    padding: 4px 8px;
    transition: all 0.3s;
    border: 1px solid gray;
    color: var(--black-color);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.6rem;
    text-decoration: none;
}

.csf_filter_item_group {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
}

.csf_filter_item_input {
    width: 35%;
}

.minimum_price {
    width: 100%;
    height: 35px;
    text-align: center;
    font-size: 1.5rem;
}

.csf_filter_item_price_btw {
    text-align: center;
    width: 10%;
    display: grid;
    padding: 0 5px;
    align-items: center;
}

.maximum_price {
    width: 100%;
    height: 35px;
    text-align: center;
    font-size: 1.5rem;
}

.csf_filter_item_price_reference {
    display: flex;
    padding: 10px 0;
}

.csf_filter_item_price_name {
    font-size: 0.8rem;
}

.csf_filter_item_price_from {
    padding-left: 10px;
}

.category_top_filter {
    display: flex;
    padding: 2% 7%;
    justify-content: space-between;
}

.sorting_filter_group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.category_sorting_input {
    height: 35px;
    width: 100%;
}

.count_filter_group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category_show_input {
    padding: 0 15px;
    height: 35px;
}

.view_product_main_container {
    display: flex;
    padding: 2% 5%;
    background-color: transparent;
}

.view_product_image_container {
    width: 46%;
    padding: 0 2%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.view_product_main_image_container {
    width: 100%;
    height: 500px;
    position: relative;
}

.view_product_main_image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #dfdfdf;
}

.focus_container {
    width: 200px;
    height: 200px;
    position: absolute;
    background-color: #f4f4f4;
    border: solid 1px gray;
    display: none;
    background-repeat: no-repeat;
    pointer-events: none;
}

.view_product_sub_image_group {
    display: none;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 3%;
    row-gap: 10px;
    width: 100%;
    justify-content: start;
}

.view_product_sub_image_group.active {
    display: flex;
}

.view_product_sub_image_container {
    width: 19%;
    height: 100px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.view_product_sub_image_container.active,
.view_product_sub_image_container:hover {
    border-color: #e74c3c;
    transform: scale(1.1);
}

.view_product_sub_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #dfdfdf;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.view_product_content_container {
    padding: 20px;
    width: 50%;
}

.view_product_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.view_product_price_container {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 15px;
}

.view_product_price_group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.view_product_price_name {
    font-weight: 600;
    color: var(--secondary-color);
}

.view_product_price_rp {
    color: #7f8c8d;
    font-weight: 500;
    text-decoration: line-through;
}

.view_product_price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--price-color);
}

.view_product_size_group_container,
.view_product_color_group_container {
    margin-bottom: 20px;
}

.view_product_size_name,
.view_product_color_name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.view_product_size_group,
.view_product_color_group {
    gap: 10px;
    flex-wrap: wrap;
}

.view_product_color_group {
    display: flex;
}

.view_product_size_group {
    display: none;
}

.view_product_size_group.active {
    display: flex;
}

.view_product_size {
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view_product_size:hover,
.view_product_size.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.view_product_color {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.view_product_color:hover,
.view_product_color.active {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.view_product_color_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.view_product_size.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.view_product_detail_group {
    max-width: 500px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 15px;
}

.view_product_detail_heading_group {
    display: flex;
    align-items: center;
    background-color: #e74c3c;
    color: #fff;
    gap: 12px;
    height: 45px;
    padding: 0 15px;
    font-weight: 600;
    font-size: 1rem;
}

.view_product_heading_icon i {
    font-size: 1.2rem;
}

.view_product_detail_content {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.view_product_detail_content_group {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding: 5px 0;
}

.view_product_detail_content_left {
    color: #555;
    font-weight: 500;
}

.view_product_detail_content_right {
    color: #222;
    font-weight: 600;
}

.view_product_detail_content p {
    margin: 0;
    padding: 10px 0;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

.view_product_detail_content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.view_product_detail_content ul li {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.6;
    position: relative;
    list-style: none;
}

.view_product_detail_content ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #e74c3c;
    margin-right: 10px;
}

.view_product_size_guide_btn {
    background-color: #e74c3c;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.view_product_size_guide_btn:hover {
    background-color: #c0392b;
}

.size_guide_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.size_guide_content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close_btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Size Chart Table */
.size_chart_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.size_chart_table th,
.size_chart_table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.size_chart_table th {
    background-color: #f2f2f2;
    color: #333;
}

.size_chart_image {
    height: 250px;
}

.size_chart_image img {
    height: 250px;
    border-radius: 8px;
    object-fit: contain;
}

.view_product_group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.view_product_quantity_container {
    display: flex;
    align-items: center;
    overflow: hidden;
    min-width: 120px;
    height: 40px;
}

.view_product_quantity_minus,
.view_product_quantity_plus {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view_product_quantity_minus:hover,
.view_product_quantity_plus:hover {
    background-color: #c0392b;
}

.view_product_quantity_count {
    width: 40px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.view_product_cart_container {
    flex: 1;
}

.delivery-info {
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    padding: 10px 15px;
    border-radius: 8px;
    color: #333;
    margin: 3% 0;
    flex-wrap: wrap;
}

.delivery-info i {
    color: #007bff;
}

.delivery-info span {
    margin-right: 5px;
}

#view_shipping_method,
#view_shipping_price {
    color: #e74c3c;
}

.view_product_card_btn {
    background-color: var(--atc-bg-color);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}

.delivery_details {
    padding: 15px 5px;
    width: max-content;
}

.delivery_hint {
    font-weight: bold;
}

/*.view_product_card_btn:hover {*/
/*    background-color: var(--btn-background-color);*/
/*}*/

.view_product_card_btn i {
    font-size: 16px;
}

.cart_notes {
    font-weight: 400;
    font-size: 12px;
}

.cart_page_title {
    margin: 2% 5%;
    text-align: left;
    font-size: 2rem;
}

.cart_main_container {
    padding: 0 5%;
    margin-bottom: 5%;
    display: flex;
    gap: 15px;
}

.cart_table_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 70%;
}

.cart_table {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: solid;
    border-color: #eaeaea;
    border-width: 0 0 1px 0;
    padding: 15px;
    position: relative;
    transition: box-shadow 0.3s;
}

.cart_table_image_container {
    width: 8%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cart_table_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f4f4f4;
}

.cart_table_detail_container {
    width: 52%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 15px;
}

.cart_table_title {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.cart_table_size_Container {
    display: flex;
    gap: 5px;
}

.cart_table_filed {
    font-weight: 500;
    color: #666;
}

.cart_table_key {
    font-weight: 600;
    color: #333;
}

.cart_table_quantity_container {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 35px;
    width: 20%;
}

.cart_product_quantity_minus,
.cart_product_quantity_plus {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart_product_quantity_count {
    width: 40px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

.cart_product_quantity_minus,
.cart_product_quantity_plus {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 12px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart_table_price_container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}

.cart_product_price_group {
    display: flex;
    gap: 5px;
}

.cart_product_price_name {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart_product_price_rp {
    color: #7f8c8d;
    font-weight: 500;
    text-decoration: line-through;
}

.cart_product_price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--price-color);
}

.cart_overall_container {
    width: 30%;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.cart_checkout_btn {
    background-color: #e74c3c;
    color: #fff;
    height: 50px;
    padding: 0 15px;
    border-radius: 4px;
    display: grid;
    align-items: center;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.login_main_container {
    display: grid;
    grid-template-columns: 50% 50%;
    height: 100vh;
    position: relative;
}

.login_left_container {
    display: grid;
    height: 100vh;
    justify-items: center;
    align-items: center;
    opacity: 1;
    visibility: visible;

}

.left_active .reset-form {
    opacity: 0;
    visibility: hidden;
}

.left_active .login_left_background {
    display: block;
}

.login_left_background {
    background-color: #e74c3c;
    position: absolute;
    width: 800px;
    height: 100%;
    display: none;
    top: 0;
    left: 0;
    border-bottom-right-radius: 0;
    animation: bottomrightradius 1s forwards linear;
}

@keyframes bottomrightradius {
    0% {
        border-bottom-right-radius: 0;
    }

    100% {
        border-bottom-right-radius: 100%;
    }
}

.login_right_container {
    display: grid;
    justify-items: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
}

.right_active .login-form {
    opacity: 0;
    visibility: hidden;
}

.right_active .login_right_background {
    display: block;
}

.login_heading_container {
    margin: 5% 0 12% 0;
    font-size: 20px;
    font-weight: bold;
}

.login-form {
    z-index: 1;
    position: relative;
    width: 50%;
}

.login_form_group {
    margin-bottom: 5%;
}

.login_form_label {
    margin-bottom: 5%;
}

.login_label {
    color: #4E342E;
    font-size: 18px;
    font-weight: 600;
}

.login_form_input {
    height: 50px;
    background-color: black;
    border-radius: 4px;
    position: relative;
}

.login_input {
    background-color: transparent;
    color: var(--white-color);
    font-size: 18px;
    height: 50px;
    width: 85%;
    padding-left: 15%;
}

.login_input::placeholder {
    color: var(--white-color);
}

.login_btn {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    background: linear-gradient(45deg, #e74c3c, #FFF3E0);
}

.login_btn:hover {
    background: linear-gradient(45deg, #FFF3E0, #e74c3c);
}

.login_icon.icolor {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

.login_icon {
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
}

.eyeopen {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    cursor: pointer;
}

.eyeclose {
    width: 25px;
    height: 2px;
    background-color: red;
    transform: rotate(45deg);
    position: absolute;
    right: 4%;
    top: 50%;
    cursor: pointer;
}

.eyeclose {
    display: none;
}

.login_right_background {
    background-color: #e74c3c;
    position: absolute;
    width: 800px;
    height: 100%;
    top: 0;
    right: 0;
    display: none;
    border-bottom-left-radius: 0;
    animation: bottomleftradius 1s forwards linear;
}

@keyframes bottomleftradius {
    0% {
        border-bottom-left-radius: 0;
    }

    100% {
        border-bottom-left-radius: 100%;
    }
}

#register-form {
    display: none;
}

.term_condtion_container {
    margin-top: 10%;
    margin-bottom: 5%;
    column-gap: 5%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.term_condtion_checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.term_condtion {
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.login_reset_password {
    margin: 10% 0 5% 0;
    display: flex;
    column-gap: 5%;
    align-items: end;
    justify-content: space-between;
}

.reset_passowrd_content {
    cursor: pointer;
    font-size: 16px;
}

.signin_btn {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

.reset-form {
    width: 50%;
}

#reset_otp_container {
    display: none;
}

#verify-reset-form {
    display: none;
}

.modal {
    display: none;
    position: absolute;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.modal-content {
    text-align: center;
}

.modal-content h3 {
    padding: 10px 5px;
    text-align: left;
    background-color: var(--hover-background-color);
    border-radius: 4px 4px 0 0;
}

#orderSummary {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 5px 0;
    border: solid;
    border-width: 0 1px 0 1px;
    border-radius: 0 0 4px 4px;
    border-color: var(--hover-background-color);
}

#orderSummary p {
    padding: 10px 15px;
    border: solid;
    border-width: 0 0 1px 0;
    border-color: var(--hover-background-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    position: absolute;
    right: 3px;
    top: 0;
    cursor: pointer;
    font-size: 2rem;
}

.info-icon {
    cursor: pointer;
    margin-left: 5px;
    color: blue;
}

.new_address {
    width: 100%;
}

.new_address_btn {
    width: 100%;
    height: 40px;
    background-color: #ff5722;
    color: var(--white-color);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.checkout_address_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 5% 5% 5%;
    width: 45%;
    height: fit-content;
}

.checkout_address_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    position: relative;
    background-color: #fff;
    transition: 0.3s;
    row-gap: 10px;
}

.checkout_address_container[data-address-default="1"] {
    border-color: var(--hover-background-color);
    background-color: #f0f8ff;
}

.checkout_address_details,
.checkout_address_contact {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: lighter;
    position: relative;
    align-items: center;
}

.checkout_address_details .checkout_address_type {
    position: absolute;
    right: 25%;
    top: -30%;
}

.checkout_address_name {
    font-weight: 600;
    font-size: 1rem;
}

.checkout_address_city,
.checkout_address_pincode {
    font-weight: 600;
    font-size: 1rem;
}

.checkout_address_type_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout_address_type {
    background: var(--btn-background-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.checkout_address_default {
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    color: var(--white-color);
    cursor: pointer;
}

.address_active {
    padding: 5px;
    background-color: #8BC34A;
    border-radius: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    animation: blink 1s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px #8BC34A;
    }

    50% {
        box-shadow: 0 0 15px #8BC34A;
    }

    100% {
        box-shadow: 0 0 5px #8BC34A;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.checkout_container {
    display: flex;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
}

.payment_details_container {
    width: 35%;
    margin: 0 5%;
}

.checkout_section {
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.order_summary {
    padding: 10px;
    background: #f8f8f8;
    border-radius: 8px;
}

.summary_item,
.summary_total {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.summary_total {
    font-weight: bold;
    font-size: 18px;
}

.payment_methods label {
    display: block;
    padding: 5px;
    font-size: 16px;
}

.coupon_input {
    width: 70%;
    margin-bottom: 2%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.apply_coupon {
    padding: 8px 12px;
    background: #4CAF50;
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.checkout_btn {
    width: 100%;
    padding: 12px;
    background: #ff5722;
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.footer_main_container {
    row-gap: 15px;
}

#preloader {
    position: fixed;
        top: 0;
    width: 100%;
    height: 100vh;
    background: #e9efef;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

#preloader video {
    width: 20%;
}

.quantity_size_distribution {
    padding: 10px 0;
    border-radius: 10px;
    text-align: left;
    width: fit-content;
}

.quantity_size_distribution h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 10px 0;
    border-radius: 4px 4px 0 0;
    color: var(--white-color);
    text-align: center;
    background-color: #ff5b4a;
}

.size_box {
    display: flex;
    flex-wrap: wrap;
    border: solid;
    border-width: 0 1px 1px 1px;
    border-color: #e74c3c;
}

.size_item {
    color: var(--white-color);
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: solid;
    border-width: 0 1px 1px 1px;
    border-color: #e74c3c;
}

.size_label {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
}

.size_value {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}

.csf_filter_items.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.total_piece_value_wrapper {
    padding: 10px 0;
    border-radius: 10px;
    text-align: left;
    width: fit-content;
}

.total_piece_value_wrapper h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 10px 15px;
    border-radius: 4px 4px 0 0;
    color: var(--white-color);
    text-align: center;
    background-color: #ff5b4a;
}

.quantity_size_distribution_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.total_piecevalue {
    font-size: 1.5rem;
    font-weight: bold;
}

.total_piece_value_wrapper .size_box {
        min-height: 45px;
    color: var(--black-color);
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: solid;
    border-width: 0 2px 2px 2px;
    border-color: #e74c3c;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.header_logo_container {
    cursor: pointer;
}

.logo_image {
    transition: transform 0.3s ease-in-out;
}

.logo_image:hover {
    transform: scale(1.1);
}

.content_wrapper {
    max-width: 80%;
    margin-left: 20%;
}

.content_wrapper h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    max-width: 400px;
}

.content_wrapper p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.content_wrapper span {
    color: #fff;
    font-weight: bold;
    font-size: 34px;
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features i {
    font-size: 24px;
    margin-right: 10px;
    color: #fff;
}

.feature_image {
    width: 100%;
    max-width: 250px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.page_title_container {
    margin: 5%;
}

.page_title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.policy_container {
    margin: 0 5%;
}

.policy_heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2%;
}

.policy_para {
    font-size: 1rem;
    padding-left: 3%;
    margin: 1% 0 2% 0;
    text-indent: 5%;
    color: var(--black-color);
}

.about_header_container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about_header_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 51%);
}

.about_header_container > * {
    position: relative;
    z-index: 2;
}

.about_header_content_container {
    width: 40%;
    background-color: #FFFFFF21;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 25px 10px;
    gap: 25px;
}

.about_header_content {
    text-align: center;
    color: var(--white-color);
}

.about_hint {
    max-width: 350px;
    text-align: center;
    font-size: 2rem;
    color: var(--white-color);
    padding: 15px 0;
}

.about_note {
    padding: 0 8%;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6rem;
    color: var(--white-color);
}

.about_experince_container {
    margin: 2% 5% 5% 5%;
    display: flex;
    flex-wrap: wrap;
}

.about_experince_image_container {
    width: 40%;
    height: 300px;
    padding: 0% 5%;
    border-radius: 20px;
}

.about_experince_image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.about_experince_content_container {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about_experince_title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 2%;
}

.about_experince_content {
    font-size: 1rem;
    line-height: 1.6rem;
}

.contact_main_container {
    margin: 5% 5%;
}

.contact_experince_container {
    display: flex;
    flex-wrap: wrap;
}

.contact_experince_image_container {
    width: 40%;
    height: 300px;
    padding: 0% 5%;
    border-radius: 20px;
}

.contact_experince_image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.contact_experince_content_container {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 10%;
}

.contact_experince_title {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5em;
}

.contact_experince_content {
    font-size: 1rem;
    padding: 2% 0;
}

.contact_support_container {
    display: flex;
    flex-wrap: wrap;
}

.contact_support {
    width: 50%;
}

.contact_support_title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8%;
}

.contact_support_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact_support_whatsapp {
    margin-bottom: 10px;
    padding: 15px 10px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
    display: flex;
    gap: 15px;
    font-size: 1rem;
    align-items: center;
}

.contact_support_whatsapp i {
    background-color: var(--btn-background-color);
    padding: 10px;
    font-size: 1.5rem;
}

.contact_support_note {
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.category_filter_view_btn {
    margin: 10% 0;
    display: none;
    align-items: center;
    justify-content: right;
    gap: 15px;
    padding-right: 10%;
    font-size: 20px;
    cursor: pointer;
}

.csf_close_btn {
    display: none;
}

.category_menus:hover .header_sub_menu_wrapper{
    display: block;
}

.header_sub_menu_wrapper{
    display: none;
    width: 530px; 
    position: absolute;
    top: 20px;
    left: 0;
    border-radius: 4px;
    background-color: white;
}

.header_sub_menu_container {
    display: flex;
    flex-wrap: nowrap; 
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 2%;
    width: 96%;
    overflow-x: auto; 
}

.header_sub_menu_container::-webkit-scrollbar {
    height: 6px;
}

.header_sub_menu_container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.header_sub_menu_group {
    height: 100%;
    width: 250px;
    position: relative;
}

.submenu_title {
    display: none;
    text-align: center;
    position: absolute;
    bottom: 2%;
    width: 92%;
    padding: 10px;
    color: var(--white-color);
    background-color: #808080a1;
}

.header_sub_menu_group:hover .submenu_title{
    display: block;
}

.submenu_img {
    width: 250px;
    height: 100%;
    object-fit: cover;
}

.closetoggle {
    display: none;
    width: 92%;
    text-align: right;
    padding-top: 3%;
    padding-right: 8%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}


    
    .header_search_wrapper {
        position: absolute;
        top: 80px;
        right: 10%;
        display: none;
        flex-wrap: wrap;
        width: 26%;
        height: 40px;
        background-color: white;
    }
    
    .header_search_container {
        width: 84%;
        height: 40px;
        padding-left: 20px;
    }
    
    .search_input {
        width: 100%;
        height: 40px;
        background-color: transparent;
    }
    
    .header_search_icon {
        width: 10%;
        height: 40px;
        display: grid;
        align-items: center;
        justify-items: center;
        font-size: 20px;
        cursor: pointer;
    }
    
@media (max-width: 321px) {
    .header_group.header_menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100px;
        width: 100%;
        background-color: white;
    }
    
    .closetoggle {
        display: block;
        
    }
    
    .header_menu_list {
        display: flex;
        gap: 30px;
        align-items: flex-start;
        padding: 20px 0;
        margin-left: 5%;
    }
    
    .header_menu_item {
        display: flex;
        gap: 8px;
        padding: 15px 0;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        position: relative;
        transition: color 0.3s ease-in-out;
    }
    
    .header_sub_menu_wrapper {
        display: none;
        width: 530px;
        position: absolute;
        top: 40px;
        left: 0;
        border-radius: 4px;
        z-index: 2;
        background-color: white;
    }

    .header_icon_container.wishlist {
        display: none;
    }

    .header_group.header_icons {
        right: 10%;
    }

    .fs_content {
        font-size: 1.5rem !important;
    }

    .fs_button .fs_content {
        padding: 10px 20px;
    }

    .fs_content_short {
        font-size: 2rem;
    }

    .fs_content_box {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .fs_session_offer_container {
        width: 100%;
    }

    .fs_session_product_container.product_slider_wrapper {
        width: 100%;
    }

    .ss_group {
        width: 50%;
    }

    .footer_group_one {
        width: 100%;
    }

    .footer_group_two {
        width: 100%;
        row-gap: 15px;
    }

    .footer_top_group {
        row-gap: 15px;
    }

    .footer_bottom_group {
        width: 100%;
    }

    .footer_group {
        width: 50%;
    }

    .footer_group.social {
        width: 100%;
    }

    .view_product_image_container {
        width: 96%;
    }

    .view_product_content_container {
        width: 96%;
    }

    .view_product_sub_image_container {
        width: 30%;
    }

    .fs_session_group {
        flex-wrap: wrap;
    }

    .view_product_main_container {
        flex-wrap: wrap;
    }

    .view_product_detail_group {
        width: 100%;
    }

    .cart_main_container {
        flex-wrap: wrap;
    }

    .cart_table_container {
        width: 100%;
    }

    .cart_overall_container {
        width: 100%;
    }

    .cart_table {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .cart_table_image_container {
        width: 30%;
    }

    .cart_table_detail_container {
        width: 100%;
    }

    .cart_table_quantity_container {
        width: 50%;
    }

    .checkout_container {
        flex-wrap: wrap;
    }

    .checkout_address_wrapper {
        width: 100%;
    }

    .payment_details_container {
        width: 100%;
    }

    .about_header_container {
        height: 500px;
    }

    .about_header_content_container {
        width: 80%;
    }

    .about_experince_image_container {
        width: 90%;
    }

    .about_experince_content_container {
        width: 100%;
    }

    .about_experince_container {
        gap: 15px;
    }

    .contact_experince_container {
        gap: 15px;
    }

    .contact_experince_image_container {
        width: 90%;
    }

    .contact_experince_content_container {
        width: 90%;
    }

    .contact_experince_title {
        font-size: 1.2rem;
        line-height: normal;
    }

    .contact_support_container {
        gap: 15px;
    }

    .contact_support {
        width: 100%;
    }

    .login_main_container {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .login_left_background {
        width: 100%;
    }

    @keyframes bottomrightradius {
        0% {
            border-bottom-right-radius: 0;
        }

        100% {
            border-bottom-right-radius: 0;
        }
    }

    #login-form {
        width: 80%;
    }

    #register-form {
        width: 80%;
    }

    .login_right_background {
        width: 100%;
    }

    @keyframes bottomleftradius {
        0% {
            border-bottom-left-radius: 0;
        }

        100% {
            border-bottom-left-radius: 0;
        }
    }

    .category_side_filter {
        width: 100%;
        position: absolute;
        z-index: 100;
        top: 6%;
        left: 0;
        display: none;
    }

    .category_product_container {
        width: 100%;
    }

    .category_filter_view_btn {
        display: flex;
    }

    .csf_close_btn {
        display: block;
    }

    .category_banner_heading {
        width: 80%;
    }

    .category_banner_offer {
        display: none;
    }

    .category_banner_image_container {
        display: none;
    }

    #preloader video {
        width: 60%;
    }
    
    .user_detail_group {
        width: 100% !important;
    }
    
    .first_session_container {
        background-position-x: -600px;
    }
    
    .header_search_wrapper {
        position: absolute;
        top: 98px;
        left: 0;
        display: none;
        width: 100%;
        height: 40px;
        background-color: white;
    }
    
    .header_search_container {
        width: 84%;
        height: 40px;
    }
    
    .search_input {
        width: 100%;
        height: 40px;
        background-color: transparent;
    }
    
    .header_search_icon {
        width: 10%;
        height: 40px;
        display: grid;
        align-items: center;
        justify-items: center;
        font-size: 20px;
        cursor: pointer;
    }
}

@media (min-width: 321px) and (max-width: 426px) {
    .header_group.header_menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100px;
        width: 100%;
        background-color: white;
    }
    
    
    .closetoggle {
        display: block;
        
    }
    .header_menu_list {
        display: flex;
        gap: 30px;
        align-items: flex-start;
        padding: 20px 0;
        margin-left: 5%;
    }
    
    .header_menu_item {
        display: flex;
        gap: 8px;
        padding: 15px 0;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        position: relative;
        transition: color 0.3s ease-in-out;
    }
    
    .header_sub_menu_wrapper {
        display: none;
        width: 530px;
        position: absolute;
        top: 40px;
        left: 0;
        border-radius: 4px;
        z-index: 2;
        background-color: white;
    }

    .header_icon_container.wishlist {
        display: none;
    }

    .header_group.header_icons {
        right: 10%;
    }

    .fs_content {
        font-size: 1.5rem !important;
    }

    .fs_button .fs_content {
        padding: 10px 20px;
    }

    .fs_content_short {
        font-size: 2rem;
    }

    .fs_content_box {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .fs_session_offer_container {
        width: 100%;
    }
    
    .menutoggle {
        display: block;
    }

    .fs_session_product_container.product_slider_wrapper {
        width: 100%;
    }

    .ss_group {
        width: 50%;
    }

    .footer_group_one {
        width: 100%;
    }

    .footer_group_two {
        width: 100%;
        row-gap: 15px;
    }

    .footer_top_group {
        row-gap: 15px;
    }

    .footer_bottom_group {
        width: 100%;
    }

    .footer_group {
        width: 50%;
    }

    .footer_group.social {
        width: 100%;
    }

    .view_product_image_container {
        width: 96%;
    }

    .view_product_content_container {
        width: 96%;
    }

    .view_product_sub_image_container {
        width: 30%;
    }

    .fs_session_group {
        flex-wrap: wrap;
    }

    .view_product_main_container {
        flex-wrap: wrap;
    }

    .view_product_detail_group {
        width: 100%;
    }

    .cart_main_container {
        flex-wrap: wrap;
    }

    .cart_table_container {
        width: 100%;
    }

    .cart_overall_container {
        width: 100%;
    }

    .cart_table {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .cart_table_image_container {
        width: 30%;
    }

    .cart_table_detail_container {
        width: 60%;
    }

    .cart_table_quantity_container {
        width: 50%;
    }

    .checkout_container {
        flex-wrap: wrap;
    }

    .checkout_address_wrapper {
        width: 100%;
    }

    .payment_details_container {
        width: 100%;
    }

    .about_header_container {
        height: 400px;
    }

    .about_header_content_container {
        width: 80%;
    }

    .about_experince_image_container {
        width: 90%;
    }

    .about_experince_content_container {
        width: 100%;
    }

    .about_experince_container {
        gap: 15px;
    }

    .contact_experince_container {
        gap: 15px;
    }

    .contact_experince_image_container {
        width: 90%;
    }

    .contact_experince_content_container {
        width: 90%;
    }

    .contact_experince_title {
        font-size: 1.2rem;
        line-height: normal;
    }

    .contact_support_container {
        gap: 15px;
    }

    .contact_support {
        width: 100%;
    }

    .login_main_container {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .login_left_background {
        width: 100%;
    }

    @keyframes bottomrightradius {
        0% {
            border-bottom-right-radius: 0;
        }

        100% {
            border-bottom-right-radius: 0;
        }
    }

    #login-form {
        width: 80%;
    }

    #register-form {
        width: 80%;
    }

    .login_right_background {
        width: 100%;
    }

    @keyframes bottomleftradius {
        0% {
            border-bottom-left-radius: 0;
        }

        100% {
            border-bottom-left-radius: 0;
        }
    }

    .category_side_filter {
        width: 100%;
        position: absolute;
        z-index: 100;
        top: 6%;
        left: 0;
        display: none;
    }

    .category_product_container {
        width: 100%;
    }

    .category_filter_view_btn {
        display: flex;
    }

    .csf_close_btn {
        display: block;
    }

    .category_banner_heading {
        width: 50%;
    }

    .category_banner_offer {
        display: none;
    }

    .category_banner_image_container {
        display: none;
    }

    #preloader video {
        width: 60%;
    }
    
    .user_detail_group {
        width: 100% !important;
    }
    
    .first_session_container {
        background-position-x: -600px;
    }
    
    .header_search_wrapper {
        position: absolute;
        top: 98px;
        left: 0;
        display: none;
        width: 100%;
        height: 40px;
        background-color: white;
    }
    
    .header_search_container {
        width: 84%;
        height: 40px;
    }
    
    .search_input {
        width: 100%;
        height: 40px;
        background-color: transparent;
    }
    
    .header_search_icon {
        width: 10%;
        height: 40px;
        display: grid;
        align-items: center;
        justify-items: center;
        font-size: 20px;
        cursor: pointer;
    }
}

@media (min-width: 426px) and (max-width: 769px) {
    .header_group.header_menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100px;
        width: 100%;
        background-color: white;
    }
    
    .closetoggle {
        display: block;
        
    }
    
    .header_menu_list {
        display: flex;
        gap: 30px;
        align-items: flex-start;
        padding: 20px 0;
        margin-left: 5%;
    }
    
    .header_menu_item {
        display: flex;
        gap: 8px;
        padding: 15px 0;
        align-items: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        position: relative;
        transition: color 0.3s ease-in-out;
    }
    
    .header_sub_menu_wrapper {
        display: none;
        width: 530px;
        position: absolute;
        top: 40px;
        left: 0;
        border-radius: 4px;
        z-index: 2;
        background-color: white;
    }

    .header_icon_container.wishlist {
        display: none;
    }

    .header_group.header_icons {
        right: 10%;
    }
    
    .menutoggle {
        display: block;
    }

    .fs_content {
        font-size: 1.5rem !important;
    }

    .fs_button .fs_content {
        padding: 10px 20px;
    }

    .fs_content_short {
        font-size: 2rem;
    }

    .fs_content_box {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .fs_session_offer_container {
        width: 100%;
    }

    .fs_session_product_container.product_slider_wrapper {
        width: 100%;
    }

    .ss_group {
        width: 50%;
    }

    .footer_group_one {
        width: 100%;
    }

    .footer_group_two {
        width: 100%;
        row-gap: 15px;
    }

    .footer_top_group {
        row-gap: 15px;
    }

    .footer_bottom_group {
        width: 100%;
    }

    .footer_group {
        width: 50%;
    }

    .footer_group.social {
        width: 100%;
    }

    .view_product_image_container {
        width: 96%;
    }

    .view_product_content_container {
        width: 96%;
    }

    .view_product_sub_image_container {
        width: 30%;
    }

    .fs_session_group {
        flex-wrap: wrap;
    }

    .view_product_main_container {
        flex-wrap: wrap;
    }

    .view_product_detail_group {
        width: 100%;
    }

    .cart_main_container {
        flex-wrap: wrap;
    }

    .cart_table_container {
        width: 100%;
    }

    .cart_overall_container {
        width: 100%;
    }

    .cart_table {
        row-gap: 15px;
    }

    .cart_table_image_container {
        width: 30%;
    }

    .cart_table_detail_container {
        width: 60%;
    }

    .cart_table_quantity_container {
        width: 50%;
    }

    .checkout_container {
        flex-wrap: wrap;
    }

    .checkout_address_wrapper {
        width: 100%;
    }

    .payment_details_container {
        width: 100%;
    }

    .about_header_container {
        height: 400px;
    }

    .about_header_content_container {
        width: 80%;
    }

    .about_experince_image_container {
        width: 90%;
    }

    .about_experince_content_container {
        width: 100%;
    }

    .about_experince_container {
        gap: 15px;
    }

    .contact_experince_container {
        gap: 15px;
    }

    .contact_experince_image_container {
        width: 90%;
    }

    .contact_experince_content_container {
        width: 90%;
    }

    .contact_experince_title {
        font-size: 1.2rem;
        line-height: normal;
    }

    .login_main_container {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .login_left_background {
        width: 100%;
    }

    @keyframes bottomrightradius {
        0% {
            border-bottom-right-radius: 0;
        }

        100% {
            border-bottom-right-radius: 0;
        }
    }

    #login-form {
        width: 80%;
    }

    #register-form {
        width: 80%;
    }

    .login_right_background {
        width: 100%;
    }

    @keyframes bottomleftradius {
        0% {
            border-bottom-left-radius: 0;
        }

        100% {
            border-bottom-left-radius: 0;
        }
    }

    .category_side_filter {
        width: 100%;
        position: absolute;
        z-index: 100;
        top: 6%;
        left: 0;
        display: none;
    }

    .category_product_container {
        width: 100%;
    }

    .category_filter_view_btn {
        display: flex;
    }

    .csf_close_btn {
        display: block;
    }    

    .category_banner_heading {
        width: 50%;
    }

    .category_banner_offer {
        display: none;
    }

    .category_banner_image_container {
        display: none;
    }

    #preloader video {
        width: 60%;
    }
    
    .user_detail_group {
        width: 100% !important;
    }
    
    .first_session_container {
        background-position-x: -350px;
    }
    
    
    .header_search_wrapper {
        position: absolute;
        top: 98px;
        left: 0;
        display: none;
        width: 100%;
        height: 40px;
        background-color: white;
    }
    
    .header_search_container {
        width: 84%;
        height: 40px;
    }
    
    .search_input {
        width: 100%;
        height: 40px;
        background-color: transparent;
    }
    
    .header_search_icon {
        width: 10%;
        height: 40px;
        display: grid;
        align-items: center;
        justify-items: center;
        font-size: 20px;
        cursor: pointer;
    }
}

@media (min-width: 769px) and (max-width: 1025px) {}

@media (min-width: 1025px) and (max-width: 1799px) {}

@media (min-width: 1800px) {}

@media (min-width: 2300px) {}

.error-container {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px;
        min-height: 60vh;
        background-color: #f8f9fa;
        gap: 40px;
        flex-wrap: wrap;
    }

    .error_img {
        max-width: 100%;
        height: auto;
        width: 400px;
    }

    .error-message {
        max-width: 500px;
        text-align: left;
    }

    .error-message h1 {
        font-size: 5rem;
        margin: 0;
        color: #dc3545;
    }

    .error-message h3 {
        margin-top: 10px;
        font-size: 1.5rem;
        color: #333;
    }

    .error-message a {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 25px;
        background-color: #007bff;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: 0.3s ease;
    }

    .error-message a:hover {
        background-color: #0056b3;
    }
    
.remove_coupon_wrapper {
    display: none;
    gap: 15px;
    background-color: #FF9800;
    width: max-content;
    padding: 5px 10px;
    border-radius: 4px;
    align-items: center;
}

.remove_coupon_icon {
    cursor: pointer;
    font-size: 20px;
}

.success-overlay-container{
    background-color: #f5f9fc;
      display: flex;
      justify-content: center;
      align-items: center;
      height: calc(100vh - 80px);
}

.success-container {
      background-color: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      max-width: 800px;
      width: 100%;
      display: flex;
      gap: 30px;
      align-items: center;
    }
    .success-image img {
      max-width: 500px;
      border-radius: 10px;
    }
    .success-content {
      flex: 1;
    }
    .success-content h1 {
      color: var(--hint-background-color);
      font-size: 28px;
      margin-bottom: 10px;
    }
    .success-content p {
      color: #555;
      margin-bottom: 8px;
    }
    .payment-details {
      margin: 15px 0;
      background: #f2f8f7;
      padding: 15px;
      border-radius: 10px;
    }
    .payment-details p {
      margin: 6px 0;
      font-size: 15px;
          display: flex;
    justify-content: space-between;
    }
    .btn-download {
      text-align: center;
    width: 96%;
    background-color: var(--hint-background-color);
    color: #fff;
    padding: 12px 2%;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s;
    }
    @media (max-width: 768px) {
      .success-container {
        flex-direction: column;
        text-align: center;
      }
      .success-image img {
        max-width: 150px;
      }
    }
    

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  font-family: 'Segoe UI', sans-serif;
}

.popup-card {
  background: #fff;
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.popup-inner {
  display: flex;
}

.popup-image {
  flex: 1 1 40%;
  background-color: #f9f9f9;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popup-content {
  flex: 1 1 60%;
  padding: 40px 35px 30px;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, #ffffff, #f9f9f9);
}

.popup-content h2 {
  font-size: 28px;
  margin: 0 0 15px;
  color: #222;
  line-height: 1.3;
  font-weight: 600;
}

.highlight {
  color: #007bff;
}

.subtitle {
  font-size: 16px;
  color: #444;
  margin: 0 0 18px;
  line-height: 1.6;
}

.divider {
  margin: 15px 0;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
}

.b2c-link {
  color: #007bff;
  text-decoration: underline;
  font-weight: 500;
}

.popup-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.popup-content button {
  align-self: flex-start;
  margin-top: 10px;
  padding: 10px 22px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-content button:hover {
  background-color: #0056b3;
}

.close-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  z-index: 10;
}


@media (max-width: 768px) {
  .popup-inner {
    flex-direction: column;
  }

  .popup-image,
  .popup-content {
    flex: 1 1 100%;
  }

  .popup-content {
    text-align: center;
  }

  .close-icon {
    top: 10px;
    right: 15px;
  }
}

.cart_delete_btn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    font-weight: bold;
    background-color: red;
    padding: 5px;
    border-radius: 4px;
}


.footer_main_container .logo_image {
    width: 70%;
    margin: 0 15%;
}

.product_searched_container {
    background-color: white;
    width: 100%;
    padding: 5px;
    max-height: 300px;
    overflow-y: auto;
}

.product_searched {
    display: flex;
    border: dotted;
    border-width: 0 0 2px 0;
    margin-bottom: 10px;
    gap: 10px;
    cursor: pointer;
    color: black;
    text-decoration: none;
}

.product_searched_image_wrapper {
    width: 18%;
}

.product_searched_content_wrapper {
    width: 81%;
}

.product_searched_color_wrapper {
    margin-top: 5px;
}

.product_searched_image {
    width: 100%;
    max-height: 60px;
}

.product_searched_title {
    font-size: 16px;
}