:root {
  --bg-primary: #000000;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #1e1e1e;
  --surface: #1c1c1c;
  --border: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #bfbfbf;
  --muted: #888888;
  --accent: var(--theme-color);
  --accent-hover: var(--theme-color);
  --shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

html,
body.dark-theme {
  background: #000000 !important;
  color: var(--text-primary);
}

body.dark-theme #page_wrapper,
body.dark-theme .page-wrapper,
body.dark-theme main {
  background: #000000 !important;
}

body.dark-theme a {
  color: var(--text-primary);
}

body.dark-theme a:hover {
  color: var(--accent);
}

body.dark-theme p,
body.dark-theme span,
body.dark-theme li,
body.dark-theme small {
  color: var(--text-secondary);
}

body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
  color: var(--text-primary);
}

/* Remove light backgrounds */
body.dark-theme .bg-white,
body.dark-theme .bg-light,
body.dark-theme .bg-gray,
body.dark-theme .bg-secondary {
  background-color: #000000;
}

body.dark-theme section,
body.dark-theme .full-row,
body.dark-theme .container,
body.dark-theme .container-fluid {
  background-color: transparent;
}

body.dark-theme .border,
body.dark-theme .border-top,
body.dark-theme .border-bottom,
body.dark-theme .border-start,
body.dark-theme .border-end {
  border-color: var(--border) !important;
}

/* Common text utilities in theme files */
body.dark-theme .text-dark {
  color: var(--text-primary) !important;
}

body.dark-theme .text-muted {
  color: var(--text-secondary) !important;
}

body.dark-theme .text-secondary {
  color: var(--text-secondary) !important;
}

body.dark-theme .text-white {
  color: var(--text-primary) !important;
}

/* Header / Navbar */
body.dark-theme .ecommerce-header,
body.dark-theme .main-nav,
body.dark-theme .header-sticky,
body.dark-theme .header-sticky.bg-white,
body.dark-theme .modern-header,
body.dark-theme .sticky-bg-white,
body.dark-theme .sticky-bg-white.bg-white,
body.dark-theme .py-10.bg-white,
body.dark-theme header,
body.dark-theme .header {
  background-color: #000000 !important;
}

body.dark-theme .navbar .nav-link,
body.dark-theme .navbar-nav .nav-link,
body.dark-theme .top-header a,
body.dark-theme .top-links a {
  color: var(--text-primary) !important;
}

body.dark-theme .navbar-nav .active > .nav-link,
body.dark-theme .navbar-nav .nav-item.active > .nav-link,
body.dark-theme .navbar-nav .nav-link.active {
  color: var(--accent) !important;
}

body.dark-theme .navbar .nav-link:hover,
body.dark-theme .navbar-nav .nav-link:hover,
body.dark-theme .top-links a:hover {
  color: var(--accent) !important;
}

body.dark-theme .my-account-dropdown > a.has-dropdown {
  background-color: #1c1c1c;
  color: #ffffff !important;
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.1;
  transition: all 0.3s ease;
}

body.dark-theme .my-account-dropdown > a.has-dropdown i,
body.dark-theme .my-account-dropdown > a.has-dropdown [class*="flaticon-"]::before {
  color: inherit !important;
}

body.dark-theme .my-account-dropdown > a.has-dropdown:hover {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #000000 !important;
}

/* Header icons (wishlist/cart/compare/search) */
body.dark-theme .header-cart-1 .cart-icon i,
body.dark-theme .search-view i,
body.dark-theme .language-selector i {
  color: #cccccc !important;
}

body.dark-theme .sign-in > a,
body.dark-theme .wishlist-view > a,
body.dark-theme .refresh-view > a,
body.dark-theme .search-view > a {
  background-color: #2a2a2a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

body.dark-theme .header-cart-1 .cart-icon {
  background-color: #2a2a2a !important;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

body.dark-theme .header-cart-1 .cart-icon i,
body.dark-theme .search-view a i,
body.dark-theme .wishlist-view a i,
body.dark-theme .refresh-view a i,
body.dark-theme .sign-in a i {
  color: #ffffff !important;
}

body.dark-theme .sign-in > a:hover,
body.dark-theme .wishlist-view > a:hover,
body.dark-theme .refresh-view > a:hover,
body.dark-theme .search-view > a:hover,
body.dark-theme .header-cart-1 a:hover .cart-icon {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  transform: scale(1.05);
}

body.dark-theme .sign-in > a:hover i,
body.dark-theme .wishlist-view > a:hover i,
body.dark-theme .refresh-view > a:hover i,
body.dark-theme .search-view > a:hover i,
body.dark-theme .header-cart-1 a:hover .cart-icon i {
  color: #000000 !important;
}

body.dark-theme .wishlist-view span.header-wishlist-count,
body.dark-theme .refresh-view span.header-compare-count,
body.dark-theme [class*="header-cart-"] .cart .cart-icon .header-cart-count,
body.dark-theme .header-cart-1 .cart-wrap .header-cart-count {
  background-color: var(--accent) !important;
  color: #000000 !important;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

body.dark-theme .header-cart-1 a:hover .cart-icon i,
body.dark-theme .search-view a:hover i {
  color: var(--accent) !important;
}

@media (max-width: 991.98px) {
  body.dark-theme .header-sticky .navbar-brand {
    display: block !important;
    margin-left: 10px;
  }

  body.dark-theme .header-sticky img.nav-logo {
    width: auto;
    min-width: 0;
    height: 28px;
  }
}

/* Dropdown menus */
body.dark-theme .dropdown-menu,
body.dark-theme .my-account-popup {
  background-color: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
}

body.dark-theme .dropdown-item {
  color: var(--text-primary) !important;
}

body.dark-theme .dropdown-item.active,
body.dark-theme .dropdown-item:active,
body.dark-theme .dropdown-item[aria-current="page"] {
  color: var(--text-primary) !important;
  background-color: rgba(245, 197, 24, 0.16) !important;
}

/* Some theme scripts mark the first dropdown <li> as active by default.
   Don't render that as a selected state in dark mode. */
body.dark-theme .dropdown-menu li.active > a,
body.dark-theme .dropdown-menu li.active > .dropdown-item {
  color: var(--text-primary) !important;
  background-color: transparent !important;
}

body.dark-theme .navbar .navbar-nav li > ul.dropdown-menu li > a,
body.dark-theme .navbar .navbar-nav li > ul.dropdown-menu li > a.dropdown-item {
  color: var(--text-primary) !important;
  background-color: transparent !important;
}

body.dark-theme .navbar .navbar-nav li > ul.dropdown-menu li > a:hover {
  color: var(--accent) !important;
}

body.dark-theme .navbar .navbar-nav li > ul.dropdown-menu li > a:focus {
  color: var(--text-primary) !important;
  background-color: transparent !important;
}

body.dark-theme .dropdown-menu > li > .dropdown-item:not(:hover):not(:active):not(.active) {
  background-color: transparent !important;
  color: var(--text-primary) !important;
}

body.dark-theme .dropdown-menu > li:first-child > .dropdown-item:not(:hover):not(:active):not(.active) {
  background-color: transparent !important;
  color: var(--text-primary) !important;
}

body.dark-theme .dropdown-item:hover {
  background-color: rgba(245, 197, 24, 0.12) !important;
  color: var(--accent) !important;
}

body.dark-theme .dropdown-item:focus {
  background-color: transparent !important;
  color: var(--text-primary) !important;
}

body.dark-theme .dropdown-item:focus-visible {
  outline: 2px solid rgba(245, 197, 24, 0.35);
  outline-offset: 2px;
}

/* Mega menu section titles and first rows */
body.dark-theme .dropdown-menu.mega-dropdown-menu,
body.dark-theme .dropdown-menu.mega-dropdown-menu .mega-container,
body.dark-theme .dropdown-menu.mega-dropdown-menu .row,
body.dark-theme .dropdown-menu.mega-dropdown-menu .col {
  background-color: var(--bg-secondary) !important;
}

body.dark-theme .dropdown-menu.mega-dropdown-menu span,
body.dark-theme .dropdown-menu.mega-dropdown-menu .text-secondary {
  color: var(--text-primary) !important;
}

/* Mega menu width: avoid blank right-side area when there are only a few columns */
@media (min-width: 992px) {
  body.dark-theme .navbar .navbar-nav li.mega-dropdown {
    position: relative !important;
  }

  body.dark-theme .navbar .navbar-nav li.mega-dropdown > ul.dropdown-menu.mega-dropdown-menu {
    left: 0 !important;
    right: auto !important;
    top: 100% !important;
  }

  body.dark-theme .navbar .navbar-nav li > ul.dropdown-menu.mega-dropdown-menu {
    width: fit-content !important;
    max-width: calc(100vw - 40px);
  }

  body.dark-theme .navbar .navbar-nav li > ul.dropdown-menu.mega-dropdown-menu .mega-container {
    width: auto;
  }

  body.dark-theme .navbar .navbar-nav li > ul.dropdown-menu.mega-dropdown-menu .dropdown-item,
  body.dark-theme .navbar .navbar-nav li > ul.dropdown-menu.mega-dropdown-menu span {
    white-space: nowrap !important;
  }
}

/* Search bar */
body.dark-theme .product-search-one .search-form,
body.dark-theme .search-pill-shape {
  background: var(--bg-tertiary) !important;
  border: 1px solid #333333 !important;
}

body.dark-theme .product-search-one input.search-field,
body.dark-theme .product-search-one .form-control {
  background: transparent !important;
  color: var(--text-primary) !important;
  border-color: transparent !important;
}

body.dark-theme .product-search-one input.search-field::placeholder {
  color: var(--muted) !important;
}

body.dark-theme .product-search-one .search-submit {
  background: var(--accent) !important;
  color: #000000 !important;
}

body.dark-theme .product-search-one .search-submit i {
  color: #000000 !important;
}

@media (max-width: 991.98px) {
  body.dark-theme .nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push {
    background-color: var(--bg-secondary) !important;
  }

  body.dark-theme .nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push .login-signup {
    background-color: #121212 !important;
  }

  body.dark-theme #menu-and-category .nav-link,
  body.dark-theme #menu-and-category2 .nav-link {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border) !important;
  }

  body.dark-theme #menu-and-category .nav-link.active,
  body.dark-theme #menu-and-category2 .nav-link.active {
    background-color: var(--accent) !important;
    color: #000000 !important;
  }

  body.dark-theme #menu-and-category .nav-item,
  body.dark-theme #menu-and-category2 .nav-item {
    width: 100% !important;
  }

  body.dark-theme .navbar-slide-push .navbar-nav .nav-item .nav-link,
  body.dark-theme .categories-menu ul.menu li a {
    color: var(--text-primary) !important;
    border-bottom-color: var(--border) !important;
    background-color: transparent !important;
  }

  body.dark-theme .push-navbar .mobile-menu-arrow {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
  }

  body.dark-theme .push-navbar .mobile-menu-arrow::before {
    content: "\25B6";
    font-size: 11px;
    line-height: 1;
    display: inline-block;
    transition: transform 0.2s ease;
  }

  body.dark-theme .push-navbar .mobile-shop-toggle[aria-expanded="true"] .mobile-menu-arrow::before {
    transform: rotate(90deg);
  }

  body.dark-theme .push-navbar .mobile-submenu {
    list-style: none;
    padding: 8px 0 10px 12px;
    margin: 0;
    border-bottom: 1px solid var(--border);
  }

  body.dark-theme .push-navbar .mobile-submenu-heading {
    color: var(--accent) !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0 6px;
  }

  body.dark-theme .push-navbar .mobile-submenu-link {
    display: block;
    padding: 8px 0;
    color: var(--text-primary) !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  body.dark-theme .push-navbar .mobile-submenu li:last-child .mobile-submenu-link {
    border-bottom: 0;
  }

  body.dark-theme .push-navbar .mobile-submenu-link:hover {
    color: var(--accent) !important;
  }
}

/* Select2 */
body.dark-theme .select2-container--default .select2-selection--single {
  background-color: transparent !important;
  border: 0 !important;
}

body.dark-theme .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-primary) !important;
}

body.dark-theme .select2-dropdown {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
}

body.dark-theme .select2-results__option {
  color: var(--text-primary) !important;
}

body.dark-theme .select2-results__option--highlighted[aria-selected] {
  background-color: rgba(245, 197, 24, 0.12) !important;
  color: var(--accent) !important;
}

/* Hero slider overlay + text */
body.dark-theme .banner-slide-item {
  position: relative;
}

body.dark-theme .banner-slide-item::before {
  content: "";
  position: absolute;
  inset: 0;
 
}

body.dark-theme .banner-slide-item .container,
body.dark-theme .banner-slide-item .banner-wrapper-item,
body.dark-theme .banner-slide-item .banner-content {
  position: relative;
  z-index: 1;
}

body.dark-theme .banner-content p {
  color: #dddddd !important;
}

@media (max-width: 991.98px) {
  body.dark-theme .banner-slide-item {
    background: none !important;
  }

  body.dark-theme .banner-slide-mobile-img {
    width: 100%;
    height: auto;
    display: block;
  }

  body.dark-theme .banner-slide-item .container {
    position: absolute;
    inset: 0;
  }

  body.dark-theme .banner-wrapper-item {
    min-height: auto !important;
    height: 100%;
    padding: 24px 0 !important;
    display: flex;
    align-items: center;
  }

  body.dark-theme .banner-content {
    max-width: 92% !important;
    padding: 0 14px;
  }

  body.dark-theme .banner-content .subtitle {
    font-size: 16px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }

  body.dark-theme .banner-content .title {
    font-size: 28px !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
  }

  body.dark-theme .banner-content p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  body.dark-theme .banner-content .cmn--btn {
    padding: 8px 16px !important;
    font-size: 12px !important;
    line-height: 22px !important;
  }
}

/* Category banners */
body.dark-theme .coustom-categories-banner-1 .product-wrapper {
  background: var(--surface) !important;
}

@media (max-width: 575.98px) {
  body.dark-theme .product-style-1.row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  body.dark-theme .product-style-1 .product-wrapper {
    border-radius: 10px;
    overflow: hidden;
  }

  body.dark-theme .product-style-1 .product-image img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
  }

  body.dark-theme .product-style-1 .product-info {
    padding: 10px 10px 12px;
  }

  body.dark-theme .product-style-1 .product-title {
    margin-bottom: 6px;
  }

  body.dark-theme .product-style-1 .product-title a {
    font-size: 13px;
    line-height: 1.25;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.dark-theme .product-style-1 .price,
  body.dark-theme .product-style-1 .product-price {
    font-size: 13px;
  }
}

/* Cards / product items */
body.dark-theme .card,
body.dark-theme .product,
body.dark-theme .product-wrapper,
body.dark-theme .product-info,
body.dark-theme .banner-wrapper,
body.dark-theme .cart-wrap,
body.dark-theme .cookie-bar,
body.dark-theme .cookie-bar-wrap {
  background: var(--surface) !important;
  
}

body.dark-theme .product-title a {
  color: var(--text-primary) !important;
}

body.dark-theme .price,
body.dark-theme .product-price,
body.dark-theme .amount,
body.dark-theme .up-to-sale {
  color: var(--accent) !important;
}

body.dark-theme .product,
body.dark-theme .card {
  transition: transform 150ms ease, box-shadow 150ms ease;
}

body.dark-theme .product:hover,
body.dark-theme .card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

/* Buttons */
body.dark-theme .btn-primary,
body.dark-theme .cmn--btn,
body.dark-theme button.btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #000000 !important;
}

body.dark-theme .btn-primary:hover,
body.dark-theme .cmn--btn:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #000000 !important;
}

body.dark-theme .btn-outline-primary,
body.dark-theme .btn.btn-outline-primary {
  background: transparent !important;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
}

body.dark-theme .btn-outline-primary:hover,
body.dark-theme .btn.btn-outline-primary:hover {
  background: var(--accent) !important;
  color: #000000 !important;
}

body.dark-theme .offer-product h1,
body.dark-theme .offer-product h2,
body.dark-theme .offer-product h3,
body.dark-theme .offer-product .text-dark {
  color: var(--text-primary) !important;
}

body.dark-theme .offer-product p {
  color: var(--text-secondary) !important;
}

body.dark-theme .offer-product .btn.btn-dark {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #000000 !important;
}

body.dark-theme .offer-product .product-info .product-title {
  text-align: center;
}

body.dark-theme .offer-product .product-info .product-title,
body.dark-theme .offer-product .product-info .product-title * {
  color: #ffffff !important;
}

body.dark-theme .offer-product .product-price .on-sale,
body.dark-theme .offer-product .product-price .on-sale span {
  color: #000000 !important;
}

body.dark-theme .offer-product .product-price .on-sale {
  background-color: var(--accent) !important;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

body.dark-theme footer,
body.dark-theme footer.bg-white {
  background-color: #000000 !important;
  border-top-color: var(--border) !important;
}

body.dark-theme footer .widget-title,
body.dark-theme footer .footer-widget .widget-title {
  color: #ffffff !important;
}

body.dark-theme footer .footer-widget a {
  color: #ffffff !important;
}

body.dark-theme footer .footer-widget a:hover {
  color: var(--accent) !important;
}

body.dark-theme footer .widget-ecommerce-contact .text-dark,
body.dark-theme footer .widget-ecommerce-contact .h4,
body.dark-theme footer .widget-ecommerce-contact .h6 {
  color: #ffffff !important;
}

body.dark-theme footer .widget-ecommerce-contact .text-general,
body.dark-theme footer .widget-nav .date {
  color: var(--text-secondary) !important;
}

body.dark-theme .yith-wcwl-add-to-wishlist .wishlist-button a,
body.dark-theme .yith-wcwl-add-to-wishlist .compare-button a {
  color: #ffffff !important;
}

body.dark-theme .yith-wcwl-add-to-wishlist .wishlist-button a:hover,
body.dark-theme .yith-wcwl-add-to-wishlist .compare-button a:hover {
  color: var(--accent) !important;
}

body.dark-theme .summary .price .on-sale,
body.dark-theme .summary .price .on-sale span,
body.dark-theme .summary .price .on-sale * {
  color: #000000 !important;
}

body.dark-theme .summary .price .on-sale {
  background-color: var(--accent) !important;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

body.dark-theme .pagination-style-one .page-item .page-link {
  background-color: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

body.dark-theme .pagination-style-one .page-item .page-link:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #000000;
}

body.dark-theme .pagination-style-one .page-item.active .page-link {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #000000;
}

body.dark-theme .page-center ul.pagination li {
  background: #2a2a2a !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

body.dark-theme .page-center ul.pagination li a {
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

body.dark-theme .page-center ul.pagination li.active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #000000 !important;
}

body.dark-theme .page-center ul.pagination li.active a {
  color: #000000 !important;
}

/* Forms */
body.dark-theme input,
body.dark-theme textarea,
body.dark-theme select,
body.dark-theme .form-control {
  background-color: var(--bg-tertiary) !important;
  border-color: #333333 !important;
  color: var(--text-primary) !important;
}

body.dark-theme input::placeholder,
body.dark-theme textarea::placeholder {
  color: var(--muted) !important;
}

body.dark-theme input:focus,
body.dark-theme textarea:focus,
body.dark-theme select:focus,
body.dark-theme .form-control:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 0.2rem rgba(245, 197, 24, 0.15) !important;
}

/* Modals */
body.dark-theme .modal-content {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
}

body.dark-theme .modal-header {
  border-bottom-color: var(--border) !important;
}

body.dark-theme .modal-footer {
  border-top-color: var(--border) !important;
}

/* Footer */
body.dark-theme footer,
body.dark-theme .footer,
body.dark-theme .footer-section {
  background: #000000 !important;
}

body.dark-theme .ea-newsletter,
body.dark-theme .service-section,
body.dark-theme .service-area,
body.dark-theme .feature-section,
body.dark-theme .features-section,
body.dark-theme .feature-area,
body.dark-theme .feature-thumb,
body.dark-theme .feature-thumb-border,
body.dark-theme .icon-box,
body.dark-theme .about-icon,
body.dark-theme .simple-icon,
body.dark-theme .benefit-section,
body.dark-theme .benefits-section,
body.dark-theme .policy-section,
body.dark-theme .shipping-policy,
body.dark-theme .support-area,
body.dark-theme .full-row.bg-white,
body.dark-theme .full-row.bg-light,
body.dark-theme .full-row.bg-gray {
  background: #000000 !important;
  background-color: #000000 !important;
}

body.dark-theme .service-section i,
body.dark-theme .service-area i,
body.dark-theme .feature-section i,
body.dark-theme .features-section i,
body.dark-theme .feature-area i,
body.dark-theme .feature-thumb i,
body.dark-theme .feature-thumb-border i,
body.dark-theme .icon-box i,
body.dark-theme .about-icon i,
body.dark-theme .simple-icon i,
body.dark-theme .benefit-section i,
body.dark-theme .benefits-section i,
body.dark-theme .policy-section i,
body.dark-theme .shipping-policy i,
body.dark-theme .support-area i,
body.dark-theme .full-row.bg-white i,
body.dark-theme .full-row.bg-light i,
body.dark-theme .full-row.bg-gray i {
  color: #ffffff !important;
  background: transparent !important;
}

body.dark-theme .service-section img,
body.dark-theme .service-area img,
body.dark-theme .feature-section img,
body.dark-theme .features-section img,
body.dark-theme .feature-area img,
body.dark-theme .feature-thumb img,
body.dark-theme .feature-thumb-border img,
body.dark-theme .icon-box img,
body.dark-theme .about-icon img,
body.dark-theme .simple-icon img,
body.dark-theme .benefit-section img,
body.dark-theme .benefits-section img,
body.dark-theme .policy-section img,
body.dark-theme .shipping-policy img,
body.dark-theme .support-area img,
body.dark-theme .full-row.bg-white img,
body.dark-theme .full-row.bg-light img,
body.dark-theme .full-row.bg-gray img {
  background: transparent !important;
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}

body.dark-theme .service-section h3,
body.dark-theme .service-section h4,
body.dark-theme .service-area h3,
body.dark-theme .service-area h4,
body.dark-theme .feature-section h3,
body.dark-theme .feature-section h4,
body.dark-theme .features-section h3,
body.dark-theme .features-section h4,
body.dark-theme .feature-area h3,
body.dark-theme .feature-area h4,
body.dark-theme .benefit-section h3,
body.dark-theme .benefit-section h4,
body.dark-theme .benefits-section h3,
body.dark-theme .benefits-section h4,
body.dark-theme .policy-section h3,
body.dark-theme .policy-section h4,
body.dark-theme .shipping-policy h3,
body.dark-theme .shipping-policy h4,
body.dark-theme .support-area h3,
body.dark-theme .support-area h4 {
  color: #ffffff !important;
}

body.dark-theme .service-section p,
body.dark-theme .service-section span,
body.dark-theme .service-area p,
body.dark-theme .service-area span,
body.dark-theme .feature-section p,
body.dark-theme .feature-section span,
body.dark-theme .features-section p,
body.dark-theme .features-section span,
body.dark-theme .feature-area p,
body.dark-theme .feature-area span,
body.dark-theme .benefit-section p,
body.dark-theme .benefit-section span,
body.dark-theme .benefits-section p,
body.dark-theme .benefits-section span,
body.dark-theme .policy-section p,
body.dark-theme .policy-section span,
body.dark-theme .shipping-policy p,
body.dark-theme .shipping-policy span,
body.dark-theme .support-area p,
body.dark-theme .support-area span {
  color: rgba(255,255,255,.72) !important;
}

body.dark-theme footer,
body.dark-theme footer * {
  color: #cccccc;
}

body.dark-theme footer a {
  color: #aaaaaa !important;
}

body.dark-theme footer a:hover {
  color: var(--accent) !important;
}

/* Misc */
body.dark-theme .shadow,
body.dark-theme .box-shadow,
body.dark-theme .shadow-sm,
body.dark-theme .shadow-lg {
  box-shadow: var(--shadow) !important;
}

body.dark-theme hr {
  border-color: var(--border) !important;
}

/* Luxury banner full-width alignment override */
body.dark-theme section.ea-luxury-showcase.ea-luxury-showcase--image-only,
section.ea-luxury-showcase.ea-luxury-showcase--image-only {
position: relative !important;
left: 50% !important;
right: 50% !important;
width: 100vw !important;
max-width: 100vw !important;
margin-left: -50vw !important;
margin-right: -50vw !important;
padding-left: 0 !important;
padding-right: 0 !important;
background: transparent !important;
border: 0 !important;
box-shadow: none !important;
overflow: hidden !important;
}

body.dark-theme section.ea-luxury-showcase.ea-luxury-showcase--image-only > .ea-luxury-showcase__banner,
section.ea-luxury-showcase.ea-luxury-showcase--image-only > .ea-luxury-showcase__banner {
width: 100% !important;
max-width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
padding-left: 0 !important;
padding-right: 0 !important;
background: transparent !important;
border: 0 !important;
box-shadow: none !important;
overflow: hidden !important;
}

body.dark-theme section.ea-luxury-showcase.ea-luxury-showcase--image-only > .ea-luxury-showcase__banner > img.ea-luxury-showcase__image,
section.ea-luxury-showcase.ea-luxury-showcase--image-only > .ea-luxury-showcase__banner > img.ea-luxury-showcase__image {
width: 100% !important;
max-width: 100% !important;
height: auto !important;
display: block !important;
margin: 0 !important;
padding: 0 !important;
object-fit: cover !important;
transform: none !important;
transition: none !important;
animation: none !important;
filter: none !important;
}

/* Final luxury banner edge-to-edge layout */
html,
body {
overflow-x: hidden !important;
}

body.dark-theme section.ea-luxury-showcase.ea-luxury-showcase--image-only,
section.ea-luxury-showcase.ea-luxury-showcase--image-only {
position: relative !important;
left: 50% !important;
right: 50% !important;
transform: translateX(-50%) !important;
width: 100vw !important;
max-width: 100vw !important;
margin: 18px 0 26px !important;
padding: 0 !important;
background: transparent !important;
border: 0 !important;
box-shadow: none !important;
overflow: hidden !important;
min-height: 0 !important;
height: auto !important;
}

body.dark-theme section.ea-luxury-showcase.ea-luxury-showcase--image-only > .ea-luxury-showcase__banner,
section.ea-luxury-showcase.ea-luxury-showcase--image-only > .ea-luxury-showcase__banner {
display: block !important;
width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
padding: 0 !important;
background: transparent !important;
border: 0 !important;
box-shadow: none !important;
overflow: hidden !important;
border-radius: 0 !important;
min-height: 0 !important;
height: 240px !important;
}

body.dark-theme section.ea-luxury-showcase.ea-luxury-showcase--image-only > .ea-luxury-showcase__banner > img.ea-luxury-showcase__image,
section.ea-luxury-showcase.ea-luxury-showcase--image-only > .ea-luxury-showcase__banner > img.ea-luxury-showcase__image {
display: block !important;
width: 100% !important;
max-width: 100% !important;
height: 100% !important;
margin: 0 !important;
padding: 0 !important;
object-fit: cover !important;
object-position: center center !important;
border-radius: 0 !important;
background: transparent !important;
border: 0 !important;
box-shadow: none !important;
transform: none !important;
transition: none !important;
animation: none !important;
filter: none !important;
}

@media (max-width: 767px) {
body.dark-theme section.ea-luxury-showcase.ea-luxury-showcase--image-only,
section.ea-luxury-showcase.ea-luxury-showcase--image-only {
width: 100vw !important;
max-width: 100vw !important;
margin: 14px 0 20px !important;
}
}

/* Luxury Fabric Brand Section */
body.dark-theme .luxury-fabric-section {
  position: relative;
  background: #050505;
  border: 1px solid rgba(212, 162, 63, .6);
  border-radius: 28px;
  overflow: hidden;
  margin-top: 80px;
  padding: 0;
  box-shadow: 0 0 40px rgba(0, 0, 0, .45), inset 0 0 80px rgba(212, 162, 63, .035);
}
body.dark-theme .luxury-fabric-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(212, 162, 63, .14), transparent 28%), linear-gradient(135deg, rgba(255,255,255,.04), transparent 34%);
  pointer-events: none;
  z-index: 1;
}
body.dark-theme .luxury-top-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}
body.dark-theme .luxury-right-visual {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: linear-gradient(to left, rgba(0,0,0,.05), rgba(0,0,0,.65)), url('../images/home.jpeg');
  background-size: cover;
  background-position: center;
  opacity: .95;
  transition: transform .5s ease, opacity .5s ease;
}
body.dark-theme .luxury-fabric-section:hover .luxury-right-visual {
  transform: scale(1.035);
  opacity: 1;
}
body.dark-theme .luxury-left-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 80px 70px;
}
body.dark-theme .luxury-tagline {
  color: #d4a23f;
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 500;
}
body.dark-theme .luxury-left-content h2 {
  font-size: 78px;
  color: #fff;
  line-height: 1.1;
  margin: 20px 0;
  font-family: Georgia, 'Times New Roman', serif;
  text-shadow: 0 8px 28px rgba(0,0,0,.55);
}
body.dark-theme .luxury-left-content p {
  font-size: 34px;
  color: #d7d7d7;
  margin-bottom: 50px;
}
body.dark-theme .luxury-left-content > p::after {
  content: "";
  display: block;
  width: 66px;
  height: 2px;
  background: #d4a23f;
  margin-top: 24px;
}
body.dark-theme .luxury-features-grid {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
body.dark-theme .luxury-feature-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding-right: 28px;
}
body.dark-theme .luxury-feature-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 1px;
  height: 118px;
  background: rgba(255,255,255,.22);
}
body.dark-theme .luxury-feature-icon {
  width: 68px;
  height: 68px;
  border: 2px solid #d4a23f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a23f;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 0 0 22px rgba(212,162,63,.2);
}
body.dark-theme .luxury-feature-card h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
body.dark-theme .luxury-feature-card span {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.7;
}
body.dark-theme .luxury-bottom-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  border-top: 1px solid rgba(212,162,63,.25);
  background: #060606;
}
body.dark-theme .luxury-bottom-item {
  padding: 45px 35px;
  border-right: 1px solid rgba(255,255,255,.08);
  min-height: 260px;
  text-align: center;
  transition: background .3s ease, transform .3s ease;
}
body.dark-theme .luxury-bottom-item:hover {
  background: rgba(212,162,63,.045);
  transform: translateY(-4px);
}
body.dark-theme .luxury-bottom-item > i,
body.dark-theme .luxury-bottom-icon i {
  color: #d4a23f;
  font-size: 42px;
  margin-bottom: 22px;
}
body.dark-theme .luxury-payment-item {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  text-align: left;
}
body.dark-theme .luxury-payment-item h3 {
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  margin-bottom: 12px;
}
body.dark-theme .luxury-bottom-item h4 {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 14px;
}
body.dark-theme .luxury-bottom-item p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
body.dark-theme .luxury-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
body.dark-theme .luxury-payment-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 32px;
  padding: 0 10px;
  background: #fff;
  color: #114eaf;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
body.dark-theme .luxury-payment-icons span:nth-child(2) { color: #d11d1d; }
body.dark-theme .luxury-payment-icons span:nth-child(3) { color: #2f49a3; }
body.dark-theme .luxury-payment-icons span:nth-child(4) { color: #111; }
body.dark-theme .luxury-payment-icons span:nth-child(5) { color: #00a2e8; }
@media (max-width: 1199px) {
  body.dark-theme .luxury-left-content { padding: 70px 46px; }
  body.dark-theme .luxury-left-content h2 { font-size: 58px; }
  body.dark-theme .luxury-left-content p { font-size: 28px; }
  body.dark-theme .luxury-bottom-features { grid-template-columns: repeat(2, 1fr); }
  body.dark-theme .luxury-payment-item { grid-column: 1 / -1; }
}
@media (max-width: 991px) {
  body.dark-theme .luxury-top-section { flex-direction: column; min-height: auto; }
  body.dark-theme .luxury-left-content { width: 100%; padding: 58px 34px; }
  body.dark-theme .luxury-right-visual { position: relative; width: 100%; height: 420px; }
  body.dark-theme .luxury-features-grid { gap: 24px; }
}
@media (max-width: 767px) {
  body.dark-theme .luxury-fabric-section { margin-top: 48px; border-radius: 20px; }
  body.dark-theme .luxury-left-content { padding: 42px 24px; }
  body.dark-theme .luxury-tagline { font-size: 13px; letter-spacing: 3px; }
  body.dark-theme .luxury-left-content h2 { font-size: 42px; }
  body.dark-theme .luxury-left-content p { font-size: 22px; margin-bottom: 30px; }
  body.dark-theme .luxury-features-grid { flex-direction: column; }
  body.dark-theme .luxury-feature-card:not(:last-child)::after { display: none; }
  body.dark-theme .luxury-right-visual { height: 320px; }
  body.dark-theme .luxury-bottom-features { grid-template-columns: 1fr; }
  body.dark-theme .luxury-bottom-item { min-height: auto; padding: 32px 24px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  body.dark-theme .luxury-payment-item { flex-direction: column; text-align: center; align-items: center; }
}

/* FAQ Section - Premium Reference Design */
.faq-luxury-page {
  background: #000000 !important;
  padding: 80px 0 !important;
}

.faq-container {
  max-width: 1400px !important;
  margin: auto !important;
  padding: 0 20px !important;
}

.faq-heading {
  text-align: center !important;
  margin-bottom: 54px !important;
}

.faq-label {
  color: #b37c20 !important;
  display: block !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 8px !important;
  line-height: 1 !important;
  margin-bottom: 16px !important;
  text-transform: uppercase !important;
}

.faq-title {
  color: #ffffff !important;
  font-size: 56px !important;
  font-weight: 700 !important;
  letter-spacing: -0.8px !important;
  line-height: 1.08 !important;
  margin: 0 0 18px !important;
}

.faq-subtitle {
  color: #9f9f9f !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  margin: 0 auto !important;
  max-width: 760px !important;
}

.faq-layout {
  display: grid !important;
  grid-template-columns: 320px 1fr !important;
  gap: 30px !important;
}

.faq-sidebar {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.faq-category-card,
.faq-help-card,
.faq-bottom-support {
  background: linear-gradient(180deg, rgba(20,20,20,.96), rgba(8,8,8,.98)) !important;
  border: 1px solid rgba(179,124,32,0.25) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.04) !important;
  overflow: hidden !important;
}

.faq-category-item {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  display: flex !important;
  gap: 16px !important;
  height: 72px !important;
  padding: 0 24px !important;
  position: relative !important;
  text-align: left !important;
  transition: all .35s ease !important;
  width: 100% !important;
}

.faq-category-item:last-child {
  border-bottom: 0 !important;
}

.faq-category-item::before {
  background: #b37c20 !important;
  bottom: 0 !important;
  content: "" !important;
  left: 0 !important;
  opacity: 0 !important;
  position: absolute !important;
  top: 0 !important;
  transition: opacity .35s ease !important;
  width: 4px !important;
}

.faq-category-item i {
  color: #b37c20 !important;
  font-size: 20px !important;
  min-width: 22px !important;
  transition: all .35s ease !important;
}

.faq-category-item span {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.faq-category-item:hover,
.faq-category-item.active {
  background: rgba(179,124,32,.10) !important;
  box-shadow: inset 0 0 30px rgba(179,124,32,.06) !important;
}

.faq-category-item.active::before {
  opacity: 1 !important;
}

.faq-category-item.active i,
.faq-category-item.active span {
  color: #b37c20 !important;
}

.faq-help-card {
  padding: 28px 24px !important;
}

.faq-help-card > i {
  color: #b37c20 !important;
  font-size: 38px !important;
  margin-bottom: 16px !important;
}

.faq-help-card h3,
.faq-bottom-support h3 {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 0 8px !important;
}

.faq-help-card p,
.faq-bottom-support p {
  color: #9f9f9f !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  margin: 0 0 22px !important;
}

.faq-help-card a,
.faq-support-btn {
  align-items: center !important;
  border: 1px solid rgba(179,124,32,.75) !important;
  border-radius: 4px !important;
  color: #d7a54a !important;
  display: inline-flex !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  gap: 20px !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 0 24px !important;
  text-decoration: none !important;
  transition: all .35s ease !important;
}

.faq-help-card a {
  width: 100% !important;
}

.faq-help-card a:hover,
.faq-support-btn:hover {
  background: #b37c20 !important;
  box-shadow: 0 0 28px rgba(179,124,32,.24) !important;
  color: #000000 !important;
}

.faq-main {
  min-width: 0 !important;
}

.faq-accordion {
  background: linear-gradient(180deg, rgba(15,15,15,.92), rgba(8,8,8,.96)) !important;
  border: 1px solid rgba(179,124,32,0.18) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 70px rgba(0,0,0,.46) !important;
  padding: 14px !important;
}

.faq-item {
  background: linear-gradient(180deg,#141414,#0b0b0b) !important;
  border: 1px solid rgba(179,124,32,0.18) !important;
  border-radius: 20px !important;
  margin-bottom: 18px !important;
  overflow: hidden !important;
  position: relative !important;
  transition: all .35s ease !important;
}

.faq-item:last-child {
  margin-bottom: 0 !important;
}

.faq-item:hover {
  border-color: rgba(179,124,32,.45) !important;
  transform: translateY(-2px) !important;
}

.faq-item::before {
  background: linear-gradient(180deg, #b37c20, rgba(179,124,32,.25)) !important;
  bottom: 18px !important;
  content: "" !important;
  left: 0 !important;
  opacity: 0 !important;
  position: absolute !important;
  top: 18px !important;
  transition: opacity .35s ease !important;
  width: 4px !important;
}

.faq-item.active {
  background: linear-gradient(180deg,#181818,#0d0d0d) !important;
  border-color: rgba(179,124,32,.65) !important;
  box-shadow: 0 0 32px rgba(179,124,32,.12), 0 18px 45px rgba(0,0,0,.42) !important;
}

.faq-item.active::before {
  opacity: 1 !important;
}

.faq-question {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  color: #ffffff !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  padding: 28px 30px !important;
  text-align: left !important;
  width: 100% !important;
}

.faq-question-left {
  align-items: center !important;
  display: flex !important;
  gap: 20px !important;
  min-width: 0 !important;
}

.faq-number {
  align-items: center !important;
  border: 1px solid rgba(179,124,32,.85) !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  display: inline-flex !important;
  flex: 0 0 42px !important;
  font-size: 15px !important;
  height: 42px !important;
  justify-content: center !important;
  width: 42px !important;
}

.faq-question-text {
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

.faq-chevron {
  color: #ffffff !important;
  font-size: 16px !important;
  margin-left: 20px !important;
  transition: all .35s ease !important;
}

.faq-item.active .faq-chevron {
  color: #b37c20 !important;
  transform: rotate(180deg) !important;
}

.faq-answer {
  color: #9f9f9f !important;
  font-size: 17px !important;
  line-height: 1.9 !important;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s ease, opacity .35s ease !important;
}

.faq-item.active .faq-answer {
  opacity: 1 !important;
}

.faq-answer-inner {
  color: #b9b9b9 !important;
  padding: 0 30px 30px 92px !important;
}

.faq-answer-inner,
.faq-answer-inner p,
.faq-answer-inner span,
.faq-answer-inner li {
  color: #b9b9b9 !important;
  font-size: 17px !important;
  line-height: 1.9 !important;
}

.faq-answer-inner p {
  margin: 0 0 16px !important;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0 !important;
}

.faq-bottom-support {
  align-items: center !important;
  display: flex !important;
  justify-content: space-between !important;
  margin-top: 26px !important;
  padding: 34px 42px !important;
}

.faq-bottom-left {
  align-items: center !important;
  display: flex !important;
  gap: 22px !important;
}

.faq-bottom-left > i {
  color: #b37c20 !important;
  font-size: 46px !important;
}

.faq-bottom-support p {
  margin-bottom: 0 !important;
}

@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr !important;
  }

  .faq-sidebar {
    min-width: 0 !important;
  }

  .faq-category-card {
    border-radius: 18px !important;
    display: flex !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
  }

  .faq-category-card::-webkit-scrollbar {
    display: none !important;
  }

  .faq-category-item {
    border-bottom: 0 !important;
    border-right: 1px solid rgba(255,255,255,.08) !important;
    flex: 0 0 auto !important;
    min-width: 190px !important;
  }

  .faq-help-card {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .faq-luxury-page {
    padding: 56px 0 !important;
  }

  .faq-container {
    padding: 0 15px !important;
  }

  .faq-label {
    font-size: 11px !important;
    letter-spacing: 5px !important;
  }

  .faq-title {
    font-size: 36px !important;
  }

  .faq-subtitle {
    font-size: 15px !important;
  }

  .faq-accordion {
    padding: 10px !important;
  }

  .faq-question {
    padding: 22px 18px !important;
  }

  .faq-question-left {
    gap: 14px !important;
  }

  .faq-number {
    flex-basis: 34px !important;
    font-size: 12px !important;
    height: 34px !important;
    width: 34px !important;
  }

  .faq-question-text {
    font-size: 17px !important;
  }

  .faq-answer-inner {
    padding: 0 18px 24px 66px !important;
  }

  .faq-answer-inner,
  .faq-answer-inner p,
  .faq-answer-inner span,
  .faq-answer-inner li {
    font-size: 15px !important;
  }

  .faq-bottom-support {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 28px 22px !important;
  }

  .faq-support-btn {
    width: 100% !important;
  }
}

.faq-luxury-page {
  background: radial-gradient(circle at top, rgba(212,164,55,0.06), transparent 32%), #050505 !important;
  padding: 80px 0 70px !important;
}

.faq-luxury-page .faq-container {
  max-width: 1180px !important;
}

.faq-luxury-page .faq-heading {
  margin-bottom: 46px !important;
}

.faq-luxury-page .faq-title {
  color: #ffffff !important;
  font-family: Georgia, serif !important;
  font-size: 46px !important;
  font-weight: 500 !important;
  letter-spacing: -.4px !important;
}

.faq-title-line {
  width: 52px !important;
  height: 1px !important;
  background: #d4a437 !important;
  display: block !important;
  margin: 14px auto 18px !important;
}

.faq-luxury-page .faq-subtitle {
  max-width: 640px !important;
  color: #a8a8a8 !important;
  font-size: 16px !important;
}

.faq-luxury-page .faq-layout {
  display: flex !important;
  align-items: flex-start !important;
  gap: 28px !important;
}

.faq-luxury-page .faq-sidebar {
  width: 260px !important;
  flex: 0 0 260px !important;
}

.faq-luxury-page .faq-category-card,
.faq-luxury-page .faq-help-card,
.faq-luxury-page .faq-accordion,
.faq-luxury-page .faq-bottom-support {
  background: linear-gradient(180deg, #151515, #0a0a0a) !important;
  border: 1px solid rgba(212,164,55,0.25) !important;
  border-radius: 3px !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.42) !important;
}

.faq-luxury-page .faq-category-item {
  height: 54px !important;
  padding: 0 22px !important;
  gap: 14px !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.faq-luxury-page .faq-category-item::before {
  background: #d4a437 !important;
}

.faq-luxury-page .faq-category-item i {
  color: #d4a437 !important;
  font-size: 17px !important;
}

.faq-luxury-page .faq-category-item span {
  color: #d8d8d8 !important;
  font-size: 15px !important;
}

.faq-luxury-page .faq-category-item.active,
.faq-luxury-page .faq-category-item:hover {
  background: rgba(212,164,55,0.10) !important;
}

.faq-luxury-page .faq-category-item.active span {
  color: #ffffff !important;
}

.faq-luxury-page .faq-help-card {
  margin-top: 16px !important;
  padding: 24px 22px !important;
}

.faq-luxury-page .faq-help-card > i,
.faq-luxury-page .faq-bottom-left > i {
  color: #d4a437 !important;
}

.faq-luxury-page .faq-help-card a,
.faq-luxury-page .faq-support-btn {
  border: 1px solid rgba(212,164,55,.7) !important;
  color: #d4a437 !important;
  border-radius: 2px !important;
}

.faq-luxury-page .faq-main {
  flex: 1 !important;
  min-width: 0 !important;
}

.faq-luxury-page .faq-category-panel {
  display: none !important;
}

.faq-luxury-page .faq-category-panel.active {
  display: block !important;
}

.faq-luxury-page .faq-accordion {
  padding: 10px !important;
}

.faq-luxury-page .faq-item {
  background: linear-gradient(180deg, #181818, #101010) !important;
  border: 1px solid rgba(212,164,55,0.18) !important;
  border-radius: 3px !important;
  margin-bottom: 10px !important;
}

.faq-luxury-page .faq-item.active {
  border-color: rgba(212,164,55,0.7) !important;
  box-shadow: inset 4px 0 0 #d4a437, 0 0 30px rgba(212,164,55,.10) !important;
}

.faq-luxury-page .faq-question {
  padding: 18px 22px !important;
}

.faq-luxury-page .faq-number {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border-color: rgba(212,164,55,.9) !important;
  color: #d4a437 !important;
  font-size: 13px !important;
}

.faq-luxury-page .faq-question-text {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.faq-luxury-page .faq-chevron {
  color: #d4a437 !important;
  transition: transform .35s ease !important;
}

.faq-luxury-page .faq-item.active .faq-chevron {
  transform: rotate(180deg) !important;
}

.faq-luxury-page .faq-answer {
  max-height: 0;
  overflow: hidden !important;
  transition: max-height .4s ease !important;
}

.faq-luxury-page .faq-answer-inner {
  color: #bdbdbd !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  padding: 0 62px 22px !important;
}

.faq-luxury-page .faq-bottom-support {
  margin-top: 22px !important;
  padding: 26px 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.faq-luxury-page .faq-bottom-left {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
}

.faq-luxury-page .faq-bottom-left > i {
  font-size: 42px !important;
}

@media (max-width: 768px) {
  .faq-luxury-page {
    padding: 50px 0 !important;
  }

  .faq-luxury-page .faq-title {
    font-size: 34px !important;
  }

  .faq-luxury-page .faq-layout {
    flex-direction: column !important;
    gap: 25px !important;
  }

  .faq-luxury-page .faq-sidebar {
    width: 100% !important;
    flex: none !important;
  }

  .faq-luxury-page .faq-category-card {
    width: 100% !important;
    overflow-x: auto !important;
    display: flex !important;
    gap: 12px !important;
    padding: 0 0 10px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .faq-luxury-page .faq-category-card::-webkit-scrollbar {
    display: none !important;
  }

  .faq-luxury-page .faq-category-item {
    min-width: 180px !important;
    border: 1px solid rgba(212,164,55,0.25) !important;
    background: #101010 !important;
  }

  .faq-luxury-page .faq-question {
    padding: 16px !important;
  }

  .faq-luxury-page .faq-question-text {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  .faq-luxury-page .faq-answer-inner {
    font-size: 14px !important;
    line-height: 1.8 !important;
    padding: 0 16px 18px 58px !important;
  }

  .faq-luxury-page .faq-bottom-support {
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .faq-luxury-page .faq-bottom-left {
    flex-direction: column !important;
  }
}

.faq-luxury-page {
  background: #050505 !important;
  padding: 90px 0 !important;
}

.faq-luxury-page .faq-container {
  max-width: 1400px !important;
  margin: auto !important;
  padding: 0 24px !important;
}

.faq-luxury-page .faq-heading {
  text-align: center !important;
  margin-bottom: 42px !important;
}

.faq-luxury-page .faq-title {
  font-size: 46px !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}

.faq-luxury-page .faq-subtitle {
  font-size: 17px !important;
  line-height: 1.7 !important;
  max-width: 690px !important;
}

.faq-luxury-page .faq-layout {
  max-width: 1250px !important;
  margin: 0 auto !important;
  display: flex !important;
  gap: 28px !important;
}

.faq-luxury-page .faq-sidebar {
  width: 280px !important;
  flex: 0 0 280px !important;
}

.faq-luxury-page .faq-category-card,
.faq-luxury-page .faq-help-card,
.faq-luxury-page .faq-accordion,
.faq-luxury-page .faq-bottom-support {
  border-radius: 4px !important;
  border: 1px solid rgba(212,164,55,0.24) !important;
  background: linear-gradient(180deg, rgba(22,22,22,.96), rgba(8,8,8,.98)) !important;
}

.faq-luxury-page .faq-category-item {
  height: 72px !important;
  padding: 0 28px !important;
}

.faq-luxury-page .faq-category-item span {
  font-size: 16px !important;
}

.faq-luxury-page .faq-help-card {
  padding: 28px 24px !important;
}

.faq-luxury-page .faq-help-card > i {
  font-size: 42px !important;
}

.faq-luxury-page .faq-main {
  flex: 1 1 auto !important;
}

.faq-luxury-page .faq-accordion {
  padding: 14px !important;
}

.faq-luxury-page .faq-item {
  background: linear-gradient(180deg, #111111, #090909) !important;
  border: 1px solid rgba(212,164,55,0.25) !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
  overflow: hidden !important;
}

.faq-luxury-page .faq-question {
  padding: 26px 32px !important;
}

.faq-luxury-page .faq-question-left {
  gap: 24px !important;
}

.faq-luxury-page .faq-number {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  border-radius: 50% !important;
  background: rgba(212,164,55,0.08) !important;
  border: 1px solid #d4a437 !important;
  color: #d4a437 !important;
  font-size: 16px !important;
}

.faq-luxury-page .faq-question-text {
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}

.faq-luxury-page .faq-answer-inner {
  font-size: 17px !important;
  line-height: 1.9 !important;
  color: rgba(255,255,255,0.72) !important;
  padding: 0 86px 28px 104px !important;
}

.faq-luxury-page .faq-bottom-support {
  margin-top: 24px !important;
  min-height: 118px !important;
  padding: 30px 42px !important;
  border-radius: 4px !important;
}

.faq-luxury-page .faq-bottom-left h3 {
  font-size: 24px !important;
}

.faq-luxury-page .faq-support-btn {
  min-width: 220px !important;
}

@media (max-width: 992px) {
  .faq-luxury-page .faq-layout {
    flex-direction: column !important;
  }

  .faq-luxury-page .faq-sidebar {
    width: 100% !important;
    flex: none !important;
  }
}

@media (max-width: 768px) {
  .faq-luxury-page {
    padding: 54px 0 !important;
  }

  .faq-luxury-page .faq-title {
    font-size: 34px !important;
  }

  .faq-luxury-page .faq-category-card {
    overflow-x: auto !important;
    display: flex !important;
    gap: 12px !important;
    padding-bottom: 10px !important;
  }

  .faq-luxury-page .faq-category-item {
    min-width: 180px !important;
    height: 58px !important;
    padding: 0 18px !important;
  }

  .faq-luxury-page .faq-question {
    padding: 18px !important;
  }

  .faq-luxury-page .faq-question-left {
    gap: 14px !important;
  }

  .faq-luxury-page .faq-number {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    font-size: 13px !important;
  }

  .faq-luxury-page .faq-question-text {
    font-size: 18px !important;
    line-height: 1.5 !important;
  }

  .faq-luxury-page .faq-answer-inner {
    font-size: 14px !important;
    padding: 0 18px 22px 68px !important;
  }

  .faq-luxury-page .faq-bottom-support {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
  }

  .faq-luxury-page .faq-support-btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}
