@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* ===== LIGHT THEME ===== */
:root {
  --background-color: #ffffff;
  --surface-color: #ffffff;
  --default-color: #212121;
  --heading-color: #212121;
  --accent-color: #f906c2;
  --contrast-color: #fff;
  --muted-color: #888888;
  --highlight-color: #e0f7fa;
  --cta-color: #00c9f8;

  --nav-color: rgba(255, 255, 255, 0.8);
  --nav-hover-color: #212121;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #252223;
}

/* ===== DARK THEME ===== */
.dark-background {
  --background-color: #0a0a0a;
  --surface-color: #232424;
  --default-color: #eeeeee;
  --heading-color: #ffffff;
  --accent-color: #f906c2;
  --contrast-color: #fff;
  --muted-color: #aaaaaa;
  --highlight-color: #1a1a1a;
  --cta-color: #ffd700;

  --nav-color: rgba(255, 255, 255, 0.8);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #232424;
  --nav-dropdown-background-color: #232424;
  --nav-dropdown-color: #cccccc;
  --nav-dropdown-hover-color: #ffffff;
}

/* ===== GLOW (Dark Theme Only, Optional) ===== */
.dark-background .glow-text {
  color: var(--accent-color);
  text-shadow: 0 0 8px var(--accent-color);
}

.dark-background .glow-box {
  box-shadow: 0 0 12px var(--accent-color);
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  background-color: var(--background-color);
  color: var(--default-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .top-bar {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  font-size: 14px;
}

.header .top-bar .top-bar-item {
  color: var(--default-color);
}

.header .top-bar .top-bar-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.header .top-bar .top-bar-item a:hover {
  text-decoration: underline;
}

.header .top-bar .top-bar-item .selected-icon {
  color: var(--accent-color);
  opacity: 1;
  width: 16px;
}

.header .top-bar .announcement-slider {
  color: var(--accent-color);
  font-weight: 500;
  height: 24px;
  overflow: hidden;
}

.header .top-bar .announcement-slider .swiper-wrapper {
  height: auto !important;
}

.header .top-bar .announcement-slider .swiper-slide {
  text-align: center;
  height: 24px;
  line-height: 24px;
}

.header .top-bar .dropdown-menu {
  min-width: 150px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header .top-bar .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  color: var(--default-color);
  display: flex;
  align-items: center;
}

.header .top-bar .dropdown-menu .dropdown-item .selected-icon {
  opacity: 1;
  color: var(--accent-color);
  width: 16px;
}

.header .top-bar .dropdown-menu .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.header .main-header {
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .logo {
  line-height: 1;
}

.header .main-header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .main-header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .header .main-header .logo h1 {
    font-size: 24px;
  }
}

.header .main-header .desktop-search-form {
  min-width: 400px;
}

@media (max-width: 1200px) {
  .header .main-header .desktop-search-form {
    display: none;
  }
}

/* .header .main-header .header-actions {
  gap: 16px;
} */

.header .main-header .header-actions .header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--default-color);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header .main-header .header-actions .header-action-btn i {
  font-size: 24px;
}

.header .main-header .header-actions .header-action-btn i.bi-person {
  font-size: 28px;
}

.header .main-header .header-actions .header-action-btn:hover {
  color: var(--accent-color);
}

.header .main-header .header-actions .header-action-btn .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .main-header .account-dropdown .dropdown-menu {
  background-color: var(--surface-color);
  min-width: 280px;
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header {
  padding: 1.25rem;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header h6 {
  margin: 0 0 0.25rem;
  color: var(--heading-color);
  font-size: 16px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body {
  padding: 1rem 0;
}

.header
  .main-header
  .account-dropdown
  .dropdown-menu
  .dropdown-body
  .dropdown-item {
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.2s ease;
}

.header
  .main-header
  .account-dropdown
  .dropdown-menu
  .dropdown-body
  .dropdown-item
  i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.2s ease;
  font-size: 16px;
}

.header
  .main-header
  .account-dropdown
  .dropdown-menu
  .dropdown-body
  .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.header
  .main-header
  .account-dropdown
  .dropdown-menu
  .dropdown-body
  .dropdown-item:hover
  i {
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer {
  padding: 1.25rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn {
  font-size: 14px;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.header
  .main-header
  .account-dropdown
  .dropdown-menu
  .dropdown-footer
  .btn-outline-primary {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.header
  .main-header
  .account-dropdown
  .dropdown-menu
  .dropdown-footer
  .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.header .search-form {
  margin: 0;
}

.header .search-form .input-group {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  overflow: visible;
  background-color: var(--surface-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header .search-form .input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.header .search-form .input-group .form-control {
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  background-color: transparent;
  color: var(--default-color);
}

.header .search-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.header .search-form .input-group .form-control:focus {
  box-shadow: none;
}

.header .search-form .input-group .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 25px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 10px !important;
  margin: 3px;
}

.header .search-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.header .search-form .input-group .btn i {
  font-size: 16px;
}

/* .header .header-nav {
  background-color: var(--accent-color);
} */

.header #mobileSearch {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  z-index: 1000;
}

.header #mobileSearch .search-form {
  padding: 10px 0;
}

@media (max-width: 991.98px) {
  .header .main-header .header-actions {
    gap: 0.5rem;
  }

  .header .main-header .header-actions .header-action-btn {
    padding: 0.25rem;
  }

  .header .main-header .header-actions .header-action-btn i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: 12px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:first-child a {
    padding-left: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--default-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-main {
  padding: 70px 0 40px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 82%);
}

.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}
.footer .footer-main .footer-widget .ft-logo img {
  height: 100px;
  width: auto;
}
.footer .footer-main .footer-widget .ft-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer .footer-main .footer-widget .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .footer-main .footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-main .footer-widget h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-main .footer-widget h5 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.footer .footer-main .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-main .footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer .footer-main .footer-links li:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a:hover {
  color: var(--accent-color);
}

.footer .footer-main .app-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer .footer-main .app-buttons .app-btn {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer .footer-main .app-buttons .app-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.footer .footer-main .app-buttons .app-btn span {
  font-size: 13px;
  font-weight: 500;
}

.footer .footer-main .app-buttons .app-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-main .social-links {
  margin-top: 25px;
}

.footer .footer-main .social-links h5 {
  margin-bottom: 15px;
}

.footer .footer-main .social-links .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-main .social-links .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-main .social-links .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-bottom {
  padding: 25px 0;
}

.footer .footer-bottom .payment-methods .payment-icons {
  display: flex;
  gap: 12px;
}

.footer .footer-bottom .payment-methods .payment-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-bottom .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.footer .footer-bottom .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-bottom .copyright p strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .footer .footer-main {
    padding: 60px 0 30px;
  }

  .footer .footer-widget h4 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-main {
    padding: 50px 0 20px;
  }

  .footer .footer-main .footer-widget {
    text-align: center;
  }

  .footer .footer-main .footer-widget h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-main .footer-contact .contact-item {
    justify-content: center;
  }

  .footer .footer-main .footer-links li {
    padding-left: 0;
  }

  .footer .footer-main .footer-links li:before {
    display: none;
  }

  .footer .footer-main .app-buttons {
    justify-content: center;
  }

  .footer .footer-main .social-icons {
    justify-content: center;
  }

  .footer .footer-bottom .copyright,
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 100px;
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 95%) 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 100px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    45deg,
    color-mix(in srgb, var(--accent-color), transparent 94%) 0%,
    color-mix(in srgb, var(--heading-color), transparent 98%) 100%
  );
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.hero .hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .hero .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.hero .hero-content {
  z-index: 2;
}

.hero .hero-content .content-wrapper {
  max-width: 600px;
}

.hero .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.8rem;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1.1rem;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero .hero-content .hero-actions .btn-primary,
.hero .hero-content .hero-actions .btn-secondary {
  padding: 12px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .hero-content .hero-actions .btn-primary::before,
.hero .hero-content .hero-actions .btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.hero .hero-content .hero-actions .btn-primary:hover::before,
.hero .hero-content .hero-actions .btn-secondary:hover::before {
  left: 100%;
}

.hero .hero-content .hero-actions .btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #000 20%) 100%
  );
  color: var(--contrast-color);
  border: none;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-content .hero-actions .btn-secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}

.hero .hero-content .hero-actions .btn-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero .hero-content .features-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero .hero-content .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-content .features-list .feature-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.hero .hero-content .features-list .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

.hero .hero-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .hero-visuals .product-showcase {
  position: relative;
  max-width: 500px;
}

.hero .hero-visuals .product-showcase .product-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero .hero-visuals .product-showcase .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 98%) 0%,
    transparent 50%
  );
  border-radius: 24px;
  z-index: -1;
}

.hero .hero-visuals .product-showcase .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-visuals .product-showcase .product-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 20px;
}

.hero .hero-visuals .product-showcase .product-card .product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #000 20%) 100%
  );
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero .hero-visuals .product-showcase .product-card .product-info h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.hero .hero-visuals .product-showcase .product-card .product-info .price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero
  .hero-visuals
  .product-showcase
  .product-card
  .product-info
  .price
  .sale-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero
  .hero-visuals
  .product-showcase
  .product-card
  .product-info
  .price
  .original-price {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.hero .hero-visuals .product-showcase .product-grid {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 992px) {
  .hero .hero-visuals .product-showcase .product-grid {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    transform: none;
  }
}

.hero .hero-visuals .product-showcase .product-grid .product-mini {
  width: 120px;
  height: 120px;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.hero .hero-visuals .product-showcase .product-grid .product-mini:hover {
  transform: scale(1.1);
}

.hero .hero-visuals .product-showcase .product-grid .product-mini img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.hero .hero-visuals .product-showcase .product-grid .product-mini .mini-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
}

.hero .hero-visuals .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero .hero-visuals .floating-elements .floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-visuals .floating-elements .floating-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.hero .hero-visuals .floating-elements .floating-icon .notification-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.hero .hero-visuals .floating-elements .floating-icon.cart {
  top: 20%;
  left: -50px;
  animation-delay: 0s;
}

.hero .hero-visuals .floating-elements .floating-icon.wishlist {
  top: 60%;
  right: -50px;
  animation-delay: 1s;
}

.hero .hero-visuals .floating-elements .floating-icon.search {
  bottom: 20%;
  left: -30px;
  animation-delay: 2s;
}

.hero .hero-visuals .floating-elements .floating-icon:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .hero .hero-visuals .floating-elements .floating-icon {
    display: none;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .hero .hero-container {
    padding: 0 15px;
  }

  .hero .hero-content .hero-actions .btn-primary,
  .hero .hero-content .hero-actions .btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .hero .hero-content .features-list {
    gap: 20px;
  }

  .hero .hero-content .features-list .feature-item span {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Promo Cards Section
--------------------------------------------------------------*/
.promo-cards {
  padding-top: 24px;
  --default-color: #666;
  --heading-color: #333;
  padding-bottom: 30px;
}

.promo-cards .category-featured {
  position: relative;
  border-radius: 12px;
  min-height: 500px;
  overflow: hidden;
  background-color: #f8f5ff;
  transition: all 0.4s ease;
}

.promo-cards .category-featured:hover {
  transform: translateY(-5px);
}

.promo-cards .category-featured:hover .category-image img {
  transform: scale(1.05);
}

.promo-cards .category-featured:hover .btn-shop {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.promo-cards .category-featured:hover .btn-shop i {
  transform: translateX(5px);
}

.promo-cards .category-featured .category-image {
  position: absolute;
  top: 10%;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 1;
}

.promo-cards .category-featured .category-image img {
  width: auto;
  height: 400px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
@media screen and (max-width: 768px) {
  .promo-cards .category-featured .category-image img {
    width: auto;
    height: 350px;
  }
  .promo-cards .category-featured .category-image {
    top: 0;
    padding-top: 30px;
    margin-bottom: 110px;
    text-align: center;
  }
}
.promo-cards .category-featured .category-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  max-width: 63%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-cards .category-featured .category-content .category-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-cards .category-featured .category-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.promo-cards .category-featured .category-content p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.promo-cards .category-featured .category-content .btn-shop {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.promo-cards .category-featured .category-content .btn-shop i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.promo-cards .category-card {
  position: relative;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.promo-cards .category-card.cat-men {
  background-color: #e6f4ff;
}

.promo-cards .category-card.cat-kids {
  background-color: #fff4e6;
}

.promo-cards .category-card.cat-cosmetics {
  background-color: #ffe6eb;
}

.promo-cards .category-card.cat-accessories {
  background-color: #e6ffe8;
}

.promo-cards .category-card:hover {
  transform: translateY(-5px);
}

.promo-cards .category-card:hover .category-image img {
  transform: scale(1.05);
}

.promo-cards .category-card:hover .card-link {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.promo-cards .category-card:hover .card-link i {
  transform: translateX(5px);
}

.promo-cards .category-card .category-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.promo-cards .category-card .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.promo-cards .category-card .category-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-cards .category-card .category-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.promo-cards .category-card .category-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.promo-cards .category-card .category-content .card-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.promo-cards .category-card .category-content .card-link i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
  .promo-cards .category-featured {
    height: 420px;
  }

  .promo-cards .category-featured .category-content {
    padding: 30px;
  }

  .promo-cards .category-featured .category-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .promo-cards .category-featured {
    height: auto;
  }

  .promo-cards .category-featured .category-image {
    position: relative;
    width: 100%;
    height: 250px;
  }

  .promo-cards .category-featured .category-content {
    max-width: 100%;
    padding: 30px;
  }

  .promo-cards .category-featured .category-content h2 {
    font-size: 1.8rem;
  }

  .promo-cards .category-card {
    height: 200px;
  }

  .promo-cards .category-card .category-content {
    width: 65%;
    padding: 20px;
  }

  .promo-cards .category-card .category-content h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .promo-cards .category-card {
    height: 180px;
  }

  .promo-cards .category-card .category-content {
    width: 70%;
  }

  .promo-cards .category-card .category-content h4 {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Best Sellers Section
--------------------------------------------------------------*/
.best-sellers {
  padding-top: 60px;
  padding-bottom: 30px;
}

.best-sellers .product-item {
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.best-sellers .product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.best-sellers .product-item:hover .product-image img {
  transform: scale(1.02);
}

.best-sellers .product-item:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.best-sellers .product-item:hover .cart-btn {
  opacity: 1;
  transform: translateY(0);
}

.best-sellers .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

.best-sellers .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.best-sellers .product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background-color: var(--heading-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--heading-font);
  padding: 0.4em 1em;
  border-radius: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.best-sellers .product-badge.sale-badge {
  background-color: #dc2626;
}

.best-sellers .product-badge.trending-badge {
  background-color: var(--accent-color);
}

.best-sellers .product-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.best-sellers .action-btn {
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--contrast-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.best-sellers .action-btn.active {
  background-color: var(--accent-color);
  color: var(--contrast-color) !important;
}

.best-sellers .cart-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-radius: 10px;
}

.best-sellers .product-info {
  padding: 30px 20px 25px;
}

.best-sellers .product-category {
  color: var(--default-color);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.best-sellers .product-name {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 12px;
  height: 2.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.best-sellers .product-name a {
  color: var(--heading-color);
}

.best-sellers .product-name a:hover {
  color: var(--accent-color);
}

.best-sellers .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.best-sellers .stars {
  color: #f59e0b;
  font-size: 0.8rem;
}

.best-sellers .stars i {
  margin-right: 1px;
}

.best-sellers .rating-count {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 400;
}

.best-sellers .product-price {
  margin-bottom: 15px;
}

.best-sellers .product-price .old-price {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-right: 8px;
}

.best-sellers .product-price .current-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.best-sellers .product-price:not(:has(.old-price)) {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.best-sellers .color-swatches {
  display: flex;
  gap: 6px;
}

.best-sellers .swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.best-sellers .swatch:hover {
  transform: scale(1.15);
}

.best-sellers .swatch.active:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
}

@media (max-width: 1199.98px) {
  .best-sellers .product-info {
    padding: 25px 18px 22px;
  }

  .best-sellers .product-name {
    font-size: 0.95rem;
  }
}

@media (max-width: 991.98px) {
  .best-sellers .product-item {
    /* max-width: 320px; */
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .best-sellers .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 3rem;
  }

  .best-sellers .product-actions {
    opacity: 1;
    transform: translateY(0);
  }

  .best-sellers .cart-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .best-sellers .product-info {
    padding: 22px 16px 20px;
  }
}

@media (max-width: 575.98px) {
  .best-sellers .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2.5rem;
  }

  .best-sellers .product-badge {
    top: 15px;
    left: 15px;
    font-size: 0.7rem;
    padding: 0.35em 0.8em;
  }

  .best-sellers .product-actions {
    top: 15px;
    right: 15px;
  }

  .best-sellers .action-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .best-sellers .cart-btn {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards {
  padding-top: 30px;
  padding-bottom: 60px;
}

.cards .product-category {
  height: 100%;
  padding: 25px 20px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cards .product-category:hover {
  transform: translateY(-10px);
}

.cards .product-category .category-title {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cards .product-category .category-title i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.cards .product-category .category-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: var(--accent-color);
}

.cards .product-category .product-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cards .product-card {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}

.cards .product-card:hover {
  transform: translateX(5px);
}

.cards .product-card:hover .product-name {
  color: var(--accent-color);
}

.cards .product-card .product-image {
  flex: 0 0 85px;
  height: 85px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.cards .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.cards .product-card .product-image:hover img {
  transform: scale(1.1);
}

.cards .product-card .product-image .product-badges {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cards .product-card .product-image .product-badges [class^="badge-"] {
  padding: 3px 6px;
  font-size: 0.65rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.cards .product-card .product-image .product-badges .badge-new {
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.cards .product-card .product-image .product-badges .badge-sale {
  background-color: #ffebee;
  color: #f44336;
}

.cards .product-card .product-image .product-badges .badge-hot {
  background-color: #fff3e0;
  color: #ff9800;
}

.cards .product-card .product-image .product-badges .badge-limited {
  background-color: #e0f7fa;
  color: #00acc1;
}

.cards .product-card .product-info {
  flex: 1;
}

.cards .product-card .product-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--heading-color);
  transition: color 0.3s;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cards .product-card .product-rating {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.cards .product-card .product-rating i {
  color: #ffc107;
  margin-right: -1px;
}

.cards .product-card .product-rating span {
  color: #9e9e9e;
  margin-left: 5px;
  font-size: 0.7rem;
}

.cards .product-card .product-price {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cards .product-card .product-price .current-price {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
}

.cards .product-card .product-price .old-price {
  color: #9e9e9e;
  text-decoration: line-through;
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .cards .product-category {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .cards .product-card .product-image {
    flex: 0 0 70px;
    height: 70px;
  }

  .cards .product-card .product-name {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .cards {
    padding: 50px 0;
  }

  .cards .product-category {
    padding: 20px 15px;
  }

  .cards .product-category .category-title {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: radial-gradient(
    ellipse at top,
    color-mix(in srgb, var(--accent-color), transparent 96%) 0%,
    var(--surface-color) 50%
  );
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    color-mix(in srgb, var(--accent-color), transparent 98%) 90deg,
    transparent 180deg,
    color-mix(in srgb, var(--heading-color), transparent 98%) 270deg,
    transparent 360deg
  );
  animation: rotate 20s linear infinite;
  z-index: 1;
}

.call-to-action::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .main-content {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .call-to-action .main-content {
    padding: 40px 0;
  }
}

.call-to-action .offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), black 15%)
  );
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px
    color-mix(in srgb, var(--accent-color), transparent 70%);
  transform: rotate(-2deg);
}

.call-to-action .offer-badge .limited-time {
  font-size: 12px;
  font-weight: 600;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.call-to-action .offer-badge .offer-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--contrast-color);
  letter-spacing: 1px;
}

.call-to-action h2 {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    var(--heading-color),
    var(--accent-color)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
  .call-to-action h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .call-to-action h2 {
    font-size: 2rem;
  }
}

.call-to-action .subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .call-to-action .subtitle {
    font-size: 16px;
  }
}

.call-to-action .countdown-wrapper {
  margin-bottom: 48px;
}

.call-to-action .countdown-wrapper .countdown {
  gap: 24px;
}

@media (max-width: 576px) {
  .call-to-action .countdown-wrapper .countdown {
    gap: 16px;
  }
}

.call-to-action .countdown-wrapper .countdown > div {
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  backdrop-filter: blur(10px);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 16px;
  padding: 20px 16px;
  min-width: 80px;
}

@media (max-width: 576px) {
  .call-to-action .countdown-wrapper .countdown > div {
    padding: 16px 12px;
    min-width: 70px;
  }
}

.call-to-action .countdown-wrapper .countdown > div h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

@media (max-width: 576px) {
  .call-to-action .countdown-wrapper .countdown > div h3 {
    font-size: 2rem;
  }
}

.call-to-action .countdown-wrapper .countdown > div h4 {
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.call-to-action .action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 576px) {
  .call-to-action .action-buttons {
    flex-direction: column;
    gap: 16px;
  }
}

.call-to-action .action-buttons .btn-shop-now {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .action-buttons .btn-shop-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, white, transparent);
  opacity: 0.3;
  transition: left 0.5s ease;
}

.call-to-action .action-buttons .btn-shop-now:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px
    color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .action-buttons .btn-shop-now:hover::before {
  left: 100%;
}

@media (max-width: 576px) {
  .call-to-action .action-buttons .btn-shop-now {
    width: 100%;
    max-width: 280px;
  }
}

.call-to-action .action-buttons .btn-view-deals {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--heading-color);
  text-decoration: none;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.call-to-action .action-buttons .btn-view-deals:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.call-to-action .action-buttons .btn-view-deals:hover::after {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .call-to-action .action-buttons .btn-view-deals {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.call-to-action .featured-products-row {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .call-to-action .featured-products-row {
    margin-top: 40px;
  }
}

.call-to-action .product-showcase {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px
    color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  height: 100%;
}

.call-to-action .product-showcase:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .product-showcase .product-image {
  position: relative;
  margin-bottom: 16px;
}

.call-to-action .product-showcase .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.call-to-action .product-showcase .product-image .discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc3545;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.call-to-action .product-showcase .product-details h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.call-to-action .product-showcase .product-details .price-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.call-to-action
  .product-showcase
  .product-details
  .price-section
  .original-price {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.call-to-action .product-showcase .product-details .price-section .sale-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .product-showcase .product-details .rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.call-to-action .product-showcase .product-details .rating-stars i {
  color: #ffc107;
  font-size: 14px;
}

.call-to-action .product-showcase .product-details .rating-stars .rating-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 8px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .product-gallery .main-showcase {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--surface-color),
    color-mix(in srgb, var(--surface-color), #f8f9fa 50%)
  );
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.product-details .product-gallery .main-showcase .image-zoom-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-details
  .product-gallery
  .main-showcase
  .image-zoom-container
  .main-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  cursor: crosshair;
}

.product-details
  .product-gallery
  .main-showcase
  .image-zoom-container
  .main-product-image:hover {
  transform: scale(1.05);
}

.product-details .product-gallery .main-showcase .image-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-details .product-gallery .main-showcase .image-navigation .nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.product-details
  .product-gallery
  .main-showcase
  .image-navigation
  .nav-arrow:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.product-details
  .product-gallery
  .main-showcase
  .image-navigation
  .nav-arrow
  i {
  font-size: 1.25rem;
}

.product-details .product-gallery .main-showcase:hover .image-navigation {
  opacity: 1;
}

.product-details .product-gallery .thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .product-details .product-gallery .thumbnail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--surface-color);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details .product-details {
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .product-details .product-details {
    padding: 0 1.5rem;
  }
}

.product-details .product-details .product-badge-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.product-details .product-details .product-badge-container .badge-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 20%)
  );
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
}

.product-details .product-details .product-badge-container .rating-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-details
  .product-details
  .product-badge-container
  .rating-group
  .stars {
  display: flex;
}

.product-details
  .product-details
  .product-badge-container
  .rating-group
  .stars
  i {
  color: #ffd700;
  font-size: 1rem;
  margin-right: 1px;
}

.product-details
  .product-details
  .product-badge-container
  .rating-group
  .review-text {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details .product-name {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (min-width: 768px) {
  .product-details .product-details .product-name {
    font-size: 2.25rem;
  }
}

.product-details .product-details .pricing-section {
  margin-bottom: 1.5rem;
}

.product-details .product-details .pricing-section .price-display {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-details .product-details .pricing-section .price-display .sale-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.product-details
  .product-details
  .pricing-section
  .price-display
  .regular-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.product-details .product-details .pricing-section .savings-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-details .product-details .pricing-section .savings-info .save-amount {
  color: #28a745;
  font-weight: 600;
  font-size: 0.875rem;
}

.product-details
  .product-details
  .pricing-section
  .savings-info
  .discount-percent {
  background: linear-gradient(135deg, #dc3545, #a72024);
  color: var(--contrast-color);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-details .product-details .product-description {
  margin-bottom: 1.5rem;
}

.product-details .product-details .product-description p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 1rem;
}

.product-details .product-details .availability-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, #28a745, transparent 90%),
    color-mix(in srgb, #28a745, transparent 95%)
  );
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid color-mix(in srgb, #28a745, transparent 80%);
}

.product-details .product-details .availability-status .stock-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-details .product-details .availability-status .stock-indicator i {
  color: #28a745;
  font-size: 1.125rem;
}

.product-details
  .product-details
  .availability-status
  .stock-indicator
  .stock-text {
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-details .availability-status .quantity-left {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details .variant-section {
  margin-bottom: 2rem;
}

.product-details
  .product-details
  .variant-section
  .color-selection
  .variant-label {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.product-details
  .product-details
  .variant-section
  .color-selection
  .color-grid {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-details
  .product-details
  .variant-section
  .color-selection
  .color-grid
  .color-chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-details
  .product-details
  .variant-section
  .color-selection
  .color-grid
  .color-chip:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-details
  .product-details
  .variant-section
  .color-selection
  .color-grid
  .color-chip.active {
  border-color: var(--contrast-color);
  transform: scale(1.1);
  box-shadow: 0 0 0 3px var(--accent-color);
}

.product-details
  .product-details
  .variant-section
  .color-selection
  .color-grid
  .color-chip.active
  .selection-check {
  opacity: 1;
}

.product-details
  .product-details
  .variant-section
  .color-selection
  .color-grid
  .color-chip
  .selection-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contrast-color);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.product-details
  .product-details
  .variant-section
  .color-selection
  .selected-variant {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details
  .product-details
  .variant-section
  .color-selection
  .selected-variant
  span {
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-details .purchase-section {
  margin-bottom: 2rem;
}

.product-details .product-details .purchase-section .quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-details
  .product-details
  .purchase-section
  .quantity-control
  .control-label {
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.product-details
  .product-details
  .purchase-section
  .quantity-control
  .quantity-selector {
  display: flex;
  align-items: center;
  background: var(--surface-color);
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.product-details
  .product-details
  .purchase-section
  .quantity-control
  .quantity-selector
  .quantity-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-details
  .product-details
  .purchase-section
  .quantity-control
  .quantity-selector
  .quantity-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.product-details
  .product-details
  .purchase-section
  .quantity-control
  .quantity-selector
  .quantity-btn
  i {
  font-size: 1rem;
}

.product-details
  .product-details
  .purchase-section
  .quantity-control
  .quantity-selector
  .quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  background: none;
  color: var(--heading-color);
  font-weight: 600;
}

.product-details
  .product-details
  .purchase-section
  .quantity-control
  .quantity-selector
  .quantity-input:focus {
  outline: none;
}

.product-details .product-details .purchase-section .action-buttons {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .product-details .product-details .purchase-section .action-buttons {
    flex-direction: column;
  }
}

.product-details .product-details .purchase-section .action-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-details
  .product-details
  .purchase-section
  .action-buttons
  .btn.primary-action {
  flex: 2;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 15%)
  );
  color: var(--contrast-color);
}

.product-details
  .product-details
  .purchase-section
  .action-buttons
  .btn.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details
  .product-details
  .purchase-section
  .action-buttons
  .btn.secondary-action {
  flex: 2;
  background: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.product-details
  .product-details
  .purchase-section
  .action-buttons
  .btn.secondary-action:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.product-details
  .product-details
  .purchase-section
  .action-buttons
  .btn.icon-action {
  width: 50px;
  padding: 0.875rem;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.product-details
  .product-details
  .purchase-section
  .action-buttons
  .btn.icon-action:hover {
  background: #dc3545;
  color: var(--contrast-color);
  border-color: #dc3545;
  transform: translateY(-2px);
}

.product-details
  .product-details
  .purchase-section
  .action-buttons
  .btn.icon-action
  i {
  font-size: 1.125rem;
}

.product-details .product-details .benefits-list {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-details .benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-details .product-details .benefits-list .benefit-item:last-child {
  margin-bottom: 0;
}

.product-details .product-details .benefits-list .benefit-item i {
  color: var(--accent-color);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.product-details .product-details .benefits-list .benefit-item span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .info-tabs-container {
  margin-top: 3rem;
}

.product-details .info-tabs-container .tabs-navigation {
  display: flex;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-details .info-tabs-container .tabs-navigation .nav-link {
  flex: 1;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-details .info-tabs-container .tabs-navigation .nav-link:hover {
  color: var(--accent-color);
}

.product-details .info-tabs-container .tabs-navigation .nav-link.active {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 15%)
  );
  color: var(--contrast-color);
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .info-tabs-container .tab-content .tab-pane {
  padding: 2rem 0;
}

.product-details .info-tabs-container .overview-content .content-section h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-details .info-tabs-container .overview-content .content-section h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.product-details .info-tabs-container .overview-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-details
  .info-tabs-container
  .overview-content
  .highlights-grid
  .highlight-card {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.product-details
  .info-tabs-container
  .overview-content
  .highlights-grid
  .highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-details
  .info-tabs-container
  .overview-content
  .highlights-grid
  .highlight-card
  i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.product-details
  .info-tabs-container
  .overview-content
  .highlights-grid
  .highlight-card
  h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-details
  .info-tabs-container
  .overview-content
  .highlights-grid
  .highlight-card
  p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.product-details .info-tabs-container .overview-content .package-contents {
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--surface-color),
    color-mix(in srgb, var(--surface-color), #f8f9fa 50%)
  );
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .info-tabs-container .overview-content .package-contents h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.product-details
  .info-tabs-container
  .overview-content
  .package-contents
  .contents-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details
  .info-tabs-container
  .overview-content
  .package-contents
  .contents-list
  li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details
  .info-tabs-container
  .overview-content
  .package-contents
  .contents-list
  li
  i {
  color: #28a745;
  font-size: 1rem;
}

.product-details .info-tabs-container .technical-content .tech-group {
  margin-bottom: 2rem;
}

.product-details .info-tabs-container .technical-content .tech-group h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.product-details
  .info-tabs-container
  .technical-content
  .tech-group
  .spec-table {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details
  .info-tabs-container
  .technical-content
  .tech-group
  .spec-table
  .spec-row {
  display: flex;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 95%);
}

.product-details
  .info-tabs-container
  .technical-content
  .tech-group
  .spec-table
  .spec-row:last-child {
  border-bottom: none;
}

.product-details
  .info-tabs-container
  .technical-content
  .tech-group
  .spec-table
  .spec-row
  .spec-name {
  flex: 1;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details
  .info-tabs-container
  .technical-content
  .tech-group
  .spec-table
  .spec-row
  .spec-value {
  flex: 1;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: right;
}

.product-details .info-tabs-container .reviews-content .reviews-header {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .product-details .info-tabs-container .reviews-content .reviews-header {
    flex-direction: column;
    gap: 2rem;
  }
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview {
  flex: 1;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .average-score {
  text-align: center;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .average-score
  .score-display {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .average-score
  .score-stars {
  margin-bottom: 0.5rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .average-score
  .score-stars
  i {
  color: #ffd700;
  font-size: 1.5rem;
  margin: 0 1px;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .average-score
  .total-reviews {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .rating-distribution {
  margin-top: 2rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .rating-distribution
  .rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .rating-distribution
  .rating-row
  .stars-label {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .rating-distribution
  .rating-row
  .progress-container {
  flex: 1;
  height: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 4px;
  overflow: hidden;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .rating-distribution
  .rating-row
  .progress-container
  .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .rating-overview
  .rating-distribution
  .rating-row
  .count-label {
  width: 30px;
  text-align: right;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .write-review-cta {
  flex: 1;
  text-align: center;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .write-review-cta
  h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .write-review-cta
  p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .write-review-cta
  .review-btn {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 15%)
  );
  color: var(--contrast-color);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-details
  .info-tabs-container
  .reviews-content
  .reviews-header
  .write-review-cta
  .review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .reviewer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .reviewer-profile
  .profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .reviewer-profile
  .profile-details {
  flex: 1;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .reviewer-profile
  .profile-details
  .customer-name {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .reviewer-profile
  .profile-details
  .review-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .reviewer-profile
  .profile-details
  .review-meta
  .review-stars
  i {
  color: #ffd700;
  font-size: 0.875rem;
  margin-right: 1px;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .reviewer-profile
  .profile-details
  .review-meta
  .review-date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .review-headline {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .review-text
  p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .review-actions {
  display: flex;
  gap: 1rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .review-actions
  .action-btn {
  background: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .review-card
  .review-actions
  .action-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .load-more-section {
  text-align: center;
  margin-top: 2rem;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .load-more-section
  .load-more-reviews {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-details
  .info-tabs-container
  .reviews-content
  .customer-reviews-list
  .load-more-section
  .load-more-reviews:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.product-details .drift-zoom-pane {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.product-details .drift-zoom-pane.drift-opening {
  animation: driftFadeIn 200ms ease-out;
}

.product-details .drift-zoom-pane.drift-closing {
  animation: driftFadeOut 200ms ease-in;
}

@keyframes driftFadeIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes driftFadeOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Category Header Section
--------------------------------------------------------------*/
.category-header {
  padding-bottom: 0;
}

.category-header .filter-container {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.category-header .filter-container .filter-item {
  margin-bottom: 0.75rem;
}

.category-header .filter-container .filter-item .form-label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  letter-spacing: 0.01em;
}

.category-header .filter-container .filter-item.search-form .input-group {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.category-header
  .filter-container
  .filter-item.search-form
  .input-group
  .form-control {
  border-right: none;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  height: 44px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
}

.category-header
  .filter-container
  .filter-item.search-form
  .input-group
  .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.category-header
  .filter-container
  .filter-item.search-form
  .input-group
  .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 0.9rem;
}

.category-header
  .filter-container
  .filter-item.search-form
  .input-group
  .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.category-header
  .filter-container
  .filter-item.search-form
  .input-group
  .search-btn:hover {
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    var(--heading-color) 15%
  );
}

.category-header
  .filter-container
  .filter-item.search-form
  .input-group
  .search-btn
  i {
  font-size: 1rem;
}

.category-header .filter-container .filter-item .form-select {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.95rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 0.625rem 2.25rem 0.625rem 1rem;
  height: 46px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233690e7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.category-header .filter-container .filter-item .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.category-header .filter-container .filter-item .form-select.form-select-sm {
  height: 38px;
  font-size: 0.85rem;
  padding: 0.4rem 2rem 0.4rem 0.75rem;
}

.category-header .filter-container .filter-item .view-options {
  display: flex;
  gap: 0.5rem;
}

.category-header .filter-container .filter-item .view-options .view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.category-header .filter-container .filter-item .view-options .view-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.category-header .filter-container .filter-item .view-options .view-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.category-header .filter-container .filter-item .view-options .view-btn i {
  font-size: 1.1rem;
}

.category-header .filter-container .filter-item .items-per-page {
  min-width: 110px;
}

.category-header .filter-container .active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-header .filter-container .active-filters .active-filter-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--heading-color);
  letter-spacing: 0.01em;
}

.category-header .filter-container .active-filters .filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
}

.category-header .filter-container .active-filters .filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.875rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  font-weight: 500;
}

.category-header .filter-container .active-filters .filter-tag .filter-remove {
  background: none;
  border: none;
  color: var(--accent-color);
  margin-left: 0.35rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.category-header
  .filter-container
  .active-filters
  .filter-tag
  .filter-remove:hover {
  color: color-mix(in srgb, var(--accent-color), var(--heading-color) 30%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.1);
}

.category-header .filter-container .active-filters .clear-all-btn {
  background: none;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  border-radius: 50px;
}

.category-header .filter-container .active-filters .clear-all-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: color-mix(in srgb, var(--accent-color), var(--heading-color) 15%);
  border-color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .category-header .filter-container {
    padding: 1rem;
  }

  .category-header .filter-container .active-filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-header .filter-container .active-filters .filter-tags {
    width: 100%;
  }

  .category-header .filter-container .active-filters .clear-all-btn {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Category Product List Section
--------------------------------------------------------------*/
.category-product-list {
  padding-top: 30px;
  padding-bottom: 60px;
}

.category-product-list .product-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.category-product-list .product-card:hover {
  transform: translateY(-4px);
}

.category-product-list .product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.category-product-list .product-card:hover .hover-image {
  transform: scale(1);
  opacity: 1;
}

.category-product-list .product-card:hover .main-image {
  transform: scale(1.1);
  opacity: 0;
}

.category-product-list .product-image {
  position: relative;
  padding-top: 125%;
  background: color-mix(in srgb, var(--surface-color), transparent 97%);
  overflow: hidden;
}

.category-product-list .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.category-product-list .product-image .main-image {
  transform: scale(1);
  opacity: 1;
}

.category-product-list .product-image .hover-image {
  transform: scale(1.1);
  opacity: 0;
}

.category-product-list .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 75%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.category-product-list .product-actions {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-product-list .product-actions .action-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--surface-color);
  border: none;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateX(20px);
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.category-product-list .product-actions .action-btn:nth-child(2) {
  animation-delay: 0.1s;
}

.category-product-list .product-actions .action-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.category-product-list .product-actions .action-btn i {
  font-size: 1.25rem;
}

.category-product-list .product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}

.category-product-list .product-badge.new {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.category-product-list .product-badge.sale {
  background: #ffa007;
  color: var(--contrast-color);
}

.category-product-list .product-details {
  padding: 1.5rem;
  background: var(--surface-color);
}

.category-product-list .product-category {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
}

.category-product-list .product-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.category-product-list .product-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-product-list .product-title a:hover {
  color: var(--accent-color);
}

.category-product-list .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-product-list .product-price {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--accent-color);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.category-product-list .product-price .original-price {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
  font-weight: normal;
}

.category-product-list .product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--heading-color);
  font-weight: 500;
}

.category-product-list .product-rating i {
  color: #ffc107;
  margin-right: 0.25rem;
}

.category-product-list .product-rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  font-weight: normal;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .category-product-list .product-image {
    padding-top: 100%;
  }

  .category-product-list .product-details {
    padding: 1.25rem;
  }

  .category-product-list .product-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .category-product-list .product-price {
    font-size: 1rem;
  }

  .category-product-list .product-actions .action-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .category-product-list .product-actions .action-btn i {
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------------------
# Category Pagination Section
--------------------------------------------------------------*/
.category-pagination {
  padding-top: 0;
}

.category-pagination nav {
  position: relative;
}

.category-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-pagination li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.category-pagination li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.category-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-pagination li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.category-pagination li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.category-pagination li a i {
  font-size: 14px;
}

.category-pagination li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .category-pagination ul {
    gap: 4px;
  }

  .category-pagination li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Cart Section
--------------------------------------------------------------*/
.cart .cart-items {
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.cart .cart-items .cart-header {
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.cart .cart-items .cart-header h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.cart .cart-items .cart-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  transition: background-color 0.3s ease;
}

.cart .cart-items .cart-item:last-child {
  border-bottom: none;
}

.cart .cart-items .cart-item:hover {
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 70%
  );
}

.cart .cart-items .cart-item .product-info .product-image {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  border-radius: 0.375rem;
  overflow: hidden;
  margin-right: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart .cart-items .cart-item .product-info .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .cart .cart-items .cart-item .product-info .product-image {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
  }
}

.cart .cart-items .cart-item .product-info .product-details {
  flex: 1;
}

.cart .cart-items .cart-item .product-info .product-details .product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--heading-color);
}

.cart .cart-items .cart-item .product-info .product-details .product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cart .cart-items .cart-item .product-info .product-details .product-meta span {
  display: inline-block;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s ease;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item:hover {
  color: #dc3545;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item i {
  font-size: 0.875rem;
}

.cart .cart-items .cart-item .price-tag .current-price {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.cart .cart-items .cart-item .price-tag .original-price {
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.cart .cart-items .cart-item .quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0.375rem;
  overflow: hidden;
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn {
  background: none;
  border: none;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: background-color 0.3s ease;
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.cart .cart-items .cart-item .quantity-selector .quantity-input {
  width: 2.5rem;
  text-align: center;
  border: none;
  border-left: 1px solid
    color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: 1px solid
    color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 0.875rem;
  color: var(--heading-color);
  font-weight: 600;
  padding: 0.25rem 0;
  background-color: var(--surface-color);
}

.cart .cart-items .cart-item .quantity-selector .quantity-input:focus {
  outline: none;
}

.cart
  .cart-items
  .cart-item
  .quantity-selector
  .quantity-input::-webkit-inner-spin-button,
.cart
  .cart-items
  .cart-item
  .quantity-selector
  .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart .cart-items .cart-item .item-total {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1.125rem;
}

@media screen and (max-width: 991px) {
  .cart .cart-items {
    box-shadow: none;
    padding: 15px 12px;
  }
}

@media (max-width: 767.98px) {
  .cart .cart-items .cart-item {
    padding: 1rem 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .cart .cart-items .cart-item .price-tag,
  .cart .cart-items .cart-item .item-total {
    font-size: 0.9375rem;
  }
}

.cart .cart-items .cart-actions {
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-items .cart-actions .coupon-form .input-group {
  max-width: 24rem;
}

.cart .cart-items .cart-actions .coupon-form .input-group .form-control {
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.875rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.cart .cart-items .cart-actions .coupon-form .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.cart
  .cart-items
  .cart-actions
  .coupon-form
  .input-group
  .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.cart .cart-items .cart-actions .coupon-form .input-group .btn {
  border-color: var(--accent-color);
  border-left: none;
  font-size: 0.875rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* .cart .cart-items .cart-actions .coupon-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: var(--accent-color);
} */

.cart .cart-items .cart-actions .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
}

.cart .cart-summary {
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
  padding: 1.5rem;
  position: sticky;
  top: 6.5rem;
}

.cart .cart-summary .summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-summary .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.cart .cart-summary .summary-item.discount {
  color: #28a745;
}

.cart .cart-summary .summary-item .summary-label {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.cart .cart-summary .summary-item .summary-value {
  font-weight: 600;
  color: var(--heading-color);
}

.cart .cart-summary .summary-item .shipping-options {
  width: 100%;
  margin-top: 0.5rem;
}

.cart .cart-summary .summary-item .shipping-options .form-check {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cart .cart-summary .summary-item .shipping-options .form-check:last-child {
  margin-bottom: 0;
}

.cart
  .cart-summary
  .summary-item
  .shipping-options
  .form-check
  .form-check-input {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0.5rem;
  float: none;
}

.cart
  .cart-summary
  .summary-item
  .shipping-options
  .form-check
  .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart
  .cart-summary
  .summary-item
  .shipping-options
  .form-check
  .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

.cart
  .cart-summary
  .summary-item
  .shipping-options
  .form-check
  .form-check-label {
  font-size: 0.875rem;
  color: var(--default-color);
  padding-left: 0;
}

.cart .cart-summary .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-summary .summary-total .summary-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
}

.cart .cart-summary .summary-total .summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

.cart .cart-summary .checkout-button {
  margin-bottom: 1rem;
}

.cart .cart-summary .checkout-button .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cart .cart-summary .checkout-button .btn i {
  transition: transform 0.3s ease;
}

.cart .cart-summary .checkout-button .btn:hover i {
  transform: translateX(0.25rem);
}

.cart .cart-summary .continue-shopping {
  margin-bottom: 1.5rem;
}

.cart .cart-summary .continue-shopping .btn-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
}

.cart .cart-summary .continue-shopping .btn-link i {
  transition: transform 0.3s ease;
}

.cart .cart-summary .continue-shopping .btn-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.cart .cart-summary .continue-shopping .btn-link:hover i {
  transform: translateX(-0.25rem);
}

.cart .cart-summary .payment-methods {
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1rem;
}

.cart .cart-summary .payment-methods .payment-title {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
  text-align: center;
}

.cart .cart-summary .payment-methods .payment-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cart .cart-summary .payment-methods .payment-icons i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.cart .cart-summary .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.cart .btn-outline-accent {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: transparent;
}

.cart .btn-outline-accent:hover,
.cart .btn-outline-accent:focus,
.cart .btn-outline-accent:active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart .btn-outline-heading {
  color: var(--heading-color);
  border-color: var(--heading-color);
  background-color: transparent;
}

.cart .btn-outline-heading:hover,
.cart .btn-outline-heading:focus,
.cart .btn-outline-heading:active {
  color: var(--contrast-color);
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}
.dark-background .cart .btn-outline-heading:hover,
.dark-background .cart .btn-outline-heading:focus,
.dark-background .cart .btn-outline-heading:active {
  color: var(--surface-color);
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}

.cart .btn-outline-remove {
  color: #dc3545;
  border-color: #dc3545;
  background-color: transparent;
}

.cart .btn-outline-remove:hover,
.cart .btn-outline-remove:focus,
.cart .btn-outline-remove:active {
  color: var(--contrast-color);
  background-color: #dc3545;
  border-color: #dc3545;
}

.cart .btn-accent {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart .btn-accent:hover,
.cart .btn-accent:focus,
.cart .btn-accent:active {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@media (max-width: 991.98px) {
  .cart .cart-summary {
    position: static;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  margin-bottom: 1rem;
}

.about .section-badge i {
  font-size: 1rem;
}

.about .about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.about .about-description,
.about .section-text {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  line-height: 1.6;
}

.about .features-boxes .feature-box {
  height: 100%;
  position: relative;
  margin-left: 65px;
  margin-top: 20px;
}

.about .features-boxes .feature-box .icon-box {
  width: 50px;
  height: 50px;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 22px;
  transition: all 0.3s ease;
  position: absolute;
  margin-left: -65px;
}

.about .features-boxes .feature-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.about .features-boxes .feature-box h3 a {
  color: var(--heading-color);
}

.about .features-boxes .feature-box p {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about .features-boxes .feature-box:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .features-boxes .feature-box:hover h3 a {
  color: var(--accent-color);
}

.about .video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about .video-box img {
  width: 100%;
  border-radius: 20px;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}
@media screen and (max-width: 991px) {
  .section-badge {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-color: var(--highlight-color);
}
.testimonial-item {
  padding: 30px 0 50px 0;
}

.testimonials
  .testimonial-item.highlight
  .testimonial-content
  .quote-pattern
  i {
  color: var(--accent-color);
}
.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}
.testimonial-masonry.swiper {
  overflow: hidden;
}

.testimonial-masonry .swiper-pagination-bullet {
  background: var(--accent-color, #000);
  opacity: 0.3;
}
.testimonial-masonry .swiper-pagination-bullet-active {
  opacity: 1;
}

.testimonials .testimonial-masonry.swiper {
  display: block;
  overflow: hidden;
}

/* Stretch slides to equal height */
.testimonial-masonry .swiper-wrapper {
  align-items: stretch;
}

.testimonial-masonry .swiper-slide {
  height: auto;
  display: flex;
}

/* Make the card fill the slide height */
.testimonial-masonry .testimonial-item {
  display: flex;
  width: 100%;
}

.testimonial-masonry .testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Let the bottom section sit at the bottom naturally */
.testimonials .client-info {
  margin-top: auto;
  padding-top: 1.5rem;
}

/* (Optional) prevent quote-pattern from shifting layout on hover */
.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

.faq .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.faq .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.pricing-range-widget .price-range-container .current-range {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

.pricing-range-widget .price-range-container .range-slider {
  position: relative;
  height: 1.5rem;
  margin: 1.5rem 0;
}

.pricing-range-widget .price-range-container .range-slider .slider-track {
  position: absolute;
  width: 100%;
  height: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 0.25rem;
}

.pricing-range-widget .price-range-container .range-slider .slider-progress {
  position: absolute;
  height: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent-color);
  border-radius: 0.25rem;
}

.pricing-range-widget .price-range-container .range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.pricing-range-widget
  .price-range-container
  .range-slider
  input[type="range"]::-webkit-slider-thumb {
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease;
}

.pricing-range-widget
  .price-range-container
  .range-slider
  input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pricing-range-widget
  .price-range-container
  .range-slider
  input[type="range"]::-moz-range-thumb {
  height: 1.25rem;
  width: 1.25rem;
  border: none;
  border-radius: 50%;
  background-color: var(--accent-color);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease;
}

.pricing-range-widget
  .price-range-container
  .range-slider
  input[type="range"]::-moz-range-thumb:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pricing-range-widget
  .price-range-container
  .range-slider
  input[type="range"]:focus {
  outline: none;
}

.pricing-range-widget
  .price-range-container
  .range-slider
  input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.pricing-range-widget
  .price-range-container
  .range-slider
  input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.pricing-range-widget .price-range-container .range-slider .min-range {
  z-index: 1;
}

.pricing-range-widget .price-range-container .range-slider .max-range {
  z-index: 2;
}

.pricing-range-widget .price-range-container .price-inputs .input-group-text {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.pricing-range-widget .price-range-container .price-inputs .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.pricing-range-widget .price-range-container .price-inputs .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.pricing-range-widget
  .price-range-container
  .price-inputs
  .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing-range-widget .price-range-container .filter-actions .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
  font-size: 16px;
  padding: 10px 20px;
}

.pricing-range-widget
  .price-range-container
  .filter-actions
  .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.pricing-range-widget
  .price-range-container
  .filter-actions
  .btn-primary:focus {
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

.sticky-sidebar {
  position: sticky;
  top: 80px;
  z-index: 1020;
}

@media (min-width: 992px) {
  .sticky-sidebar {
    align-self: flex-start;
  }
}

@media (max-width: 991.98px) {
  .pricing-range-widget {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }
}
