/**
 * Dark Theme Styles for Bootstrap 4
 * This file provides dark mode support for the e-shop
 */

body {
    padding-top: 70px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: normal !important;
}

/* Dark theme variables */

[data-bs-theme="dark"] {
    --bs-body-bg: #202938;
    --bs-body-color: #adb5bd;
    --bs-border-color: #495057;
    --bs-secondary-bg: #374151;
    --bs-tertiary-bg: #495057;
}

/* Base dark theme styles */
[data-bs-theme="dark"] body,
[data-bs-theme="dark"] .bg-light,
[data-bs-theme="dark"] .bg-white,
body.dark-theme,
body.dark-theme .bg-light,
body.dark-theme .bg-white {
    background-color: #202938 !important;
    color: #adb5bd !important;
}

/* Ensure all text is visible by default in dark theme */
[data-bs-theme="dark"] {
    color: #adb5bd !important;
}

/* Footer theme toggle button styles */
.theme-toggle-wrap {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
}

.theme-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.theme-toggle-btn i {
    font-size: 20px;
    color: #333;
}

[data-bs-theme="dark"] .theme-toggle-btn {
    background-color: #374151 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

[data-bs-theme="dark"] .theme-toggle-btn:hover {
    background-color: #4b5563 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

[data-bs-theme="dark"] .theme-toggle-btn i {
    color: #fff !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    body {
        padding-top: 60px;
        /* Smaller padding for mobile */
    }

    .theme-toggle-wrap {
        bottom: 90px;
        right: 20px;
    }

    .theme-toggle-btn {
        width: 45px;
        height: 45px;
    }

    .theme-toggle-btn i {
        font-size: 18px;
    }
}

/* Header and Navigation */
[data-bs-theme="dark"] header,
[data-bs-theme="dark"] .navbar,
[data-bs-theme="dark"] .navbar-light,
[data-bs-theme="dark"] .navbar-expand-lg {
    background-color: #202938 !important;
    border-color: #495057 !important;
}

[data-bs-theme="dark"] .navbar-light .navbar-nav .nav-link {
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .navbar-light .navbar-nav .nav-link:hover {
    color: #fff !important;
}

/* Cards */
[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .card-body {
    background-color: #374151 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .card-header {
    background-color: #495057 !important;
    border-color: #495057 !important;
    color: #fff !important;
}


[data-bs-theme="dark"] div#product-faq-css\  {
    background: #384152 !important;
    border-color: #384152 !important;
    color: #fff !important;
    text-transform: none !important;

}

[data-bs-theme="dark"] button.accordion-button.text-dark.collapsed:hover,
button.accordion-button.text-dark:hover {
    color: #ff670f !important;
    text-transform: none !important;
}

[data-bs-theme="dark"] .accordion-wrapper .card-header button:before {
    color: #fff !important;
}

[data-bs-theme="dark"] .accordion-wrapper .card-header button:before:hover {
    color: #ff670f !important;
}

/* Forms */
[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select,
[data-bs-theme="dark"] input,
[data-bs-theme="dark"] textarea,
[data-bs-theme="dark"] select {
    background-color: #374151 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
    background-color: #374151 !important;
    border-color: #6c757d !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .form-control::placeholder {
    color: #6c757d !important;
}

/* Buttons */
[data-bs-theme="dark"] .btn-light,
[data-bs-theme="dark"] .btn-outline-light {
    background-color: #495057 !important;
    border-color: #495057 !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .btn-light:hover {
    background-color: #5a6268 !important;
    border-color: #5a6268 !important;
}

/* Dropdowns */
[data-bs-theme="dark"] .dropdown-menu {
    background-color: #374151 !important;
    border-color: #495057 !important;
}

[data-bs-theme="dark"] .dropdown-item {
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .dropdown-item:hover,
[data-bs-theme="dark"] .dropdown-item:focus {
    background-color: #495057 !important;
    color: #fff !important;
}

/* Tables */
[data-bs-theme="dark"] .table {
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .table thead th {
    border-color: #495057 !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .table tbody tr {
    border-color: #495057 !important;
}

[data-bs-theme="dark"] .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Modals */
[data-bs-theme="dark"] .modal-content {
    background-color: #374151 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .modal-header {
    border-color: #495057 !important;
}

[data-bs-theme="dark"] .modal-footer {
    border-color: #495057 !important;
}

/* Offcanvas */
[data-bs-theme="dark"] .offcanvas {
    background-color: #202938 !important;
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .offcanvas-header {
    border-color: #495057 !important;
}

/* Badges */
[data-bs-theme="dark"] .badge.bg-light,
[data-bs-theme="dark"] .badge.bg-white {
    background-color: #495057 !important;
    color: #fff !important;
}

/* Text colors */
[data-bs-theme="dark"] .text-dark,
[data-bs-theme="dark"] .text-body,
[data-bs-theme="dark"] .link-dark {
    color: #adb5bd !important;
}

[data-bs-theme="dark"] h1,
[data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3,
[data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5,
[data-bs-theme="dark"] h6 {
    color: #fff !important;
}

/* Override text-dark on headings */
[data-bs-theme="dark"] h1.text-dark,
[data-bs-theme="dark"] h2.text-dark,
[data-bs-theme="dark"] h3.text-dark,
[data-bs-theme="dark"] h4.text-dark,
[data-bs-theme="dark"] h5.text-dark,
[data-bs-theme="dark"] h6.text-dark {
    color: #fff !important;
}

/* Product titles and post titles */
[data-bs-theme="dark"] .post-title,
[data-bs-theme="dark"] .title,
[data-bs-theme="dark"] .section-title,
[data-bs-theme="dark"] .title-sm,
[data-bs-theme="dark"] h3.section-title,
[data-bs-theme="dark"] h4.post-title,
[data-bs-theme="dark"] h4.title {
    color: #fff !important;
}

/* Links in titles */
[data-bs-theme="dark"] .post-title a,
[data-bs-theme="dark"] .title a,
[data-bs-theme="dark"] .link-dark {
    color: #fff !important;
}

[data-bs-theme="dark"] .post-title a:hover,
[data-bs-theme="dark"] .title a:hover,
[data-bs-theme="dark"] .link-dark:hover {
    color: #ff670f !important;
}

/* [data-bs-theme="dark"] a:hover {
    color: #ff670f !important;
} */

/* Background utilities */
[data-bs-theme="dark"] .bg-soft-primary,
[data-bs-theme="dark"] .bg-gradient-reverse-primary {
    background-color: #202938 !important;
}

[data-bs-theme="dark"] .wrapper {
    background-color: #202938 !important;
}

/* Shopping cart sidebar */
[data-bs-theme="dark"] .shopping-cart,
[data-bs-theme="dark"] .shopping-cart-item {
    background-color: #374151 !important;
    color: #adb5bd !important;
}

/* Product cards and listings */
[data-bs-theme="dark"] .product-card,
[data-bs-theme="dark"] .product-item {
    background-color: #374151 !important;
    border-color: #495057 !important;
}

/* Footer */
[data-bs-theme="dark"] footer {
    background-color: #202938 !important;
    color: #adb5bd !important;
    border-color: #495057 !important;
}

/* Profile Sidebar Dark Theme */
[data-bs-theme="dark"] .profile-sidebar.offcanvas {
    background-color: #374151 !important;
}

[data-bs-theme="dark"] .offcanvas-header {
    background-color: #374151 !important;
    /* border-bottom: 1px solid #4b5563 !important; */
    border: none !important;
}

[data-bs-theme="dark"] .offcanvas-title {
    color: #fff !important;
}

[data-bs-theme="dark"] .offcanvas-body {
    background-color: #374151 !important;
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

[data-bs-theme="dark"] .profile-header {
    border-bottom-color: #4b5563 !important;
}

[data-bs-theme="dark"] .profile-info h6 {
    color: #fff !important;
}

[data-bs-theme="dark"] .profile-info small {
    color: #9ca3af !important;
}

[data-bs-theme="dark"] .profile-menu-link {
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .profile-menu-link:hover {
    background-color: #4b5563 !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .profile-menu-link i {
    color: #9ca3af !important;
}

[data-bs-theme="dark"] .profile-menu-link:hover i {
    color: #fff !important;
}

/* [data-bs-theme="dark"] .text-center {
    color: #adb5bd !important;
} */

[data-bs-theme="dark"] .text-center p {
    color: #adb5bd !important;
}

/* Input groups */
[data-bs-theme="dark"] .input-group-text {
    background-color: #495057 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
}

/* List groups */
[data-bs-theme="dark"] .list-group-item {
    background-color: #374151 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .list-group-item.active {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

/* Alerts */
[data-bs-theme="dark"] .alert-light {
    background-color: #495057 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
}

/* Breadcrumbs */
[data-bs-theme="dark"] .breadcrumb {
    background-color: #374151 !important;
}

[data-bs-theme="dark"] .breadcrumb-item.active {
    color: #adb5bd !important;
}

/* Pagination */
[data-bs-theme="dark"] .page-link {
    background-color: #374151 !important;
    border-color: #495057 !important;
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .page-link:hover {
    background-color: #ff670f !important;
    border-color: #ff670f !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .page-item.active .page-link {
    color: white !important;
    background-color: #ff670f !important;
    border-color: #ff670f !important;
}

/* Custom components */
[data-bs-theme="dark"] .content-wrapper {
    background-color: #202938 !important;
}

/* [data-bs-theme="dark"] .container {
    color: #adb5bd !important;
} */

/* Home page specific text fixes */
[data-bs-theme="dark"] .deeplink_wrapper,
[data-bs-theme="dark"] .deeplink_wrapper * {
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .deeplink_wrapper h1,
[data-bs-theme="dark"] .deeplink_wrapper h2,
[data-bs-theme="dark"] .deeplink_wrapper h3,
[data-bs-theme="dark"] .deeplink_wrapper h4,
[data-bs-theme="dark"] .deeplink_wrapper h5,
[data-bs-theme="dark"] .deeplink_wrapper h6 {
    color: #fff !important;
}

/* Brand image div text */
/* [data-bs-theme="dark"] .brand_image_div,
[data-bs-theme="dark"] .brand_image_div * {
    color: #fff !important;
} */

/* Swiper slide text */
[data-bs-theme="dark"] .swiper-slide,
[data-bs-theme="dark"] .swiper-slide * {
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .swiper-slide h1,
[data-bs-theme="dark"] .swiper-slide h2,
[data-bs-theme="dark"] .swiper-slide h3,
[data-bs-theme="dark"] .swiper-slide h4,
[data-bs-theme="dark"] .swiper-slide h5,
[data-bs-theme="dark"] .swiper-slide h6 {
    color: #fff !important;
}

/* Row text */
[data-bs-theme="dark"] .row,
[data-bs-theme="dark"] .row {
    color: #dde2e7 !important;
}

[data-bs-theme="dark"] .row h1,
[data-bs-theme="dark"] .row h2,
[data-bs-theme="dark"] .row h3,
[data-bs-theme="dark"] .row h4,
[data-bs-theme="dark"] .row h5,
[data-bs-theme="dark"] .row h6 {
    color: #fff !important;
}

/* Ensure images maintain visibility */
[data-bs-theme="dark"] img {
    opacity: 0.9;
}

[data-bs-theme="dark"] img:hover {
    opacity: 1;
}

/* Additional white background overrides */
[data-bs-theme="dark"] .white,
[data-bs-theme="dark"] .bg-white-50,
[data-bs-theme="dark"] .bg-white-100,
[data-bs-theme="dark"] section,
[data-bs-theme="dark"] .section,
[data-bs-theme="dark"] .content,
[data-bs-theme="dark"] .main-content,
[data-bs-theme="dark"] .page-wrapper,
[data-bs-theme="dark"] .wrapper,
body.dark-theme .white,
body.dark-theme .bg-white-50,
body.dark-theme .bg-white-100,
body.dark-theme section,
body.dark-theme .section,
body.dark-theme .content,
body.dark-theme .main-content,
body.dark-theme .page-wrapper,
body.dark-theme .wrapper {
    background-color: #202938 !important;
}

/* Override any inline styles or specific classes */
[data-bs-theme="dark"] [style*="background-color: white"],
[data-bs-theme="dark"] [style*="background-color:#fff"],
[data-bs-theme="dark"] [style*="background-color:#ffffff"],
[data-bs-theme="dark"] [style*="background: white"],
[data-bs-theme="dark"] [style*="background:#fff"],
[data-bs-theme="dark"] [style*="background:#ffffff"] {
    background-color: #202938 !important;
}

/* Override inline text color styles that might hide text */
[data-bs-theme="dark"] [style*="color: #000"],
[data-bs-theme="dark"] [style*="color:#000"],
[data-bs-theme="dark"] [style*="color: black"],
[data-bs-theme="dark"] [style*="color:black"],
[data-bs-theme="dark"] [style*="color: #212529"],
[data-bs-theme="dark"] [style*="color:#212529"],
[data-bs-theme="dark"] [style*="color: #343a40"],
[data-bs-theme="dark"] [style*="color:#343a40"] {
    color: #adb5bd !important;
}

/* Force text visibility for common text elements */
[data-bs-theme="dark"] label,
[data-bs-theme="dark"] small,
[data-bs-theme="dark"] .small,
[data-bs-theme="dark"] .lead,
[data-bs-theme="dark"] .display-1,
[data-bs-theme="dark"] .display-2,
[data-bs-theme="dark"] .display-3,
[data-bs-theme="dark"] .display-4 {
    color: #adb5bd !important;
}

/* Ensure text remains readable */
[data-bs-theme="dark"] p,
[data-bs-theme="dark"] span,
[data-bs-theme="dark"] div,
body.dark-theme p,
body.dark-theme span,
body.dark-theme div {
    color: #fff !important;
}

/* Text muted - make it lighter in dark theme */
[data-bs-theme="dark"] .text-muted {
    color: #9ca3af !important;
}

/* Price text */
[data-bs-theme="dark"] .price,
[data-bs-theme="dark"] p.price {
    color: #fff !important;
}

[data-bs-theme="dark"] .price.text-muted {
    color: #9ca3af !important;
}

/* Category and brand names */
[data-bs-theme="dark"] h6.fs-14,
[data-bs-theme="dark"] h6.mb-0 {
    color: #fff !important;
}

/* Featured section titles */
[data-bs-theme="dark"] .featured-section-title,
[data-bs-theme="dark"] .featured-section-title h3 {
    color: #fff !important;
}

/* Swiper pagination bullets text */
[data-bs-theme="dark"] .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

[data-bs-theme="dark"] .swiper-pagination-bullet-active {
    background-color: #fff !important;
}

/* All text elements in sections */
[data-bs-theme="dark"] section,
[data-bs-theme="dark"] section {
    color: #adb5bd !important;
}

[data-bs-theme="dark"] section h1,
[data-bs-theme="dark"] section h2,
[data-bs-theme="dark"] section h3,
[data-bs-theme="dark"] section h4,
[data-bs-theme="dark"] section h5,
[data-bs-theme="dark"] section h6 {
    color: #fff !important;
}

/* Container text */
/* [data-bs-theme="dark"] .container,
[data-bs-theme="dark"] .container * {
    color: #adb5bd !important;
} */

[data-bs-theme="dark"] .container h1,
[data-bs-theme="dark"] .container h2,
[data-bs-theme="dark"] .container h3,
[data-bs-theme="dark"] .container h4,
[data-bs-theme="dark"] .container h5,
[data-bs-theme="dark"] .container h6 {
    color: #fff !important;
}


[data-bs-theme="dark"] .bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgb(240 114 0) !important;
    color: white !important;
}

[data-bs-theme="dark"] .bg-warning:hover {
    --bs-bg-opacity: 1;
    background-color: rgb(240 114 0) !important;
    color: white !important;
}

[data-bs-theme="dark"] .button.btn.bg-red-700.w-100 {
    background: #d3221e;
    color: white;
}



[data-bs-theme="dark"] .swiper-slide {
    text-align: center;
    font-size: 16px;
    background: none !important;
    /* background-color: #f7f7f7; */
}

[data-bs-theme="dark"] .align-items-md-center.d-flex.flex-wrap.justify-content-center.gap-5.pb-15 {
    background: #121828;
}

[data-bs-theme="dark"] .container.flex-lg-row.flex-nowrap.align-items-center {
    background: #121828;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease, box-shadow 0.3s ease;
}

[data-bs-theme="dark"] .container.flex-lg-row.flex-nowrap.align-items-center:hover {
    border-bottom-color: #ff670f;
    box-shadow: 0 6px 12px rgba(255, 140, 0, 0.35);
}

/* Fixed top navigation */
.container.flex-lg-row.flex-nowrap.align-items-center {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 9999 !important;
    /* Increased from 1000 to 9999 */
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease, box-shadow 0.3s ease;
}

.container.flex-lg-row.flex-nowrap.align-items-center:hover {
    box-shadow: 0 4px 12px rgba(116, 115, 114, 0.3);
}

[data-bs-theme="dark"] .navbar .navbar-other .nav-item .nav-link>i {
    color: #d1d5db !important;
    font-size: 17px !important;
}

[data-bs-theme="dark"] .navbar .navbar-other .nav-item .nav-link>i:hover {
    color: #ff670f !important;
    font-size: 17px !important;
}

.list-unstyled li a:hover {
    color: #ff670f !important;
}

.list-unstyled li a {
    font-weight: normal;
    font-size: small;
}

.list-unstyled li a.text-decoration-none.text-muted.link-secondary.d-block {
    font-weight: normal;
    font-size: small;
    color: rgb(87 95 109) !important;
}


.text-danger {
    --bs-text-opacity: 1;
    color: #d3221e !important;
}

.fw-bold {
    font-weight: 0;
}


div#profile-sidebar {
    width: 256px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

div#offcanvas-cart,
div#filter-sidebar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================= */
/*  YOUR ORIGINAL DESKTOP STYLES - UNCHANGED  */
/* ========================================= */

/* --- Product Page Image UI Enhancements --- */
.gallery-top-1,
.gallery-top {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent !important;
    box-shadow: none !important;
    height: 500px !important;
}

.gallery-top-1 .swiper-slide,
.gallery-top .swiper-slide,
.gallery-top-1 figure,
.gallery-top figure {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
}

.gallery-top-1 img.product_other_images,
.gallery-top img,
.gallery-top img.quick-view-img-css {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 500px !important;
    object-fit: contain !important;
    transition: transform 0.5s ease;
    margin: 0 auto !important;
}

.gallery-top-1 .swiper-slide:hover img {
    transform: scale(1.02);
}

.product-thumb-img {
    padding: 10px 0;
}

.product-thumb-img .swiper-slide,
.gallery-thumbs .swiper-slide {
    width: 80px !important;
    height: 80px !important;
}

.product-thumb-img .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border: none !important;
    /* border-radius: 8px !important; */
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent !important;
    padding: 2px !important;
}

.product-thumb-img .swiper-slide-thumb-active img {
    border-color: #ff670f !important;
    box-shadow: 0 0 10px rgba(240, 114, 0, 0.3);
}

.product-thumb-img .swiper-slide:hover img {
    border-color: rgba(240, 114, 0, 0.5) !important;
}

/* Mobile and Tablet responsive adjustments */
@media (max-width: 1024px) {

    .gallery-top-1,
    .gallery-top {
        height: 350px !important;
    }

    .gallery-top-1 img.product_other_images,
    .gallery-top img {
        max-height: 350px !important;
    }

    .product-thumb-img .swiper-slide {
        width: 60px !important;
        height: 60px !important;
    }
}

/* ========================================= */
/*  TABLET & MOBILE ONLY (≤991px) - RESPONSIVE FIXES  */
/* ========================================= */

@media (max-width: 991px) {


    /* Show and use the desktop gallery structure on tablet/mobile */
    .swiper-container.swiper-thumbs-container,
    .product-page-preview-image-section-md,
    .product-preview-image-section-md,
    .product-thumb-img,
    .gallery-thumbs,
    .d-flex.product-page-preview-image-section-md {
        display: block !important;
    }

    .product-preview-image-section-sm {
        display: none !important;
    }

    /* Stack main image above thumbnails */
    .d-flex.product-page-preview-image-section-md,
    .product-preview-image-section-md {
        display: block !important;
        flex-direction: column !important;
    }

    .product-page-preview-image-section-md>.col-md-10 {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Remove left margin from main image on mobile/tablet */
    .product_other_images {
        margin-left: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: 550px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    /* Force thumbnails to be 100x100px square (same as desktop) */
    .gallery-thumbs-1 .swiper-slide {
        width: 100px !important;
        height: 100px !important;
        min-width: 100px !important;
        margin-right: 12px;
        border: none !important;
        /* Matches your desktop style */
        flex-shrink: 0;
    }

    .gallery-thumbs-1 .swiper-slide img,
    .gallery-thumbs .swiper-slide img {
        /* width: 100% !important;
        height: 100% !important; */
        object-fit: cover;
        border-radius: 6px;
    }

    /* Override your 64px rule - make thumbnails full size on mobile/tablet */
    img.rounded.p-1.lazy.loaded {
        /* width: 100% !important; */
        /* height: 100% !important; */
        object-fit: cover !important;
    }

    /* Horizontal scrolling for thumbnails */
    .product-thumb-img {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .gallery-thumbs-1 .swiper-wrapper,
    .gallery-thumbs .swiper-wrapper {
        flex-wrap: nowrap !important;
    }

    /* Optional: highlight active thumbnail with orange border on touch */
    .gallery-thumbs-1 .swiper-slide.swiper-slide-thumb-active,
    .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
        padding: 2px;
    }
}

/* Extra small phones - slight adjustment if needed */
@media (max-width: 480px) {
    .product_other_images {
        max-height: 450px !important;
    }

    .gallery-thumbs-1 .swiper-slide {
        width: 90px !important;
        height: 90px !important;
        min-width: 90px !important;
    }
}

.text-orange {
    --bs-text-opacity: 1;
    color: #ff670f !important;
}


.btn:not(.btn-link):hover {
    box-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15) !important;
    transition: none !important;
}


[data-bs-theme="dark"] .info-tab-btn {
    border: none;
    background: #121828 !important;
    padding: 5px;
    border-radius: 7px;
    padding-right: 12px;
    margin: 12;
    color: white;
    padding-left: 12px;
}

[data-bs-theme="dark"] .info-tab-btn:hover {
    background-color: #ff670f !important;
    color: white !important;
}

[data-bs-theme="dark"] .info-tab-btn.active {
    background-color: #ff670f !important;
    color: #ffffff !important;
}

[data-bs-theme="dark"] .settings-dashboard-tab-btn {
    border: none;
    background: #384152 !important;
    padding: 8px;
    border-radius: 3px;
    padding-right: 12px;
    margin: 12;
    color: white;
    color: #d1d5d2 !important;
    font-weight: 600;
    padding-left: 12px;
    white-space: nowrap;
}

[data-bs-theme="dark"] .settings-dashboard-tab-btn:hover {
    background-color: #ff670f !important;
    color: white !important;
}

[data-bs-theme="dark"] .settings-dashboard-tab-btn.active {
    background-color: #ff670f !important;
    color: #ffffff !important;
}


[data-bs-theme="dark"] .card.mb-4:hover {
    border-radius: 12px !important;
    border-bottom-color: #ff670f !important;
    box-shadow: 0 4px 10px #ff670f !important;
}

.card.mb-4:hover {
    border-bottom-color: #1b1b1ad5 !important;
    box-shadow: 0 6px 10px rgb(153 153 153) !important;
    transition: box-shadow 0.25s ease, border-color 0.25s ease !important;
}


[data-bs-theme="dark"] body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
    background: #171c27 !important;
    margin-top: 77px !important;
    bottom: auto !important;
    left: auto !important;
    right: 0 !important;
    top: 0 !important;
}

[data-bs-theme="dark"] .swal2-popup.swal2-toast {
    align-items: center;
    box-shadow: none !important;
    background: #171c27 !important;
    flex-direction: row;
    overflow-y: hidden;
    padding: .625em;
    width: auto;
    color: black !important;
}

[data-bs-theme="dark"] .swal2-timer-progress-bar-container {
    background: #33373c !important;
}

[data-bs-theme="dark"] .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal {
    margin: auto;
    background: #202632 !important;
}

[data-bs-theme="dark"] section#login_div {
    background: none !important;
    padding: -8px !important;
}

[data-bs-theme="dark"] section#register_div {
    background: none !important;
}

[data-bs-theme="dark"] section#register_div footer {
    background: none !important;
}

[data-bs-theme="dark"] button#send-otp-button {
    background: #ff670f !important;
    border: #ffffff !important;
}

[data-bs-theme="dark"] section#login_div footer {
    background: none !important;
}


[data-bs-theme="dark"] .modal-body {
    background: #131829cf !important;
}

[data-bs-theme="dark"] button.btn.btn-soft-dark.btn-sm.rounded-pill {
    color: #1b2031 !important;
}

[data-bs-theme="dark"] button.submit_btn.btn.btn-primary.btn-sm.rounded-pill {
    background: #1f232a !important;
    border: #ffffff !important;
}

[data-bs-theme="dark"] div#error_box {
    background: #3a4761;
}

[data-bs-theme="dark"] input.form-control {
    border-radius: 0px !important;
    background: #202938 !important;
    border: 1px solid #121828 !important;
}

[data-bs-theme="dark"] .btn-primary,
.btn-primary i {
    color: #fff !important;
    --bs-btn-color: #fff !important;
    --bs-btn-bg: #3664ef !important;
    --bs-btn-border-color: #3664ef !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #3664ef !important;
    --bs-btn-hover-border-color: #3664ef !important;
    --bs-btn-focus-shadow-rgb: 92, 140, 229 !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: #3664ef !important;
    --bs-btn-active-border-color: #3664ef !important;
    --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15) !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: #3664ef !important;
    --bs-btn-disabled-border-color: #3664ef !important;
}

[data-bs-theme="dark"] .btn-orange,
.btn-orange i {
    color: #fff !important;
    --bs-btn-color: #ffffff !important;
    --bs-btn-bg: #ff670f !important;
    --bs-btn-border-color: #ff670f !important;
    --bs-btn-hover-color: #ffffff !important;
    --bs-btn-hover-bg: #ff670f !important;
    --bs-btn-hover-border-color: #ff670f !important;
    --bs-btn-focus-shadow-rgb: 218, 128, 113;
    --bs-btn-active-color: #343f52;
    --bs-btn-active-bg: #ff670f !important;
    --bs-btn-active-border-color: #ff670f !important;
    --bs-btn-active-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
    --bs-btn-disabled-color: #343f52;
    --bs-btn-disabled-bg: #ff670f !important;
    --bs-btn-disabled-border-color: #ff670f !important;
}


[data-bs-theme="dark"] .text-orange {
    color: #ff670f !important;
}

[data-bs-theme="dark"] .title-card-css {
    color: #d1d5db !important;
}

[data-bs-theme="dark"] .title-card-css:hover {
    color: #ff670f !important;
}

[data-bs-theme="dark"] .home-products-card:hover {
    border-radius: 12px !important;
    border-bottom-color: #ff670f !important;
    box-shadow: 0 6px 10px #ff670f !important;
    transition: none !important;
    cursor: pointer;
}

@media (max-width: 1024px) {

    [data-bs-theme="dark"] .iziModal-wrap {
        background: #384152;
        height: unset !important;
        margin-top: 100px !important;
    }
}

[data-bs-theme="dark"] a.btn.btn-secondary.btn-xs.hover-orange.d-flex.align-items-center.justify-content-center.gap-1.btn-sm.flex-sm-fill.add_to_cart,
a.btn.btn-secondary.btn-icon.btn-xs.btn-icon-start.rounded.col-md-8 {
    background: #e5e7eb !important;
    color: #000000 !important;
    transition: none !important;
    border: #abb0bd !important;
}

[data-bs-theme="dark"] a.btn.btn-secondary.btn-icon.btn-xs.btn-icon-start.rounded.col-md-8 span {
    color: #000000 !important;
}

[data-bs-theme="dark"] a.btn.btn-secondary.btn-icon.btn-xs.btn-icon-start.rounded.col-md-8:hover span {
    color: #ffffff !important;
}

[data-bs-theme="dark"] a.btn.btn-secondary.btn-xs.hover-orange.d-flex.align-items-center.justify-content-center.gap-1.btn-sm.flex-sm-fill.add_to_cart:hover,
a.btn.btn-secondary.btn-icon.btn-xs.btn-icon-start.rounded.col-md-8:hover {
    background: #ff670f !important;
    border: #ff670f !important;
    color: #ffffff !important;
    transition: none !important;
}


/* Hover on list item */
.mb-3:hover a,
.mb-3:hover a i,
.mb-3:hover a span {
    color: #ff670f !important;
}

[data-bs-theme="dark"] a.text-decoration-none.text-dark,
[data-bs-theme="dark"] h5.card-title.fs-16.fw-semibold.text-dark.mt-1.two-line-title {
    color: #e5e7eb !important;
}

[data-bs-theme="dark"] a.text-decoration-none.text-dark:hover {
    color: #ff670f !important;
}

[data-bs-theme="dark"] p.card-text.text-mute.fs-13.mt-1.mb-1,
[data-bs-theme="dark"] p.card-text.text-mute.fs-13.mt-1.mb-1 p {
    color: #9da3b0 !important;
}

[data-bs-theme="dark"] span.select2-selection.select2-selection--multiple,
[data-bs-theme="dark"] span.select2-selection.select2-selection--single {
    background: #212939 !important;
    border: 2px solid #ff670f;
    border-radius: 6px !important;
}


[data-bs-theme="dark"] .select2-dropdown {
    background-color: #212939;
    border: 1px solid #ff670f;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

[data-bs-theme="dark"] h3.post-title.fs-16.mb-1.w-19.cursor-pointer.two-line-title:hover {
    color: #ff670f !important;
}

[data-bs-theme="dark"] label.form-check-label.text-dark,
label.form-check-label {
    color: white !important;
}

[data-bs-theme="dark"] .mobile-nav-item:hover,
[data-bs-theme="dark"] .mobile-nav-item:hover i,
[data-bs-theme="dark"] .mobile-nav-item:hover span {
    color: #ff670f !important;
}

[data-bs-theme="dark"] .nav-item.nav-link.product-nav-tab.fs-15 {
    color: #ffffff !important;
}

[data-bs-theme="dark"] .th-inner {
    background: #212939 !important;
}

[data-bs-theme="dark"] label.dropdown-item.dropdown-item-marker:hover {
    color: #ff670f !important;
}

[data-bs-theme="dark"] main.flex-grow-1 {
    background: #212939;
}

[data-bs-theme="dark"] .theme-krajee-svg .filled-stars .krajee-icon-star {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OC45NCA0Ny45NCI+PHBhdGggZmlsbD0iI0YwNzIwMCIgZD0iTTI2LjI4NSAyLjQ4Nmw1LjQwNyAxMC45NTZjLjM3Ni43NjIgMS4xMDMgMS4yOSAxLjk0NCAxLjQxMmwxMi4wOTEgMS43NTdjMi4xMTguMzA4IDIuOTYzIDIuOTEgMS40MzEgNC40MDNsLTguNzQ5IDguNTI4Yy0uNjA4LjU5My0uODg2IDEuNDQ4LS43NDIgMi4yODVsMi4wNjUgMTIuMDQyYy4zNjIgMi4xMDktMS44NTIgMy43MTctMy43NDYgMi43MjJsLTEwLjgxNC01LjY4NWMtLjc1Mi0uMzk1LTEuNjUxLS4zOTUtMi40MDMgMGwtMTAuODE0IDUuNjg1Yy0xLjg5NC45OTYtNC4xMDgtLjYxMy0zLjc0Ni0yLjcyMmwyLjA2NS0xMi4wNDJjLjE0NC0uODM3LS4xMzQtMS42OTItLjc0Mi0yLjI4NWwtOC43NDktOC41MjhjLTEuNTMyLTEuNDk0LS42ODctNC4wOTYgMS40MzEtNC40MDNsMTIuMDkxLTEuNzU3Yy44NDEtLjEyMiAxLjU2OC0uNjUgMS45NDQtMS40MTJsNS40MDctMTAuOTU2Yy45NDctMS45MTkgMy42ODMtMS45MTkgNC42MyAweiIvPjwvc3ZnPg==") !important;
}

[data-bs-theme="dark"] input.form-control,
textarea.form-control {
    border-radius: 10px !important;
}

/* [data-bs-theme="dark"] button.btn-close:before,
[data-bs-theme="dark"] .icon-close,
[data-bs-theme="dark"] #quick-view .iziModal-content .icon-close button.icon-close::before {
    background: #303030 !important;
    color: #ffffff !important;
    border: #ffffff !important;
} */

[data-bs-theme="dark"] span.select2-selection.select2-selection--single,
[data-bs-theme="dark"] span.select2-selection.select2-selection--single {
    background: #22293a !important;
    border: 2px solid #22293a !important;
    border-radius: 6px !important;
}

[data-bs-theme="dark"] .danger-button-css,
[data-bs-theme="dark"] .address-button-css {
    background: #e5e7eb !important;
    color: #000000 !important;
    transition: none !important;
    border: #e5e7eb !important;
}

[data-bs-theme="dark"] .danger-button-css:hover,
[data-bs-theme="dark"] .address-button-css:hover {
    background: #ca303f !important;
    color: #fff !important;
    border: #ca303f !important;
}

[data-bs-theme="dark"] .danger-button-css {
    height: 34px !important;
}

[data-bs-theme="dark"] .danger-button-css:hover {
    height: 34px !important;
}

[data-bs-theme="dark"] .save-button-css {
    background: #4b79e3 !important;
    border: #4b79e3 !important;
    color: white !important;
}

[data-bs-theme="dark"] i.edit-icon.uil.uil-edit.fs-20.text-gray:hover {
    border: #4b79e3 !important;
    color: #4b79e3 !important;
}
[data-bs-theme="dark"] i.edit-icon.uil.uil-edit.fs-20.text-gray {
    border: #e5e7eb !important;
    color: #e5e7eb !important;
}

[data-bs-theme="dark"] i.fa.fa-close.fs-18 {
    color: white !important;
}

[data-bs-theme="dark"] #modal-custom .iziModal-content .icon-close,
[data-bs-theme="dark"] #quick-view .iziModal-content .icon-close {
    background: none !important;
    color: #fff !important;
    border: #ca303f !important;
    margin-bottom: 10px;
    position: absolute;
    right: -8px;
    z-index: 1000;
    top: -8px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 0;
    cursor: pointer;
}



[data-bs-theme="dark"] #modal-custom .iziModal-content .icon-close:hover,
[data-bs-theme="dark"] #quick-view .iziModal-content .icon-close:hover {
    background: none !important;
    color: #fff !important;
    border: #ca303f !important;
    margin-bottom: 10px;
    position: absolute;
    right: -8px;
    z-index: 1000;
    top: -8px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 0;
    cursor: pointer;
}

[data-bs-theme="dark"] i.fa.fa-close.fs-18:hover {
    color: #ca303f !important;
}

[data-bs-theme="dark"] .row.p-4 {
    background: #212939 !important;
    border-radius: 12px !important;
}

[data-bs-theme="dark"] .iziModal {
    background-color: #212939 !important;
}

div#quick-view {
    background: none !important;
}

@media (max-width: 1024px) {
    [data-bs-theme="dark"] .iziModal {
        background-color: #212939 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    }

    [data-bs-theme="dark"] div#quick-view {
        margin: 10px auto !important;
    }
}

[data-bs-theme="dark"] select#product_sort_by {
    display: block;
    width: 100%;
    padding: 0px !important;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.7;

    color: #ff670f !important;
    background-color: transparent !important;
    /* ORANGE SVG DROPDOWN ICON */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23F07200' d='M22.667 12.227c-0.241-0.24-0.573-0.388-0.94-0.388s-0.699 0.148-0.94 0.388l-4.787 4.72-4.72-4.72c-0.241-0.24-0.573-0.388-0.94-0.388s-0.699 0.148-0.94 0.388c-0.244 0.242-0.394 0.577-0.394 0.947s0.151 0.705 0.394 0.947l5.653 5.653c0.242 0.244 0.577 0.394 0.947 0.394s0.705-0.151 0.947-0.394l5.72-5.653c0.244-0.242 0.394-0.577 0.394-0.947s-0.151-0.705-0.394-0.947z'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 18px 18px;

    border: none !important;
    border-radius: 0.4rem;
    box-shadow: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

}

[data-bs-theme="dark"] .form-select option {
    color: #ffffff !important;
    background-color: #212939 !important;
    padding: 12px !important;
    margin: 48px !important;
}

[data-bs-theme="dark"] .form-select option:checked {
    background-color: #ff670f !important;
    color: #fff !important;
}

[data-bs-theme="dark"] h5.card-title.fs-16.fw-semibold.text-dark.mt-1.two-line-title:hover {
    color: #ff670f !important;
}

[data-bs-theme="dark"] img.rounded-circle.border:hover {
    border: 3px #ff670f solid !important;
    width: 40px !important;
    height: 40px;
    object-fit: cover;
}

[data-bs-theme="dark"] .title-cart-css {
    color: #ffffff !important;
    text-transform: none !important;
}

[data-bs-theme="dark"] .title-cart-css:hover {
    color: #ffffff !important;
    text-transform: none !important;
}

[data-bs-theme="dark"] input#main-search-input {
    background: #202938 !important;
}


[data-bs-theme="dark"] button.follow-btn span {
    color: #000000 !important;
}

[data-bs-theme="dark"] button.follow-btn:hover span {
    color: #fff !important;
}

[data-bs-theme="dark"] .avatar-group .avatar img,
[data-bs-theme="dark"] .avatar-group .avatar-count {
    width: 30px !important;
    height: 30px !important;
    border: 2px solid #010e22 !important;
    object-fit: cover;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

[data-bs-theme="dark"] .avatar-group .avatar-count {
    border-radius: 50% !important;
    background-color: #384152 !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    margin-left: -10px;
    border: 2px solid #252e3e !important;
}

[data-bs-theme="dark"] .avatar-group .avatar:hover img {
    border-color: #ff670f !important;
}

[data-bs-theme="dark"] button.btn.btn-xs.w-100.rounded-1.d-flex.align-items-center.justify-content-center.gap-1.fs-12.follow-btn.btn-orange.text-white span,
[data-bs-theme="dark"] button.btn.btn-xs.rounded-1.btn-orange.text-white.follow-btn span {
    color: rgb(255, 255, 255) !important;
}

[data-bs-theme="dark"] .following-card-page-css {
    background: #202938 !important;
}


[data-bs-theme="dark"] .hashtag-pill {
    display: inline-flex;
    align-items: center;
    background-color: #4c5564;
    padding: 3px 8px;
    border-radius: 129px !important;
    text-decoration: none;
    color: #ffffff !important;
    transition: none !important;
    white-space: nowrap;
    border: 1px solid transparent;
}


[data-bs-theme="dark"] a.hashtag-pill.text-decoration-none span {
    text-transform: none !important;
    color: #ffffff !important;
    font-weight: 400;
}


[data-bs-theme="dark"] .hashtag-pill:hover {
    background-color: #ff670f;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-color: #ff670f;
}

[data-bs-theme="dark"] #followSuggestionsModal .modal-footer {
    border-top: 1px solid #384152;
    padding: 20px;
    background: #384152;
    justify-content: center;
    gap: 15px;
}

[data-bs-theme="dark"] .follow-item-badge {
    display: flex;
    align-items: center;
    background: #384152 !important;
    border-radius: 50px;
    padding: 1px 14px 4px 4px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    user-select: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] span#select2-deliverable_zipcode_type-container {
    margin-top: 7px;
}


[data-bs-theme="dark"] .follow-item-badge.checked .follow-check-icon {
    display: inline-flex !important;
}

[data-bs-theme="dark"] .follow-item-badge.checked {
    background: rgb(255 113 0 / 25%) !important;
    /* transparent orange */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* for Safari */

    border: 1px solid rgba(255, 111, 0, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

    color: #fff;
}

[data-bs-theme="dark"] .follow-item-badge .follow-check-icon {
    display: none;
    color: #ff6f00 !important;
    font-size: 12px !important;
    margin-left: 8px !important;
    background: white !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

[data-bs-theme="dark"] a#googleLogin span {
    color: #000000 !important;
}

[data-bs-theme="dark"] a#googleLogin:hover span {
    color: #ffffff !important;
}

[data-bs-theme="dark"] a.dropdown-item.follow-btn {
    cursor: pointer !important;
    color: #ffffff !important;
    background: none !important;
}

[data-bs-theme="dark"] a.dropdown-item.follow-btn:hover {
    cursor: pointer !important;
    color: #ec0000 !important;
    background: none !important;
}

[data-bs-theme="dark"] span.follow-css {
    color: #000000 !important;
}

[data-bs-theme="dark"] span.follow-css:hover {
    color: #ffffff !important;
}

[data-bs-theme="dark"] span.d-none.d-md-inline.search-add-to-cart {
    color: #000000 !important;
}

/* when button hovered */
[data-bs-theme="dark"] .hover-orange:hover span.d-none.d-md-inline {
    color: #ffffff !important;
}

/* =============================================
   Grid View Button - Theme-aware Images
   ============================================= */

/* Light theme (default): show light image, hide dark image */
.theme-img-light {
    display: inline-block;
}

.theme-img-dark {
    display: none;
}

/* Dark theme: show dark image, hide light image */
[data-bs-theme="dark"] .theme-img-light,
body.dark-theme .theme-img-light {
    display: none !important;
}

[data-bs-theme="dark"] .theme-img-dark,
body.dark-theme .theme-img-dark {
    display: inline-block !important;
    opacity: 1 !important;
}

[data-bs-theme="dark"] button.btn.btn-xs.rounded-1.suggestion-follow-button-css.btn-gray.text-dark.hover-orange.toggle-follow.btn-follow:hover span {
    color: white !important;
}

[data-bs-theme="dark"] button.btn.btn-xs.rounded-1.suggestion-follow-button-css.btn-gray.text-dark.hover-orange.toggle-follow.btn-following {
    font-weight: 450;
}

[data-bs-theme="dark"] a.btn.btn-xs.btn-secondary.rounded-1 span {
    color: #000000 !important;
}

[data-bs-theme="dark"] a.btn.btn-xs.btn-secondary.rounded-1:hover span {
    color: #ffffff !important;
}

[data-bs-theme="dark"] span.fs-13.text-transform-none.view-more:hover {
    color: #ff670f !important;
}

[data-bs-theme="dark"] .ellipsis-css-following-page {
    color: #e0eff5 !important;
}


[data-bs-theme="dark"] a.page-link i,
[data-bs-theme="dark"] a.page-link,
[data-bs-theme="dark"] .product-line-price.align-self-center.px-1.amount.text-orange {
    color: #e0eff5 !important;
}

[data-bs-theme="dark"] a.page-link:hover i,
a.page-link:hover {
    color: #ffffff !important;
}

[data-bs-theme="dark"] .ellipsis-css-following-page:hover {
    color: #ff670f !important;
}


[data-bs-theme="dark"] .brand_image_div:hover h6 {
    cursor: pointer !important;
    color: #ff670f !important;
}

[data-bs-theme="dark"] .brand_image_div:hover img {
    border: 2px solid #ff670f !important;
}

[data-bs-theme="dark"] label.form-check-label strong.terms-and-condition-css {
    font-weight: 400;
    color: #dcdcdc !important;
}

[data-bs-theme="dark"] span.fs-13.text-transform-none:hover {
    color: #f56500 !important;
}

[data-bs-theme="dark"] .text-dark-gray,
a.btn.btn-xs.btn-secondary.rounded-1.px-4.mt-3.me-1:hover {
    color: #ffffff !important;
}

[data-bs-theme="dark"] section.wrapper.bg-none.mt-5.order-details-css {
    background: none !important;
}
[data-bs-theme="dark"] button.btn.btn-link.text-dark.text-decoration-none.fw-semibold.p-0.border-0.fs-13.filter-view-more-btn span
{
    color:#ffffff !important;
}

[data-bs-theme="dark"]  button.btn.btn-link.text-dark.text-decoration-none.fw-semibold.p-0.border-0.fs-13.filter-view-more-btn:hover span
{
    color:#f06720 !important;
}

[data-bs-theme="dark"] .glightbox-clean .gclose:after {
  background: none !important;
  color: #e5e7eb !important;
}

[data-bs-theme="dark"]  .glightbox-clean .gclose:hover:after {
  background: none !important;
  color: #ca303f !important;
}