/* genel css */
:root {
    --color-heading: #2c3e50;
    --color-price-bg: #f2f2f2;
    --icon-size: 1.25rem;
    --icon-size-xs: 1rem;
    --icon-size-sm: 1.125rem;
    --icon-size-md: 1.375rem;
    --icon-size-lg: 1.5rem;
    --icon-size-xl: 2rem;
    --bs-paper-bg: #ffffff;
     --bs-bg-label-tint-amount: 84%;
    --bs-border-subtle-amount: 61%;
    --bs-primary: #7367f0;
    --bs-secondary: #808390;
    --bs-success: #28c76f;
    --bs-info: #00bad1;
    --bs-warning: #ff9f43;
    --bs-danger: #ff4c51;
    --bs-light: #dfdfe3;
    --bs-dark: #2f3349;
    --bs-gray: #97959e;
    --bs-primary-rgb: 115, 103, 240;
    --bs-secondary-rgb: 128, 131, 144;
    --bs-success-rgb: 40, 199, 111;
    --bs-info-rgb: 0, 186, 209;
    --bs-warning-rgb: 255, 159, 67;
    --bs-danger-rgb: 255, 76, 81;
    --bs-light-rgb: 223, 223, 227;
    --bs-dark-rgb: 47, 51, 73;
    --bs-gray-rgb: 151, 149, 158;
    --bs-primary-contrast: #ffffff;
    --bs-secondary-contrast: #ffffff;
    --bs-success-contrast: #ffffff;
    --bs-info-contrast: #ffffff;
    --bs-warning-contrast: #000000;
    --bs-danger-contrast: #ffffff;
    --bs-light-contrast: #000000;
    --bs-dark-contrast: #ffffff;
    --bs-gray-contrast: #ffffff;
}

@font-face {
    font-family: "futura-pt-book";
    src: url("/static/frontend/assets/fonts/futura-pt-book.woff2") format("woff2");
    font-display: swap;
}

body {
    font-family: "futura-pt-book", sans-serif !important;
    font-size: 1rem;
}

.main-wrapper {
    padding-top: 70px;
}

.navbar {
    background-color: white !important;
}

.text-heading {
    color: var(--color-heading);
}

.bg-price {
    background-color: var(--color-price-bg) !important;
}

.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.icon-base {
    font-size: var(--icon-size);
    line-height: 1;
    vertical-align: middle;
}

.icon-xs {
    font-size: var(--icon-size-xs);
}

.icon-sm {
    font-size: var(--icon-size-sm);
}

.icon-md {
    font-size: var(--icon-size-md);
}

.icon-lg {
    font-size: var(--icon-size-lg);
}

.icon-xl {
    font-size: var(--icon-size-xl);
}

/* Extra-small mobiles */
@media (max-width: 576px) {

    /* Navbar Menü Küçük Boyut */
    .navbar-nav .nav-link {
        font-size: 1rem;
    }
}

/* Small devices */
@media (min-width: 577px) and (max-width: 768px) {

    /* Navbar Menü Orta Boyut */
    .navbar-nav .nav-link {
        font-size: 1rem;
    }
}

/* Tablet devices */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Navbar Menü Orta Boyut */
    .navbar-nav .nav-link {
        font-size: 1rem;
    }
}

/* Desktop screens */
@media (min-width: 1025px) {

    /* Navbar Menü Büyük Boyut */
    .navbar-collapse,
    .navbar-expand-lg .navbar-nav {
        font-size: 22px !important;
        font-weight: bold;
    }

    .navbar-expand-lg .navbar-nav .nav-link.welcome {
        color: white !important;
        background-color: #e10613;
        border-radius: 15px;
        padding: 8px !important;
    }
}

.btn-whatsapp-fixed {
    position: fixed;
    bottom: 60px;
    right: 15px;
    z-index: 9;
}

.footer-links {
    list-style: none;
    float: right;
    margin: 0;
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: #fff;
}

.nav-item .dropdown-menu {
    padding: 0;
}

.nav-item .dropdown-menu .dropdown-item {
    padding: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.nav-item .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

.dropdown-menu {
    margin-bottom: 10px;
}

@media (min-width: 1024px) {
    #navbar-search-input {
        border-radius: 70px;
        min-width: 400px;
    }
}

.dropdown-toggle::after {
    font-family: "FontAwesome";
    content: "\f078";
    border: none;
    vertical-align: baseline;
    margin-left: auto;
    font-size: 15px;
}

/* products.css */

.view-toggle-container .btn-group .btn {
    border-color: #dee2e6;
}

.view-toggle-container .btn-group .btn.active {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

/* Grid card styles */
.product-card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Price section styling */

.product-card .card-quantity-controls {
    flex-shrink: 0;
    display: flex;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
}

.product-card .card-quantity-btn {
    width: 28px;
    height: 32px;
    padding: 0;
    border: none;
    background: #f8f9fa;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

.product-card .card-quantity-btn:hover {
    background: #e9ecef;
}

.product-card .card-quantity-input {
    width: 45px;
    height: 32px;
    border: none;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-card .card-quantity-input::-webkit-outer-spin-button,
.product-card .card-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-card .card-quantity-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.product-card .card-quantity-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    border-color: #007bff;
}

/* Minimal styling for input highlights */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.25);
}

.content-wrapper {
    padding-left: 40px;
    padding-right: 50px;
}

/* Category Navigation - Full Width Navbar Style */
.category-navigation-wrapper {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    width: 100%;
    margin-bottom: 0;
}

.category-navbar {
    white-space: nowrap;
    padding: 0;
    background-color: #ffffff;

    /* Custom scrollbar */
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #6c757d transparent;
}

.category-navbar::-webkit-scrollbar {
    height: 3px;
}

.category-navbar::-webkit-scrollbar-track {
    background: transparent;
}

.category-navbar::-webkit-scrollbar-thumb {
    background: #6c757d;
    border-radius: 3px;
}

.category-navbar::-webkit-scrollbar-thumb:hover {
    background: #495057;
}

.category-items {
    display: flex;
    align-items: center;
    width: 100%;
    height: 55px;
    padding: 0 15px;
    margin: 0;
    justify-content: space-between;
}

.category-item {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    text-decoration: none;
    color: #495057;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-radius: 0;
    margin: 0;
    min-height: 55px;
    position: relative;
    border-bottom: 3px solid transparent;
    flex: 1;
    text-align: center;
}

.category-item:hover {
    background-color: #f8f9fa;
    color: #212529;
    text-decoration: none;
    border-bottom-color: #e10613;
}

.category-item:focus {
    outline: none;
    background-color: #f8f9fa;
    box-shadow: inset 0 0 0 2px rgba(225, 6, 19, 0.25);
}

.category-item.active {
    background-color: #f8f9fa;
    color: #e10613;
    border-bottom-color: #e10613;
    font-weight: 600;
}

.category-text {
    display: inline-block;
    line-height: 1.3;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    width: 100%;
}

.category-divider {
    width: 1px;
    height: 25px;
    background-color: #dee2e6;
    margin: 0;
    flex-shrink: 0;
    opacity: 0.8;
}

/* Category Dropdown (Sub-menus) */
.category-item-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.category-item.has-children {
    gap: 5px;
}

.category-arrow {
    font-size: 9px;
    transition: transform 0.2s ease;
}

.category-item-wrapper:hover .category-arrow {
    transform: rotate(180deg);
}

.category-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 2px solid #e10613;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 0 0 4px 4px;
}

.category-item-wrapper:hover .category-dropdown {
    display: block;
}

.category-dropdown-item {
    display: block;
    padding: 9px 16px;
    color: #495057;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}

.category-dropdown-item:hover {
    background-color: #f8f9fa;
    color: #e10613;
    text-decoration: none;
}

/* Smooth scrolling */

/* Loading state */
.category-navbar.loading {
    opacity: 0.7;
    pointer-events: none;
}

.currency-display-section {
    padding: 12px 0;
    margin-bottom: 0;
}

.currency-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.currency-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.currency-label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    margin-right: 10px;
}

.currency-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.currency-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.currency-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.currency-icon {
    font-weight: 600;
    font-size: 14px;
    color: #28a745;
    width: 16px;
    text-align: center;
}

.currency-code {
    font-weight: 600;
    color: #495057;
    font-size: 13px;
    min-width: 30px;
}

.currency-value {
    font-weight: 700;
    color: #007bff;
    font-size: 14px;
}

.currency-value .tl-symbol {
    font-family: Arial, "Segoe UI", sans-serif !important;
    font-weight: 700;
    color: #007bff;
}

.currency-divider {
    width: 1px;
    height: 20px;
    background-color: #dee2e6;
    opacity: 0.7;
}

/* Filter Sidebar Styles */
.filters-sidebar {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    position: sticky;
    top: 20px;
    height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    margin-right: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;

    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #6c757d #f1f3f4;
}

/* Webkit scrollbar styles */
.filters-sidebar::-webkit-scrollbar {
    width: 8px;
}

.filters-sidebar::-webkit-scrollbar-track {
    background: #f1f3f4;
    border-radius: 10px;
    margin: 5px 0;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6c757d 0%, #495057 100%);
    border-radius: 10px;
    border: 1px solid #f1f3f4;
    transition: background 0.3s ease;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #495057 0%, #343a40 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.filters-sidebar::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #343a40 0%, #212529 100%);
}

/* Scroll state visual feedback */
.filters-sidebar.scrolled-down::before {
    opacity: 0.7;
}

.filters-sidebar.scrolled-up::after {
    opacity: 0.7;
}

/* Scroll fade effect */
.filters-sidebar::before {
    content: "";
    position: sticky;
    top: 0;
    height: 20px;
    background: linear-gradient(to bottom,
            #f8f9fa 0%,
            rgba(248, 249, 250, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.filters-sidebar::after {
    content: "";
    position: sticky;
    bottom: 0;
    height: 20px;
    background: linear-gradient(to top,
            #f8f9fa 0%,
            rgba(248, 249, 250, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.filter-title {
    color: #495057;
    border-bottom: 2px solid #007bff;
    padding-bottom: 6px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* Advanced Filters Accordion Styles */
#advancedFiltersAccordion .card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 0;
    overflow: hidden;
}

#advancedFiltersAccordion .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0;
}

#advancedFiltersAccordion .btn-link {
    color: #495057;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 16px;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#advancedFiltersAccordion .btn-link:hover {
    color: #1976d2;
    text-decoration: none;
}

#advancedFiltersAccordion .btn-link:focus {
    text-decoration: none;
    box-shadow: none;
}

#advancedFiltersAccordion .btn-link:not(.collapsed) {
    background-color: #e3f2fd;
    color: #1976d2;
}

#advancedFiltersAccordion .card-body {
    padding: 16px;
    background-color: #fff;
}

#advancedFilterCount {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
}

.accordion-toggle-icon {
    transition: transform 0.2s ease-in-out;
    transform: rotate(-90deg);
}

#advancedFiltersAccordion .btn-link:not(.collapsed) .accordion-toggle-icon {
    transform: rotate(0deg);
}

/* Advanced technical filters */
.accordion-filter {
    border: 1px solid #e2e6ea;
    border-radius: 6px;
    background-color: #fff;
    overflow: hidden;
}

.accordion-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.accordion-filter-header:hover {
    background-color: #edf2f7;
}

.accordion-filter-content {
    border-top: 1px solid #e9ecef;
}

.filter-header-text {
    font-weight: 600;
    color: #495057;
}

.accordion-arrow {
    color: #6c757d;
    transition: transform 0.2s ease;
}

.accordion-filter-header[aria-expanded="true"] .accordion-arrow {
    transform: rotate(180deg);
}

.filter-content-inner {
    padding: 10px;
}

.filter-search-wrapper {
    position: relative;
}

.filter-search-input {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.2;
    padding: 8px 30px 8px 32px;
}

.filter-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 12px;
}

.filter-search-clear {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #6c757d;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filter-search-clear:hover {
    background-color: #e9ecef;
    color: #495057;
}

.filter-options-wrapper {
    max-height: 260px;
    overflow-y: auto;
}

/* Filter Options */
.filter-option {
    display: flex;
    align-items: center;
    padding: 8px 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    margin-bottom: 2px;
    user-select: none;
}

.filter-option:hover {
    background-color: #f8f9fa;
}

.filter-option.hidden {
    display: none;
}

.filter-option-count {
    margin-left: auto;
    color: #6c757d;
    font-size: 12px;
}

.filter-option-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.filter-option-checkmark {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #ced4da;
    border-radius: 3px;
    margin-right: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.filter-option-checkbox:checked+.filter-option-checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

.filter-option-checkbox:checked+.filter-option-checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Show More/Less Button */
.stock-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.stock-filter-text {
    color: #495057;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.2;
}

.stock-filter-hitarea {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 48px;
    border-radius: 6px;
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.stock-filter-input {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.stock-filter-indicator {
    width: 30px;
    height: 30px;
    border: 3px solid #34a853;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.stock-filter-indicator .fa-check {
    color: #ffffff;
    font-size: 0.95rem;
    opacity: 0;
    transform: scale(0.75);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}

.stock-filter-input:checked+.stock-filter-indicator {
    background-color: #34a853;
    border-color: #34a853;
}

.stock-filter-input:checked+.stock-filter-indicator .fa-check {
    opacity: 1;
    transform: scale(1);
}

.stock-filter-hitarea:focus-within {
    background-color: #eaf3ff;
    box-shadow: inset 0 0 0 3px #a9c8ff;
}

/* Form elements */
.filters-sidebar .form-control:focus,
.filters-sidebar .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.filters-sidebar input[type="number"] {
    font-size: 14px !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    border: 1px solid #ced4da !important;
    line-height: 1.4 !important;
}

.filters-sidebar input[type="number"]:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15) !important;
    outline: none !important;
}

/* Radio button styling */
.form-check-input[type="radio"]:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.filter-actions {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    margin-top: 15px;
    position: relative;
}

.filter-actions #clearFilters {
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.filter-actions #clearFilters.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

.filter-actions #clearFilters.hide {
    opacity: 0;
    transform: translateY(10px);
}

.filter-actions .btn {
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    padding: 10px 16px;
}

.filter-actions .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.filter-actions .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
}

.filter-actions .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.filter-actions .btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    transform: translateY(-1px);
}

/* Form Controls - Compact */
.filters-sidebar .form-select,
.filters-sidebar .form-control {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    line-height: 1.4;
}

.filters-sidebar .form-check {
    margin-bottom: 0;
}

.filters-sidebar .form-check-input {
    margin-top: 3px;
    transform: scale(1.1);
}

.filters-sidebar .form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.filters-sidebar .form-check-label {
    font-size: 14px;
    margin-left: 6px;
    line-height: 1.4;
}

.filters-sidebar .btn-sm {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Select2 Override */
.filters-sidebar .select2-container {
    font-size: 12px !important;
}

.filters-sidebar .select2-container.is-invalid .select2-selection {
    border-color: #dc3545 !important;
}

.filters-sidebar .select2-container--default .select2-selection--single {
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    min-height: 32px !important;
    padding: 3px 6px !important;
    font-size: 12px !important;
    background-color: #fff !important;
    display: flex !important;
    align-items: center !important;
}

.filters-sidebar .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057 !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.filters-sidebar .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d !important;
    font-size: 12px !important;
}

/* Arrow and Clear Button Positioning */
.filters-sidebar .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 16px !important;
    height: 16px !important;
}

.filters-sidebar .select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute !important;
    right: 28px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #6c757d !important;
    font-size: 18px !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    z-index: 1 !important;
}

.filters-sidebar .select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #495057 !important;
}

/* Arrow icon styling */
.filters-sidebar .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6c757d transparent transparent transparent !important;
    border-style: solid !important;
    border-width: 5px 4px 0 4px !important;
    height: 0 !important;
    left: 50% !important;
    margin-left: -4px !important;
    margin-top: -2px !important;
    position: absolute !important;
    top: 50% !important;
    width: 0 !important;
}

/* Arror color for focus state */
.filters-sidebar .select2-container--default.select2-container--focus .select2-selection--single .select2-selection__arrow b {
    border-top-color: #007bff !important;
}

/* Focus state */
.filters-sidebar .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15) !important;
}

.filters-sidebar .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 50px !important;
}

/* Select2 Customization - Compact */
.filters-sidebar .select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    min-height: 32px !important;
    padding: 3px 6px !important;
    font-size: 12px !important;
    background-color: #fff !important;
}

.filters-sidebar.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 !important;
    margin: 0 !important;
}

.filters-sidebar .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #007bff !important;
    border: 1px solid #007bff !important;
    border-radius: 3px !important;
    color: white !important;
    padding: 2px 6px !important;
    margin: 1px 2px 1px 0 !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    max-width: calc(100% - 25px) !important;
}

.filters-sidebar .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-right: 4px !important;
    margin-left: 0 !important;
    padding: 0 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    float: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    border: none !important;
    background: none !important;
}

.filters-sidebar .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 2px !important;
}

/* Choice text styling */
.filters-sidebar .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    color: white !important;
    font-size: 15px !important;
    padding-left: 0 !important;
    line-height: 1.2 !important;
}

/* Dropdown styling */
.filters-sidebar .select2-container--default .select2-dropdown {
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    font-size: 12px !important;
}

.filters-sidebar .select2-container--default .select2-results__option {
    padding: 6px 10px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
}

.filters-sidebar .select2-container--default .select2-results__option--highlighted {
    background-color: #007bff !important;
    color: white !important;
}

/* Search input in dropdown */
.filters-sidebar .select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 4px 8px !important;
    font-size: 12px !important;
    border: 1px solid #ced4da !important;
    border-radius: 3px !important;
}

/* Clear button styling */
.filters-sidebar .select2-container--default .select2-selection__clear {
    color: #6c757d !important;
    font-size: 18px !important;
    margin-right: 8px !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.filters-sidebar .select2-container--default .select2-selection__clear:hover {
    color: #495057 !important;
}

/* Placeholder styling */
.filters-sidebar .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #6c757d !important;
    font-size: 12px !important;
    margin: 4px 2px !important;
    line-height: 1.3 !important;
}

/* Focus state */
.filters-sidebar .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15) !important;
}

/* Select2 Customization */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    min-height: 38px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    border-radius: 4px;
    padding: 2px 8px;
    margin: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 6px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: white;
}

.select2-container.is-invalid .select2-selection {
    border-color: #dc3545;
}

.select2-container.is-invalid .select2-selection:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Table Responsive */
.table-responsive {
    max-height: calc(100vh - 50px);
    overflow: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.table th,
.table td {
    vertical-align: middle !important;
}

.table td {
    padding: 0.2rem 0.4rem !important;
    align-items: center;
}

.table>tbody>tr.product-row:hover {
    background-color: #c9deff !important;
}

#products-table>tbody>tr:nth-child(odd of .product-row) {
    background-color: #f8f9fa;
}

#products-table .product-detail-row td {
    padding: 0 !important;
    border: 0 !important;
}

.price-cell .price-discount span.discount-rate {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.break-text {
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.product-cart-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.product-qty-input {
    width: 70px;
    max-width: 70px;
    min-width: 70px;
    height: 40px;
    flex: 0 0 70px;
    font-size: 14px;
    line-height: 1.2;
    padding: 0.375rem 0.5rem;
}

.product-cart-btn {
    width: 42px;
    min-width: 42px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#products-page-root #grid-view-container #products-grid-container {
    align-items: stretch;
}

#products-page-root #grid-view-container #products-grid-container .product-grid-col {
    position: relative;
    display: flex;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

#products-page-root #grid-view-container #products-grid-container .product-grid-col>.card {
    width: 100%;
}

#products-page-root #grid-view-container #products-grid-container .product-grid-col .product-card {
    overflow: hidden;
}

#products-page-root #grid-view-container #products-grid-container .product-grid-col .product-card .card-body {
    position: relative;
    z-index: 1;
    background: #fff;
}

#products-page-root #grid-view-container #products-grid-container .product-grid-image-wrap {
    overflow: hidden;
    background-color: #fff;
    border-bottom: 1px solid #e9edf3;
}

@media (min-width: 576px) {
    #products-page-root #grid-view-container #products-grid-container .product-grid-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    #products-page-root #grid-view-container #products-grid-container .product-grid-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 1200px) {
    #products-page-root #grid-view-container #products-grid-container.grid--4 .product-grid-col {
        flex: 0 0 25%;
        max-width: 25%;
    }

    #products-page-root #grid-view-container #products-grid-container.grid--5 .product-grid-col {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.product-grid-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background-color: #fff;
    padding: 18px;
    transition: transform 0.35s ease;
    transform-origin: center center;
}

#products-page-root #grid-view-container #products-grid-container .product-grid-col .product-card:hover .product-grid-image {
    transform: scale(1.06);
}

.products-grid-title {
    font-size: 1rem;
    line-height: 1.35;
    min-height: 2.7em;
}

.product-grid-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-grid-stock-code {
    font-size: 0.95rem;
    color: #8393a6;
    line-height: 1.2;
}

.product-grid-discount {
    border: 1px solid #e5e9ef;
    border-radius: 4px;
    background: #fff;
    min-width: 62px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #5f6b7a;
    padding: 0 10px;
}

.product-grid-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #23b04a;
    background: #f8fbff;
    border-radius: 4px;
    padding: 10px 12px;
}

.product-grid-list-price {
    font-size: 1rem;
    color: #76879c;
    text-decoration: line-through;
    line-height: 1;
}

.product-grid-net-price {
    font-size: 1.1rem;
    color: #23b04a;
    font-weight: 700;
    line-height: 1;
}

.product-grid-price-row--request {
    border-left: none;
    justify-content: center;
}

.product-grid-actions-row {
    display: flex;
    align-items: stretch;
    gap: 6px;
}

.product-grid-actions-row .product-cart-btn {
    width: auto;
    font-size: 0.8rem;
    height: 34px;
    flex: 1 1 auto;
    padding: 0 10px;
    font-weight: 600;
}

.product-grid-actions-row .product-grid-expand-btn {
    width: 44px;
    min-width: 44px;
    height: 34px;
    flex: 0 0 44px;
    border: 1px solid #ced7e2 !important;
    background: #fff !important;
    border-radius: 4px;
}

.product-grid-actions-row .product-grid-expand-btn:hover {
    background: #f4f7fb !important;
    transform: none;
}

.product-grid-actions-row .product-grid-expand-btn:focus {
    box-shadow: inset 0 0 0 2px rgba(63, 77, 92, 0.15) !important;
}

.product-grid-qty-controls {
    flex: 0 0 auto;
    border-color: #d6dde8;
    border-radius: 4px;
    overflow: hidden;
}

.product-grid-qty-controls .product-grid-qty-btn {
    width: 30px;
    height: 34px;
    background: #f8fafc;
    color: #6f7c8f;
    font-size: 18px;
    line-height: 1;
    border: none;
    border-right: 1px solid #d6dde8;
    padding: 0;
}

.product-grid-qty-controls .product-grid-qty-btn:last-child {
    border-right: none;
    border-left: 1px solid #d6dde8;
}

.product-grid-qty-controls .product-qty-input {
    width: 42px;
    min-width: 42px;
    max-width: 42px;
    height: 34px;
    border: none;
    font-size: 14px;
    color: #506074;
    padding: 0;
}

.product-grid-qty-controls .product-qty-input:focus {
    box-shadow: none;
}

.grid-inline-detail-col {
    width: 100%;
}

.image-column {
    width: 120px;
}

.pagination .page-item .page-link {
    color: #3c3c3b;
}

/* Expand button styling */
.expand-btn {
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    padding: 8px !important;
    transition: all 0.2s ease;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: right center;
}

.expand-btn:hover {
    background-color: #f8f9fa !important;
    transform: scale(1.05);
}

.expand-btn:focus {
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
    outline: none !important;
}

.expand-btn:active {
    transform: scale(0.95);
}

.expand-icon,
.variant-expand-icon {
    font-size: 14px !important;
    color: #000000 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    line-height: 1;
}

.expand-btn:hover .expand-icon {
    color: #333333 !important;
    transform: scale(1.1);
}

.expand-btn[aria-expanded="true"] .expand-icon {
    transform: rotate(180deg);
}

/* Product detail container */
.product-detail-container {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 25px;
    margin: 0;
    width: 100%;
    min-height: 300px;
}

.product-detail-left {
    padding-right: 25px;
}

.product-name-link:hover .product-name,
.variant-name-link:hover .variant-name {
    color: #007bff !important;
    text-decoration: underline;
}

.product-name-link:focus,
.variant-name-link:focus {
    outline: 2px solid rgba(0, 123, 255, 0.25);
    outline-offset: 2px;
}

.product-specs-section {
    padding-right: 20px;
}

.product-detail-image {
    transition: opacity 0.3s ease;
}

.product-detail-image.loading {
    opacity: 0.7;
}

.product-detail-image.loaded {
    opacity: 1;
}

.product-detail-right {
    padding-left: 25px;
}

.product-image-container {
    display: flex;
    align-items: flex-start;
    padding-right: 10px;
}

/* Product image */
.product-image-large {
    text-align: center;
}

.product-image-large img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Variants section */

.product-detail-right .nav.nav-tabs a.nav-link {
    color: #495057;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #28a745;
    padding-bottom: 5px;
    font-size: 18px !important;
}

.relateds-list {
    max-height: 350px;
    overflow-y: auto;
}

.variant-item {
    display: block;
    margin-bottom: 8px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    overflow: hidden;
}

.variant-item:hover, .variant-item.active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.variant-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

.variant-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    margin-right: 15px;
}

.variant-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.variant-name-container {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.variant-name {
    color: #495057;
    line-height: 1.3;
    word-wrap: break-word;
    font-weight: 600;
    font-size: 14px;
    word-break: break-word;
    hyphens: auto;
    margin: 0;
}

.variant-code {
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
    word-break: break-all;
    line-height: 1.2;
}

.variant-stock {
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 15px;
}

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

.variant-expand-btn {
    min-width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.variant-expand-btn:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.variant-expand-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Expand icon animation */
.variant-expand-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.variant-expand-btn[aria-expanded="true"] .variant-expand-icon {
    transform: rotate(180deg);
}

/* Details */
.variant-details {
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

.variant-details-content {
    padding: 16px;
}

.variant-details-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    border-bottom: 2px solid #28a745;
    padding-bottom: 4px;
    display: inline-block;
}

/* Technical specs - grid */
.variant-specs {
    margin: 0 -8px;
}

.variant-specs .col-md-4,
.variant-specs .col-sm-6 {
    padding: 0 8px;
    margin-bottom: 8px;
}

/* Spec items */
.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    min-height: 36px;
    transition: background-color 0.2s ease;
}

.spec-item:hover {
    background-color: #f1f3f4;
}

.spec-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 12px;
    flex-shrink: 0;
    margin-right: 8px;
}

.spec-value {
    font-weight: 600;
    color: #495057;
    font-size: 12px;
    text-align: right;
}

/* Collapse animation */
.variant-details.collapsing {
    transition: height 0.35s ease;
}

.variant-price-header-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    margin-top: -1px;
}

.variant-price-header-wrapper small {
    margin-right: 145px;
    /* variant-actions genişliği + gap */
}

.variant-price {
    font-size: 14px;
    font-weight: 600;
    color: #007bff;
    white-space: nowrap;
    min-width: 60px;
    text-align: right;
}

.variant-cart-form {
    margin: 0;
}

/* Form styling */
.variant-cart-form .d-flex {
    gap: 6px;
    align-items: center;
}

.variant-cart-form .form-control {
    max-width: 40px !important;
    min-width: 35px;
    height: 32px !important;
    padding: 4px 6px !important;
    font-size: 12px !important;
    text-align: center;
    flex-shrink: 0;
    border-radius: 4px;
}

.btn-success-pulse {
    animation: successPulse 0.6s ease-out;
}

@media (max-width: 1199.98px) {
    .content-wrapper {
        padding-left: 20px;
        padding-right: 25px;
    }

    .category-items {
        display: inline-flex;
        width: auto;
        min-width: 100%;
        justify-content: flex-start;
        padding: 0 20px;
    }

    .category-item {
        flex: none;
        padding: 10px 15px;
    }

    .category-text {
        max-width: 180px;
    }
}

@media (max-width: 991.98px) {
    .content-wrapper {
        padding-left: 15px;
        padding-right: 20px;
    }

    .category-items {
        padding: 0 15px;
        height: 50px;
    }

    .category-item {
        padding: 8px 12px;
        font-size: 13px;
        min-height: 50px;
    }

    .category-text {
        max-width: 160px;
    }

    .category-divider {
        height: 22px;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1rem;
    }

    .table {
        min-width: 800px;
        white-space: nowrap;
    }

    .table th,
    .table td {
        white-space: nowrap;
        min-width: 80px;
    }

    /* Product name column */
    .table th:nth-child(4),
    .table td:nth-child(4) {
        min-width: 200px;
        white-space: normal;
        word-wrap: break-word;
    }

    /* Image column */
    .table th:nth-child(2),
    .table td:nth-child(2) {
        min-width: 80px;
    }

    /* Action column */
    .table th:last-child,
    .table td:last-child {
        min-width: 120px;
    }

    /* Filter toggle button container */
    .d-lg-none .d-flex {
        gap: 8px;
        align-items: stretch;
    }

    /* Filter toggle button */
    .d-lg-none .btn-outline-primary {
        flex: 0 0 auto;
        width: 80px;
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
    }

    .filters-sidebar {
        position: static;
        height: auto;
        max-height: 400px;
        margin-bottom: 20px;
        margin-right: 0;
        font-size: 16px;
        border-radius: 8px;
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .filters-sidebar::before,
    .filters-sidebar::after {
        display: none;
    }

    .filter-title {
        font-size: 20px;
    }

    .filters-sidebar .form-select,
    .filters-sidebar .form-control,
    .filters-sidebar input[type="number"] {
        font-size: 16px !important;
        padding: 12px 16px !important;
    }

    .filter-actions .btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .filters-sidebar .select2-container--default .select2-selection--multiple {
        min-height: 40px !important;
        font-size: 14px !important;
        padding: 6px 10px !important;
    }

    .filters-sidebar .select2-container--default .select2-selection--multiple .select2-selection__choice {
        font-size: 13px !important;
        padding: 4px 8px !important;
        margin: 2px 3px 2px 0 !important;
    }

    .filters-sidebar .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
        font-size: 14px !important;
        margin: 8px 4px !important;
    }

    .filters-sidebar .select2-container--default .select2-dropdown {
        font-size: 14px !important;
    }

    .filters-sidebar .select2-container--default .select2-results__option {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }

    .product-specs-section {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .product-detail-container {
        padding: 15px 10px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .product-detail-left,
    .product-detail-right {
        padding-right: 0;
        padding-left: 0;
        border-right: none;
        margin-bottom: 15px;
    }

    .product-detail-left .row,
    .product-detail-right .row {
        margin-left: 0;
        margin-right: 0;
    }

    .product-detail-left .col-md-6,
    .product-detail-right .col-md-6 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (max-width: 767.98px) {
    .currency-bar {
        gap: 10px;
        text-align: center;
    }

    .currency-info {
        gap: 10px;
    }

    .currency-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .currency-item {
        padding: 6px 10px;
    }

    .product-card .card-quantity-input {
        width: 40px;
    }

    .product-card .card-cart-btn,
    .product-card .card-product-btn {
        font-size: 0.7rem;
        padding: 5px 6px;
        min-width: 50px;
    }

    .filter-title {
        font-size: 18px;
    }

    .filter-header-text {
        font-size: 13px;
    }

    .filter-actions .btn {
        font-size: 11px;
        padding: 8px 12px;
    }

    .filter-content-inner {
        padding: 12px;
        max-height: 250px;
    }

    .filter-search-input {
        padding: 10px 40px 10px 36px;
        font-size: 14px;
    }

    .filter-option {
        padding: 10px 4px;
    }

    .filter-search-clear {
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .table {
        min-width: 700px;
        font-size: 13px;
    }

    .table th,
    .table td {
        min-width: 70px;
        padding: 0.1rem 0.3rem !important;
    }

    .table th:nth-child(4),
    .table td:nth-child(4) {
        min-width: 180px;
    }

    .category-items {
        padding: 0 10px;
        height: 45px;
    }

    .category-item {
        padding: 6px 10px;
        font-size: 12px;
        min-height: 45px;
    }

    .category-text {
        max-width: 140px;
    }

    .category-divider {
        height: 20px;
    }

    .expand-btn {
        width: 36px;
        height: 36px;
        padding: 10px !important;
    }

    .expand-btn:focus {
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
        outline: none !important;
    }

    .expand-btn:active {
        transform: scale(0.8);
    }

    .expand-icon {
        font-size: 14px !important;
    }

    #products-table .product-detail-row td,
    #products-table .product-detail-row .product-details {
        padding: 0 !important;
        overflow-x: hidden;
    }

    .product-detail-container {
        padding: 12px 8px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .product-specs-section .row {
        flex-direction: column;
    }

    .product-detail-left,
    .product-detail-right {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 15px;
        border: none;
    }

    .product-image-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 12px;
        justify-content: center;
        text-align: center;
    }

    .product-image-large {
        text-align: left;
        width: 100%;
    }

    .product-image-large img {
        max-width: 120px;
        max-height: 120px;
    }

    .product-actions {
        gap: 6px;
        margin-top: 4px;
    }

    .product-action-btn {
        width: 22px;
        height: 20px;
        font-size: 9px;
    }

    .product-specs-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }

    /* Variants */
    .variants-list {
        max-height: none;
        overflow-y: visible;
    }

    /* Individual variant items */
    .variant-item {
        margin-bottom: 10px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .variant-main-content {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px;
    }

    .variant-info-wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .variant-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }

    .variant-name-container {
        width: 100%;
    }

    .variant-name {
        font-size: 14px;
        line-height: 1.3;
        word-break: break-word;
        hyphens: auto;
    }

    .variant-code {
        font-size: 12px;
        word-break: break-all;
    }

    .variant-stock {
        font-size: 12px;
        margin-right: 0;
    }

    .variant-actions {
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
    }

    .variant-price {
        font-size: 14px;
        text-align: left;
        min-width: auto;
        flex: 1;
    }

    .variant-cart-form {
        flex-shrink: 0;
    }

    .variant-specs .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .variant-cart-form .d-flex {
        gap: 8px;
        width: auto;
        min-width: 120px;
    }

    .variant-cart-form .form-control {
        max-width: 45px !important;
        min-width: 40px;
        height: 34px !important;
        font-size: 13px !important;
    }

    .variant-expand-btn {
        min-width: 34px;
        height: 34px;
        flex-shrink: 0;
    }

    /* Variant details */
    .variant-details-content {
        padding: 12px;
    }

    .variant-specs .col-sm-6 {
        flex: 0 0 32%;
        max-width: 100%;
        margin-bottom: 8px;
    }

    .spec-item {
        flex-direction: row;
        align-items: flex-start;
        padding: 8px 10px;
        min-height: 48px;
    }

    .spec-label {
        margin-bottom: 4px;
        margin-right: 0;
    }

    .spec-value {
        text-align: left;
        font-size: 13px;
        font-weight: 600;
    }

    .cart-toast {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: calc(100vw - 20px);
    }

    .category-navbar {
        overflow-x: auto;
        overflow-y: hidden;
    }
}

@media only screen and (max-width: 767px) {}

@media (max-width: 575.98px) {
    .products-grid-title {
        font-size: 0.95rem;
        min-height: auto;
    }

    .product-grid-stock-code {
        font-size: 0.85rem;
    }

    .product-grid-discount {
        min-width: 54px;
        height: 30px;
        font-size: 0.85rem;
    }

    .product-grid-list-price,
    .product-grid-net-price {
        font-size: 1.35rem;
    }

    .product-grid-actions-row {
        gap: 6px;
    }

    .product-grid-qty-controls .product-grid-qty-btn {
        width: 28px;
        height: 34px;
        font-size: 16px;
    }

    .product-grid-qty-controls .product-qty-input {
        width: 40px;
        min-width: 40px;
        max-width: 40px;
    }

    .product-grid-actions-row .product-cart-btn {
        min-width: 0;
        padding: 0 10px;
        font-size: 0.85rem;
        height: 34px;
    }

    .product-grid-actions-row .product-grid-expand-btn {
        width: 46px;
        min-width: 46px;
        flex: 0 0 46px;
        height: 34px;
    }

    .content-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .currency-bar {
        justify-content: space-between;
    }

    .currency-items {
        gap: 8px;
    }

    .currency-divider {
        display: none;
    }

    .currency-item {
        justify-content: center;
    }

    .product-card .card-quantity-controls {
        align-self: center;
        /* width: 130px; */
    }

    .product-card .card-quantity-input {
        width: 50px;
    }

    .product-card .card-cart-btn,
    .product-card .card-product-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
        height: 36px;
        min-width: 70px;
    }

    .product-detail-container {
        padding: 10px 6px;
    }

    .variant-main-content {
        padding: 8px;
        gap: 8px;
    }

    .variant-cart-form .form-control {
        max-width: 40px !important;
        min-width: 35px;
        font-size: 12px !important;
    }

    .category-items {
        padding: 0 8px;
        height: 40px;
    }

    .category-item {
        padding: 5px 8px;
        font-size: 11px;
        min-height: 40px;
    }

    .category-text {
        max-width: 120px;
    }

    .category-divider {
        height: 18px;
    }

    .variant-item {
        gap: 10px;
    }

    .variant-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .variant-cart-form .d-flex {
        gap: 8px;
        width: 100%;
        /* justify-content: space-between; */
    }

    .variant-actions {
        gap: 12px;
    }

    .variant-specs .col-sm-6 {
        flex: 0 0 32%;
        max-width: 100%;
    }
}

@media (hover: none) {
    .category-item:hover {
        background-color: transparent;
        border-bottom-color: transparent;
    }

    .category-item:active {
        background-color: #f8f9fa;
        border-bottom-color: #e10613;
        /* touch için kırmızı */
    }
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* product-view.css */

.container-p-10 {
    padding-left: 10%;
    padding-right: 10%;
}

.breadcrumb {
    background-color: transparent;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@media (prefers-contrast: high) {
    .product-detail-quantity-input {
        border-width: 2px;
    }
}

@media (max-width: 576px) {
    .breadcrumb {
        font-size: 13px;
        padding: 6px 10px;
    }

    .technical-details {
        padding: 10px;
    }

    .technical-details small {
        font-size: 12px;
    }

    .technical-details h5 {
        font-size: 14px;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .product-basic-info p {
        font-size: 14px;
    }

    .product-detail-cart-controls {
        gap: 5px;
    }

    .product-detail-quantity-input {
        width: 55px !important;
        max-width: 55px;
        min-width: 50px;
        height: 34px;
        font-size: 12px;
    }

    .product-basic-info .row .col-6:last-child {
        margin-top: 10px;
    }

    .nav-tabs.nav-fill .nav-link {
        padding: 6px 8px;
        font-size: 11px;
        font-weight: 500;
    }

    .product-tabs-section {
        margin: 0 -15px;
        border-radius: 0;
    }
}

/* Small devices */
@media (min-width: 577px) and (max-width: 768px) {
    .breadcrumb {
        font-size: 14px;
        padding: 8px 12px;
        margin-bottom: 15px;
        word-break: break-word;
        white-space: normal;
    }

    .breadcrumb-item {
        display: inline-block;
        line-height: 1.4;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        content: "/";
        padding: 0 0.5rem;
        color: #6c757d;
    }

    .product-detail-card {
        padding: 15px;
    }

    .product-info {
        margin-top: 0;
    }

    .product-info h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 20px;
        line-height: 1.3;
    }

    .product-basic-info p {
        margin-bottom: 8px;
        font-size: 15px;
    }

    .product-detail-img {
        height: 200px;
    }

    .technical-details .row .col-md-6 {
        margin-bottom: 8px;
    }

    .technical-details {
        padding: 12px;
        margin: 15px 0;
    }

    .technical-details small {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .technical-details h5 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .technical-details .row .col-md-6 {
        margin-bottom: 10px;
    }

    .product-detail-cart-controls {
        gap: 6px;
    }

    .product-detail-quantity-input {
        width: 60px !important;
        max-width: 60px;
        min-width: 55px;
        height: 36px;
        font-size: 13px;
    }

    .product-detail-quantity-input.is-invalid {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
    }

    .product-detail-quantity-input:invalid {
        border-color: #dc3545;
    }

    .product-detail-quantity-input:focus:invalid {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
    }

    .nav-tabs.nav-fill .nav-link {
        padding: 8px 10px;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .variant-name {
        font-size: 13px;
    }

    .variant-cart-btn {
        font-size: 10px;
        padding: 0.75rem 1.25rem;
        height: 28px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {}

/* Desktop */
@media (min-width: 1025px) {
    .variant-cart-btn {
        font-size: 11px;
        padding: 4px 8px;
    }
}

.table-responsive {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-detail-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    font-size: 18px;
}

.product-image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    height: 100%;
}

.product-detail-img {
    width: 100%;
    /* height: 280px; */
    object-fit: contain;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    transition: opacity 0.3s ease;
}

.product-detail-img.loading {
    opacity: 0.7;
}

.technical-details {
    margin-top: 2rem !important;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #e10613;
}

.technical-details h5 {
    color: #495057;
    margin-bottom: 20px;
}

.technical-details small {
    display: block;
    line-height: 1.4;
    font-size: 18px;
}

.product-detail-cart-section {
    width: 100%;
}

.product-detail-cart-form {
    margin: 0;
    width: 100%;
}

.product-detail-cart-controls {
    gap: 8px;
    width: 100%;
    justify-content: flex-end;
}

.product-detail-quantity-input {
    width: 70px !important;
    max-width: 70px;
    min-width: 60px;
    height: 38px;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
    flex-shrink: 0;
    border: 1px solid #ced4da;
    padding: 6px 8px;
}

.product-detail-quantity-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
    outline: none;
}

.product-tabs-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.nav-tabs {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: none;
    color: #495057;
    font-weight: 600;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    background: #e9ecef;
}

.nav-tabs .nav-link.active {
    background: #fff;
    color: #e10613;
    border-bottom: 3px solid #e10613;
}

.nav-tabs.nav-fill {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs.nav-fill .nav-item {
    flex: 1;
}

.nav-tabs.nav-fill .nav-link {
    border: none;
    color: #495057;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 0;
    text-align: center;
    border-right: 1px solid #dee2e6;
    margin-right: 0;
    width: 100%;
    outline: none;
    box-shadow: none;
}

.nav-tabs.nav-fill .nav-item:last-child .nav-link {
    border-right: none;
}

.nav-tabs.nav-fill .nav-link:hover {
    border-color: transparent;
    background: #e9ecef;
    border-right: 1px solid #dee2e6;
}

.nav-tabs.nav-fill .nav-item:last-child .nav-link:hover {
    border-right: none;
}

.nav-tabs.nav-fill .nav-link.active {
    background: #fff;
    color: #e10613;
    border-bottom: 3px solid #e10613;
    border-top: none;
    border-left: none;
    border-right: 1px solid #dee2e6;
}

.nav-tabs.nav-fill .nav-item:last-child .nav-link.active {
    border-right: none;
}

.tab-content {
    min-height: 300px;
}

/* Variant specific cells */
.price-cell .price-discount span.discount-rate {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.variant-cart-btn {
    font-size: 12px;
    padding: 6px 12px;
    height: 32px;
    line-height: 1.2;
    border-radius: 4px;
    white-space: nowrap;
}

.bg-label-primary {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-primary)) !important;
    color: var(--bs-primary) !important;
}

.bg-label-primary.bg-label-hover:hover {
    background-color: var(--bs-primary) !important;
    color: var(--bs-primary-contrast) !important;
}

.bg-label-secondary {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-secondary)) !important;
    color: var(--bs-secondary) !important;
}

.bg-label-secondary.bg-label-hover:hover {
    background-color: var(--bs-secondary) !important;
    color: var(--bs-secondary-contrast) !important;
}

.bg-label-success {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-success)) !important;
    color: var(--bs-success) !important;
}

.bg-label-success.bg-label-hover:hover {
    background-color: var(--bs-success) !important;
    color: var(--bs-success-contrast) !important;
}

.bg-label-info {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-info)) !important;
    color: var(--bs-info) !important;
}

.bg-label-info.bg-label-hover:hover {
    background-color: var(--bs-info) !important;
    color: var(--bs-info-contrast) !important;
}

.bg-label-warning {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-warning)) !important;
    color: var(--bs-warning) !important;
}

.bg-label-warning.bg-label-hover:hover {
    background-color: var(--bs-warning) !important;
    color: var(--bs-warning-contrast) !important;
}

.bg-label-danger {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-danger)) !important;
    color: var(--bs-danger) !important;
}

.bg-label-danger.bg-label-hover:hover {
    background-color: var(--bs-danger) !important;
    color: var(--bs-danger-contrast) !important;
}

.bg-label-light {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-light)) !important;
    color: RGBA(#000, var(--bs-bg-label-tint-amount)) !important;
}

.bg-label-light.bg-label-hover:hover {
    background-color: var(--bs-light) !important;
    color: var(--bs-light-contrast) !important;
}

.bg-label-dark {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-dark)) !important;
    color: var(--bs-dark) !important;
}

.bg-label-dark.bg-label-hover:hover {
    background-color: var(--bs-dark) !important;
    color: var(--bs-dark-contrast) !important;
}

.bg-label-gray {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-gray)) !important;
    color: var(--bs-gray) !important;
}

.bg-label-gray.bg-label-hover:hover {
    background-color: var(--bs-gray) !important;
    color: var(--bs-gray-contrast) !important;
}

.bg-label-facebook {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-facebook)) !important;
    color: var(--bs-facebook) !important;
}

.bg-label-facebook.bg-label-hover:hover {
    background-color: var(--bs-facebook) !important;
    color: var(--bs-facebook-contrast) !important;
}

.bg-label-twitter {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-twitter)) !important;
    color: var(--bs-twitter) !important;
}

.bg-label-twitter.bg-label-hover:hover {
    background-color: var(--bs-twitter) !important;
    color: var(--bs-twitter-contrast) !important;
}

.bg-label-google-plus {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-google-plus)) !important;
    color: var(--bs-google-plus) !important;
}

.bg-label-google-plus.bg-label-hover:hover {
    background-color: var(--bs-google-plus) !important;
    color: var(--bs-google-plus-contrast) !important;
}

.bg-label-instagram {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-instagram)) !important;
    color: var(--bs-instagram) !important;
}

.bg-label-instagram.bg-label-hover:hover {
    background-color: var(--bs-instagram) !important;
    color: var(--bs-instagram-contrast) !important;
}

.bg-label-linkedin {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-linkedin)) !important;
    color: var(--bs-linkedin) !important;
}

.bg-label-linkedin.bg-label-hover:hover {
    background-color: var(--bs-linkedin) !important;
    color: var(--bs-linkedin-contrast) !important;
}

.bg-label-github {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-github)) !important;
    color: var(--bs-github) !important;
}

.bg-label-github.bg-label-hover:hover {
    background-color: var(--bs-github) !important;
    color: var(--bs-github-contrast) !important;
}

.bg-label-dribbble {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-dribbble)) !important;
    color: var(--bs-dribbble) !important;
}

.bg-label-dribbble.bg-label-hover:hover {
    background-color: var(--bs-dribbble) !important;
    color: var(--bs-dribbble-contrast) !important;
}

.bg-label-pinterest {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-pinterest)) !important;
    color: var(--bs-pinterest) !important;
}

.bg-label-pinterest.bg-label-hover:hover {
    background-color: var(--bs-pinterest) !important;
    color: var(--bs-pinterest-contrast) !important;
}

.bg-label-slack {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-slack)) !important;
    color: var(--bs-slack) !important;
}

.bg-label-slack.bg-label-hover:hover {
    background-color: var(--bs-slack) !important;
    color: var(--bs-slack-contrast) !important;
}

.bg-label-reddit {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-reddit)) !important;
    color: var(--bs-reddit) !important;
}

.bg-label-reddit.bg-label-hover:hover {
    background-color: var(--bs-reddit) !important;
    color: var(--bs-reddit-contrast) !important;
}

.bg-label-youtube {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-youtube)) !important;
    color: var(--bs-youtube) !important;
}

.bg-label-youtube.bg-label-hover:hover {
    background-color: var(--bs-youtube) !important;
    color: var(--bs-youtube-contrast) !important;
}
.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-label-vimeo {
    background-color: color-mix(in sRGB, var(--bs-paper-bg) var(--bs-bg-label-tint-amount), var(--bs-vimeo)) !important;
    color: var(--bs-vimeo) !important;
}

.bg-label-vimeo.bg-label-hover:hover {
    background-color: var(--bs-vimeo) !important;
    color: var(--bs-vimeo-contrast) !important;
}

.text-bg-primary {
    color: #fff !important;
    background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
    color: #fff !important;
    background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
    color: #fff !important;
    background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
    color: #fff !important;
    background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
    color: #fff !important;
    background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
    color: #fff !important;
    background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
    color: #000 !important;
    background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
    color: #fff !important;
    background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-gray {
    color: #fff !important;
    background-color: RGBA(var(--bs-gray-rgb), var(--bs-bg-opacity, 1)) !important;
}
