:root {
    --v2-dark: #444443;
    --v2-light: #ffffff;
    --v2-grey: #f5f5f5;
    --v2-border: #e0e0e0;
    --v2-text: #333333;
}



/* Base */
.v2_header {
    color: var(--v2-text);
    width: 100%;
    position: relative;
    z-index: 1000;
    background: #fff;
}

.v2_container {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.v2_header a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.v2_header ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Top Bar */
.v2_top_bar {
    background-color: var(--v2-dark);
    color: var(--v2-light);
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 0;
    letter-spacing: 0.5px;
    height: 40px;
}

.v2_top_bar_inner {
    display: flex;
    justify-content: center;
    /* Center the menu items */
    align-items: center;
    position: relative;
}

.v2_top_menu {
    display: flex;
    align-items: center;
}

.v2_top_link {
    color: var(--v2-light) !important;
    padding: 0 15px;
    position: relative;
}

/* Add separator between links */
.v2_top_link:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}


.v2_top_lang {
    position: absolute;
    right: 0;
    /* Position language on the right */
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.v2_lang_switcher {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.v2_lang_switcher::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
    margin-left: 2px;
}

.v2_lang_list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    color: #000;
    min-width: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    padding: 5px 0;
}

.v2_lang_switcher:hover .v2_lang_list {
    display: block;
}

.v2_lang_list a {
    display: block;
    padding: 5px 10px;
    color: #000 !important;
}
.v2_current_lang{
    color: #fff;
}

.v2_lang_list a:hover {
    background: #f0f0f0;
}

/* Main Bar */
.v2_main_bar {
    margin-top: 1px;
    padding: 21px 0;
    border-bottom: 1px solid var(--v2-border);
}

.v2_main_bar_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.v2_logo img {
    width: 100%;
    max-width: 196px;
    display: block;
}



/* Search */
.v2_search_block {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 40px;
    position: relative;
}

.v2_search_block form {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #444443;
    height: 48px;
}

.v2_search_input {
    width: 100%;
    border: none;
    outline: none;
    padding: 0 15px 0 58px;
    height: 100%;
    font-size: 16px;
}

.v2_search_btn {
    position: absolute;
    left: 6px;
    top: 0;
    height: 100%;
    width: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2_search_btn img {
       width: 31px;
       height: 31px;
    /* margin: 10px; */
    /* width: 18px; */
    /* opacity: 0.6; */
}

/* User Actions */
.v2_user_actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v2_action_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.v2_action_btn img {
    height: 33px;
}

.v2_cart_count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--v2-dark);
    color: #fff;
    font-size: 10px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mini Cart */
.v2_cart_btn_wrapper {
    position: relative;
    padding-bottom: 20px;
    /* Invisible bridge to the dropdown */
    margin-bottom: -20px;
    /* Offset the padding so it doesn't affect layout flow */
    z-index: 101;
}

.v2_mini_cart {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    margin-top: 0;
    /* Removed margin to use padding bridge */
    border: 1px solid #eee;
}

/* Simple triangle arrow for mini cart */
.v2_mini_cart::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
}

.v2_cart_btn_wrapper:hover .v2_mini_cart {
    display: block;
}

.v2_mini_cart_header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.v2_mini_cart_body {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.v2_cart_item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f9f9f9;
}

.v2_cart_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.v2_cart_item_img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.v2_cart_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.v2_cart_item_info {
    flex: 1;
    font-size: 13px;
}

.v2_cart_item_name {
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.2;
}

.v2_cart_item_qty {
    color: #888;
    margin-bottom: 3px;
    font-size: 12px;
}

.v2_cart_item_price {
    font-weight: bold;
}

.v2_mini_cart_total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 15px;
}

.v2_btn_cart_go {
    display: block;
    width: 100%;
    background: var(--v2-dark);
    color: #fff !important;
    text-align: center;
    padding: 12px;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.v2_btn_cart_go:hover {
    background: #000;
}

.v2_empty_cart {
    text-align: center;
    padding: 20px;
    color: #888;
}

/* Navigation */
.v2_nav_bar {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.v2_nav_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    height: 40px;
    gap: 4px;
}

.v2_nav_item {
    position: relative;
}
.text-desc{
    color: var(--v2-dark);
    font-size: 16px;
    line-height: 1.6;
}
.v2_nav_link {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--v2-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
    height: 40px;
}

.v2_nav_item:hover>.v2_nav_link {
    color: #000;
    border-bottom: 2px solid var(--v2-dark);
    margin-bottom: -1px;
    /* To prevent layout shift or border overlap issues */
}

.v2_nav_img {
    height: 14px;
    vertical-align: middle;
}

.v2_sale {
    color: #E20613 !important;
    /* Brand Red */
}

/* Mega Menu */
.v2_mega_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    /* Full width */
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 99;
    padding: 30px 0;
    /* We need to position it relative to the viewport or container effectively */
    /* Since parent is relative, left: 0 is relative to parent li. We need a way to break out or position logic. */
}

/* 
   Hack for full width dropdown inside relative parent without changing HTML structure too much:
   We can make the nav bar relative, and the li static (default).
*/
.v2_nav_bar .v2_container {
    position: relative;
}

.v2_nav_item {
    position: static;
}

.v2_mega_menu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 1px;
}

.v2_nav_item:hover .v2_mega_menu {
    display: block;
}

.v2_mega_menu_inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
}

.v2_mega_links {
    flex: 1;
    padding-right: 40px;
}

.v2_mega_links ul {
    /* column-count: 4; */
    column-gap: 30px;
    text-align: left;
    /* Ensure text aligns left */
}

.v2_mega_links li {
    break-inside: avoid;
    margin-bottom: 10px;
    text-align: left;
    /* Explicitly align items left */
}

.v2_mega_links a {
    font-size: 14px;
    color: #555;
    display: block;
    padding: 5px 0;
}

.v2_mega_links a:hover {
    color: #000;
    text-decoration: underline;
}

.v2_mega_image {
    width: 663px;
    flex-shrink: 0;
}

.v2_mega_image img {
    width: 100%;
    height: 293px;
    object-fit: cover;
    object-position: 83%;
}


/* Mobile Elements (Hidden on Desktop) */
.v2_burger_mobile {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.v2_burger_mobile span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    transition: 0.3s;
}

.v2_mobile_menu_sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 342px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.v2_mobile_menu_sidebar.active {
    left: 0;
}

.v2_mobile_menu_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
}

.v2_mobile_menu_overlay.active {
    display: block;
}

.v2_mobile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.v2_mobile_logo img {
    height: 25px;
}

.v2_mobile_close {
    cursor: pointer;
    line-height: 1;
    width: 20px;
    /* Adjust size */
    height: 20px;
}

.v2_mobile_close img {
    width: 100%;
    height: 100%;
}

.v2_mobile_content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.v2_mobile_search {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.v2_mobile_search form {
    display: flex;
    border: 1px solid #ccc;
    padding: 5px;
}

.v2_mobile_search input {
    border: none;
    width: 100%;
    padding: 5px;
    outline: none;
}

.v2_mobile_search button {
    background: none;
    border: none;
}

.v2_mob_nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2_mob_item {
    border-bottom: 1px solid #eee;
    position: relative;
}

.v2_mob_link_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.v2_mob_item>a,
.v2_mob_link_wrapper>a {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    padding: 15px;
    /* Consistent padding for direct links like Sale */
}

/* Specific override for wrapper links to avoid double padding */
.v2_mob_link_wrapper>a {
    padding: 0;
    flex: 1;
}

.v2_mob_arrow {
    width: 40px;
    /* Large touch area */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: 1px solid #f0f0f0;
    margin-right: -15px;
    /* Offset the wrapper padding */
}

.v2_mob_arrow::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.v2_mob_arrow.active::after {
    transform: rotate(45deg);
}

/* Submenu Mobile Slide logic - handled via JS */
.v2_mob_subnav {
    display: none;
    background: #f9f9f9;
    padding: 0;
}

.v2_mob_subnav.open {
    display: block;
}

.v2_mob_subnav li a {
    display: block;
    padding: 12px 15px 12px 25px;
    font-size: 13px;
    color: #555;
    text-transform: none;
    border-bottom: 1px solid #e5e5e5;
}

.v2_mob_back {
    display: none;
    /* Only needed if we do a sliding panel, but dropdown is simpler for now */
}

.v2_mob_extras {
    padding: 20px;
    margin-top: auto;
    border-top: 1px solid #eee;
}

.v2_mob_lang {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v2_mob_lang a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Optional styling to make it look more like the screenshot list if needed,
   but keeping it simple as requested "ro /ru ... jos" */

/* Responsive */

@media (max-width: 1400px) {
    .v2_nav_link {
        font-size: 12px;
    }
}

@media (max-width: 1260px) {
    .v2_nav_link {
        font-size: 11px;
    }
}

@media (max-width: 1080px) {
    .v2_nav_link {
        font-size: 10px;
    }
}



@media (max-width: 991px) {

    .v2_top_bar,
    .v2_nav_bar {
        display: none;
    }

    .v2_search_block {
        display: none;
        /* Hide desktop search */
    }

    .v2_logo img {
        height: 33px;
    }

    .v2_burger_mobile {
        display: flex;
        order: 1;
        position: relative;
        z-index: 1002;
        padding: 1px;
        /* Bigger hit area */
        margin-right: 10px;
    }

    .v2_logo {
        order: 2;
        margin: 0 auto;
        /* Center logo */
    }

    .v2_user_actions {
        order: 3;
    }

    .v2_cart_btn_wrapper:hover .v2_mini_cart {
        display: none;
        /* Disable hover cart on mobile, stick to link */
    }

    .v2_main_bar {
        padding: 10px 0;
    }
}

/* Sticky Header Styles */
.v2_header_placeholder {
    display: none;
    /* Toggled via JS */
}

.v2_header.v2_sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    transform: translateY(-100%);
    /* Start hidden above viewport */
    transition: transform 0.3s ease-out;
}

.v2_header.v2_sticky .v2_top_bar {
    display: none;
    /* Hide top bar in sticky mode */
}

.v2_header.v2_in {
    transform: translateY(0);
    /* Slide down */
}

.v2_header.v2_out {
    transform: translateY(-100%);
    /* Slide up */
}

/* Mobile Interaction Styles */
.v2_mob_arrow {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.v2_mob_arrow.active {
    transform: rotate(135deg);
    /* Rotates to point up */
    border-color: transparent;
}

/* Animations */
@keyframes v2FadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v2_nav_item:hover .v2_mega_menu {
    display: block;
    animation: v2FadeIn 0.2s ease-out;
}

.v2_cart_btn_wrapper:hover .v2_mini_cart {
    display: block;
    animation: v2FadeIn 0.2s ease-out;
}

.v2_lang_switcher:hover .v2_lang_list {
    display: block;
    animation: v2FadeIn 0.1s ease-out;
}

/* V2 Slider Styles */
.v2_slider_container {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.v2_slide_item {
    position: relative;
}

.v2_slide_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
 
     
}

.v2_slide_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    pointer-events: none; /* FIX: div-ul overlay nu mai blochează click-ul pe link-ul banner-ului */
}

.v2_slide_content .v2_slide_btn {
    pointer-events: auto; /* re-activăm click-ul doar pe butonul CTA, dacă e prezent */
}

.v2_slide_content .v2_container {
    width: 100%;
    /* Ensure container takes full width of flex parent */
}

.v2_slide_inner {
    max-width: 600px;
    padding: 20px;
    text-align: left;
    /* Ensure left alignment on desktop */
}

.v2_slide_desc {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 400;
    /* Normal weight (not bold) */
    line-height: 1.2;
}

.v2_slide_title {
    font-size: 48px;
    /* Desktop */
    font-weight: 700;
    /* Bold */
    margin-bottom: 20px;
    line-height: 1.1;
}

.v2_slide_btn {
    display: inline-block;
    padding: 10px 0;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid;
    transition: opacity 0.3s;
    font-weight: 500;
    margin-top: 20px;
}

.v2_slide_btn:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* Pagination custom styles */
.v2_slider_pagination {
    position: static;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;
    text-align: center;
    pointer-events: none;
    /* Allow clicks to pass through container */
}

.v2_slider_pagination .swiper-pagination-bullet {
    pointer-events: auto;
    /* Re-enable clicks on bullets */
}

.v2_slider_pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: #000;
    opacity: 0.3;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.v2_slider_pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .v2_slide_img {
        height: auto;
        /* Taller on mobile to fit content */
        object-position: center;
    }

    .v2_slide_content {
        align-items: flex-start;
        /* Move text up */
        padding-top: 40px;
    }

    .v2_slide_inner {
        max-width: 100%;
        text-align: center;
        /* Center text on mobile */
    }

    .v2_slide_desc {
        font-size: 18px;
    }

    .v2_slide_title {
        font-size: 32px;
    }

    .v2_slide_btn {
        font-size: 14px;
    }

    .v2_slider_pagination .swiper-pagination-bullet {
        width: 15px;
        /* Smaller width on mobile */
        height: 2px;
        margin: 0 3px;
        /* Smaller margin */
    }
}

/* V2 Categories Grid */
.v2_category_grid {
    margin-top: 60px;
    row-gap: 40px;
}

.v2_category_block {
    text-align: center;
    margin-bottom: 30px;
}

.v2_category_link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
    align-items: center;
}

.v2_category_link:hover {
    text-decoration: none;
    color: inherit;
}

.v2_category_img_wrapper {
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
}

.v2_category_img {
    width: 100%;
    height: 290px;
    /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.v2_category_content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.v2_category_title {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
}

.v2_category_desc {
    color: var(--v2-dark);
    margin-bottom: 6px;
    line-height: 1.5;
    max-width: 90%;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 28px;
    color: rgb(38, 38, 38);
}

.v2_category_btn {
    text-transform: uppercase;
  font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
}

.v2_category_btn .arrow {
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
}

.v2_category_btn .right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .v2_category_img {
        height: 250px;
    }
}

/* V2 Product Card */
.v2_product_card {
    text-align: center;
    position: relative;
    padding: 10px;
    background: #fff;
    transition: 0.3s;
}

.v2_product_img_container {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
    /* Enforce height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2_product_img_container img {
    object-fit: contain;
}

.v2_product_img_container:hover .v2_quick_view_wrapper .v2_quick_view_btn.moreinfo {
    opacity: 1;
}

.v2_quick_view_btn.moreinfo {
    font-size: 13px;
    color: var(--v2-dark);
    padding: 14px 8px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;

}

.moreinfo:hover {
    border: var(--v2-border);
}

.v2_product_img.main_img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.4s ease-in-out, transform 0.5s ease;
}

.v2_product_img.hover_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    opacity: 0; 
    display: block; 
    transition: opacity 0.4s ease-in-out, transform 0.5s ease;
}

.v2_product_card:hover .main_img {
    opacity: 0; 
}

.v2_product_card.no-hover-img:hover .main_img {
    opacity: 1 !important;
}

.v2_product_card:hover .hover_img {
    opacity: 1;
}

.v2_product_img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

/* Quick View Overlay */
.v2_quick_view_wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    /* Start hidden below */
    transition: transform 0.3s ease-out;
    /* Smooth slide up */
    padding: 0;
    z-index: 10;
}

.v2_product_card:hover .v2_quick_view_wrapper {
    transform: translateY(-20%);
    /* Slide up to view */
}

@media (max-width: 991px) {

    .v2_quick_view_btn.moreinfo {
        opacity: 1 !important;
    }
}

/* Override default .moreinfo styles from main.css */
.v2_quick_view_btn.moreinfo {
    border: 1px solid var(--v2-border);
    background: #fff !important;
    color: var(--v2-dark) !important;
    text-align: center !important;
    padding: 7px 3px !important;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    width: 100% !important;
    opacity: 0;
}
.v2_quick_view_btn.moreinfo:hover{
    border:1px solid var(--v2-border);
}

.v2_quick_view_btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Badges */
.v2_product_badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #333;
    color: #fff;
    font-size: 10px;
    padding: 3px 6px;
    text-transform: uppercase;
    z-index: 2;
}

/* Info */
.v2_product_info {
    padding: 0 10px;
}

.v2_product_title {
    text-transform: uppercase;
    color: var(--v2-dark);
    font-weight: 400;
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 24px;
    text-align: center;
    overflow: hidden;
    min-height: 45px;
}
.v2_product_title:hover{
    text-decoration: underline!important;
}

.v2_product_price {
    font-size: 16px;
    font-weight: 700;
    color: var(--v2-dark);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 28px;
    flex-wrap: wrap;
        padding: 15px 0 5px;
}

 .v2_product_info_block  .v2_price_old{ 
    font-size: 26px;
}
.v2_price_old {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
}

.v2_price_current {
    color: #E20613;
    /* Use brand red for sale price? or black */
    color: var(--v2-dark);
    font-weight: bold;
}

.v2_product_rating {
    display: none;
}

.v2_card_actions {
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
}

.v2_card_add_btn.add-to-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    border-radius: 50%;
    transform: none;
    margin: 0;
}

.v2_card_add_btn img {
    position: relative;
    width: 40px;
    max-height: 26px;
}

.v2_card_add_btn.add-to-card:hover {
    background: #f5f5f5 !important;
}

.v2_card_add_btn:hover {
    background: #000;
    color: #fff;
}

.v2_card_add_btn img {
    filter: brightness(0);
}

.v2_sale_section {
    padding: 20px 0;
}

.v2_section_title {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

.v2_products_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.v2_products_grid.v2_search_grid{
        grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
    .v2_products_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .v2_products_grid.v2_search_grid{
        grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 576px) {
    .v2_products_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .main-slider img {
        height: auto;
    }

    .v2_products_grid.v2_search_grid{
        grid-template-columns: repeat(2, 1fr);
}
}

/* V2 Clean Modal Styles */
.v2_clean_modal {
    position: relative;
    background: #fff;
    padding: 40px;
    max-width: 900px;
    width: 95%;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    max-height: 90%;
    overflow-y: auto;
}

.v2_modal_title {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1.2;
}

.v2_modal_code {

    font-weight: 300;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.v2_modal_price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.v2_modal_rating {
    margin-bottom: 20px;
    color: #333;
    font-size: 14px;
}

.v2_qty_row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.v2_qty_control {
    display: flex;
    border: 1px solid #ddd;
    height: 40px;
}

.v2_qty_control .minus,
.v2_qty_control .plus {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}

.v2_qty_control input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-weight: bold;
    outline: none;
}

.v2_stock_status {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
}

.v2_add_to_cart_btn {
    width: 100%;
    background: #444443;
    color: #fff;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.v2_add_to_cart_btn:hover {
    background: #000;
}

.v2_more_details_link {
    margin-top: 15px;
    font-size: 12px;
    text-decoration: underline;
}

.v2_modal_gallery .swiper-slide img {
    cursor: pointer;
    border: 1px solid transparent;
}

.v2_modal_gallery .swiper-slide img:hover {
    border-color: #000;
}

/* Slider Arrows Styling */
.v2_sale_section .swiper-button-next,
.v2_sale_section .swiper-button-prev {
    color: #444443 !important;
    transform: scale(0.7);
}

 .v2_video_section{
        display: block;
    }
    .v2_video_section_mobile{
        display: none;
    }

@media (max-width: 768px) {

    .v2_sale_section .swiper-button-next,
    .v2_sale_section .swiper-button-prev {
        display: none !important;
        /* Hidden on mobile */
    }
    .v2_video_section{
        display: none;
    }
    .v2_video_section_mobile{
        display: block;
    }
}

/* Modal Thumbs Slider Arrows */
.v2_modal_thumbs {
    position: relative;
    padding: 0 30px;
}

.v2_modal_thumbs .swiper-button-prev,
.v2_modal_thumbs .swiper-button-next {
    color: #444443;
    transform: scale(0.6);
    width: 20px;
    height: 20px;
    margin-top: -10px;
}

.v2_modal_thumbs .swiper-button-prev {
    left: 0;
}

.v2_modal_thumbs .swiper-button-next {
    right: 0;
}

.v2_modal_main_img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 500px;
}

.big-image,
.item-box {
    position: relative !important;
    padding-top: 100% !important;
}

.v2_modal_desc {
    margin-top: 20px;
}

.v2_modal_desc .desc-title:first-child {
    margin-top: 20px;
}

.v2_modal_desc p {
    margin: 10px 0;
    font-size: 14px;
    font-weight: 400;
}

.v2_modal_desc h2 {
    margin: 10px 0;
    font-size: 20px;
}

.v2_modal_desc h3 {
    margin: 10px 0;
    font-size: 18px;
}

.v2_modal_desc h4 {
    margin: 10px 0;
    font-size: 16px;
}

.desc-title {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.desc-text .more-info h2 {
    font-size: 20px;
}

.v2_modal_desc ul li {
    font-size: 14px;
    font-weight: 400;
}

.v2_modal_price_old.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.close-pop {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
}

.close-pop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.custom-arrows .swiper-button-prev {
    left: -15px !important;
    color: #ccc
}

.custom-arrows .swiper-button-next {
    right: -30px !important;
    color: #ccc
}

/* V2 Page Content Section */
.v2_page_section {
    padding: 20px 0;
    text-align: center;
}

.v2_page_title {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 36px;
    color: #444443;
    margin: 0 0 20px 0;
    font-weight: 400;
}


.banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .v2_page_section {
        padding: 20px 0;
    }

    .v2_page_title {
        font-size: 28px;
    }

    .v2_page_desc {
        font-size: 14px;
        padding: 0 15px;
    }

    .banner img {
        height: 300px;
    }
    .v2_page_title_centered h1{
        font-size: 22px;
    }
}


/* V2 Footer Styles */
.v2_footer {
  
    font-size: 14px;
    color: #333;
}
.footer_top{
      background-color: #f5f5f5;
    padding: 60px 0 20px;
}

.v2_footer_top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.v2_footer_heading {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.v2_footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2_footer_links li {
    padding-bottom: 7px;
}

.v2_footer_text {
    font-size: 14px;
    font-weight: 600;
}

.v2_footer_links a {
    color: var(--v2-dark);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.v2_footer_links a:hover {
    color: #000;
}

.v2_footer_logo {
    margin-bottom: 30px;
}

.v2_footer_logo img {
    height: 40.41px;
}

.v2_social_hashtags p {
    margin: 0 0 5px;
    font-weight: 500;
    color: #555;
}

.v2_social_icons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.v2_social_icons img {
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.v2_social_icons img:hover {
    opacity: 1;
}

.v2_contact_info a {
    display: block;
    color: #555;
    margin-bottom: 5px;
}

.v2_copyright {
    margin-top: 20px;
    color: #888;
    font-size: 12px;
}

.v2_highlight_link {
    font-weight: 700;
    color: #000;
}

.v2_highlight_link .red {
    color: #E20613;
}

.v2_col_badges {
    display: flex;
    align-items: flex-start;
}

.v2_badges_row {
    display: flex;
    gap: 10px;
}

.v2_badge_placeholder {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    padding: 5px;
}

/* Bottom Bar */
.v2_footer_bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
        height: 90px;
    background-color: #fff;
}

.title-page {
    font-size: 36px;
    margin-bottom: 12px;
}

.v2_payment_icons {
    display: flex;
    gap: 10px;
}

.v2_payment_icons img {
    height: 30px;
}
@media (max-width: 991px) {
  .v2_footer .row{
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .title-page {
        font-size: 32px;
        margin-bottom: 10px;
    }
  

    .v2_footer_bottom {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* Newsletter Section */
.v2_newsletter_section {
    text-align: center;
    padding: 20px 0 40px 0;
    margin-bottom: 0;
    background-color: #fff;
}

.v2_newsletter_section span {
    display: block;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    margin-bottom: 20px;
}

.bth-subscr {
    display: inline-block;
    padding: 10px 30px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.bth-subscr:hover {
    background: #444;
}

/* V2 Page Content Section */
.v2_page_section {
    padding: 20px 0;
    text-align: center;
}

.v2_page_title {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 36px;
    color: #444443;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.v2_page_desc {
    color: var(--v2-dark);
    font-size: 16px;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}
.banner{
    padding: 20px 0;
}
.banner img {
    width: 100%;
    height: 400px;
}

@media (max-width: 768px) {
    .v2_page_section {
        padding: 20px 0;
    }

    .v2_page_title {
        font-size: 28px;
    }

    .v2_page_desc {
        font-size: 14px;
        padding: 0 15px;
    }

    .banner img {
        height: 300px;
    }
}

/* V2 Newsletter */
.v2_newsletter_section {
    color: #fff;
    text-align: center;
}

.v2_newsletter_wrapper {
    padding: 20px;
    background: var(--v2-dark);
}

.v2_newsletter_section span {
    display: block;
    color: #fff;
}

.v2_newsletter_title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

.v2_newsletter_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    background: transparent !important;
}

.v2_newsletter_btn .arrow {
    border-color: #fff;
}

/* V2 Popup Styles */
.v2_popup {
    display: none; /* Initially hidden, toggled via JS/CSS */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* justify-content: center; align-items: center handled when displayed block if needed, but flex is better */
    justify-content: center;
    align-items: center;
}

/* Force flex when displayed (overriding JS fade in potentially setting block) */
.v2_popup[style*="display: block"] {
    display: flex !important;
}

.v2_plenka {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.v2_popup_block {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 600px; /* Adjust based on screenshot width relative to content */
    padding: 40px;
    z-index: 2;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.v2_close_pop {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}

.v2_close_pop img {
    width: 100%;
    height: 100%;
}

.v2_popup_title {
    font-size: 24px;
    text-transform: uppercase;
    color: #444443;
    margin-bottom: 20px;
    font-weight: 400;
}

.v2_popup_subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.v2_popup_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v2_form_group {
    position: relative;
}

.v2_form_input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.v2_form_input:focus {
    border-color: #000;
}

.v2_captcha_placeholder {
    margin: 10px 0;
}

.v2_checkbox_group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.v2_checkbox_input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.v2_checkbox_label {
    line-height: 1.4;
    cursor: pointer;
}

.v2_popup_submit_wrapper {
    display: flex;
    justify-content: center;
}

.v2_send_btn {
    background: #444443;
    color: #fff;
    border: none;
    padding: 12px 40px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.v2_send_btn:hover {
    background: #000;
}

.v2_send_btn .arrow {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .v2_popup_block {
        width: 90%;
        padding: 30px 20px;
    }
    
    .v2_popup_title {
        font-size: 20px;
    }
}

/* V2 Popup Success Styles */
.v2_popup_success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    animation: v2FadeIn 0.3s ease-out;
}

.v2_success_icon {
    margin-bottom: 20px;
    color: #444443;
}

.v2_success_title {
    font-size: 24px;
    text-transform: uppercase;
    color: #444443;
    font-weight: 400;
    text-align: center;
}
.v2_catalog_list_desc{
    margin-top: 40px;
}

/* V2 Breadcrumbs & Category Banner */
.v2_category_banner {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    background-color: #f5f5f5; /* Fallback */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
    height: 300px;
}

.v2_category_banner_title {
    font-size: 3rem; 
    font-weight: 700;
    text-transform: uppercase;
    color: var(--v2-dark);
    line-height: 1.1;
}

.v2_breadcrumbs {
    display: flex;
    /* Schimbăm flex-wrap din 'wrap' în 'nowrap' pentru a forța un singur rând */
    flex-wrap: nowrap; 
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    height: 40px;
    /* Adăugăm overflow ascuns pentru container */
    overflow: hidden;
    white-space: nowrap;
}

/* Aplicăm tăierea cu puncte pe elementele de text */
.v2_breadcrumb_intermediate, 
.v2_breadcrumb_active {
    display: inline-block;
    max-width: 250px; /* Poți ajusta lățimea maximă după bunul plac */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

/* Resetăm display-ul pentru strong ca să suporte lățimea */
.v2_breadcrumb_active {
    display: inline-block;
}

/* Corecție pentru pseudo-elemente (săgeți) să nu dispară la tăiere */
.v2_breadcrumb_link::after, 
.v2_breadcrumb_intermediate::after {
    display: inline-block;
    vertical-align: middle;
}
.bread-section{
    background: #f9f9f9;
}
.v2_breadcrumb_intermediate{
     color: #444443;
    text-decoration: none;
    transition: color 0.3s;
    text-decoration: underline;
    text-underline-offset: 5px;
    position: relative;
}
.v2_breadcrumb_intermediate::after{
  content: '';
    border-right: 1px solid silver;
    border-bottom: 1px solid silver;
    height: 9px;
    width: 9px;
    border-left: 0;
    display: inline-block;
    border-top: 0;
    transform: rotateZ(320deg);
    margin-left: 6px;
    margin-right: 10px;
}
.v2_breadcrumb_link {
    color: #444443;
    text-decoration: none;
    transition: color 0.3s;
    text-decoration: underline;
    text-underline-offset: 5px;
    position: relative;
}
.v2_breadcrumb_link::after{
    content: '';
    border-right: 1px solid silver;
    border-bottom: 1px solid silver;
    height: 9px;
    width: 9px;
    border-left: 0;
    display: inline-block;
    border-top: 0;
    transform: rotateZ(320deg);
    margin-left: 6px;
    margin-right: 10px;
}
.v2_breadcrumb_link:hover {
    color: #000;
    text-decoration: none;
}

.v2_breadcrumb_separator {
    color: #ccc;
}

.v2_breadcrumb_active {
    color: #000;
    font-weight: 700;
}

.v2_wrapper_banner_product{
    width: 100%;
    height: 400px;
}
.v2_products_banner{ margin-top: 10px;}
@media (max-width: 768px) {
    .v2_category_banner {
        padding: 40px 0;
    }
    .v2_category_banner_title {
        font-size: 2rem;
    }

    .v2_wrapper_banner_product{
    width: 100%;
    height: 250px;
}
}

.arrow {
  width: 10px;
  height: 10px;
  border: solid var(--v2-dark);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
}

.arrow.right {
  transform: rotate(-45deg);
}

.arrow.left {
  transform: rotate(135deg);
}

.arrow.up {
  transform: rotate(-135deg);
}

.arrow.down {
  transform: rotate(45deg);
}
/* V2 Products List Page */
.v2_products_page_grid {
    display: flex;
    gap: 24px;
}

.v2_sidebar {
    width: 316px;
    flex-shrink: 0;
}

.v2_main_content {
    flex-grow: 1;
}

.v2_filter_section {
    padding-right: 0;
}

.v2_filter_header {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
}



.v2_filter_group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}



.v2_filter_list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 1.1rem;
    padding-bottom: 40px;
}
.v2_filter_list li{
    margin-bottom: 1rem;
}
.v2_filter_link {
    display: block;
    color: var(--v2-dark);
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.4;
}

.v2_filter_link:hover, .v2_filter_link.active {
    color: #000;
    font-weight: 400;
}

.v2_filter_link.sub {
    padding-left: 1rem;
    font-size: 16px;
    color: var(--v2-dark);
}

.v2_subfilter_list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}
.v2_subfilter_list li{
    margin-bottom: 0.6rem;
}

.v2_checkbox_label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18;
    color: var(--v2-dark);
    margin-bottom: 1rem;
    cursor: pointer;
    line-height: 1.3;
}

.v2_checkbox_label input {
    display: none;
}

.v2_checkbox_custom {
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.v2_checkbox_label input:checked + .v2_checkbox_custom {
    border-color: #000;
}

.v2_checkbox_label input:checked + .v2_checkbox_custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

.v2_category_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.v2_page_title {
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}

.v2_sort_select {
    padding: 8px 15px;
    border: 1px solid var(--v2-dark);
    outline: none;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
}

@media (max-width: 991px) {
    .v2_products_page_grid {
        margin-top: 20px;
        flex-direction: column;
    }
    
    .v2_sidebar {
        width: 92%;
        margin-bottom: 30px;
    }
}



.v2_cat_toggle {
    cursor: pointer;
    width: 16px;
    height: 16px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    user-select: none;
    z-index: 10;
    transition: transform 0.3s ease;
    position: relative;
    margin-right: 8px;
}

.v2_cat_toggle::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #666;
    border-bottom: 1.5px solid #666;
    transform: rotate(-45deg);
    display: block;
}

.v2_cat_toggle.open::after {
    transform: rotate(45deg);
}

.v2_cat_arrow {
    display: none;
}

@media (max-width: 576px) {
    .v2_products_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .main-slider img {
        height: auto;
    }
}

.v2_filter_link.sale{
    text-transform: capitalize;
}


/* Adjust arrow rotation for open state */
.v2_cat_toggle.open .arrow.right {
    transform: rotate(45deg); /* Points down */
}
.v2_category_row .arrow{
    padding: 1px;
    color: #555;
    border-width: 0 2px 2px 0;
    
}
.v2_bg-product-banner{
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
}

.v2_products_desc .title-page{
    text-align: left;
}
.v2_products_desc .v2_page_desc{
    text-align: left;
    max-width: 100%;
    margin: 0;
}

/* V2 Cart Page Styles */
.v2_cart_page_wrapper {
    /* padding-top: 40px; */
    padding-bottom: 80px;
}

.v2_cart_main_title {
    text-transform: uppercase;
    width: auto;
    font-size: 32px;
    letter-spacing: 0.71px;
    line-height: 40px;
    margin: 40px 0 30px 0;
}
.text-block{
    margin-top: 70px;
}

.v2_cart_header_row {
    font-size: 13px;
    color: #757575;
    text-transform: capitalize;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 12px;
    font-weight: 400;
}

.v2_cart_item_row {
    padding: 20px 0;
    /* border-bottom: 1px solid #f5f5f5; */
}

.v2_cart_item_img_link {
    display: block;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.v2_cart_item_img_link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.v2_cart_item_name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    line-height: 1.3;
}

.v2_cart_item_code {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.v2_stock_status {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.v2_stock_status.in { color: #333; }
.v2_stock_status.out { color: #E20613; }

.v2_qty_wrapper {
    display: flex;
    border: 1px solid #ccc;
    height: 36px;
    width: 100px;
}

.v2_qty_btn {
    width: 30px;
    height: 100%;
    background: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.v2_qty_input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    outline: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    height: 100%;
}

.v2_item_unit_price {
    font-size: 16px;
    color: #444;
}

.v2_remove_wrapper {
    margin-bottom: 10px;
}

.v2_remove_link {
    font-size: 12px;
    text-decoration: underline;
    color: #444;
    cursor: pointer;
}

.v2_remove_link:hover {
    color: #000;
}
.v2_price_main.current{
    font-size: 18px;
    font-weight: 600;
    color: var(--v2-dark);
}
.v2_item_total_price {
    font-size: 18px;
    font-weight: 600;
    color: var(--v2-dark);
}

.v2_divider {
    height: 1px;
    background-color: #e0e0e0;
    width: 100%;
}

.v2_continue_shopping_link {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
}

.v2_continue_shopping_link:hover {
    text-decoration: underline;
    color: #000;
}

/* Cart Summary Box */
.v2_cart_summary_sticky {
    position: sticky;
    top: 100px; /* Adjust based on header height */
    background: #f9f9f9;
    padding: 30px;
}

.v2_summary_title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    color: #444;
}

.v2_summary_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #444;
}

.v2_summary_row.total {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
    margin-bottom: 25px;
}

.v2_summary_divider {
    height: 1px;
    background: #e0e0e0;
    margin: 15px 0;
}

.v2_checkout_btn {
    width: 100%;
    background: #444443;
    color: #fff;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.v2_checkout_btn:hover {
    background: #000;
}

/* Radio Buttons Custom */
.v2_radio_label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.v2_radio_label input {
    display: none;
}

.v2_radio_custom {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

.v2_radio_label input:checked + .v2_radio_custom {
    border-color: #000;
}

.v2_radio_label input:checked + .v2_radio_custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

.v2_section_title_left {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 300;
    color: #444;
}

.v2_sub_title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #444;
}

.v2_form_textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 14px;
    min-height: 100px;
    resize: vertical;
    outline: none;
}
.v2_form_textarea:focus { border-color: #000; }

.v2_btn_small {
    background: #444;
    color: #fff;
    border: none;
    padding: 0 15px;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
}

/* Pickup Location Styling */
.v2_pickup_locations {
    gap: 15px;
}

.v2_pickup_locations .v2_radio_label {
    border: 2px solid #e0e0e0;
    padding: 15px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex: 0 1 auto;
}

.v2_pickup_locations .v2_radio_label:hover {
    border-color: #000;
    background-color: #f9f9f9;
}

.v2_pickup_locations .v2_radio_label input:checked + .v2_radio_custom {
    border-color: #000;
}

.v2_pickup_locations .v2_radio_label:has(input:checked) {
    border-color: #000;
    background-color: #f9f9f9;
}

@media (max-width: 991px) {
    .v2_cart_main_title {
        font-size: 20px;
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        line-height: 1.2;
    }

    /* Adjust layout for mobile item row */
    .v2_cart_item_row .row {
        position: relative;
    }

    .v2_cart_item_info_col {
        padding-right: 0;
        /* Ensure remove link has space if absolute, but we will restructure flex */
    }

    /* Image on left, content on right */
    .v2_cart_item_info_col .d-flex {
        align-items: flex-start;
    }

    .v2_cart_item_img_link {
        width: 80px;
        height: 80px;
        margin-right: 15px;
    }

    .v2_cart_item_details {
        margin-left: 0 !important;
        width: 100%;
        padding-right: 20px; /* Space for remove link */
    }

    .v2_cart_item_name {
        font-size: 14px;
        margin-bottom: 3px;
        padding-right: 40px; /* Ensure title doesn't overlap remove link */
    }

    .v2_cart_item_code {
        font-size: 11px;
        margin-bottom: 3px;
    }

    /* Remove link positioned top-right of item details or row */
    .v2_cart_total_col {
        position: static;
        /* Reset col position to allow absolute positioning relative to row/container if needed,
           but here we move the remove link visually */
    }

    .v2_remove_wrapper {
        position: absolute;
        top: 0;
        right: 15px;
        margin-bottom: 0;
    }

    .mobile-remove-text {
        font-size: 11px;
        text-decoration: underline;
        color: #555;
        cursor: pointer;
    }

    .v2_remove_link:hover .mobile-remove-text {
        color: #000;
        text-decoration: none;
    }


    /* Layout: Qty under status, Prices at bottom */
    .v2_qty_wrapper {
        margin-top: 10px;
        height: 32px;
    }
    
    .v2_qty_btn { font-size: 14px; width: 30px; }
    .v2_qty_input { font-size: 13px; width: 35px; }

    /* Hide unit price column on mobile if not needed or merge */
    .v2_cart_price_col {
        display: block;
        width: 50%;
        float: left;
        padding-left: 15px;
        margin-top: 15px;
        text-align: left !important;
        margin-bottom: 0;
    }
    
    .v2_item_unit_price {
        font-size: 14px;
        color: #888;
    }
    
    .v2_item_unit_price::before {
        content: ''; /* Remove prefix */
    }

    /* Total Price on the right */
    .v2_cart_total_col {
        display: block;
        width: 50%;
        float: left;
        margin-top: 15px;
        text-align: right !important;
        padding-right: 15px;
    }

    .v2_item_total_price {
        font-size: 16px;
        margin-top: 0;
    }

    .v2_cart_item_row {
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    
    /* Clearfix for floated prices */
    .v2_cart_item_row .row::after {
        content: "";
        clear: both;
        display: table;
    }

    /* Summary Mobile */
    .v2_cart_summary_sticky {
        margin-top: 0;
        padding: 20px;
        background: #f9f9f9;
    }
    
    .v2_summary_title {
        font-size: 16px;
    }
    
    .v2_summary_row, .v2_summary_row.total {
        font-size: 14px;
    }
    
    .v2_summary_row.total {
        font-size: 18px;
    }

    .v2_checkout_btn {
        font-size: 13px;
        padding: 12px;
    }
}

/* V2 Contacts Page */
.v2_contacts_page {
    padding-bottom: 80px;
}

.v2_map_wrapper iframe {
    width: 100% !important;
    height: 450px !important;
    border: none;
    display: block;
}

.v2_contacts_info_section {
    padding-left: 40px;
    display: flex;
    align-items: center;
}

.v2_contact_row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.v2_contact_icon {
    width: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    padding-top: 3px; /* Align with text top */
}

.v2_contact_icon img {
    width: 100%;
    height: auto;
}

.v2_contact_text {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.v2_contact_link {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
}

.v2_contact_link:hover {
    color: #000;
    text-decoration: underline;
}

.v2_contact_socials img {
    width: 30px;
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.v2_contact_socials img:hover {
    opacity: 1;
}

@media (max-width: 991px) {
    .v2_contacts_info_section {
        padding-left: 15px;
        padding-top: 40px;
        justify-content: flex-start;
    }
    
    .v2_map_wrapper iframe {
        height: 300px !important;
    }
}
.the-message.with-icon{
    color: #fff!important;
}
.the-message.with-icon .nmi{
    color: #fff!important;
}



/* V2 Item Page Styles */
.v2_product_page {
    padding-top: 40px;
    padding-bottom: 60px;
}

.v2_product_title_h1 {
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    color: #444443;
    margin-bottom: 10px;
    line-height: 1.2;
}



.v2_product_code {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.v2_product_price_block {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.v2_price_main {
    font-size: 26px;
    font-weight: 700;
    color: var(--v2-dark);
}

.v2_price_old {
    font-size: 16px;
    color: var(--v2-dark);
    text-decoration: line-through;
}
.v2_price_old.old{
        font-size: 18px;
}

.v2_rating_placeholder {
    font-size: 14px;
    color: #333;
    margin-bottom: 25px;
}

.v2_read_reviews {
    text-decoration: underline;
    color: #555;
    margin-left: 10px;
}

.v2_purchase_actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.v2_qty_wrapper {
    display: flex;
    border: 1px solid #ccc;
    height: 40px;
    width: 120px;
}

.v2_qty_btn {
    width: 40px;
    height: 100%;
    background: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2_qty_input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    outline: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.v2_stock_status.in {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
}

.v2_add_to_cart_btn_large {
    width: 100%;
    background: #444443;
    color: #fff;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    transition: background 0.3s;
}

.v2_add_to_cart_btn_large:hover {
    background: #000;
}

.arrow.white {
    border-color: #fff;
}

.v2_product_description_section {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.v2_extra_links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v2_extra_link {
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.v2_extra_link .arrow {
    transform: rotate(-45deg);
    padding: 3px;
}

.v2_product_gallery_wrapper {
    position: relative;
    margin-bottom: 30px;
}

.v2_big_image_wrapper {
    margin-bottom: 20px;
}

.v2_main_img {
    width: 100%;
    height: auto;
    display: block;
}

.v2_thumbs_slider_container {
    position: relative;
    padding: 0 30px;
}

.v2_thumbs_slider .swiper-slide {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.v2_thumbs_slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid #ccc;
}

@media (max-width: 991px) {
    .v2_product_title_h1 {
        margin-top: 10px;
        font-size: 24px;
    }
    
    .v2_price_main {
        font-size: 24px;
    }
}
/* V2 Slider Customizations */
.v2_thumbs_slider_container {
    padding: 0 30px;
    margin-top: 20px;
}

.v2_thumb_prev::after, .v2_thumb_next::after {
    font-size: 16px;
    color: #444443;
}

.v2_thumbs_slider .swiper-slide {
    height: auto;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    border: 1px solid transparent;
}

.v2_thumbs_slider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #000;
}

@media (max-width: 991px) {
    /* Mobile Slider Pagination Bubbles */
    .v2_big_image_wrapper {
        position: relative;
    }
    
    .v2_product_gallery_wrapper .swiper-pagination {
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 10;
    }

    .v2_product_gallery_wrapper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ccc;
        opacity: 1;
        margin: 0 4px;
        border-radius: 50%;
    }

    .v2_product_gallery_wrapper .swiper-pagination-bullet-active {
        background: #444443;
    }
}

/* V2 Desktop Gallery Grid */
.v2_desktop_gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.v2_gallery_item {
    position: relative;
    overflow: hidden;
}

.v2_gallery_item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.pay-image{
    margin-top: 100px;
    margin-bottom: 100px;
}
.v2_gallery_item.full-width {
    grid-column: span 2;
}
@media(max-width: 768px) {
    .v2_desktop_gallery{
        display: none;
    }
    .v2_mobile_gallery{
        display: block;
    }
}
.v2_desc_text h2{
    font-size: 18px;
}

/* V2 Slider Pagination Bullets Mobile */
.v2_slider_pagination_mobile {
    position: static;
    bottom: 15px !important;
    width: 100%;
    text-align: center;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.v2_slider_pagination_mobile .swiper-pagination-bullet {
    border-radius: 0;
    background: #ccc;
    opacity: 1;
    margin: 0 6px;
    transition: background 0.3s;
    width: 15px;
        height: 2px;
}

.v2_slider_pagination_mobile .swiper-pagination-bullet-active {
    background: #444443;
}
.active .popup.short-info{
    position: fixed;
    top: 0;
    z-index: 9999;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup.short-info .big-image, .item-box{
    padding-top: 0!important;
}
.popup.short-info .swiper-slide{
    width: 172px!important;
}

.popup.short-info .fancy-item img{
    min-height: 350px;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
}
.pay-image{
    width: 100%;
    
}
.pay-image img{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f5f5f5;
    z-index: 99999;
    border-bottom: 1px solid #ddd;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
        padding: 12px 60px 12px 50px;

}

.cookie-consent-left {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.cookie-consent-title {
    background-color: transparent;
    z-index: 999998;
    color: #444443;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.4px;
    opacity: 1;
}

.cookie-consent-text {
    color: #444443;
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 1.65;
    font-weight: 400;
}

.cookie-policy-link {
    color: #000;
    text-decoration: underline;
    font-weight: 400;
}

.cookie-policy-link:hover {
    color: #444;
}

.cookie-options {
    display: inline-flex;
    align-items: center;
    gap: 15px;

}

.cookie-option {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    margin: 0;
    white-space: nowrap;
}

.cookie-option input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    margin: 0;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option span {
    letter-spacing: 0.3px;
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #444443;
    letter-spacing: 1px;
}

.cookie-consent-buttons {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    font-weight: bold;
    line-height: 28px;
    font-size: 14px;
}

.cookie-accept-all,
.cookie-refuse-all {
    padding: 5px 17px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cookie-accept-all {
    background: #444443;
    color: #ffffff;
}

.cookie-accept-all:hover {
    background: #000000;
}

.cookie-refuse-all {
    background: transparent;
    color: #000;
    border: none;
    text-decoration: underline;
    padding: 10px 15px;
}

.cookie-refuse-all:hover {
    color: #444;
}

.cookie-close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    color: #666;
    line-height: 1;
}

.cookie-close-btn:hover {
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .cookie-consent-content {
        flex-wrap: wrap;
    }
    
    .cookie-options {
        flex-wrap: wrap;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 15px 20px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cookie-consent-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }
    
    .cookie-options {
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        padding: 0;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-close-btn {
        right: 5px;
        top: 10px;
        transform: none;
    }
}

.v2_footer_bottom .v2_container{
    display: flex; 
    justify-content: space-between;
}
.v2_pro_red {
    color: #D61E29 !important;
    font-weight: 700 !important;
}

.v2_pro_red_light {
    color: #D61E29 !important;
    font-weight: 400 !important;
}
