:root {
    --white: 240 10% 8%;
    --black: 0 0% 100%;
    --heading-color: 0 0% 100% / 0.9;
    --body-color: 0 0% 100% / 0.75;
    --border-color: 240 10% 16%;
    --section-bg: 240 10% 5%;
}

/* Body base override */
body {
    background-color: hsl(240 10% 5%) !important;
    color: hsl(var(--body-color)) !important;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: hsl(240 10% 5%);
}
::-webkit-scrollbar-thumb {
    background: hsl(240 10% 16%);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: hsl(240 10% 24%);
}

/* Card overrides */
.custom--card {
    background-color: hsl(240 10% 8%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
}
.custom--card .card-header {
    background-color: hsl(240 10% 11%) !important;
    border-bottom: 1px solid hsl(var(--border-color)) !important;
}
.custom--card .card-body {
    background-color: transparent !important;
}

/* Table overrides */
.table {
    color: hsl(var(--body-color)) !important;
    --bs-table-bg: transparent !important;
    --bs-table-striped-bg: hsl(240 10% 7%) !important;
}
.table th {
    background-color: hsl(240 10% 10%) !important;
    color: hsl(var(--heading-color)) !important;
    border-bottom: 2px solid hsl(var(--border-color)) !important;
}
.table td {
    border-bottom: 1px solid hsl(var(--border-color)) !important;
    background-color: transparent !important;
}
.table--striped tbody tr:nth-of-type(odd) {
    background-color: hsl(240 10% 7%) !important;
}
.table-light {
    background-color: hsl(240 10% 8%) !important;
    border-color: hsl(var(--border-color)) !important;
}

/* List group overrides */
.list-group-item {
    background-color: transparent !important;
    border-color: hsl(var(--border-color)) !important;
    color: hsl(var(--body-color)) !important;
}

/* Form inputs & select overrides */
.form--control, 
.form-control,
.form-select {
    background-color: hsl(240 10% 6%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
    color: hsl(var(--heading-color)) !important;
}
.form--control:focus, 
.form-control:focus,
.form-select:focus {
    background-color: hsl(240 10% 8%) !important;
    border-color: hsl(var(--base)) !important;
    box-shadow: 0 0 0 0.25rem hsla(var(--base) / 0.25) !important;
    color: #fff !important;
}
.form--control::placeholder, 
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Select2 dropdown custom override */
.select2-container--default .select2-selection--single {
    background-color: hsl(240 10% 6%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
    color: hsl(var(--heading-color)) !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: hsl(var(--heading-color)) !important;
}
.select2-dropdown {
    background-color: hsl(240 10% 8%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: hsl(var(--base)) !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: hsl(240 10% 6%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
    color: #fff !important;
}

/* Modal overrides */
.modal-content {
    background-color: hsl(240 10% 8%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
    color: hsl(var(--body-color)) !important;
}
.modal-header {
    border-bottom: 1px solid hsl(var(--border-color)) !important;
    background-color: hsl(240 10% 10%) !important;
}
.modal-footer {
    border-top: 1px solid hsl(var(--border-color)) !important;
    background-color: hsl(240 10% 10%) !important;
}
.modal-title {
    color: hsl(var(--heading-color)) !important;
}

/* Alerts / boxes */
.alert-info, .bg-light {
    background-color: hsl(240 10% 8%) !important;
    border-color: hsl(var(--border-color)) !important;
    color: hsl(var(--body-color)) !important;
}
.bg-transparent {
    background-color: transparent !important;
}

/* Headers / Navbars / Footers overrides */
.navbar, .header, .header-area, .dashboard-navbar {
    background-color: #000000 !important;
    border-bottom: 1px solid hsl(var(--border-color)) !important;
}
.dropdown-menu {
    background-color: hsl(240 10% 8%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.5) !important;
}
.dropdown-item {
    color: hsl(var(--body-color)) !important;
}
.dropdown-item:hover, .dropdown-item:focus {
    background-color: hsl(240 10% 11%) !important;
    color: #fff !important;
}

/* Menu items colour suitable for dark background */
.nav-link, .nav-link:focus {
    color: hsl(var(--heading-color)) !important;
}
.nav-link:hover, .nav-link.active, .nav-item.active .nav-link {
    color: hsl(var(--base)) !important;
}
.nav-link .nav-item__icon {
    color: inherit !important;
}

/* Dashboard navbar links visibility */
.dashboard-navbar .nav-link, .dashboard-navbar .nav-link:focus {
    color: hsl(var(--heading-color)) !important;
}
.dashboard-navbar .nav-link:hover, .dashboard-navbar .nav-link.active {
    color: hsl(var(--base)) !important;
}

/* Footer area */
.footer-area {
    background-color: hsl(240 10% 4%) !important;
    border-top: 1px solid hsl(var(--border-color)) !important;
}

/* Pagination overrides */
.pagination .page-item .page-link {
    background-color: hsl(240 10% 7%) !important;
    border-color: hsl(var(--border-color)) !important;
    color: hsl(var(--body-color)) !important;
}
.pagination .page-item.active .page-link {
    background-color: hsl(var(--base)) !important;
    border-color: hsl(var(--base)) !important;
    color: #fff !important;
}

/* Badge colors */
.bg--warning {
    background-color: hsl(45 100% 40%) !important;
    color: #fff !important;
}
.bg--info {
    background-color: hsl(196 100% 40%) !important;
    color: #fff !important;
}

/* Text overrides */
.text-muted, .text-secondary {
    color: #9ca3af !important;
}

/* Buttons outline base */
.btn-outline--base {
    border-color: hsl(var(--base)) !important;
    color: hsl(var(--base)) !important;
}
.btn-outline--base:hover {
    background-color: hsl(var(--base)) !important;
    color: #fff !important;
}
.btn--secondary {
    background-color: hsl(240 10% 15%) !important;
    border-color: hsl(240 10% 15%) !important;
    color: #fff !important;
}
.btn--secondary:hover {
    background-color: hsl(240 10% 20%) !important;
    border-color: hsl(240 10% 20%) !important;
}

/* Search results grids */
.product-item {
    background-color: hsl(240 10% 8%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
}

/* Cookies card */
.cookies-card {
    background-color: hsl(240 10% 8%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5) !important;
}

/* Additional specific overrides */
.product-details {
    background-color: hsl(240 10% 8%) !important;
}
.product-details__author {
    border-bottom: 1px solid hsl(var(--border-color)) !important;
}
.product-details__author__content h4 {
    color: hsl(var(--heading-color)) !important;
}
.product-details__author__follow {
    border: 1px solid hsl(var(--border-color)) !important;
    background-color: hsl(240 10% 6%) !important;
    color: hsl(var(--body-color)) !important;
}
.product-details__author__follow:hover {
    background-color: hsl(var(--base)) !important;
    color: #fff !important;
}
.product-details__btn-group button {
    border: 1px solid hsl(var(--border-color)) !important;
    background-color: hsl(240 10% 6%) !important;
    color: hsl(var(--body-color)) !important;
}
.product-details__btn-group button:hover {
    background-color: hsl(var(--base)) !important;
    color: #fff !important;
}
.related-product__title {
    color: hsl(var(--heading-color)) !important;
}

/* Slick Carousel item background */
.asset-preview-slider .carousel-item {
    background-color: hsl(240 10% 6%) !important;
}

/* ==========================================================================
   HOMEPAGE REDESIGN STYLING OVERRIDES (SKIN)
   ========================================================================== */

/* Text colors */
.text-orange {
    color: #ff5c00 !important;
}

/* Banner section overrides */
.banner-section {
    padding: 120px 0 80px 0 !important;
    background-color: hsl(240 10% 4%) !important;
    position: relative;
    overflow: hidden;
}
.banner-content__title {
    font-size: 46px !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px !important;
    text-transform: uppercase !important;
}
.banner-content__subtitle {
    font-size: 15px !important;
    line-height: 1.6 !important;
    max-width: 500px;
}

/* Sleek dark search form in banner */
.banner-content__form {
    background-color: #0c0d12 !important;
    border: 1px solid #1a1c23 !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    padding: 4px !important;
    max-width: 580px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    margin: 30px 0 !important;
}
.banner-content__form .search-input {
    background-color: transparent !important;
    border: none !important;
    color: #fff !important;
    padding: 10px 15px !important;
    flex-grow: 1 !important;
    font-size: 14px;
}
.banner-content__form .search-input:focus {
    box-shadow: none !important;
    outline: none !important;
}
.banner-content__form .search-btn {
    background-color: #ff5c00 !important;
    border: none !important;
    border-radius: 4px !important;
    color: #fff !important;
    width: 44px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background-color 0.3s ease !important;
}
.banner-content__form .search-btn:hover {
    background-color: #e05200 !important;
}
.banner-content__form .search-btn i {
    font-size: 18px !important;
}

/* Form Dropdown Select override */
.banner-content__select {
    border-right: 1px solid #1a1c23 !important;
    background-color: transparent !important;
}
.banner-content__select__btn {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 8px 15px !important;
    border: none !important;
    background: transparent !important;
}
.banner-content__select__list {
    background-color: #0c0d12 !important;
    border: 1px solid #1a1c23 !important;
    border-radius: 4px;
    padding: 10px 0 !important;
}
.banner-content__select__list li label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 12px !important;
    padding: 6px 15px !important;
}
.banner-content__select__list li label:hover {
    background-color: #1a1c23 !important;
    color: #fff !important;
}

/* Outlined Popular Searches Tag Pills */
.tag-pill {
    background-color: transparent !important;
    border: 1px solid #22232a !important;
    border-radius: 4px !important;
    color: #71717a !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    padding: 5px 14px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}
.tag-pill:hover {
    border-color: #ff5c00 !important;
    color: #ff5c00 !important;
    background-color: rgba(255, 92, 0, 0.04) !important;
}

/* Banner showcase mockup image shadow */
.hero-showcase-img {
    max-width: 100% !important;
    height: auto !important;
    filter: drop-shadow(0 15px 45px rgba(0, 0, 0, 0.6)) !important;
}

/* Features Bar styling */
.why-choose-us-bar__wrapper {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid #14161f !important;
}
.why-choose-us-bar__icon i {
    font-size: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Category Grid Card styling */
.category-grid-card {
    border: 1px solid #12131a !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
}
.category-grid-card:hover {
    border-color: #ff5c00 !important;
    box-shadow: 0 0 20px rgba(255, 92, 0, 0.2) !important;
}
.category-grid-card:hover .category-grid-card__bg {
    transform: scale(1.06) !important;
}
.category-grid-card:hover .category-grid-card__overlay {
    background: rgba(12, 13, 18, 0.55) !important;
}
.category-grid-card:hover .category-grid-card__icon-wrap i {
    color: #ff5c00 !important;
}
.category-grid-card__icon-wrap i {
    transition: color 0.3s ease !important;
}

/* Global Header Adjustments */
.logo img {
    max-height: 68px !important;
}
.navbar-nav .nav-link {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    padding: 10px 14px !important;
    letter-spacing: 0.1px;
}
.header .nav-menu .nav-item .nav-link::before {
    bottom: 2px !important;
}
.navbar-nav .dropdown-menu {
    border-color: #1a1c23 !important;
    background-color: #0c0d12 !important;
}
.navbar {
    padding: 12px 0 !important;
}
.header-search-icon:hover, 
.header-cart-icon:hover {
    color: #ff5c00 !important;
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
}

/* Align popular tag list to the left */
.banner-content__search-tag {
    justify-content: flex-start !important;
    z-index: 10 !important;
}

/* Hide footer placeholder watermark image */
.footer-area__bg {
    display: none !important;
}
.footer-area {
    background-image: none !important;
    background-color: hsl(240 10% 4%) !important;
}

/* Footer text colors for high legibility */
.footer-item__title {
    color: #ffffff !important;
}
.footer-item__desc {
    color: rgba(255, 255, 255, 0.65) !important;
}
.footer-menu__link {
    color: rgba(255, 255, 255, 0.55) !important;
    transition: color 0.2s ease !important;
}
.footer-menu__link:hover {
    color: #ff5c00 !important;
}
.footer-contact-menu__item-content p {
    color: rgba(255, 255, 255, 0.65) !important;
}
.bottom-footer__text {
    color: rgba(255, 255, 255, 0.45) !important;
}



/* ==========================================================================
   SEARCH & ASSETS RESULT PAGE CLEAN STYLING
   ========================================================================== */

/* Search header banner background */
.header-search {
    background: #000000 !important;
    border-bottom: 1px solid #1a1c23 !important;
    padding: 12px 0 !important;
}

/* Reset search form border inside header banner */
.header-search .banner-content__form {
    border: 1px solid #1a1c23 !important;
    background-color: #0c0d12 !important;
    box-shadow: none !important;
    max-width: none !important;
    margin: 0 !important;
}
.header-search .banner-content__form input {
    background-color: transparent !important;
    color: #fff !important;
    border: none !important;
}
.header-search .banner-content__form .search-btn {
    border-radius: 0 4px 4px 0 !important;
}

/* Sidebar toggler button overrides */
.search-result__sidebar-toggler {
    background-color: #0c0d12 !important;
    border: 1px solid #1a1c23 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    padding: 10px 16px !important;
    transition: all 0.2s ease !important;
}
.search-result__sidebar-toggler:hover {
    border-color: #ff5c00 !important;
    color: #ff5c00 !important;
    background-color: rgba(255, 92, 0, 0.05) !important;
}

/* Sidebar and filter card containers */
.search-result__sidebar {
    background-color: #0c0d12 !important;
    border: 1px solid #1a1c23 !important;
    top: 155px !important;
    height: calc(100vh - 170px) !important;
}
.search-result__card {
    border-bottom: 1px solid #1a1c23 !important;
}
.search-result__card__header {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}
.search-result__card__header::after {
    color: rgba(255, 255, 255, 0.4) !important;
}
.search-result__sidebar__header {
    border-bottom: 1px solid #1a1c23 !important;
    background-color: #09090b !important;
}
.search-result__sidebar__title {
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}
.clear-filter {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 12px !important;
    border: 1px solid #1a1c23 !important;
    background-color: transparent !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
}
.clear-filter:hover {
    color: #ff5c00 !important;
    border-color: #ff5c00 !important;
}

/* Filter selector buttons in sidebar */
.search-result__filter-btn {
    background-color: transparent !important;
    border: 1px solid #1a1c23 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 4px !important;
    padding: 6px 14px !important;
    height: auto !important;
    line-height: normal !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.search-result__filter-btn.active,
.search-result__filter-btn:hover {
    border-color: #ff5c00 !important;
    color: #ff5c00 !important;
    background-color: rgba(255, 92, 0, 0.05) !important;
}

/* Category Slider tabs overrides */
.search-result__guide {
    background-color: #0c0d12 !important;
    border: 1px solid #1a1c23 !important;
    border-radius: 6px !important;
    padding: 10px 15px !important;
    margin-bottom: 20px !important;
}
.search-result__guide__nav__btn {
    border: 1px solid #1a1c23 !important;
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 4px !important;
}
.search-result__guide__nav__btn:hover:not(:disabled) {
    border-color: #ff5c00 !important;
    color: #ff5c00 !important;
}
.search-result__guide__list ul a {
    height: 36px !important;
    line-height: 34px !important;
    padding: 0 16px !important;
    background-color: transparent !important;
    border: 1px solid #1a1c23 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}
.search-result__guide__list ul a:hover {
    border-color: #ff5c00 !important;
    color: #ff5c00 !important;
    background-color: rgba(255, 92, 0, 0.05) !important;
}
.search-result__guide__list ul a.search-result__guide__type {
    border-color: #ff5c00 !important;
    color: #ff5c00 !important;
    background-color: rgba(255, 92, 0, 0.05) !important;
    font-weight: 600 !important;
}

/* Active Assets/Collections Tabs */
.product__nav {
    border-bottom: 1px solid #1a1c23 !important;
    display: flex !important;
    gap: 30px !important;
    margin-bottom: 25px !important;
    padding-bottom: 0 !important;
}
.product__nav__link {
    color: rgba(255, 255, 255, 0.6) !important;
    border-bottom: 2px solid transparent !important;
    padding: 10px 0 12px 0 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.2s ease !important;
}
.product__nav__link.active,
.product__nav__link:hover {
    color: #ff5c00 !important;
    border-bottom-color: #ff5c00 !important;
}
.product__nav__link span {
    font-weight: 500 !important;
    font-size: 12px !important;
    opacity: 0.8 !important;
}

/* Footer contact and social icons visibility overrides */
.footer-contact-menu__item-icon i {
    color: #ff5c00 !important;
}
.social-list__link {
    color: #ffffff !important;
    background-color: #18181b !important;
    border: 1px solid #27272a !important;
    transition: all 0.3s ease !important;
}
.social-list__link:hover {
    color: #ffffff !important;
    background-color: #ff5c00 !important;
    border-color: #ff5c00 !important;
}

/* Category Slider Custom Overrides */
.category-scroll-container::-webkit-scrollbar {
    display: none !important;
}

.category-new-card {
    background-color: #12131a !important;
    border: 1px solid #1a1c23 !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}

.category-new-card:hover {
    border-color: #ff5c00 !important;
    box-shadow: 0 6px 20px rgba(255, 92, 0, 0.15) !important;
    transform: translateY(-4px) !important;
}

.category-new-card__img {
    transition: transform 0.3s ease !important;
}

.category-new-card:hover .category-new-card__img {
    transform: scale(1.05) !important;
}

.category-scroll-btn {
    width: 40px !important;
    height: 40px !important;
    background-color: #ff5c00 !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 16px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
    z-index: 5 !important;
}

.category-scroll-btn:hover {
    background-color: #e05200 !important;
    transform: translateY(-50%) scale(1.1) !important;
    color: #ffffff !important;
}

.category-scroll-btn--left {
    left: -20px !important;
}

.category-scroll-btn--right {
    right: -20px !important;
}

/* Remove banner section background overlay (orange gradient layer) */
.banner-section__bg::after {
    background: none !important;
    display: none !important;
}

/* Logo Preloader Overrides */
.preloader {
    background-color: hsl(240 10% 5%) !important;
}

.logo-loader-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.logo-loader-img {
    max-width: 200px;
    max-height: 80px;
    object-fit: contain;
    animation: logoPulse 2s ease-in-out infinite;
}

.logo-loader-bar {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.logo-loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, hsl(var(--base)), transparent);
    animation: loadingBarSlide 1.6s infinite ease-in-out;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.85;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0));
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
    }
}

@keyframes loadingBarSlide {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE CLEANLINESS & HEADER/HERO OVERRIDES
   ========================================================================== */
@media screen and (max-width: 767px) {
    /* Banner/Hero layout padding */
    .banner-section {
        padding: 80px 0 40px 0 !important;
    }
    
    /* Center text alignment inside mobile banner */
    .banner-content {
        text-align: center !important;
    }
    
    /* Heading responsive size & line height */
    .banner-content__title {
        font-size: 28px !important;
        line-height: 1.25 !important;
        font-weight: 800 !important;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }
    
    /* Subheading centering and sizing */
    .banner-content__subtitle {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin: 15px auto !important;
    }
    
    /* Center search form and popular tags on mobile */
    .banner-content__form {
        margin: 20px auto !important;
        max-width: 100% !important;
    }
    .banner-content__popular-wrapper {
        text-align: center !important;
    }
    .banner-content__search-tag {
        justify-content: center !important;
    }

    /* Clean mobile header toggle and user buttons */
    .header .navbar-toggler.header-button {
        width: 38px !important;
        height: 38px !important;
        background-color: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 6px !important;
        color: #ff5c00 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .header .user-dropdown__btn {
        width: 38px !important;
        height: 38px !important;
        background-color: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 50% !important;
        color: #ff5c00 !important;
        line-height: 36px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .header .user-dropdown__btn i {
        margin-right: 0 !important;
        font-size: 18px !important;
    }
}

/* Call To Action (Buy CTA) Text & Headings Visibility */
.call-to-action__txt .section-heading__subtitle,
.call-to-action__txt .section-heading__title,
.call-to-action__txt p {
    color: #ffffff !important;
}

.call-to-action__txt .section-heading-light::before,
.call-to-action__txt .section-heading-light::after,
.call-to-action__txt .section-heading-light .section-heading__subtitle::before {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

/* Base Buttons text color visibility overrides */
.btn--base, 
.btn--base:hover, 
.btn--base:focus, 
.btn--base:active,
.call-to-action__txt .btn,
.call-to-sell__txt .btn {
    color: #ffffff !important;
}

/* Card Header Title Visibility in Dark Theme */
.custom--card .card-header .title {
    color: #ffffff !important;
}

/* CKEditor Toolbar & Controls Visibility in Dark Theme */
.ck.ck-toolbar {
    background-color: hsl(240 10% 8%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
}
.ck.ck-toolbar .ck-toolbar__items {
    color: #ffffff !important;
}
.ck.ck-button,
.ck.ck-dropdown__button,
.ck.ck-dropdown__button.ck-on,
.ck.ck-button.ck-on {
    color: #ffffff !important;
    background-color: hsl(240 10% 8%) !important;
}
.ck.ck-button:hover,
.ck.ck-dropdown__button:hover,
.ck.ck-button.ck-on:hover,
.ck.ck-dropdown__button.ck-on:hover {
    background-color: hsl(240 10% 12%) !important;
    color: #ffffff !important;
}
.ck.ck-button .ck-icon,
.ck.ck-button .ck-icon *,
.ck.ck-toolbar svg,
.ck.ck-toolbar svg * {
    color: #ffffff !important;
    fill: #ffffff !important;
}
.ck.ck-dropdown__button .ck-button__label,
.ck.ck-dropdown__arrow {
    color: #ffffff !important;
}
.ck.ck-dropdown__panel {
    background-color: hsl(240 10% 8%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
}
.ck.ck-list__item .ck-button {
    color: #ffffff !important;
}
.ck.ck-list__item .ck-button:hover {
    background-color: hsl(240 10% 12%) !important;
}

/* Contact Page Form & Sidebar Contrast Visibility */
.contact__card__form .form--label {
    color: #000000 !important;
}
.contact__card__form .form--control {
    color: #000000 !important;
}
.contact__card__form .form--control:focus {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ff5c00 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 92, 0, 0.25) !important;
}
.contact__card__form .form--control::placeholder {
    color: rgba(0, 0, 0, 0.6) !important;
}
.contact__card__sidebar .contact__card__list__title,
.contact__card__sidebar .contact__card__list__content {
    color: #ffffff !important;
}
.contact__card__sidebar .contact__card__list__title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Product Card Action Buttons (Like, Collect, Share) Visibility */
.product-item__action-btn,
.product__card__action button {
    background-color: #111115 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}
.product-item__action-btn i,
.product__card__action button i {
    color: #ffffff !important;
}
.product-item__action-btn:hover,
.product-item__action-btn.active,
.product__card__action button:hover,
.product__card__action button.active {
    background-color: #ff5c00 !important;
    border-color: #ff5c00 !important;
    color: #ffffff !important;
}
.product-item__action-btn:hover i,
.product-item__action-btn.active i,
.product__card__action button:hover i,
.product__card__action button.active i {
    color: #ffffff !important;
}

/* Dashboard Card Number/Amount Contrast Visibility */
.dashboard-card__number {
    color: #111115 !important;
    -webkit-text-stroke-color: #111115 !important;
}

/* GDPR Cookies Card Text & Border Visibility */
.cookies-card {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.cookies-card__content {
    color: rgba(255, 255, 255, 0.8) !important;
}
/* Footer payment logos styling */
.footer-payment {
    margin-top: 24px;
}
.footer-payment__title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-payment__logos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-payment__row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-payment__logo {
    height: 32px !important;
    width: auto !important;
    border-radius: 4px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.footer-payment__logo:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4) !important;
}

/* Policy and Cookie pages dark text visibility fix */
.custom--card .card-body,
.custom--card .card-body * {
    color: rgba(255, 255, 255, 0.8) !important;
}
.custom--card .card-body strong,
.custom--card .card-body strong *,
.custom--card .card-body b,
.custom--card .card-body b *,
.custom--card .card-body h1,
.custom--card .card-body h1 *,
.custom--card .card-body h2,
.custom--card .card-body h2 *,
.custom--card .card-body h3,
.custom--card .card-body h3 *,
.custom--card .card-body h4,
.custom--card .card-body h4 *,
.custom--card .card-body h5,
.custom--card .card-body h5 *,
.custom--card .card-body h6,
.custom--card .card-body h6 * {
    color: #ffffff !important;
}
.custom--card .card-body a:not(.btn),
.custom--card .card-body a:not(.btn) * {
    color: #ff5c00 !important;
}

/* Status Badge Overrides for Dark Theme */
.badge--success {
    color: #2ecb71 !important;
    background-color: rgba(46, 203, 113, 0.15) !important;
    border-color: rgba(46, 203, 113, 0.3) !important;
}
.badge--warning {
    color: #f39c12 !important;
    background-color: rgba(243, 156, 18, 0.15) !important;
    border-color: rgba(243, 156, 18, 0.3) !important;
}
.badge--danger {
    color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.15) !important;
    border-color: rgba(231, 76, 60, 0.3) !important;
}
.badge--info {
    color: #3498db !important;
    background-color: rgba(52, 152, 219, 0.15) !important;
    border-color: rgba(52, 152, 219, 0.3) !important;
}
.badge--primary {
    color: #ff5c00 !important;
    background-color: rgba(255, 92, 0, 0.15) !important;
    border-color: rgba(255, 92, 0, 0.3) !important;
}
.badge--secondary {
    color: #95a5a6 !important;
    background-color: rgba(149, 165, 166, 0.15) !important;
    border-color: rgba(149, 165, 166, 0.3) !important;
}

/* Select2 Multiple Choice Tag Overrides */
.select2-container--default .select2-selection--multiple {
    background-color: hsl(240 10% 6%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: hsl(240 10% 12%) !important;
    border: 1px solid hsl(var(--border-color)) !important;
    color: #ffffff !important;
    margin: 2px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ff5c00 !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ff3c00 !important;
}
.select2-container--default .select2-selection--multiple .select2-search__field {
    color: #ffffff !important;
}

/* CKEditor Editable Area Text Color Fix */
.custom--card .card-body .ck-editor__main .ck-content,
.custom--card .card-body .ck-editor__main .ck-content *,
.custom--card .card-body .ck-editor__main .ck-editor__editable,
.custom--card .card-body .ck-editor__main .ck-editor__editable * {
    color: #111115 !important;
}

/* Creator Profile Banner Readability Fixes */
.user-profile__banner::after {
    background: #000000 !important;
    opacity: 0.75 !important;
}
.user-profile__banner__profile__title,
.user-profile__banner__info__number {
    color: #ffffff !important;
}
.user-profile__banner__profile__info,
.user-profile__banner__info__name,
.user-profile__banner__info__name span,
.user-profile__banner__info__name i {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Product Details Tag Pills Overrides */
.product-details .tag-btn {
    background-color: hsl(240 10% 12%) !important;
    color: #ffffff !important;
    border: 1px solid hsl(var(--border-color)) !important;
}
.product-details .tag-btn i {
    color: rgba(255, 255, 255, 0.6) !important;
}
.product-details .tag-btn:hover {
    background-color: #ff5c00 !important;
    border-color: #ff5c00 !important;
    color: #ffffff !important;
}
.product-details .tag-btn:hover i {
    color: #ffffff !important;
}
