/* =============================================
   THEME v1 — Dark iOS Glassmorphism
   Store: sk9nsh.zid.store
   Primary: #5bc0be  |  Secondary: #1C1C1C  |  Text: #ffffff
   ============================================= */

/* =============================================
   1. CSS VARIABLES
   ============================================= */
:root {
  --primary-color: #5bc0be;
  --hover-color: #4aa8a6;
  --black-color: #1C1C1C;
  --white-color: #ffffff;
  --sub-primary-color: #1C1C1C;
  --text-color-primary-bg: #ffffff;
  --warning-color: #f0c040;
  --danger-color: #e74c5a;
  --sucess-color: #2ecc71;

  --secondary-color: #2a2a2a;
  --secondary-color-alt0: #ffffff;
  --secondary-color-alt1: #cccccc;
  --secondary-color-alt2: #222222;
  --secondary-color-alt3: #ffffff;
  --secondary-color-alt4: #333333;
  --secondary-color-alt5: #2a2a2a;
  --secondary-color-alt6: #999999;
  --secondary-color-alt7: #2a2a2a;
  --secondary-color-alt8: #ffffff;
  --secondary-color-alt9: #777777;
  --secondary-color-alt10: #ffffff;
  --secondary-color-alt11: #bbbbbb;
  --secondary-color-alt12: #888888;
  --secondary-color-alt13: #1a1a1a;

  --header-primary-color: #1C1C1C;
  --header-icons-color-primary-bg: #ffffff;
  --header-input-content-colors: #ffffff;
  --header-input-bg: rgba(255, 255, 255, 0.08);
  --header-menu-links-colors: #ffffff;
  --header-links-bg: #1C1C1C;
  --header-category-bg: #2a2a2a;
  --header-category-color: #ffffff;
  --header-mobile-bg: #1C1C1C;

  --bread-bg: #1a1a1a;
  --bread-text-color: #ffffff;
  --bread-text-color-with-bg: #ffffff;

  --footer-primary-color: #111111;
  --footer-text-color-primary-bg: #ffffff;
  --footer-links-color: #bbbbbb;
  --footer-links-hover-color: #5bc0be;
  --footer-bg-copyrights: #0a0a0a;
  --footer-color-copyrights: #888888;

  --glass-bg: rgba(28, 28, 28, 0.72);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

/* =============================================
   2. GLOBAL
   ============================================= */
html,
body {
  background-color: #000000 !important;
  color: #ffffff;
}
body {
  overflow-x: hidden;
}
::selection {
  background: #5bc0be;
  color: #000;
}

/* Scrollbar */
*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background: #111111;
}
*::-webkit-scrollbar-thumb {
  background: #5bc0be;
  border-radius: 10px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #4aa8a6;
}

/* Links */
a {
  color: #ffffff;
  transition: color 0.3s ease;
}
a:hover {
  color: #5bc0be;
}

/* Form controls */
.form-control {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #5bc0be;
  color: #ffffff;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Nice select */
.nice-select {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}
.nice-select .option {
  background-color: #1C1C1C !important;
  color: #ffffff !important;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #5bc0be !important;
  color: #000 !important;
}
.nice-select .list {
  background-color: #1C1C1C !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Dropdown menu */
.dropdown-menu {
  background-color: #1C1C1C;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dropdown-item {
  color: #ffffff;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #5bc0be;
  color: #000;
}

/* Modal */
.modal-content {
  background-color: #1C1C1C;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.close {
  color: #ffffff;
}

/* Breadcrumb */
.breadcrumb-section {
  background: #1a1a1a;
}
.breadcrumb-section .bread-title {
  color: #ffffff;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Section headings — Centered with decorative side lines + optional RGB */
.xc-sec-heading {
  text-align: center !important;
}
.xc-sec-heading > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.xc-sec-heading > div::before,
.xc-sec-heading > div::after {
  content: '';
  flex: 1;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(91, 192, 190, 0.3), transparent);
  animation: none;
}
.xc-sec-heading__subtitle {
  color: #5bc0be;
  text-align: center !important;
}
.xc-sec-heading__subtitle.has-before::before {
  background-color: #5bc0be;
}
.xc-sec-heading__title {
  color: #ffffff;
  text-align: center !important;
  font-size: 28px !important;
  letter-spacing: 1px;
  animation: none;
}
/* RGB animation — only on headings with .gc-rgb (product sections) */
.gc-rgb > div::before,
.gc-rgb > div::after {
  background-color: #5bc0be;
  animation: rgbLine 4s ease-in-out infinite alternate;
}
.gc-rgb .xc-sec-heading__title {
  animation: rgbGlow 4s ease-in-out infinite alternate;
}
@keyframes rgbGlow {
  0%   { text-shadow: 0 0 10px rgba(255, 20, 80, 0.5), 0 0 30px rgba(255, 20, 80, 0.15); }
  25%  { text-shadow: 0 0 10px rgba(255, 100, 20, 0.5), 0 0 30px rgba(255, 100, 20, 0.15); }
  50%  { text-shadow: 0 0 10px rgba(20, 255, 130, 0.5), 0 0 30px rgba(20, 255, 130, 0.15); }
  75%  { text-shadow: 0 0 10px rgba(20, 130, 255, 0.5), 0 0 30px rgba(20, 130, 255, 0.15); }
  100% { text-shadow: 0 0 12px rgba(180, 20, 255, 0.5), 0 0 35px rgba(180, 20, 255, 0.15); }
}
@keyframes rgbLine {
  0%   { background-color: #ff1450; }
  25%  { background-color: #ff6414; }
  50%  { background-color: #14ff82; }
  75%  { background-color: #1482ff; }
  100% { background-color: #b414ff; }
}
.xc-sec-heading-btn {
  color: #ffffff;
  background-color: #5bc0be;
  margin: 0 auto !important;
  display: inline-flex !important;
  justify-content: center;
}
.xc-sec-heading-btn:hover {
  color: #ffffff;
  background-color: #4aa8a6;
}

/* =============================================
   3. BUTTONS & PAGINATION
   ============================================= */
.swiftcart-btn {
  color: #000;
  background-color: #5bc0be;
  border-radius: 8px;
}
.swiftcart-btn:hover {
  color: #000;
  background-color: #4aa8a6;
}
.btn-primary {
  background-color: #5bc0be;
  border-color: #5bc0be;
  color: #000;
}
.btn-primary:hover {
  background-color: #4aa8a6;
  border-color: #4aa8a6;
  color: #000;
}
.btn-outline-primary {
  border-color: #5bc0be;
  color: #5bc0be;
}
.btn-outline-primary:hover {
  background-color: #5bc0be;
  border-color: #5bc0be;
  color: #000;
}

.products-pagination .page-link {
  background-color: #5bc0be;
  border-color: #5bc0be;
  color: #000;
}
.products-pagination .page-link:hover,
.products-pagination li.active .page-link,
.products-pagination .page-link.active,
.products-pagination .page-link.active:hover {
  background-color: #1C1C1C;
  color: #5bc0be;
  border-color: #5bc0be;
}

/* =============================================
   4. HEADER
   ============================================= */

/* Top bar */
.xc-header-two__top {
  background-color: #000000 !important;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}
.announcement-bar .announcement-text {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
}
.langCurrecyModal {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px !important;
  font-size: 13px !important;
  padding: 5px 14px !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.langCurrecyModal:hover {
  background-color: #5bc0be !important;
  color: #000 !important;
  border-color: #5bc0be;
}

/* Main header glass */
.xc-header-two {
  position: relative !important;
  z-index: 10000 !important;
  background-color: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
  padding: 12px 0 !important;
  transition: background-color 0.4s ease;
}
.xc-header-sticky.xc-header-two {
  background-color: rgba(0, 0, 0, 0.82) !important;
  backdrop-filter: blur(32px) !important;
  -webkit-backdrop-filter: blur(32px) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Logo */
.xc-header-two__logo .logo img {
  filter: brightness(1.1);
}
/* Hide mobile logo when desktop logo shows */
@media (min-width: 768px) {
  .image-logo.d-lg-none {
    display: none !important;
  }
}

/* Search bar */
.xc-header-two__search {
  position: relative !important;
  z-index: 9999999 !important;
}
.xc-header-two__search form {
  background-color: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px !important;
  padding: 2px;
  transition: all 0.3s ease;
}
.xc-header-two__search form:focus-within {
  border-color: #5bc0be;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(91, 192, 190, 0.15);
}
.search-input-input {
  background-color: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  height: 44px !important;
}
.search-input-input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
  font-weight: 400 !important;
}
.xc-header-two__search button {
  color: rgba(255, 255, 255, 0.5) !important;
}
.xc-header-two__search button:hover {
  color: #5bc0be !important;
}

/* Autocomplete — anchored directly under search bar */
.autocomplete-items {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999999 !important;
  max-height: 320px !important;
  overflow-y: auto !important;
  background: rgba(0, 0, 0, 0.94) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6) !important;
  padding: 6px !important;
}
.autocomplete-items a {
  padding: 12px 16px !important;
  height: auto !important;
  min-height: 44px !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04) !important;
  transition: all 0.2s ease;
  display: block !important;
}
.autocomplete-items a:hover {
  background: rgba(91, 192, 190, 0.1) !important;
  color: #5bc0be !important;
  padding-right: 20px !important;
}
.autocomplete-items div:last-child a {
  border-bottom: none !important;
}

/* Mini-search (mobile) */
.mini-search {
  z-index: 9999999 !important;
  position: relative !important;
  background-color: #000 !important;
  border-radius: 12px !important;
  padding: 8px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
}

/* Header icons */
.xc-header-two__btn {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease !important;
}
.xc-header-two__btn:hover {
  color: #5bc0be !important;
  transform: scale(1.05);
}
.xc-header-two__btn i {
  font-size: 24px !important;
}
.xc-header-two__btn .xc-cart-count {
  background-color: #5bc0be !important;
  color: #000 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  width: 17px !important;
  height: 17px !important;
  top: -4px !important;
  right: -6px !important;
}
.xc-header-two__btn i.icon-love {
  margin-top: 0;
}

/* Bottom menu / Navigation */
.xc-header-two__bottom {
  position: relative !important;
  z-index: 9999 !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06) !important;
}
.xc-main-menu .main-nav .top-level-link a {
  color: rgba(255, 255, 255, 0.85) !important;
  height: 60px !important;
  line-height: 60px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 0 14px !important;
  position: relative;
  transition: color 0.3s ease;
}
.xc-main-menu .main-nav .top-level-link a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: #5bc0be;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.xc-main-menu .main-nav .top-level-link:hover > a {
  color: #5bc0be !important;
}
.xc-main-menu .main-nav .top-level-link:hover > a::after {
  transform: scaleX(1);
}

/* Sub-menu dropdown */
ul.main-nav > li > div.sub-menu-block {
  z-index: 99999 !important;
  position: absolute !important;
  background-color: rgba(28, 28, 28, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 2px solid #5bc0be !important;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6) !important;
}

/* Ensure no parent clips the dropdown */
.xc-main-menu {
  overflow: visible !important;
}
ul.main-nav > li.top-level-link > div.sub-menu-block a {
  color: rgba(255, 255, 255, 0.85) !important;
  height: 44px !important;
  line-height: 44px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  min-width: 180px;
}
ul.main-nav > li.top-level-link > div.sub-menu-block a:hover {
  color: #5bc0be !important;
  background-color: rgba(255, 255, 255, 0.03);
}
.selectCategory {
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  height: 40px !important;
  line-height: 40px !important;
  padding: 0 12px !important;
  font-size: 14px !important;
}

/* Mobile slide menu */
.slide-menu {
  background-color: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  width: 300px !important;
}
.menuHead {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}
.mobileMenu .loginBtn {
  background-color: #5bc0be !important;
  color: #000 !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  border: none !important;
}
.slide-menu .slide-menu__slider ul a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 14px 30px !important;
}
.slide-menu .slide-menu__slider ul a:before {
  color: rgba(255, 255, 255, 0.3) !important;
}
.slide-menu ul ul {
  background-color: rgba(0, 0, 0, 0.95) !important;
}
.menuHead .closeX {
  color: rgba(255, 255, 255, 0.6) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
}
.menuHead .closeX:hover {
  background-color: #5bc0be !important;
  color: #000 !important;
}

/* Gift box popover */
.giftBox {
  background: rgba(28, 28, 28, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
}
.gift-popover-body p {
  color: #ffffff !important;
}
.giftBox .giftButton a {
  background-color: #5bc0be !important;
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}

/* =============================================
   5. PRELOADER
   ============================================= */
.xc-preloader {
  background-color: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.xc-preloader__image::before {
  border-top-color: #5bc0be !important;
}

/* =============================================
   6. SLIDER + SIDE BANNERS
   ============================================= */

.xc-main-slider {
  border-radius: 20px !important;
  overflow: hidden;
}
.xc-main-slider-two.xc-main-slider {
  border: none !important;
  padding: 0 !important;
}

/* Slider item */
.xc-main-slider__item {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(28, 28, 28, 0.9) 100%
  ) !important;
  border-radius: 20px !important;
  min-height: 480px !important;
  padding: 50px 60px !important;
  position: relative;
  overflow: hidden;
}
.xc-main-slider__item::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(91, 192, 190, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.xc-main-slider-two .xc-main-slider__item {
  padding: 50px 60px !important;
}

/* Subtitle badge */
.xc-main-slider__subtitle {
  background-color: rgba(91, 192, 190, 0.15) !important;
  color: #5bc0be !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 4px 14px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 0.5px solid rgba(91, 192, 190, 0.2);
}
.xc-main-slider-two .xc-main-slider__subtitle {
  background-color: rgba(91, 192, 190, 0.15) !important;
  color: #5bc0be !important;
}

/* Title */
.xc-main-slider__title {
  color: #ffffff !important;
  font-size: 38px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}
@media (min-width: 768px) {
  .xc-main-slider__title {
    font-size: 46px !important;
  }
}

/* Description */
.xc-main-slider__info {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  max-width: 360px !important;
  margin-bottom: 24px !important;
}

/* Button */
.xc-main-slider__btn .swiftcart-btn {
  background: #5bc0be !important;
  color: #000 !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border-radius: 12px !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.xc-main-slider__btn .swiftcart-btn i {
  margin-right: 6px;
  font-size: 14px;
  top: 0;
  position: relative;
  transform: rotate(180deg);
}
.xc-main-slider__btn .swiftcart-btn:hover {
  background: #4aa8a6 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 192, 190, 0.3);
}

/* Image */
.xc-main-slider__img {
  opacity: 1 !important;
  transform: none !important;
}
.xc-main-slider__img img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}
.xc-main-slider-two .xc-main-slider__img {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
}

/* Price badge */
.xc-main-slider__price {
  background: #5bc0be !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  width: 80px !important;
  height: 80px !important;
  border: 3px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 24px rgba(91, 192, 190, 0.3);
}

/* Dots */
.xc-main-slider-two .owl-dots {
  bottom: 30px !important;
  right: 50px !important;
  gap: 6px !important;
  display: flex !important;
  position: absolute;
}
.xc-main-slider-two .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background-color: rgba(255, 255, 255, 0.25) !important;
  border-radius: 4px !important;
  transition: all 0.3s ease;
}
.xc-main-slider-two .owl-dots .owl-dot.active span {
  width: 26px !important;
  background-color: #5bc0be !important;
}

/* Arrows */
.xc-main-slider__carousel.owl-carousel .owl-nav .owl-prev,
.xc-main-slider__carousel.owl-carousel .owl-nav .owl-next {
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.xc-main-slider__carousel.owl-carousel .owl-nav .owl-prev:hover,
.xc-main-slider__carousel.owl-carousel .owl-nav .owl-next:hover {
  background: #5bc0be !important;
  color: #000 !important;
  border-color: #5bc0be !important;
  transform: scale(1.05);
}

/* Side banners */
.xc-header-two-banner-one,
.xc-header-two-banner-two {
  border-radius: 16px !important;
  overflow: hidden;
  position: relative;
}
.xc-header-two-banner-one {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(28, 28, 28, 0.85) 100%
  ) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
}
.xc-header-two-banner-two {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(20, 20, 20, 0.9) 100%
  ) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
}
.xc-header-two-banner-two__item,
.xc-header-two-banner-one__item {
  padding: 28px !important;
  gap: 16px !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  height: 100%;
}
.xc-header-two-banner-two__item span,
.xc-header-two-banner-one__item span {
  color: #5bc0be !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px !important;
}
.xc-header-two-banner-two__title,
.xc-header-two-banner-one__title {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}
.xc-header-two-banner-two__item .xc-header-two-banner-one__price {
  color: #5bc0be !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}
.xc-header-two-banner-two .swiftcart-btn,
.xc-header-two-banner-one .swiftcart-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border: 0.5px solid rgba(255, 255, 255, 0.12) !important;
  padding: 8px 18px !important;
  font-size: 13px !important;
  border-radius: 8px !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.xc-header-two-banner-two .swiftcart-btn:hover,
.xc-header-two-banner-one .swiftcart-btn:hover {
  background: #5bc0be !important;
  color: #000 !important;
  border-color: #5bc0be !important;
}
.xc-header-two-banner-two__offer,
.xc-header-two-banner-one__offer {
  background-color: #5bc0be !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  padding: 4px 12px !important;
  border-radius: 6px !important;
  top: 16px !important;
  left: 16px !important;
  bottom: auto !important;
}
.xc-header-two-banner-one__right img,
.xc-header-two-banner-two__item img {
  max-width: 100%;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

/* Slider animations */
.xc-main-slider__carousel .active .xc-main-slider__subtitle {
  animation: slideFadeIn 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.xc-main-slider__carousel .active .xc-main-slider__title {
  animation: slideFadeIn 0.6s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.xc-main-slider__carousel .active .xc-main-slider__info {
  animation: slideFadeIn 0.6s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}
.xc-main-slider__carousel .active .xc-main-slider__btn {
  animation: slideUpFadeIn 0.6s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}
.xc-main-slider__carousel .active .xc-main-slider__img {
  animation: scaleFadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
  transform: scale(0.95);
}
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUpFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* =============================================
   7. FEATURES SECTION
   ============================================= */
.xc-features-one {
  background-color: transparent !important;
}
.xc-feature-one__item {
  background: rgba(28, 28, 28, 0.75) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px !important;
  padding: 24px 20px !important;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s ease;
  height: 100%;
}
.xc-feature-one__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(91, 192, 190, 0.2);
}
.xc-feature-one__icon {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  background: rgba(91, 192, 190, 0.1);
  border-radius: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  border: 0.5px solid rgba(91, 192, 190, 0.15);
}
.xc-feature-one__icon img {
  width: 28px !important;
  height: auto;
  filter: brightness(0) saturate(100%) invert(74%) sepia(16%) saturate(1190%)
    hue-rotate(130deg) brightness(89%) contrast(85%);
  opacity: 1;
}
.xc-feature-one__content {
  flex: 1;
}
.xc-feature-one__title {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
  margin-top: 0 !important;
}
.xc-feature-one__content p {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 13px !important;
  margin-bottom: 0 !important;
}

/* =============================================
   8. PRODUCT CARD
   ============================================= */
.product-item {
  background-color: rgba(28, 28, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.product-item .content .title {
  color: #ffffff;
}
.product-item .content .title a {
  color: #ffffff;
}
.product-item .content .title a:hover {
  color: #5bc0be;
}
.product-item .content .addCart .btn-product-card {
  background-color: #5bc0be;
  color: #000;
  border-radius: 8px;
}
.product-item .content .addCart .btn-product-card:hover {
  background-color: #4aa8a6;
}
.product-item .content .addCart.disabled .btn-product-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
}
.price .salePrice {
  background-color: #5bc0be;
  color: #000;
}
.price .oldPrice {
  color: rgba(255, 255, 255, 0.4);
}
.product-card-rating .fa-star {
  color: #f0c040;
}
.product-card-rating .fa-star.deactive::before {
  color: rgba(255, 255, 255, 0.15);
}

/* Wishlist heart on product card */
.product-item .content .add-to-wishlist button,
.product-item .content .add-to-wishlist a {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  width: 38px !important;
  height: 38px !important;
  line-height: 35px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease;
}
.product-item .content .add-to-wishlist button:hover,
.product-item .content .add-to-wishlist a:hover {
  background: rgba(91, 192, 190, 0.15) !important;
  border-color: #5bc0be !important;
  color: #5bc0be !important;
}
.product-item .content .add-to-wishlist button.filled,
.product-item .content .add-to-wishlist a.filled {
  background: #5bc0be !important;
  border-color: #5bc0be !important;
  color: #000 !important;
}

/* Wishlist page link */
.wishList .xc-cart-count {
  background-color: #5bc0be;
  color: #000;
}
.cart-empty h1 {
  color: #ffffff;
}
.cart-empty .btnEmpty {
  background-color: #5bc0be;
  color: #000;
}

/* Social icons */
.social-icons span {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.social-icons span:hover {
  background: #5bc0be;
  color: #000;
}

/* =============================================
   9. PRODUCTS PAGE — Sort, Filter, Layout
   ============================================= */

/* Sort bar wrapper */
.products-sort-bar,
.xc-products-sort,
.sort-bar {
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

/* Sort by label */
.products-sort-bar label,
.sort-bar label,
.xc-products-sort label {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* Sort select dropdown */
.products-sort-bar select,
.sort-bar select,
.xc-products-sort select,
select.sort-select,
select[name="sort"] {
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 8px 32px 8px 12px !important;
  font-size: 14px !important;
  height: 40px !important;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: auto;
  min-width: 160px;
  transition: border-color 0.3s ease;
}
.products-sort-bar select:focus,
.sort-bar select:focus,
.xc-products-sort select:focus,
select.sort-select:focus,
select[name="sort"]:focus {
  border-color: #5bc0be !important;
  outline: none;
}
.products-sort-bar select option,
.sort-bar select option,
.xc-products-sort select option,
select.sort-select option {
  background-color: #1C1C1C !important;
  color: #ffffff !important;
}

/* Total products count */
.total-products,
.products-count,
.xc-products-count {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.total-products strong,
.products-count strong,
.xc-products-count strong {
  color: #5bc0be !important;
  font-weight: 700 !important;
}

/* Filter toggle button */
.filter-btn,
.btn-filter,
.xc-filter-btn {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 8px 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.btn-filter:hover,
.xc-filter-btn:hover {
  background: rgba(91, 192, 190, 0.15) !important;
  border-color: #5bc0be !important;
  color: #5bc0be !important;
}
.filter-btn.active,
.btn-filter.active,
.xc-filter-btn.active {
  background: #5bc0be !important;
  color: #000 !important;
  border-color: #5bc0be !important;
}

/* Filter sidebar panel */
.filter-sidebar,
.xc-filter-sidebar,
.filter-panel {
  background: rgba(28, 28, 28, 0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px !important;
  padding: 20px !important;
}

/* Filter block heading */
.filter-block h3,
.filter-block h4,
.filter-block .filter-title,
.xc-filter-title {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

/* Filter block (each filter section) */
.filter-block {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}
.filter-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Filter checkboxes */
.filter-block label,
.filter-checkbox label,
.xc-filter-checkbox label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  cursor: pointer;
  transition: color 0.2s ease;
}
.filter-block label:hover,
.filter-checkbox label:hover,
.xc-filter-checkbox label:hover {
  color: #5bc0be !important;
}
.filter-block input[type="checkbox"],
.filter-checkbox input[type="checkbox"],
.xc-filter-checkbox input[type="checkbox"] {
  accent-color: #5bc0be;
}

/* Price filter inputs */
.price-filter input[type="text"],
.price-filter input[type="number"],
.filter-price input[type="text"],
.filter-price input[type="number"],
.xc-price-filter input {
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-size: 14px !important;
  height: 38px !important;
  width: 90px;
  transition: border-color 0.3s ease;
}
.price-filter input:focus,
.filter-price input:focus,
.xc-price-filter input:focus {
  border-color: #5bc0be !important;
  outline: none;
}
.price-filter input::placeholder,
.filter-price input::placeholder,
.xc-price-filter input::placeholder {
  color: rgba(255, 255, 255, 0.25) !important;
}

/* Filter action buttons */
.filter-actions button,
.filter-actions .btn-save,
.filter-actions .btn-clear,
.btn-save-filter,
.btn-clear-filter {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-actions button:hover,
.btn-save-filter:hover,
.btn-clear-filter:hover {
  background: rgba(91, 192, 190, 0.15) !important;
  border-color: #5bc0be !important;
  color: #5bc0be !important;
}
.btn-save-filter,
.filter-actions .btn-save {
  background: #5bc0be !important;
  color: #000 !important;
  border-color: #5bc0be !important;
}
.btn-save-filter:hover,
.filter-actions .btn-save:hover {
  background: #4aa8a6 !important;
}

/* Show discounted only toggle */
.show-discounted,
.xc-show-discounted {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
}
.show-discounted input[type="checkbox"],
.xc-show-discounted input[type="checkbox"] {
  accent-color: #5bc0be;
}

/* Clear all filters button */
.clear-filters,
.btn-clear-all {
  color: #5bc0be !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  padding: 4px 0 !important;
  transition: color 0.2s ease;
}
.clear-filters:hover,
.btn-clear-all:hover {
  color: #4aa8a6 !important;
}

/* Products grid */
.products-grid,
.products-wrapper,
.xc-products-grid {
  display: grid;
  gap: 20px;
}

/* =============================================
   10. CART BOX (slide-in)
   ============================================= */
.cartBox .content {
  background-color: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.cartBox .close {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
}
.cartBox .close:hover {
  background-color: #5bc0be;
  color: #000;
}
.cartBox .items .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cartBox .items .item .details .title {
  color: #ffffff;
}
.cartBox .items .item .details .title:hover {
  color: #5bc0be;
}
.cartBox .items .item .details .price {
  color: rgba(255, 255, 255, 0.6);
}
.cartBox .items .item .details .count {
  color: rgba(255, 255, 255, 0.4);
}
.checkBtn {
  background-color: #5bc0be !important;
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  height: 48px !important;
  line-height: 48px !important;
}
.checkBtn:hover {
  background-color: #4aa8a6 !important;
}

/* =============================================
   11. PRODUCT DETAILS PAGE
   ============================================= */

/* Title */
.col-product-info .prodDetails h2,
.col-product-info .prodDetails .product-title {
  color: #ffffff !important;
}

/* Price */
.col-product-info .prodDetails .salePrice,
.products-details-page .salePrice {
  background: #5bc0be !important;
  color: #000 !important;
  padding: 6px 16px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.col-product-info .prodDetails .oldPrice,
.products-details-page .oldPrice {
  color: rgba(255, 255, 255, 0.4) !important;
}
.products-details-page .div-price .title {
  color: rgba(255, 255, 255, 0.6) !important;
}
.products-details-page .div-price .currency {
  color: #5bc0be !important;
}

/* Wishlist heart on details page */
.col-product-info .prodDetails .add-to-wishlist button,
.col-product-info .prodDetails .add-to-wishlist a {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  width: 48px !important;
  height: 48px !important;
  line-height: 44px !important;
  border-radius: 50% !important;
  font-size: 22px !important;
  transition: all 0.3s ease;
}
.col-product-info .prodDetails .add-to-wishlist button:hover,
.col-product-info .prodDetails .add-to-wishlist a:hover {
  background: rgba(91, 192, 190, 0.15) !important;
  border-color: #5bc0be !important;
  color: #5bc0be !important;
}
.col-product-info .prodDetails .add-to-wishlist button.filled,
.col-product-info .prodDetails .add-to-wishlist a.filled {
  background: #5bc0be !important;
  border-color: #5bc0be !important;
  color: #000 !important;
}

/* Quantity selector */
.select-quantity-div {
  background: transparent !important;
}
.select-quantity-div h4 {
  color: #ffffff !important;
}
.select-quantity-div select,
#product-quantity,
.select-quantity,
#product-custom-user-dropdown-fields select {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 8px 16px !important;
  font-size: 15px !important;
  height: 46px !important;
  min-width: 80px;
  cursor: pointer;
}
.select-quantity-div select:focus,
#product-quantity:focus,
#product-custom-user-dropdown-fields select:focus {
  border-color: #5bc0be !important;
  outline: none;
}
.select-quantity-div select option,
#product-custom-user-dropdown-fields select option {
  background-color: #1C1C1C !important;
  color: #ffffff !important;
}
.select-quantity-div > div.form-group > div::after {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Tabs */
.tableDetails#product-description {
  background: transparent !important;
}
#tableTabs {
  position: relative !important;
  z-index: 10 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 12px !important;
  padding: 4px !important;
  display: flex;
  gap: 2px;
}
#tableTabs li {
  z-index: 11 !important;
  position: relative !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none !important;
  margin: 0 !important;
}
#tableTabs li.active {
  background: rgba(91, 192, 190, 0.15) !important;
  color: #5bc0be !important;
}
#tableTabs li:hover {
  color: #5bc0be !important;
}
#tableTabs::-webkit-scrollbar {
  height: 2px;
}
#tableTabs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}
#tableTabs::-webkit-scrollbar-thumb {
  background: #5bc0be;
  border-radius: 4px;
}

/* Tab content */
.tableDetails#product-description .tab.details,
.tableDetails#product-description .tab.variants {
  z-index: 9 !important;
  position: relative !important;
  background: rgba(28, 28, 28, 0.6) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  margin-top: 16px;
}
.tableDetails#product-description .tab.details p,
.tableDetails#product-description .tab.details code,
.tableDetails#product-description .tab.details * {
  color: rgba(255, 255, 255, 0.85) !important;
  background-color: #000000 !important;
}

/* Short description */
.shortDesc {
  color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(28, 28, 28, 0.4) !important;
  padding: 16px !important;
  border-radius: 12px !important;
  border: 0.5px solid rgba(255, 255, 255, 0.04);
}
#product-description-a {
  color: #5bc0be !important;
}

/* Reviews */
.titleRate {
  color: #ffffff !important;
}
.add-review {
  background: rgba(91, 192, 190, 0.1) !important;
  color: #5bc0be !important;
  border: 1px solid rgba(91, 192, 190, 0.2) !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
}
.add-review:hover {
  background: #5bc0be !important;
  color: #000 !important;
}
#exampleModalCenter .modal-content {
  background-color: #1C1C1C !important;
}
#exampleModalCenter .title {
  color: #ffffff !important;
}
.div-btnrating a.btnrating {
  color: rgba(255, 255, 255, 0.15) !important;
  font-size: 28px !important;
  transition: color 0.2s ease;
}
.div-btnrating a.btnrating.active {
  color: #f0c040 !important;
}
.div-btnrating a.btnrating.deactive {
  color: rgba(255, 255, 255, 0.15) !important;
}
.input-review-comment {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 16px !important;
}
.input-review-comment:focus {
  border-color: #5bc0be !important;
}
.input-review-comment::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}
.add-review-form-checkbox label {
  color: rgba(255, 255, 255, 0.7) !important;
}
.review-remaining-count {
  color: rgba(255, 255, 255, 0.3) !important;
}
.btn-submit-new-review {
  background: #5bc0be !important;
  color: #000 !important;
  border-radius: 10px !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
  border: none !important;
  transition: all 0.3s ease;
}
.btn-submit-new-review:hover {
  background: #4aa8a6 !important;
}
.titleContainer {
  color: #ffffff !important;
}
.reviews-break-down-empty {
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  text-align: center;
}
.reviews-break-down-empty span {
  color: rgba(255, 255, 255, 0.4) !important;
}
.reviewStyle {
  background: rgba(28, 28, 28, 0.6) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}
.reviewStyle .customer {
  color: #ffffff !important;
}
.reviewStyle .customer .date {
  color: rgba(255, 255, 255, 0.4) !important;
}
.reviewStyle .text {
  color: rgba(255, 255, 255, 0.8) !important;
}
.rating_count_5,
.rating_count_4,
.rating_count_3,
.rating_count_2,
.rating_count_1 {
  background-color: #5bc0be !important;
}
.all-reviews-btn {
  background: rgba(91, 192, 190, 0.1) !important;
  color: #5bc0be !important;
  border: 1px solid rgba(91, 192, 190, 0.2) !important;
  border-radius: 10px !important;
  padding: 8px 20px !important;
  transition: all 0.3s ease;
}
.all-reviews-btn:hover {
  background: #5bc0be !important;
  color: #000 !important;
}

/* Questions */
.description-title {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  margin-bottom: 16px !important;
}
#addQuestionButton,
.addQuestionButton {
  background: rgba(91, 192, 190, 0.1) !important;
  color: #5bc0be !important;
  border: 1px solid rgba(91, 192, 190, 0.2) !important;
  border-radius: 10px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
}
#addQuestionButton:hover,
.addQuestionButton:hover {
  background: #5bc0be !important;
  color: #000 !important;
}
#addProductQuestionModal .modal-content {
  background-color: #1C1C1C !important;
}
.modal-product-title {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}
#addProductQuestionModal input,
#addProductQuestionModal textarea {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
}
#addProductQuestionModal input:focus,
#addProductQuestionModal textarea:focus {
  border-color: #5bc0be !important;
}
#addProductQuestionModal input::placeholder,
#addProductQuestionModal textarea::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}
#addProductQuestionModal button[onclick*="submitQuestion"] {
  background: #5bc0be !important;
  color: #000 !important;
  border-radius: 10px !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
  border: none !important;
}
#addProductQuestionModal button[onclick*="submitQuestion"]:hover {
  background: #4aa8a6 !important;
}
.questions-card-preview {
  background: rgba(28, 28, 28, 0.6) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}
.questions-card-preview .customer-name {
  color: #ffffff !important;
  font-weight: 600 !important;
}
.questions-card-preview .question-box .question {
  color: rgba(255, 255, 255, 0.85) !important;
}
.questions-card-preview .answer-box .answer {
  color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(91, 192, 190, 0.05) !important;
  padding: 12px !important;
  border-radius: 8px !important;
  border-right: 2px solid #5bc0be !important;
}
.questions-pagination .page-item .page-link {
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  border: none !important;
  border-radius: 8px !important;
  margin: 0 2px !important;
}
.questions-pagination .page-item.selected a {
  background: #5bc0be !important;
  color: #000 !important;
}

/* Photo gallery arrows */
.product-images-carousel-thumbs .slickParentNext,
.product-images-carousel-thumbs .slickParentPrev {
  width: 36px !important;
  height: 36px !important;
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(8px) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
}
.product-images-carousel-thumbs .slickParentNext:hover,
.product-images-carousel-thumbs .slickParentPrev:hover {
  background: #5bc0be !important;
  color: #000 !important;
}
.pswp__bg {
  background: rgba(0, 0, 0, 0.92) !important;
}

/* Product images container */
.products-details-page .prodImages {
  background: rgba(28, 28, 28, 0.7) !important;
  border-radius: 16px !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  padding: 12px !important;
}

/* Options / Variants box */
.optionsBox {
  background: rgba(28, 28, 28, 0.75) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  padding: 20px !important;
}
.optionsBox label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* User custom option fields (e.g. engraving, notes) */
#product-custom-user-option-fields .form-group label {
  display: block;
  margin-bottom: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  background: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 16px !important;
  width: 100%;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

/* Table inside tabs section */
.tableDetails .table {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0 !important;
  border-radius: 12px !important;
}
.tableDetails .table table {
  background: rgba(28, 28, 28, 0.6) !important;
  border-radius: 12px !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
}
.tableDetails .table table td,
.tableDetails .table table th {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.04) !important;
}

/* Add review / question header */
.tableDetails .addHead {
  display: flex;
  align-items: center;
  background: rgba(28, 28, 28, 0.6) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  margin-bottom: 12px;
}
.tableDetails .addHead h4 {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* Ratings container */
.tableDetails .rateContainer {
  background: rgba(28, 28, 28, 0.6) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-bottom: 12px;
}
.tableDetails .rateContainer .title {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* Questions card init (the wrapper) */
.questions-card-init {
  background: rgba(28, 28, 28, 0.6) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 20px !important;
}

/* Cart products section */
.section-cart-products {
  background: rgba(28, 28, 28, 0.75) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  padding: 24px !important;
}

/* Header wrapper */
.header-wrapper {
  background: rgba(28, 28, 28, 0.75) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}

/* =============================================
   11.5 FAQ SECTION (Accordion)
   ============================================= */
.faqs-section {
  background: rgba(28, 28, 28, 0.35) !important;
}
.faqs-section .accordion {
  background: rgba(28, 28, 28, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faqs-section .accordion:hover {
  border-color: rgba(91, 192, 190, 0.25) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.faqs-section .accordion.active {
  border-color: rgba(91, 192, 190, 0.3) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.faqs-section .accordion-title {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faqs-section .accordion-title h3 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  flex: 1;
  line-height: 1.5;
}
.faqs-section .accordion-title::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: #5bc0be;
  transition: transform 0.35s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faqs-section .accordion.active .accordion-title::after {
  content: '−';
  transform: rotate(180deg);
}
/* Accordion body — Zid controls display, CSS animates open */
.faqs-section .accordion-body {
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}
.faqs-section .accordion.active .accordion-body {
  padding: 0 20px 18px;
}
.faqs-section .accordion-body[style*="display: block"],
.faqs-section .accordion-body[style*="display:block"] {
  animation: accordionFadeIn 0.35s ease;
}
@keyframes accordionFadeIn {
  from { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; }
  to   { opacity: 1; max-height: 500px; padding-top: 0; padding-bottom: 18px; }
}
.faqs-section .accordion-body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   12. RELATED PRODUCTS ARROWS
   ============================================= */
.slickParentNext,
.slickParentPrev {
  width: 44px !important;
  height: 44px !important;
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.slickParentNext:hover,
.slickParentPrev:hover {
  background: #5bc0be !important;
  color: #000 !important;
  border-color: #5bc0be !important;
  transform: translateY(-50%) scale(1.05) !important;
}
.slickParentNext {
  left: -12px !important;
}
.slickParentPrev {
  right: -12px !important;
}

/* =============================================
   13. BACK TO TOP
   ============================================= */
.back-to-top {
  background: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.back-to-top:hover {
  background: #5bc0be !important;
  color: #000 !important;
  border-color: #5bc0be !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(91, 192, 190, 0.3);
}
.back-top i.fa-angle-up {
  color: inherit !important;
  font-size: 22px !important;
}

/* =============================================
   14. TOAST & MISC
   ============================================= */
#toast-container > div {
  background-color: #1C1C1C !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.card {
  background-color: rgba(28, 28, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.card-body {
  background-color: transparent;
}
.card-title {
  color: #ffffff;
}
.card-text {
  color: rgba(255, 255, 255, 0.7);
}
.coupon-form input {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.coupon-form button {
  background: #5bc0be !important;
  color: #000;
}
.table {
  color: #ffffff;
}
.table > :not(caption) > * > * {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.progress-bar {
  background-color: #5bc0be;
}
.gift-card button {
  background: #5bc0be !important;
  color: #000 !important;
}
.gift-preview__body {
  color: #ffffff;
}
.account-content {
  color: #ffffff;
}

/* =============================================
   15. LOGIN DIALOG — MUI Glassmorphism
   ============================================= */

/* Overlay */
.MuiDialog-root .MuiBackdrop-root {
  background-color: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Nuke ALL white backgrounds inside dialog */
.MuiDialogContent-root,
.MuiDialogContent-root * {
  background: transparent !important;
}

/* Main paper glass */
.MuiDialog-paper {
  background: rgba(20, 20, 20, 0.82) !important;
  backdrop-filter: blur(36px) !important;
  -webkit-backdrop-filter: blur(36px) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6) !important;
  color: #ffffff !important;
  overflow: hidden !important;
}

/* Glow */
.MuiDialog-paper::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(91, 192, 190, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.MuiDialog-paper > * {
  position: relative;
  z-index: 1;
}

/* Close button */
.MuiDialog-paper .MuiIconButton-root {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: all 0.3s ease !important;
  width: 36px !important;
  height: 36px !important;
  margin: 8px !important;
}
.MuiDialog-paper .MuiIconButton-root:hover {
  background: rgba(91, 192, 190, 0.15) !important;
  border-color: #5bc0be !important;
  color: #5bc0be !important;
  transform: scale(1.05);
}
.MuiDialog-paper .MuiSvgIcon-root {
  font-size: 20px !important;
}

/* Title */
.MuiDialogTitle-root {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  padding: 16px 24px 8px !important;
  text-align: center !important;
}
.MuiDialogTitle-root .MuiStack-root {
  justify-content: center;
}

/* Content */
.MuiDialogContent-root {
  padding: 8px 24px 24px !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* "المتابعة كزائر" */
.MuiDialog-paper .MuiButton-outlinedSecondary {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  text-transform: none !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
}
.MuiDialog-paper .MuiButton-outlinedSecondary:hover {
  background: rgba(91, 192, 190, 0.12) !important;
  border-color: #5bc0be !important;
  color: #5bc0be !important;
  transform: translateY(-1px);
}
.MuiDialog-paper .MuiButton-outlinedSecondary .MuiBox-root {
  color: inherit !important;
}

/* Divider */
.MuiDivider-root {
  color: rgba(255, 255, 255, 0.25) !important;
  margin: 16px 0 !important;
  background: transparent !important;
}
.MuiDivider-root::before,
.MuiDivider-root::after {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08) !important;
}
.MuiDivider-wrapper .MuiTypography-root {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 13px !important;
}

/* Body text */
.MuiDialog-paper .MuiTypography-body2 {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px !important;
  margin-bottom: 8px !important;
}

/* Input field — solid dark background */
.MuiOutlinedInput-root {
  background: rgba(28, 28, 28, 0.9) !important;
  border-radius: 12px !important;
}
.MuiOutlinedInput-input {
  background: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 16px !important;
  padding: 14px 14px 14px 0 !important;
}

/* Autofill override */
.MuiOutlinedInput-input:-webkit-autofill,
.MuiOutlinedInput-input:-webkit-autofill:hover,
.MuiOutlinedInput-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(28, 28, 28, 0.95) inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  border-radius: 12px !important;
}

/* Labels */
.MuiInputLabel-root,
.MuiFormLabel-root {
  color: rgba(255, 255, 255, 0.35) !important;
  background: transparent !important;
  font-size: 14px !important;
}
.MuiInputLabel-shrink {
  color: #5bc0be !important;
}

/* Country code prefix */
.MuiInputAdornment-root {
  color: rgba(255, 255, 255, 0.5) !important;
  background: transparent !important;
}
.MuiInputAdornment-root p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 15px !important;
}
.MuiInputAdornment-root .MuiSvgIcon-root {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 18px !important;
}

/* Focus state */
.MuiOutlinedInput-root.Mui-focused {
  background: rgba(255, 255, 255, 0.08) !important;
}
.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #5bc0be !important;
  border-width: 1.5px !important;
}
.MuiOutlinedInput-notchedOutline {
  border-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  transition: border-color 0.3s ease;
}
.MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.MuiOutlinedInput-notchedOutline legend {
  color: transparent !important;
}
.MuiOutlinedInput-notchedOutline legend span {
  color: transparent !important;
}

/* Primary button "إرسال رمز التحقق" */
.MuiButton-containedPrimary {
  background: #5bc0be !important;
  color: #000 !important;
  border-radius: 12px !important;
  padding: 14px 24px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: none !important;
  box-shadow: 0 4px 16px rgba(91, 192, 190, 0.25) !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  margin-top: 12px !important;
}
.MuiButton-containedPrimary:hover {
  background: #4aa8a6 !important;
  box-shadow: 0 8px 24px rgba(91, 192, 190, 0.35) !important;
  transform: translateY(-2px);
}
.MuiButton-containedPrimary:active {
  transform: translateY(0);
}
.MuiButton-containedPrimary .MuiBox-root {
  color: #000 !important;
  font-weight: 700 !important;
}
.MuiButton-containedPrimary.Mui-disabled {
  background: rgba(91, 192, 190, 0.3) !important;
  color: rgba(0, 0, 0, 0.4) !important;
}

/* "خيارات أخرى" expand button */
.MuiButton-textSecondary {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px !important;
  text-transform: none !important;
  font-weight: 500 !important;
  padding: 8px 4px !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
}
.MuiButton-textSecondary:hover {
  color: #5bc0be !important;
  background: transparent !important;
}
.MuiButton-textSecondary .MuiSvgIcon-root {
  color: rgba(255, 255, 255, 0.3) !important;
  transition: transform 0.3s ease;
}
.MuiButton-textSecondary:hover .MuiSvgIcon-root {
  color: #5bc0be !important;
}

/* Extra options panel */
.MuiCollapse-wrapperInner {
  padding-top: 8px;
}
.MuiButton-outlinedSecondary.MuiButton-fullWidth {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  text-transform: none !important;
  justify-content: space-between !important;
  transition: all 0.3s ease !important;
  margin-bottom: 8px !important;
}
.MuiButton-outlinedSecondary.MuiButton-fullWidth:hover {
  background: rgba(91, 192, 190, 0.1) !important;
  border-color: #5bc0be !important;
  color: #5bc0be !important;
}
.MuiButton-outlinedSecondary.MuiButton-fullWidth .MuiButton-endIcon {
  margin-right: auto !important;
  margin-left: 0 !important;
}
.MuiButton-outlinedSecondary.MuiButton-fullWidth .MuiSvgIcon-root {
  color: #5bc0be !important;
  font-size: 22px !important;
}

/* Email button */
.MuiButton-outlinedSecondary.MuiButton-fullWidth:last-child {
  margin-bottom: 0 !important;
}
.MuiButton-outlinedSecondary.MuiButton-fullWidth:last-child .MuiSvgIcon-root {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* WhatsApp icon green */
.MuiButton-fullWidth .MuiSvgIcon-root[viewBox*="24"] {
  color: #25D366 !important;
}

/* Dialog scrollbar */
.MuiDialog-paper::-webkit-scrollbar {
  width: 4px !important;
}
.MuiDialog-paper::-webkit-scrollbar-track {
  background: transparent !important;
}
.MuiDialog-paper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 4px !important;
}

/* =============================================
   16. RESPONSIVE
   ============================================= */

/* Desktop medium */
@media (max-width: 991px) {
  .xc-header-two {
    padding: 10px 0 !important;
  }
  .xc-header-two__right {
    gap: 10px !important;
  }
  .xc-header-two__btns {
    gap: 14px !important;
    margin-right: 8px !important;
  }

  .xc-main-slider__item {
    min-height: 380px !important;
    padding: 30px !important;
  }
  .xc-main-slider__title {
    font-size: 28px !important;
  }
  .xc-main-slider__info {
    max-width: 100% !important;
  }
  .xc-main-slider__img img {
    max-height: 220px;
  }
  .xc-header-two-banner-two__item,
  .xc-header-two-banner-one__item {
    padding: 20px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .xc-header-two-banner-two__item span,
  .xc-header-two-banner-one__item span,
  .xc-header-two-banner-two__title,
  .xc-header-two-banner-one__title {
    text-align: center !important;
  }

  .xc-feature-one__item {
    padding: 18px 16px !important;
  }
}

/* Mobile large */
@media (max-width: 767px) {
  .xc-header-two__search {
    background-color: rgba(0, 0, 0, 0.9);
  }
  .xc-header-two__wrapper {
    padding: 0 10px;
  }
  .xc-header-two__btn i {
    font-size: 22px !important;
  }
  .langCurrecyModal {
    font-size: 12px !important;
    padding: 4px 10px !important;
  }

  .autocomplete-items {
    max-height: 260px !important;
  }

  .xc-main-slider__item {
    min-height: 320px !important;
    padding: 24px !important;
  }
  .xc-main-slider__title {
    font-size: 24px !important;
  }
  .xc-main-slider__img img {
    max-height: 160px;
  }
  .xc-main-slider-two .owl-dots {
    bottom: 16px !important;
    right: 50% !important;
    transform: translateX(50%);
  }
  .xc-main-slider__price {
    width: 60px !important;
    height: 60px !important;
    font-size: 13px !important;
  }

  .xc-feature-one__item {
    padding: 16px 14px !important;
  }
  .xc-feature-one__icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }
  .xc-feature-one__icon img {
    width: 22px !important;
  }
  .xc-feature-one__title {
    font-size: 14px !important;
  }
  .xc-features-one .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .slickParentNext,
  .slickParentPrev {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }
  .slickParentNext {
    left: -6px !important;
  }
  .slickParentPrev {
    right: -6px !important;
  }
  .back-to-top {
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
  }
  #tableTabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  #tableTabs li {
    padding: 8px 14px !important;
    font-size: 13px !important;
  }
  .tableDetails#product-description .tab.details,
  .tableDetails#product-description .tab.variants {
    padding: 16px !important;
  }
}

/* Mobile small */
@media (max-width: 480px) {
  .xc-header-two__logo .logo img {
    width: 120px !important;
  }
  .xc-header-two__btn .xc-cart-count {
    width: 15px !important;
    height: 15px !important;
    font-size: 9px !important;
  }

  .xc-main-slider__item {
    padding: 16px !important;
    min-height: 280px !important;
    border-radius: 14px !important;
  }
  .xc-main-slider__subtitle {
    font-size: 10px !important;
    padding: 3px 10px !important;
  }
  .xc-main-slider__title {
    font-size: 20px !important;
  }
  .xc-main-slider__info {
    font-size: 13px !important;
  }
  .xc-main-slider__btn .swiftcart-btn {
    padding: 8px 20px !important;
    font-size: 13px !important;
  }
  .xc-header-two-banner-two__title,
  .xc-header-two-banner-one__title {
    font-size: 17px !important;
  }

  .xc-feature-one__item {
    padding: 12px 10px !important;
    gap: 10px;
  }
  .xc-feature-one__icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 10px;
  }
  .xc-feature-one__icon img {
    width: 18px !important;
  }
  .xc-feature-one__title {
    font-size: 13px !important;
  }
  .xc-feature-one__content p {
    font-size: 12px !important;
  }

  .col-product-info .prodDetails .add-to-wishlist button {
    width: 42px !important;
    height: 42px !important;
    line-height: 38px !important;
    font-size: 18px !important;
  }
}

/* Mobile dialog */
@media (max-width: 600px) {
  .MuiDialog-paper {
    margin: 16px !important;
    border-radius: 20px !important;
  }
  .MuiDialogTitle-root {
    font-size: 20px !important;
    padding: 16px 20px 4px !important;
  }
  .MuiDialogContent-root {
    padding: 8px 20px 20px !important;
  }
  .MuiButton-containedPrimary {
    font-size: 14px !important;
    padding: 12px 20px !important;
  }
  .MuiOutlinedInput-input {
    font-size: 15px !important;
  }
}
@media (max-width: 400px) {
  .MuiDialog-paper {
    margin: 8px !important;
    border-radius: 16px !important;
  }
  .MuiDialogTitle-root {
    font-size: 18px !important;
  }
}

/* =============================================
   GC — Interactive Animations (Scroll + Hover)
   Powered by theme-v1.js
   ============================================= */

/* Scroll reveal — hidden state */
.gc-hidden {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: opacity, transform;
}
.gc-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Card hover — lift effect (slower, shorter) */
.gc-card-hover {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.6s ease-out !important;
  will-change: transform;
}
.gc-card-hover:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(91, 192, 190, 0.1) !important;
}

/* Image zoom on hover */
.gc-img-zoom {
  overflow: hidden !important;
}
.gc-img-zoom img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.gc-img-zoom:hover img {
  transform: scale(1.08) !important;
}

/* Glow border — slower */
.gc-glow-border {
  transition: box-shadow 0.6s ease-out !important;
}
.gc-glow-border:hover {
  box-shadow: 0 0 30px rgba(91, 192, 190, 0.15),
              inset 0 0 30px rgba(91, 192, 190, 0.03) !important;
}

/* Hide duplicate add-to-cart button on product details page */
.products-details-page .btn-add-to-cart ~ .btn-add-to-cart {
  display: none !important;
}