@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('../fonts/Pretendard-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}


@font-face {
    font-family: 'NexonLv1Gothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF Light.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'NexonLv1Gothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NexonLv1Gothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF Bold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

.onlyPC {display: block; } 
.onlyMO {display: none; }

@media all and (max-width:520px){
  .onlyPC {display: none; } 
  .onlyMO {display: block; }
}

.font-style2 {font-family: 'NexonLv1Gothic'; }


small, .small {
  font-size: 0.875em;
}



/* Fonts */
:root {
  --default-font: "Pretendard",  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: "Inter",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  /*   --background-color: #f9fafb;*/
  --default-color: #374151; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #17325b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0ea5e9; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #374151;  /* The default color of the main navmenu links */
  --nav-hover-color: #0ea5e9; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #374151; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0ea5e9; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f5f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #152947;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #17325b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-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);
}

/* 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 {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .header-container {
  background: var(--surface-color);
  padding: 5px 15px;
}



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

.header .logo i {
  font-size: 22px;
  margin-right: 8px;
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 6px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 0px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}


--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Navigation Menu



@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(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    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:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-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;
  }
}


@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-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-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# 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: 6px;
  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 {
  background-color: var(--background-color);
  text-align: center;
  padding: 120px 0 60px 0;
}

.page-title .breadcrumbs {
  margin-top: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# 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 {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 720px;
}

@media (max-width: 992px) {
  .hero {
    min-height: 640px;
  }
}

.hero .hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-slider.swiper {
  height: 100%;
}

.hero .hero-slider .swiper-wrapper {
  height: 100% !important;
}

.hero .hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero .hero-slider .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, color-mix(in srgb, var(--accent-color) 90%, black 70%) 60%, transparent) 0%, color-mix(in srgb, color-mix(in srgb, var(--accent-color) 90%, black 70%) 60%, transparent) 55%, color-mix(in srgb, color-mix(in srgb, var(--accent-color) 90%, black 60%) 60%, transparent) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: 82px;
  padding-bottom: 80px;
}

.hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--contrast-color) 25%, transparent);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

.hero .hero-content .hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.hero .hero-content .hero-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--contrast-color);
  margin-bottom: 16px;
  max-width: 640px;
}

@media (max-width: 992px) {
  .hero .hero-content .hero-headline {
    font-size: 44px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content .hero-headline {
    font-size: 32px;
  }
}

.hero .hero-content .hero-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--contrast-color) 80%, transparent);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero .hero-content .action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero .hero-content .action-row .btn {
  height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.hero .hero-content .action-row .btn.btn-solid {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.hero .hero-content .action-row .btn.btn-solid:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  border-color: color-mix(in srgb, var(--accent-color) 85%, black);
}

.hero .hero-content .action-row .btn.btn-solid:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.hero .hero-content .action-row .btn.btn-outline {
  background-color: color-mix(in srgb, var(--contrast-color) 8%, transparent);
  color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--contrast-color) 30%, transparent);
  backdrop-filter: blur(8px);
}

.hero .hero-content .action-row .btn.btn-outline i {
  font-size: 18px;
  color: var(--contrast-color);
}

.hero .hero-content .action-row .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--contrast-color) 18%, transparent);
  border-color: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.hero .hero-content .action-row .btn.btn-outline:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--contrast-color) 20%, transparent);
}

.hero .hero-content .meta-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color) 18%, transparent);
}

@media (max-width: 576px) {
  .hero .hero-content .meta-row {
    gap: 16px;
  }
}

.hero .hero-content .meta-row .meta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--accent-color) 85%, transparent);
  transition: color 0.2s ease;
}

.hero .hero-content .meta-row .meta-link i {
  font-size: 16px;
  color: var(--accent-color);
}

.hero .hero-content .meta-row .meta-link:hover {
  color: var(--accent-color);
}

.hero .info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero .info-stack .info-card {
  background-color: color-mix(in srgb, var(--background-color) 96%, transparent);
  border: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.hero .info-stack .info-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.hero .info-stack .emergency-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero .info-stack .emergency-card .card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color) 14%, transparent);
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.hero .info-stack .emergency-card .card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  min-width: 0;
}

.hero .info-stack .emergency-card .card-meta .card-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.hero .info-stack .emergency-card .card-meta .card-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.hero .info-stack .emergency-card .card-action {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.hero .info-stack .emergency-card .card-action:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
}

.hero .info-stack .stats-card {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero .info-stack .stats-card .stat-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.hero .info-stack .stats-card .stat-cell .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero .info-stack .stats-card .stat-cell .stat-label {
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.hero .info-stack .stats-card .stat-divider {
  width: 1px;
  height: 36px;
  background-color: color-mix(in srgb, var(--default-color) 14%, transparent);
}

.hero .info-stack .review-card .review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hero .info-stack .review-card .review-header .review-rating {
  display: inline-flex;
  gap: 2px;
}

.hero .info-stack .review-card .review-header .review-rating i {
  color: #f5a623;
  font-size: 14px;
}

.hero .info-stack .review-card .review-header .review-score {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.hero .info-stack .review-card .review-quote {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 85%, transparent);
  margin: 0 0 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.hero .info-stack .review-card .review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .info-stack .review-card .review-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.hero .info-stack .review-card .review-author .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .info-stack .review-card .review-author .author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero .info-stack .review-card .review-author .author-info .author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.hero .info-stack .review-card .review-author .author-info .author-role {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.hero .metrics-bar {
  margin-top: 64px;
  padding: 24px;
  background-color: color-mix(in srgb, var(--background-color) 96%, transparent);
  border: 1px solid color-mix(in srgb, var(--contrast-color) 18%, transparent);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .hero .metrics-bar {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero .metrics-bar {
    grid-template-columns: 1fr;
  }
  
}

.hero .metrics-bar .metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-right: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.hero .metrics-bar .metric-item:last-child {
  border-right: none;
}

@media (max-width: 992px) {
  .hero .metrics-bar .metric-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .hero .metrics-bar .metric-item {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    padding-bottom: 16px;
  }

  .hero .metrics-bar .metric-item:last-child {
    border-bottom: none;
    padding-bottom: 8px;
  }
}

.hero .metrics-bar .metric-item .metric-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  font-size: 20px;
}

.hero .metrics-bar .metric-item .metric-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero .metrics-bar .metric-item .metric-text .metric-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  line-height: 1;
}

.hero .metrics-bar .metric-item .metric-text .metric-label {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about {
  padding: 80px 0;
}

.home-about .eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.home-about .eyebrow-badge i {
  font-size: 14px;
}

.home-about .display-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin: 0;
}

@media (max-width: 992px) {
  .home-about .display-heading {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .home-about .display-heading {
    font-size: 30px;
  }
}

.home-about .intro-copy {
  font-size: 16px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
}

.home-about .stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  background: var(--surface-color);
  overflow: hidden;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .home-about .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.home-about .stats-strip .stat-cell {
  padding: 24px;
  text-align: left;
  border-right: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.home-about .stats-strip .stat-cell:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .home-about .stats-strip .stat-cell:nth-child(2) {
    border-right: none;
  }

  .home-about .stats-strip .stat-cell:nth-child(-n+2) {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  }
}

.home-about .stats-strip .stat-cell .stat-value {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.home-about .stats-strip .stat-cell .stat-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.home-about .media-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-about .media-stack .media-card {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.home-about .media-stack .media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.home-about .media-stack .media-card:hover {
  border-color: color-mix(in srgb, var(--default-color) 20%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.home-about .media-stack .media-card:hover img {
  transform: scale(1.04);
}

.home-about .media-stack .media-card.primary {
  height: 340px;
}

.home-about .media-stack .media-card .media-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  margin: 0;
}

.home-about .media-stack .media-card .media-tag i {
  color: var(--accent-color);
  font-size: 14px;
}

.home-about .media-stack .media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.home-about .media-stack .media-row .media-card {
  height: 180px;
}

.home-about .feature-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.home-about .feature-card:hover {
  border-color: color-mix(in srgb, var(--default-color) 20%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.home-about .feature-card.primary-card {
  padding: 32px;
  margin-bottom: 24px;
}

.home-about .feature-card.primary-card .card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.home-about .feature-card.primary-card .card-head .icon-square {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.home-about .feature-card.primary-card .card-head .icon-square i {
  color: var(--accent-color);
  font-size: 20px;
}

.home-about .feature-card.primary-card .card-head .head-text {
  flex: 1;
}

.home-about .feature-card.primary-card .card-head .head-text .meta-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin-bottom: 4px;
}

.home-about .feature-card.primary-card .card-head .head-text .card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin: 0;
}

.home-about .feature-card.primary-card .card-description {
  font-size: 14px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
}

.home-about .feature-card.compact {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-about .feature-card.compact i {
  font-size: 22px;
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.home-about .feature-card.compact .compact-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.home-about .feature-card.compact .compact-text p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
  margin: 0;
}

.home-about .capabilities-grid {
  margin-bottom: 24px;
}

.home-about .action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.home-about .action-row .btn-primary-shadcn,
.home-about .action-row .btn-ghost-shadcn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.home-about .action-row .btn-primary-shadcn i,
.home-about .action-row .btn-ghost-shadcn i {
  font-size: 14px;
}

.home-about .action-row .btn-primary-shadcn:focus-visible,
.home-about .action-row .btn-ghost-shadcn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.home-about .action-row .btn-primary-shadcn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.home-about .action-row .btn-primary-shadcn:hover {
  background: color-mix(in srgb, var(--accent-color) 88%, black);
  border-color: color-mix(in srgb, var(--accent-color) 88%, black);
  color: var(--contrast-color);
}

.home-about .action-row .btn-ghost-shadcn {
  background: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 25%, transparent);
}

.home-about .action-row .btn-ghost-shadcn i {
  color: var(--accent-color);
}

.home-about .action-row .btn-ghost-shadcn:hover {
  background: color-mix(in srgb, var(--default-color) 5%, transparent);
  border-color: color-mix(in srgb, var(--default-color) 35%, transparent);
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .home-about {
    padding: 64px 0;
  }

  .home-about .feature-card.primary-card {
    padding: 24px;
  }

  .home-about .feature-card.primary-card .card-head .head-text .card-title {
    font-size: 20px;
  }

  .home-about .stats-strip .stat-cell {
    padding: 20px 16px;
  }

  .home-about .stats-strip .stat-cell .stat-value {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Featured Departments Section
--------------------------------------------------------------*/
.featured-departments {
  padding: 80px 0;
  --sc-border: color-mix(in srgb, var(--default-color) 12%, transparent);
  --sc-border-strong: color-mix(in srgb, var(--default-color) 20%, transparent);
  --sc-muted: color-mix(in srgb, var(--default-color) 65%, transparent);
  --sc-subtle-bg: color-mix(in srgb, var(--default-color) 4%, transparent);
  --sc-shadow-sm: 0 1px 2px color-mix(in srgb, var(--default-color) 8%, transparent);
  --sc-shadow-md: 0 4px 12px color-mix(in srgb, var(--default-color) 8%, transparent);
}

.featured-departments .departments-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-departments .meta-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sc-muted);
}

.featured-departments .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.featured-departments .badge-pill.subtle {
  background: var(--sc-subtle-bg);
  color: var(--sc-muted);
  border-color: var(--sc-border);
}

.featured-departments .badge-pill .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 18%, transparent);
}

.featured-departments .btn-shadcn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.featured-departments .btn-shadcn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.featured-departments .btn-shadcn.primary:hover {
  background: color-mix(in srgb, var(--accent-color) 88%, #000);
  border-color: color-mix(in srgb, var(--accent-color) 88%, #000);
}

.featured-departments .btn-shadcn.primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.featured-departments .btn-shadcn.secondary {
  background: var(--surface-color);
  color: var(--heading-color);
  border-color: var(--sc-border-strong);
}

.featured-departments .btn-shadcn.secondary:hover {
  background: var(--sc-subtle-bg);
  border-color: var(--default-color);
}

.featured-departments .btn-shadcn.ghost {
  background: transparent;
  color: var(--heading-color);
}

.featured-departments .btn-shadcn.ghost:hover {
  background: var(--sc-subtle-bg);
  color: var(--accent-color);
}


.featured-services .btn-shadcn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.featured-services .btn-shadcn.secondary {
  background: var(--surface-color);
  color: var(--heading-color);
  border-color: var(--sc-border-strong);
}

.featured-services .btn-shadcn.secondary:hover {
  background: var(--sc-subtle-bg);
  border-color: var(--default-color);
}


.featured-departments .spotlight-panel {
  border: 1px solid var(--sc-border);
  border-radius: 12px;
  background: var(--surface-color);
  overflow: hidden;
  box-shadow: var(--sc-shadow-sm);
  margin-bottom: 64px;
}

.featured-departments .spotlight-panel .spotlight-body {
  padding: 48px;
}

@media (max-width: 768px) {
  .featured-departments .spotlight-panel .spotlight-body {
    padding: 32px 24px;
  }
}

.featured-departments .spotlight-panel .spotlight-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.featured-departments .spotlight-panel .spotlight-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .featured-departments .spotlight-panel .spotlight-title {
    font-size: 28px;
  }
}

.featured-departments .spotlight-panel .spotlight-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sc-muted);
  margin-bottom: 32px;
}

.featured-departments .spotlight-panel .checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 16px;
}

.featured-departments .spotlight-panel .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.featured-departments .spotlight-panel .checklist li i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  font-size: 14px;
  margin-top: 2px;
}

.featured-departments .spotlight-panel .checklist li .check-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.featured-departments .spotlight-panel .checklist li .check-sub {
  display: block;
  font-size: 13px;
  color: var(--sc-muted);
  margin-top: 2px;
}

.featured-departments .spotlight-panel .spotlight-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-departments .spotlight-panel .spotlight-visual {
  position: relative;
  height: 100%;
  min-height: 360px;
  background: var(--sc-subtle-bg);
}

.featured-departments .spotlight-panel .spotlight-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .featured-departments .spotlight-panel .spotlight-visual {
    min-height: 280px;
  }
}

.featured-departments .spotlight-panel .visual-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.featured-departments .spotlight-panel .overlay-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background: var(--surface-color);
  border: 1px solid var(--sc-border);
  border-radius: 10px;
  box-shadow: var(--sc-shadow-md);
}

.featured-departments .spotlight-panel .overlay-stat .stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.featured-departments .spotlight-panel .overlay-stat .stat-caption {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sc-muted);
  margin-top: 2px;
}

.featured-departments .spotlight-panel .overlay-divider {
  width: 1px;
  height: 32px;
  background: var(--sc-border);
}

.featured-departments .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.featured-departments .section-heading .heading-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin: 4px 0 0;
}


.featured-services .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.featured-services .section-heading .heading-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin: 4px 0 0;
}


.featured-departments .shadcn-card {
  height: 100%;
  background: var(--surface-color);
  border: 1px solid var(--sc-border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.featured-departments .shadcn-card:hover {
  border-color: var(--sc-border-strong);
  box-shadow: var(--sc-shadow-md);
  transform: translateY(-2px);
}

.featured-departments .shadcn-card:hover .card-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.featured-departments .shadcn-card:hover .foot-link {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.featured-departments .shadcn-card .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.featured-departments .shadcn-card .card-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.2s ease;
}

.featured-departments .shadcn-card .card-body {
  flex: 1;
  margin-bottom: 20px;
}

.featured-departments .shadcn-card .card-heading {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.featured-departments .shadcn-card .card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sc-muted);
  margin: 0;
}

.featured-departments .shadcn-card .card-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sc-border);
}

.featured-departments .shadcn-card .foot-stat {
  display: flex;
  flex-direction: column;
}

.featured-departments .shadcn-card .foot-stat .value {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.1;
}

.featured-departments .shadcn-card .foot-stat .caption {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sc-muted);
  margin-top: 2px;
}

.featured-departments .shadcn-card .foot-link {
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--sc-border);
  color: var(--heading-color);
  transition: all 0.2s ease;
  font-size: 14px;
}

.featured-departments .banner-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--sc-border);
  border-radius: 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 6%, transparent) 0%, transparent 60%), var(--surface-color);
  box-shadow: var(--sc-shadow-sm);
}

@media (max-width: 768px) {
  .featured-departments .banner-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

.featured-departments .banner-cta .banner-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  font-size: 24px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.featured-departments .banner-cta .banner-icon2 {
  flex-shrink: 0;
  width: 166px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  font-size: 24px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
}
.featured-departments .banner-cta .banner-icon2 img {
  width: 139px;
  height: 40px;
}

.featured-departments .banner-cta .banner-text {
  flex: 1;
}

.featured-departments .banner-cta .banner-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.featured-departments .banner-cta .banner-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sc-muted);
  margin: 0;
}

.featured-departments .banner-cta .banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .featured-departments {
    padding: 64px 0;
  }

  .featured-departments .spotlight-panel {
    margin-bottom: 48px;
  }

  .featured-departments .shadcn-card .card-foot {
    gap: 12px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-card {
  display: flex;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.featured-services .service-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.06), 0 4px 6px rgba(0, 0, 0, 0.04);
}

.featured-services .service-card:hover .card-media img {
  transform: scale(1.04);
}

.featured-services .service-card:hover .link-action {
  color: var(--accent-color);
}

.featured-services .service-card:hover .link-action i {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .featured-services .service-card {
    flex-direction: column;
  }
}

.featured-services .card-media {
  position: relative;
  flex: 0 0 40%;
  max-width: 40%;
  overflow: hidden;
  background: color-mix(in srgb, var(--default-color) 5%, transparent);
}

.featured-services .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-services .card-media .badge-label {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--surface-color);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
  border-radius: 12px;
}

.featured-services .card-media .badge-label i {
  font-size: 12px;
}

@media (max-width: 576px) {
  .featured-services .card-media {
    flex: 0 0 200px;
    max-width: 100%;
    height: 200px;
  }
}

.featured-services .card-body {
  flex: 1 1 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.featured-services .card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 16px;
  flex-grow: 1;
}

.featured-services .card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.featured-services .card-head h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
  color: var(--heading-color);
}

.featured-services .card-head .meta-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color) 55%, transparent);
  padding-top: 4px;
}

.featured-services .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.featured-services .link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-services .link-action i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.featured-services .link-action:focus {
  outline: none;
  color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
  border-radius: 4px;
}

.featured-services .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px color-mix(in srgb, #22c55e 20%, transparent);
}

@media (max-width: 768px) {
  .featured-services .card-media {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .featured-services .card-body {
    padding: 20px;
  }

  .featured-services .card-head h3 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Find A Doctor Section
--------------------------------------------------------------*/
.find-a-doctor .directory-toolbar {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color) 6%, transparent);
}

.find-a-doctor .directory-toolbar .toolbar-intro {
  margin-bottom: 24px;
  max-width: 720px;
}

.find-a-doctor .directory-toolbar .toolbar-intro .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
  margin-bottom: 16px;
}

.find-a-doctor .directory-toolbar .toolbar-intro h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.find-a-doctor .directory-toolbar .toolbar-intro p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
}

.find-a-doctor .directory-toolbar .filter-form .field-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.find-a-doctor .directory-toolbar .filter-form .field-wrap {
  position: relative;
}

.find-a-doctor .directory-toolbar .filter-form .field-wrap i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 55%, transparent);
  pointer-events: none;
}

.find-a-doctor .directory-toolbar .filter-form .form-control,
.find-a-doctor .directory-toolbar .filter-form .form-select {
  height: 40px;
  padding: 8px 12px 8px 36px;
  border: 1px solid color-mix(in srgb, var(--default-color) 20%, transparent);
  border-radius: 6px;
  background: var(--background-color);
  color: var(--default-color);
  font-size: 14px;
  transition: all 0.2s ease;
}

.find-a-doctor .directory-toolbar .filter-form .form-control:focus,
.find-a-doctor .directory-toolbar .filter-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 15%, transparent);
  outline: none;
}

.find-a-doctor .directory-toolbar .filter-form .form-control::placeholder,
.find-a-doctor .directory-toolbar .filter-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.find-a-doctor .directory-toolbar .filter-form .btn-apply {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.find-a-doctor .directory-toolbar .filter-form .btn-apply i {
  font-size: 14px;
}

.find-a-doctor .directory-toolbar .filter-form .btn-apply:hover {
  background: color-mix(in srgb, var(--accent-color) 88%, black);
}

.find-a-doctor .directory-toolbar .filter-form .btn-apply:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.find-a-doctor .results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 4px;
  margin-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.find-a-doctor .results-meta .results-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.find-a-doctor .results-meta .results-count .count-number {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
}

.find-a-doctor .results-meta .results-count .count-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

.find-a-doctor .results-meta .sort-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.find-a-doctor .results-meta .sort-tags .tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color) 15%, transparent);
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  background: var(--surface-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.find-a-doctor .results-meta .sort-tags .tag:hover {
  border-color: color-mix(in srgb, var(--default-color) 25%, transparent);
  color: var(--heading-color);
}

.find-a-doctor .results-meta .sort-tags .tag.active {
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  color: var(--accent-color);
}

.find-a-doctor .directory-grid {
  margin-bottom: 32px;
}

.find-a-doctor .clinician-row {
  display: flex;
  gap: 16px;
  height: 100%;
  padding: 20px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 2px color-mix(in srgb, var(--default-color) 5%, transparent);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.find-a-doctor .clinician-row:hover {
  border-color: color-mix(in srgb, var(--default-color) 22%, transparent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 10%, transparent);
}

.find-a-doctor .clinician-row.featured {
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.find-a-doctor .clinician-row.featured:hover {
  border-color: var(--accent-color);
}

.find-a-doctor .clinician-row .row-media {
  position: relative;
  flex-shrink: 0;
}

.find-a-doctor .clinician-row .row-media img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.find-a-doctor .clinician-row .row-media .presence {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
}

.find-a-doctor .clinician-row .row-media .presence.active {
  background: #22c55e;
}

.find-a-doctor .clinician-row .row-media .presence.busy {
  background: #f59e0b;
}

.find-a-doctor .clinician-row .row-media .presence.offline {
  background: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.find-a-doctor .clinician-row .row-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.find-a-doctor .clinician-row .row-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.find-a-doctor .clinician-row .row-head .chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 12px;
  margin-bottom: 6px;
}

.find-a-doctor .clinician-row .row-head .chip.chip-accent {
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.find-a-doctor .clinician-row .row-head h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  color: var(--heading-color);
}

.find-a-doctor .clinician-row .row-head .role {
  font-size: 13px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

.find-a-doctor .clinician-row .row-head .score-block {
  text-align: right;
  flex-shrink: 0;
}

.find-a-doctor .clinician-row .row-head .score-block .stars {
  display: inline-flex;
  gap: 1px;
  margin-bottom: 4px;
}

.find-a-doctor .clinician-row .row-head .score-block .stars i {
  font-size: 11px;
  color: #f59e0b;
}

.find-a-doctor .clinician-row .row-head .score-block .value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
}

.find-a-doctor .clinician-row .row-head .score-block .reviews {
  display: block;
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color) 55%, transparent);
  margin-top: 2px;
}

.find-a-doctor .clinician-row .meta-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.find-a-doctor .clinician-row .meta-row li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--default-color) 5%, transparent);
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
}

.find-a-doctor .clinician-row .meta-row li i {
  font-size: 12px;
  color: var(--accent-color);
}

.find-a-doctor .clinician-row .row-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.find-a-doctor .clinician-row .row-actions .btn-ghost,
.find-a-doctor .clinician-row .row-actions .btn-solid {
  flex: 1;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.find-a-doctor .clinician-row .row-actions .btn-ghost {
  color: var(--default-color);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color) 20%, transparent);
}

.find-a-doctor .clinician-row .row-actions .btn-ghost:hover {
  background: color-mix(in srgb, var(--default-color) 5%, transparent);
  border-color: color-mix(in srgb, var(--default-color) 30%, transparent);
  color: var(--heading-color);
}

.find-a-doctor .clinician-row .row-actions .btn-solid {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.find-a-doctor .clinician-row .row-actions .btn-solid:hover {
  background: color-mix(in srgb, var(--accent-color) 88%, black);
  color: var(--contrast-color);
}

.find-a-doctor .directory-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  background: var(--surface-color);
}

.find-a-doctor .directory-footer .footer-note {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

.find-a-doctor .directory-footer .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  transition: all 0.2s ease;
}

.find-a-doctor .directory-footer .btn-link i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.find-a-doctor .directory-footer .btn-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.find-a-doctor .directory-footer .btn-link:hover i {
  transform: translate(2px, -2px);
}

@media (max-width: 992px) {
  .find-a-doctor .directory-toolbar {
    padding: 24px;
  }

  .find-a-doctor .directory-toolbar .toolbar-intro h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .find-a-doctor .directory-toolbar {
    padding: 20px;
  }

  .find-a-doctor .directory-toolbar .toolbar-intro {
    margin-bottom: 16px;
  }

  .find-a-doctor .directory-toolbar .toolbar-intro h2 {
    font-size: 22px;
  }

  .find-a-doctor .results-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .find-a-doctor .clinician-row {
    flex-direction: column;
  }

  .find-a-doctor .clinician-row .row-media img {
    width: 64px;
    height: 64px;
  }

  .find-a-doctor .clinician-row .row-head {
    flex-direction: column;
  }

  .find-a-doctor .clinician-row .row-head .score-block {
    text-align: left;
  }

  .find-a-doctor .directory-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .find-a-doctor .directory-footer .btn-link {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .find-a-doctor .clinician-row .row-actions {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .hero-panel {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 64px;
}

.call-to-action .hero-panel .panel-content {
  padding: 64px 56px;
}

@media (max-width: 992px) {
  .call-to-action .hero-panel .panel-content {
    padding: 40px 32px;
  }
}

@media (max-width: 576px) {
  .call-to-action .hero-panel .panel-content {
    padding: 32px 24px;
  }
}

.call-to-action .hero-panel .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.call-to-action .hero-panel .badge-pill i {
  font-size: 14px;
}

.call-to-action .hero-panel h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--heading-color);
}

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

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

.call-to-action .hero-panel .lead-text {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  margin-bottom: 32px;
  max-width: 540px;
}

.call-to-action .hero-panel .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.call-to-action .hero-panel .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.call-to-action .hero-panel .trust-row .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.call-to-action .hero-panel .trust-row .trust-item i {
  color: var(--accent-color);
  font-size: 16px;
}

.call-to-action .hero-panel .panel-visual {
  height: 100%;
  min-height: 420px;
  position: relative;
  background: color-mix(in srgb, var(--accent-color) 6%, var(--surface-color));
  border-left: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

@media (max-width: 992px) {
  .call-to-action .hero-panel .panel-visual {
    border-left: none;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    min-height: 320px;
  }
}

.call-to-action .hero-panel .panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.call-to-action .btn-primary-shad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--accent-color);
  transition: all 0.2s ease;
}

.call-to-action .btn-primary-shad:hover {
  background: color-mix(in srgb, var(--accent-color) 88%, black);
  color: var(--contrast-color);
}

.call-to-action .btn-primary-shad:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.call-to-action .btn-primary-shad i {
  font-size: 14px;
}

.call-to-action .btn-ghost-shad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  background: transparent;
  color: var(--heading-color);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.call-to-action .btn-ghost-shad:hover {
  background: color-mix(in srgb, var(--default-color) 6%, transparent);
  color: var(--accent-color);
}

.call-to-action .btn-ghost-shad:hover i {
  transform: translateX(3px);
}

.call-to-action .btn-ghost-shad i {
  transition: transform 0.2s ease;
}

.call-to-action .btn-outline-shad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: transparent;
  color: var(--contrast-color);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--contrast-color) 50%, transparent);
  transition: all 0.2s ease;
}

.call-to-action .btn-outline-shad:hover {
  background: color-mix(in srgb, var(--contrast-color) 12%, transparent);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.call-to-action .metrics-strip {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 64px;
}

.call-to-action .metrics-strip .metric-cell {
  padding: 32px;
  border-right: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  height: 100%;
}

@media (max-width: 992px) {
  .call-to-action .metrics-strip .metric-cell {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .call-to-action .metrics-strip .metric-cell:nth-child(odd) {
    border-right: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  }
}

.call-to-action .metrics-strip .row>div:last-child .metric-cell {
  border-right: none;
  border-bottom: none;
}

.call-to-action .metrics-strip .metric-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin-bottom: 12px;
}

.call-to-action .metrics-strip .metric-value {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 8px;
}

.call-to-action .metrics-strip .metric-value span {
  color: var(--accent-color);
}

.call-to-action .metrics-strip .metric-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

.call-to-action .specialties-section {
  margin-bottom: 64px;
}

.call-to-action .specialties-section .specialties-header {
  margin-bottom: 32px;
  max-width: 640px;
}

.call-to-action .specialties-section .specialties-header .section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.call-to-action .specialties-section .specialties-header h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin: 0;
}

.call-to-action .specialties-section .shad-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.call-to-action .specialties-section .shad-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.call-to-action .specialties-section .shad-card .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.call-to-action .specialties-section .shad-card .card-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
}

.call-to-action .specialties-section .shad-card .card-icon i {
  font-size: 20px;
}

.call-to-action .specialties-section .shad-card .card-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.call-to-action .specialties-section .shad-card .card-body-shad {
  flex: 1;
}

.call-to-action .specialties-section .shad-card .card-body-shad h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.call-to-action .specialties-section .shad-card .card-body-shad p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
}

.call-to-action .specialties-section .shad-card .card-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.call-to-action .specialties-section .shad-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.call-to-action .specialties-section .shad-card .card-link i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.call-to-action .specialties-section .shad-card .card-link:hover {
  color: color-mix(in srgb, var(--accent-color) 85%, black);
}

.call-to-action .specialties-section .shad-card .card-link:hover i {
  transform: translate(2px, -2px);
}

.call-to-action .alert-strip {
  background: var(--accent-color);
  border-radius: 12px;
  padding: 40px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .call-to-action .alert-strip {
    padding: 28px;
  }
}

.call-to-action .alert-strip .alert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

@media (max-width: 992px) {
  .call-to-action .alert-strip .alert-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.call-to-action .alert-strip .alert-meta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.call-to-action .alert-strip .alert-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--contrast-color) 18%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .alert-strip .alert-icon i {
  font-size: 22px;
  color: var(--contrast-color);
}

.call-to-action .alert-strip .alert-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--contrast-color) 80%, transparent);
  margin-bottom: 6px;
}

.call-to-action .alert-strip .alert-text h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--contrast-color);
  margin: 0 0 6px 0;
}

.call-to-action .alert-strip .alert-text p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
  margin: 0;
  max-width: 480px;
}

.call-to-action .alert-strip .alert-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .call-to-action .alert-strip .alert-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

.call-to-action .alert-strip .alert-actions .btn-primary-shad {
  background: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
}

.call-to-action .alert-strip .alert-actions .btn-primary-shad:hover {
  background: color-mix(in srgb, var(--contrast-color) 90%, black);
  color: var(--accent-color);
}

.call-to-action .alert-strip .alert-actions .btn-primary-shad:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--contrast-color) 30%, transparent);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
}

.about .eyebrow-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.about .badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
  letter-spacing: 0.02em;
}

.about .block-description {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
  margin: 0;
}

.about .intro-block {
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.about .intro-block h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.about .intro-block .intro-paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
}

@media (max-width: 768px) {
  .about .intro-block h2 {
    font-size: 32px;
  }
}

.about .feature-board {
  margin-bottom: 64px;
}

.about .feature-board .media-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.about .feature-board .media-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.about .feature-board .media-card .media-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  padding: 16px 20px;
  background: color-mix(in srgb, var(--background-color) 92%, transparent);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.about .feature-board .media-card .media-overlay h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0 0;
  color: var(--heading-color);
}

.about .feature-board .thumb-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.about .feature-board .thumb-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.about .feature-board .thumb-card:hover img {
  transform: scale(1.03);
}

.about .feature-board .info-card {
  padding: 32px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about .feature-board .info-card .info-card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.about .feature-board .info-card .info-card-header h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.about .feature-board .info-card .info-card-header p {
  font-size: 14px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
  margin: 0;
}

.about .feature-board .metric-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about .feature-board .metric-list .metric-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  background: var(--background-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about .feature-board .metric-list .metric-row:hover {
  border-color: color-mix(in srgb, var(--accent-color) 35%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.about .feature-board .metric-list .metric-value {
  min-width: 96px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
}

.about .feature-board .metric-list .metric-value .unit {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  margin-left: 2px;
}

.about .feature-board .metric-list .metric-detail {
  flex: 1;
}

.about .feature-board .metric-list .metric-detail h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--heading-color);
}

.about .feature-board .metric-list .metric-detail p {
  font-size: 12px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  line-height: 1.5;
}

.about .pillar-block {
  margin-bottom: 64px;
}

.about .pillar-block .pillar-card {
  padding: 32px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.about .pillar-block .pillar-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 35%, transparent);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.about .pillar-block .pillar-card .pillar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.about .pillar-block .pillar-card .pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.about .pillar-block .pillar-card .pillar-icon i {
  font-size: 20px;
}

.about .pillar-block .pillar-card h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--heading-color);
}

.about .pillar-block .pillar-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

.about .specialty-block {
  margin-bottom: 64px;
}

.about .specialty-block .specialty-heading {
  margin-bottom: 32px;
}

.about .specialty-block .specialty-heading h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}

.about .specialty-block .specialty-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
  height: 100%;
}

.about .specialty-block .specialty-card i {
  font-size: 20px;
  color: var(--accent-color);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border-radius: 6px;
  flex-shrink: 0;
}

.about .specialty-block .specialty-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.about .specialty-block .specialty-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
  background: color-mix(in srgb, var(--accent-color) 4%, var(--surface-color));
}

.about .trust-block {
  padding: 32px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.about .trust-block h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--heading-color);
}

.about .trust-block .logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

@media (max-width: 992px) {
  .about .trust-block .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .about .trust-block .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about .trust-block .logo-grid .logo-tile {
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  border-radius: 6px;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.about .trust-block .logo-grid .logo-tile img {
  max-height: 36px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.about .trust-block .logo-grid .logo-tile:hover {
  border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  background: color-mix(in srgb, var(--accent-color) 4%, var(--background-color));
}

.about .trust-block .logo-grid .logo-tile:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .about {
    padding: 64px 0;
  }

  .about .intro-block {
    margin-bottom: 48px;
    padding-bottom: 32px;
  }

  .about .feature-board {
    margin-bottom: 48px;
  }

  .about .feature-board .info-card {
    padding: 24px;
  }

  .about .pillar-block {
    margin-bottom: 48px;
  }

  .about .specialty-block {
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .about .feature-board .media-card img {
    height: 280px;
  }

  .about .feature-board .thumb-card img {
    height: 140px;
  }

  .about .feature-board .metric-list .metric-value {
    font-size: 26px;
    min-width: 80px;
  }

  .about .trust-block {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments .dept-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.departments .dept-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.departments .dept-card:hover .dept-card-media img {
  transform: scale(1.04);
}

.departments .dept-card:hover .dept-icon-box {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.departments .dept-card:hover .dept-link-btn {
  color: var(--accent-color);
}

.departments .dept-card:hover .dept-link-btn i {
  transform: translateX(4px);
}

.departments .dept-card-media {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.departments .dept-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.departments .dept-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 12px;
  background: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.departments .dept-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.departments .dept-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.departments .dept-icon-box {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.departments .dept-icon-box i {
  font-size: 18px;
}

.departments .dept-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
  color: var(--heading-color);
}

.departments .dept-card-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.departments .dept-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  margin: 0 0 16px;
}

.departments .dept-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.departments .dept-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--heading-color);
  font-weight: 500;
}

.departments .dept-feature-list li i {
  font-size: 11px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  flex-shrink: 0;
}

.departments .dept-card-foot {
  padding: 16px 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  background: color-mix(in srgb, var(--default-color) 3%, transparent);
}

.departments .dept-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.departments .dept-link-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
  border-radius: 4px;
}

.departments .dept-link-btn i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.departments .dept-link-btn:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .departments .dept-card-media {
    height: 200px;
  }

  .departments .dept-card-body {
    padding: 20px;
  }

  .departments .dept-card-foot {
    padding: 14px 20px;
  }

  .departments .dept-card-title {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Department Details Section
--------------------------------------------------------------*/
.department-details .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.department-details .badge i {
  font-size: 12px;
}

.department-details .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.department-details .department-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 48px;
  margin-bottom: 24px;
}

.department-details .department-card .department-card-header {
  max-width: 760px;
}

.department-details .department-card .header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.department-details .department-card .header-meta .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
}

.department-details .department-card .header-meta .status-pill .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px color-mix(in srgb, #16a34a 20%, transparent);
}

.department-details .department-card .department-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.department-details .department-card .department-lead {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  margin-bottom: 32px;
}

.department-details .department-card .header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.department-details .department-card .header-actions .btn-primary,
.department-details .department-card .header-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.department-details .department-card .header-actions .btn-primary i,
.department-details .department-card .header-actions .btn-ghost i {
  font-size: 14px;
}

.department-details .department-card .header-actions .btn-primary:focus-visible,
.department-details .department-card .header-actions .btn-ghost:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.department-details .department-card .header-actions .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.department-details .department-card .header-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color) 88%, black);
  border-color: color-mix(in srgb, var(--accent-color) 88%, black);
}

.department-details .department-card .header-actions .btn-ghost {
  background: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 18%, transparent);
}

.department-details .department-card .header-actions .btn-ghost:hover {
  background: color-mix(in srgb, var(--default-color) 5%, transparent);
  border-color: color-mix(in srgb, var(--default-color) 28%, transparent);
}

@media (max-width: 768px) {
  .department-details .department-card {
    padding: 32px 24px;
  }

  .department-details .department-card .department-title {
    font-size: 32px;
  }

  .department-details .department-card .department-lead {
    font-size: 16px;
  }

  .department-details .department-card .header-actions .btn-primary,
  .department-details .department-card .header-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

.department-details .stats-strip {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  margin-bottom: 48px;
  overflow: hidden;
}

.department-details .stats-strip .stat-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 32px;
  border-right: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.department-details .stats-strip .stat-cell .stat-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.department-details .stats-strip .stat-cell .stat-value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--heading-color);
}

@media (min-width: 768px) {
  .department-details .stats-strip .col-md-3:last-child .stat-cell {
    border-right: none;
  }

  .department-details .stats-strip .stat-cell {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .department-details .stats-strip .col-6:nth-child(even) .stat-cell {
    border-right: none;
  }

  .department-details .stats-strip .col-6:nth-last-child(-n+2) .stat-cell {
    border-bottom: none;
  }
}

.department-details .main-grid {
  margin-top: 0;
}

.department-details .section-block {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.department-details .section-block+.section-block {
  margin-top: 24px;
}

.department-details .section-block .block-header {
  margin-bottom: 32px;
}

.department-details .section-block .block-header h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.2;
}

.department-details .section-block .block-header p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
  max-width: 560px;
}

@media (max-width: 576px) {
  .department-details .section-block {
    padding: 24px;
  }

  .department-details .section-block .block-header h2 {
    font-size: 22px;
  }
}

.department-details .service-grid .service-card {
  height: 100%;
  padding: 24px;
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.department-details .service-grid .service-card .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  margin-bottom: 16px;
}

.department-details .service-grid .service-card .service-icon i {
  font-size: 20px;
}

.department-details .service-grid .service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.department-details .service-grid .service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 16px;
}

.department-details .service-grid .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: none;
}

.department-details .service-grid .service-card .service-link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.department-details .service-grid .service-card .service-link:hover i {
  transform: translateX(3px);
}

.department-details .service-grid .service-card:hover {
  border-color: color-mix(in srgb, var(--default-color) 22%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.department-details .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.department-details .feature-list li {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.department-details .feature-list li:first-child {
  padding-top: 0;
}

.department-details .feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.department-details .feature-list li i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  margin-top: 2px;
}

.department-details .feature-list li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.department-details .feature-list li span {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.department-details .sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 96px;
}

.department-details .sidebar-stack .side-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.department-details .sidebar-stack .side-card .side-card-header {
  padding: 24px 24px 0;
}

.department-details .sidebar-stack .side-card .side-card-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.department-details .sidebar-stack .side-card .side-card-header p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
  margin-bottom: 16px;
}

.department-details .sidebar-stack .side-card.visual-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.department-details .sidebar-stack .side-card.visual-card .visual-meta {
  padding: 20px 24px 24px;
}

.department-details .sidebar-stack .side-card.visual-card .visual-meta p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 12px 0 0;
}

.department-details .sidebar-stack .hours-list,
.department-details .sidebar-stack .link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.department-details .sidebar-stack .hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
}

.department-details .sidebar-stack .hours-list li span:first-child {
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  font-weight: 500;
}

.department-details .sidebar-stack .hours-list li span:last-child {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 13px;
}

.department-details .sidebar-stack .link-list li {
  border-top: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
}

.department-details .sidebar-stack .link-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  text-decoration: none;
  transition: background 0.2s ease;
}

.department-details .sidebar-stack .link-list li a i {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  transition: color 0.2s ease, transform 0.2s ease;
}

.department-details .sidebar-stack .link-list li a:hover {
  background: color-mix(in srgb, var(--default-color) 4%, transparent);
  color: var(--accent-color);
}

.department-details .sidebar-stack .link-list li a:hover i {
  color: var(--accent-color);
  transform: translate(2px, -2px);
}

@media (max-width: 991px) {
  .department-details .sidebar-stack {
    position: static;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  --border-soft: color-mix(in srgb, var(--default-color) 12%, transparent);
  --border-strong: color-mix(in srgb, var(--default-color) 22%, transparent);
  --muted: color-mix(in srgb, var(--default-color) 65%, transparent);
  --shadow-sm: 0 1px 2px color-mix(in srgb, var(--default-color) 6%, transparent);
  --shadow-md: 0 4px 12px color-mix(in srgb, var(--default-color) 8%, transparent);
}

.services .services-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}

.services .services-toolbar .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.services .services-toolbar .toolbar-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .services .services-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.services .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--default-color) 6%, transparent);
  color: var(--default-color);
  border: 1px solid var(--border-soft);
  line-height: 1.4;
}

.services .badge.badge-accent {
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.services .badge.badge-success {
  background: color-mix(in srgb, #16a34a 10%, transparent);
  color: #16a34a;
  border-color: color-mix(in srgb, #16a34a 25%, transparent);
}

.services .badge.badge-success .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  animation: dotPulse 2s infinite;
}

.services .badge.badge-outline {
  background: transparent;
  border-color: color-mix(in srgb, var(--contrast-color) 35%, transparent);
  color: var(--contrast-color);
}

.services .badge.badge-outline i {
  font-size: 13px;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.services .services-grid {
  margin-bottom: 64px;
}

.services .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface-color);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}

.services .service-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.services .service-card.featured {
  border-color: color-mix(in srgb, var(--accent-color) 50%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-color) 20%, transparent), var(--shadow-md);
}

.services .service-card.emergency {
  border-left: 3px solid #dc2626;
}

.services .card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.services .card-head .icon-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  margin-right: 4px;
}

.services .card-head .icon-wrap i {
  font-size: 20px;
}

.services .card-head .pin {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .card-head .pin.pin-live {
  background: color-mix(in srgb, #dc2626 10%, transparent);
  color: #dc2626;
  border: 1px solid color-mix(in srgb, #dc2626 25%, transparent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.services .card-head .pin.pin-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
  animation: dotPulse 2s infinite;
}

.services .card-content {
  flex: 1;
}

.services .card-content .card-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--heading-color);
}

.services .card-content .card-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 16px;
}

.services .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services .feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--default-color);
}

.services .feature-list li i {
  font-size: 14px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.services .card-foot {
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  margin-top: auto;
}

.services .btn-primary,
.services .btn-secondary,
.services .btn-ghost,
.services .btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.services .btn-primary i,
.services .btn-secondary i,
.services .btn-ghost i,
.services .btn-danger i {
  font-size: 14px;
}

.services .btn-primary:focus-visible,
.services .btn-secondary:focus-visible,
.services .btn-ghost:focus-visible,
.services .btn-danger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.services .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 100%;
}

.services .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color) 88%, #000);
  color: var(--contrast-color);
}

.services .btn-ghost {
  background: transparent;
  color: var(--default-color);
  border-color: var(--border-soft);
  width: 100%;
}

.services .btn-ghost:hover {
  background: color-mix(in srgb, var(--default-color) 4%, transparent);
  border-color: var(--border-strong);
  color: var(--accent-color);
}

.services .btn-danger {
  background: #dc2626;
  color: var(--contrast-color);
  width: 100%;
}

.services .btn-danger:hover {
  background: color-mix(in srgb, #dc2626 85%, #000);
  color: var(--contrast-color);
}

.services .services-stats {
  background: var(--surface-color);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 64px;
}

.services .services-stats .stat-cell {
  padding: 24px;
  border-right: 1px solid var(--border-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services .services-stats .stat-cell .stat-key {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.services .services-stats .stat-cell .stat-value {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--heading-color);
  line-height: 1;
}

.services .services-stats .stat-cell .stat-value .stat-suffix {
  font-size: 24px;
  color: var(--accent-color);
}

.services .services-stats .stat-cell .stat-meta {
  font-size: 13px;
  color: var(--muted);
}

.services .services-stats .col-lg-3:last-child .stat-cell,
.services .services-stats .col-md-6:nth-child(2) .stat-cell {
  border-right: none;
}

@media (min-width: 768px) and (max-width: 991px) {
  .services .services-stats .col-md-6:nth-child(odd) .stat-cell {
    border-right: 1px solid var(--border-soft);
  }

  .services .services-stats .col-md-6:nth-child(even) .stat-cell {
    border-right: none;
  }

  .services .services-stats .col-md-6:nth-child(-n+2) .stat-cell {
    border-bottom: 1px solid var(--border-soft);
  }
}

@media (max-width: 767px) {
  .services .services-stats .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }

  .services .services-stats .col-md-6:last-child .stat-cell {
    border-bottom: none;
  }
}

.services .appointment-banner {
  background: var(--accent-color);
  border-radius: 8px;
  padding: 48px;
  color: var(--contrast-color);
  box-shadow: var(--shadow-md);
}

.services .appointment-banner .banner-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 32px;
}

@media (max-width: 992px) {
  .services .appointment-banner .banner-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.services .appointment-banner .banner-meta h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--contrast-color);
  margin: 16px 0 8px;
  line-height: 1.2;
}

.services .appointment-banner .banner-meta p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color) 80%, transparent);
  margin: 0;
  max-width: 480px;
}

.services .appointment-banner .banner-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .services .appointment-banner .banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .services .appointment-banner .banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .services .appointment-banner .banner-actions .btn-primary,
  .services .appointment-banner .banner-actions .btn-secondary {
    width: 100%;
  }
}

.services .appointment-banner .banner-actions .btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
  width: auto;
  padding: 0 20px;
}

.services .appointment-banner .banner-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--contrast-color) 88%, #000);
  color: var(--accent-color);
}

.services .appointment-banner .banner-actions .btn-secondary {
  background: transparent;
  color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--contrast-color) 35%, transparent);
  padding: 0 20px;
}

.services .appointment-banner .banner-actions .btn-secondary:hover {
  background: color-mix(in srgb, var(--contrast-color) 12%, transparent);
  border-color: var(--contrast-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .services .appointment-banner {
    padding: 32px 24px;
  }

  .services .appointment-banner .banner-meta h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Service Details 2 Section
--------------------------------------------------------------*/
.service-details-2 .badge-tag,
.service-details-2 .intro-label,
.service-details-2 .panel-label,
.service-details-2 .action-label,
.service-details-2 .feature-label,
.service-details-2 .overlay-label,
.service-details-2 .status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.service-details-2 .divider {
  height: 1px;
  background: color-mix(in srgb, var(--default-color) 10%, transparent);
  margin: 64px 0;
}

.service-details-2 .section-intro {
  margin-bottom: 32px;
}

.service-details-2 .section-intro .intro-label {
  margin-bottom: 12px;
}

.service-details-2 .section-intro h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
  max-width: 640px;
}

.service-details-2 .service-overview .overview-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.service-details-2 .service-overview .overview-card:hover {
  border-color: color-mix(in srgb, var(--default-color) 20%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-details-2 .service-overview .overview-card .overview-header {
  margin-bottom: 24px;
}

.service-details-2 .service-overview .overview-card .overview-header .badge-tag {
  margin-bottom: 16px;
}

.service-details-2 .service-overview .overview-card .overview-header h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .service-details-2 .service-overview .overview-card .overview-header h2 {
    font-size: 28px;
  }
}

.service-details-2 .service-overview .overview-card .overview-header .overview-tagline {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  line-height: 1.6;
  margin: 0;
}

.service-details-2 .service-overview .overview-card .overview-body {
  flex: 1;
}

.service-details-2 .service-overview .overview-card .overview-body p {
  font-size: 14px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 24px;
}

.service-details-2 .service-overview .overview-card .overview-body .feature-grid {
  padding: 24px;
  background: color-mix(in srgb, var(--default-color) 3%, transparent);
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  border-radius: 8px;
}

.service-details-2 .service-overview .overview-card .overview-body .feature-grid .feature-label {
  display: block;
  margin-bottom: 16px;
  background: transparent;
  border: none;
  padding: 0;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.service-details-2 .service-overview .overview-card .overview-body .feature-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--heading-color);
}

.service-details-2 .service-overview .overview-card .overview-body .feature-grid .feature-item i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.service-details-2 .service-overview .overview-card .overview-footer {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

@media (max-width: 576px) {
  .service-details-2 .service-overview .overview-card .overview-footer {
    flex-direction: column;
  }
}

.service-details-2 .btn-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.service-details-2 .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
}

.service-details-2 .btn-primary-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.service-details-2 .btn-primary-action.btn-block {
  width: 100%;
}

.service-details-2 .btn-ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  background: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 25%, transparent);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-details-2 .btn-ghost-action:hover {
  background: color-mix(in srgb, var(--default-color) 5%, transparent);
  border-color: color-mix(in srgb, var(--default-color) 35%, transparent);
  color: var(--heading-color);
}

.service-details-2 .btn-ghost-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--default-color) 10%, transparent);
}

.service-details-2 .media-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-details-2 .media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-details-2 .media-card .media-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-details-2 .media-card .media-overlay .overlay-label {
  align-self: flex-start;
}

.service-details-2 .media-card .media-overlay .overlay-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.service-details-2 .service-modules .module-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.service-details-2 .service-modules .module-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-details-2 .service-modules .module-card .module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-details-2 .service-modules .module-card .module-header .module-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details-2 .service-modules .module-card .module-header .module-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.service-details-2 .service-modules .module-card h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.service-details-2 .service-modules .module-card p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
  flex: 1;
}

.service-details-2 .service-modules .module-card .module-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.service-details-2 .service-modules .module-card .module-footer .module-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.service-details-2 .service-modules .module-card .module-footer .module-link i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.service-details-2 .service-modules .module-card .module-footer .module-link:hover {
  gap: 10px;
  color: color-mix(in srgb, var(--accent-color) 85%, black);
}

.service-details-2 .service-modules .module-card .module-footer .module-link:hover i {
  transform: translateX(2px);
}

.service-details-2 .booking-panel {
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-details-2 .booking-panel .panel-info {
  padding: 40px;
  height: 100%;
}

@media (max-width: 768px) {
  .service-details-2 .booking-panel .panel-info {
    padding: 24px;
  }
}

.service-details-2 .booking-panel .panel-info .panel-label {
  margin-bottom: 16px;
}

.service-details-2 .booking-panel .panel-info h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .service-details-2 .booking-panel .panel-info h3 {
    font-size: 24px;
  }
}

.service-details-2 .booking-panel .panel-info p {
  font-size: 14px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 32px;
}

.service-details-2 .booking-panel .panel-info .info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  border-radius: 6px;
  background: var(--background-color);
  transition: border-color 0.2s ease;
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile:hover {
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile i {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile div strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details-2 .booking-panel .panel-info .info-grid .info-tile div span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

.service-details-2 .booking-panel .panel-action {
  padding: 40px;
  height: 100%;
  background: color-mix(in srgb, var(--default-color) 3%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .service-details-2 .booking-panel .panel-action {
    border-left: none;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  }
}

@media (max-width: 768px) {
  .service-details-2 .booking-panel .panel-action {
    padding: 24px;
  }
}

.service-details-2 .booking-panel .panel-action .action-label {
  align-self: flex-start;
  margin-bottom: 16px;
}

.service-details-2 .booking-panel .panel-action h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.service-details-2 .booking-panel .panel-action p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
  margin-bottom: 24px;
}

.service-details-2 .booking-panel .panel-action .action-divider {
  position: relative;
  text-align: center;
  margin: 16px 0;
}

.service-details-2 .booking-panel .panel-action .action-divider:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color) 10%, transparent);
}

.service-details-2 .booking-panel .panel-action .action-divider span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  background: color-mix(in srgb, var(--default-color) 3%, transparent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.service-details-2 .booking-panel .panel-action .action-call {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-details-2 .booking-panel .panel-action .action-call span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.service-details-2 .booking-panel .panel-action .action-call a {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
}

.service-details-2 .booking-panel .panel-action .action-call a:hover {
  color: color-mix(in srgb, var(--accent-color) 85%, black);
}

@media (max-width: 992px) {
  .service-details-2 .divider {
    margin: 48px 0;
  }

  .service-details-2 .media-card {
    min-height: 320px;
  }
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors {
  padding-top: 63px;
  --sh-border: color-mix(in srgb, var(--default-color) 12%, transparent);
  --sh-border-strong: color-mix(in srgb, var(--default-color) 20%, transparent);
  --sh-muted: color-mix(in srgb, var(--default-color) 65%, transparent);
  --sh-soft-bg: color-mix(in srgb, var(--default-color) 4%, transparent);
  --sh-radius: 8px;
  --sh-radius-sm: 6px;
  --sh-shadow-sm: 0 1px 2px color-mix(in srgb, var(--default-color) 6%, transparent);
  --sh-shadow-md: 0 4px 12px color-mix(in srgb, var(--default-color) 8%, transparent);
  padding-bottom: 60px;
  /* ============== Buttons ============== */
  /* ============== Badges ============== */
  /* ============== Labels & meta ============== */
  /* ============== Featured Profile ============== */
  /* ============== Doctor Directory ============== */
  /* ============== Doctor Card ============== */
  /* ============== Compact Roster ============== */
  /* ============== Profile with Tabs ============== */
}

.doctors .sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--sh-radius-sm);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.doctors .sh-btn i {
  font-size: 14px;
}

.doctors .sh-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.doctors .sh-btn.primary:hover {
  background: color-mix(in srgb, var(--accent-color) 88%, black);
  border-color: color-mix(in srgb, var(--accent-color) 88%, black);
}

.doctors .sh-btn.primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.doctors .sh-btn.ghost {
  background: transparent;
  color: var(--heading-color);
  border: 1px solid var(--sh-border-strong);
}

.doctors .sh-btn.ghost:hover {
  background: var(--sh-soft-bg);
}

.doctors .sh-btn.ghost:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--default-color) 10%, transparent);
}

.doctors .sh-btn.sm {
  height: 32px;
  padding: 0 12px;
  font-size: 13px;
}

.doctors .sh-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: var(--sh-soft-bg);
  color: var(--heading-color);
  border: 1px solid var(--sh-border);
  line-height: 1.4;
}

.doctors .sh-badge.primary {
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.doctors .sh-badge.small {
  font-size: 11px;
  padding: 2px 8px;
}

.doctors .badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.doctors .label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.doctors .label-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--accent-color);
}

.doctors .label-text.muted {
  color: var(--sh-muted);
}

.doctors .divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sh-border-strong);
}

.doctors .featured-card {
  background: var(--surface-color);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  overflow: hidden;
  box-shadow: var(--sh-shadow-sm);
}

.doctors .featured-card .featured-media {
  position: relative;
  height: 100%;
  min-height: 360px;
}

.doctors .featured-card .featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctors .featured-card .featured-media .status-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-color);
  border: 1px solid var(--sh-border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--heading-color);
}

.doctors .featured-card .featured-media .status-pill i {
  font-size: 8px;
  color: var(--accent-color);
}

.doctors .featured-card .featured-body {
  padding: 32px;
}

@media (min-width: 992px) {
  .doctors .featured-card .featured-body {
    padding: 40px;
  }
}

.doctors .featured-card .featured-body .featured-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  line-height: 1.2;
}

.doctors .featured-card .featured-body .featured-credentials {
  font-size: 14px;
  color: var(--sh-muted);
  margin-bottom: 16px;
}

.doctors .featured-card .featured-body .featured-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 20px;
}

.doctors .featured-card .featured-body .featured-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);
  padding: 16px 0;
}

.doctors .featured-card .featured-body .featured-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
}

.doctors .featured-card .featured-body .featured-highlights li i {
  color: var(--accent-color);
  font-size: 16px;
  width: 20px;
}

.doctors .featured-card .featured-body .action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.doctors .doctor-directory {
  margin-top: 64px;
}

.doctors .doctor-directory .directory-header {
  margin-bottom: 24px;
}

.doctors .doctor-directory .directory-header .directory-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.doctors .doctor-directory .directory-header .directory-subtitle {
  font-size: 14px;
  color: var(--sh-muted);
  margin: 0;
}

.doctors .doctor-directory .directory-toolbar {
  background: var(--surface-color);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--sh-shadow-sm);
}

.doctors .doctor-directory .sh-input-group .sh-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.doctors .doctor-directory .sh-input-group .input-wrap {
  position: relative;
}

.doctors .doctor-directory .sh-input-group .input-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sh-muted);
  font-size: 14px;
  pointer-events: none;
}

.doctors .doctor-directory .sh-input-group .input-wrap .sh-input {
  padding-left: 36px;
}

.doctors .doctor-directory .sh-input-group .sh-input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--sh-border-strong);
  border-radius: var(--sh-radius-sm);
  background: var(--background-color);
  font-size: 14px;
  color: var(--heading-color);
  transition: all 0.2s ease;
}

.doctors .doctor-directory .sh-input-group .sh-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 12%, transparent);
}

.doctors .doctor-directory .sh-input-group .sh-input::placeholder {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.doctors .doctor-directory .sh-input-group select.sh-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.doctors .doctor-directory .directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.doctors .doctor-directory .directory-filters li {
  cursor: pointer;
  padding: 6px 14px;
  border-radius: var(--sh-radius-sm);
  border: 1px solid var(--sh-border);
  background: var(--background-color);
  color: var(--default-color);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.doctors .doctor-directory .directory-filters li:hover {
  background: var(--sh-soft-bg);
  border-color: var(--sh-border-strong);
}

.doctors .doctor-directory .directory-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.doctors .sh-doctor-card {
  background: var(--surface-color);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 20px;
  height: 100%;
  box-shadow: var(--sh-shadow-sm);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.doctors .sh-doctor-card:hover {
  border-color: var(--sh-border-strong);
  box-shadow: var(--sh-shadow-md);
}

.doctors .sh-doctor-card .card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}

.doctors .sh-doctor-card .card-top .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--sh-border);
}

.doctors .sh-doctor-card .card-top .card-headline {
  flex: 1;
  min-width: 0;
}

.doctors .sh-doctor-card .card-top .card-headline .name {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.doctors .sh-doctor-card .card-top .card-headline .role {
  font-size: 13px;
  color: var(--sh-muted);
  margin: 0;
}

.doctors .sh-doctor-card .card-top .sh-badge {
  align-self: flex-start;
}

.doctors .sh-doctor-card .card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 16px;
}

.doctors .sh-doctor-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sh-border);
}

.doctors .sh-doctor-card .card-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--sh-muted);
}

.doctors .sh-doctor-card .card-meta .meta-item i {
  font-size: 13px;
}

.doctors .sh-doctor-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.doctors .sh-doctor-card .card-footer .footer-actions {
  display: flex;
  gap: 6px;
}

.doctors .compact-roster {
  background: var(--surface-color);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 24px;
  box-shadow: var(--sh-shadow-sm);
}

.doctors .compact-roster .roster-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sh-border);
}

.doctors .compact-roster .roster-header .roster-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.doctors .compact-roster .roster-header .roster-hint {
  font-size: 12px;
  color: var(--sh-muted);
}

.doctors .compact-roster .roster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .doctors .compact-roster .roster-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .doctors .compact-roster .roster-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.doctors .compact-roster .roster-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--sh-radius-sm);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.doctors .compact-roster .roster-item:hover {
  background: var(--sh-soft-bg);
  border-color: var(--sh-border);
}

.doctors .compact-roster .roster-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.doctors .compact-roster .roster-item .roster-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.doctors .compact-roster .roster-item .roster-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.doctors .compact-roster .roster-item .roster-role {
  font-size: 11px;
  color: var(--sh-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.doctors .profile-tabs .tabs-shell {
  background: var(--surface-color);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  overflow: hidden;
  box-shadow: var(--sh-shadow-sm);
}

.doctors .profile-tabs .tabs-side {
  height: 100%;
  border-right: 1px solid var(--sh-border);
  background: var(--sh-soft-bg);
}

@media (max-width: 992px) {
  .doctors .profile-tabs .tabs-side {
    border-right: 0;
    border-bottom: 1px solid var(--sh-border);
  }
}

.doctors .profile-tabs .tabs-side img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.doctors .profile-tabs .tabs-side .tabs-side-body {
  padding: 24px;
}

.doctors .profile-tabs .tabs-side .tabs-side-body .tabs-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 6px 0 4px;
}

.doctors .profile-tabs .tabs-side .tabs-side-body .tabs-role {
  font-size: 13px;
  color: var(--sh-muted);
  margin-bottom: 16px;
}

.doctors .profile-tabs .tabs-side .tabs-side-body .tabs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--sh-border);
}

.doctors .profile-tabs .tabs-side .tabs-side-body .tabs-stats div {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.doctors .profile-tabs .tabs-side .tabs-side-body .tabs-stats div strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.doctors .profile-tabs .tabs-side .tabs-side-body .tabs-stats div span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sh-muted);
  margin-top: 4px;
}

.doctors .profile-tabs .tabs-main {
  padding: 24px;
}

@media (min-width: 992px) {
  .doctors .profile-tabs .tabs-main {
    padding: 32px;
  }
}

.doctors .profile-tabs .sh-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  padding: 4px;
  background: var(--sh-soft-bg);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-sm);
  width: fit-content;
}

.doctors .profile-tabs .sh-tabs .nav-link {
  background: transparent;
  color: var(--sh-muted);
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.doctors .profile-tabs .sh-tabs .nav-link:hover {
  color: var(--heading-color);
}

.doctors .profile-tabs .sh-tabs .nav-link.active {
  background: var(--surface-color);
  color: var(--heading-color);
  box-shadow: var(--sh-shadow-sm);
}

.doctors .profile-tabs .tab-content {
  font-size: 14px;
  line-height: 1.7;
}

.doctors .profile-tabs .tab-content p {
  margin-bottom: 16px;
  color: var(--default-color);
}

.doctors .profile-tabs .tab-content .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.doctors .profile-tabs .tab-content .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.doctors .profile-tabs .tab-content .check-list li i {
  color: var(--accent-color);
  font-size: 16px;
}

.doctors .profile-tabs .schedule-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}

@media (min-width: 576px) {
  .doctors .profile-tabs .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.doctors .profile-tabs .schedule-grid .slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--background-color);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-sm);
  padding: 10px 14px;
}

.doctors .profile-tabs .schedule-grid .slot strong {
  font-size: 13px;
  color: var(--heading-color);
  font-weight: 600;
}

.doctors .profile-tabs .schedule-grid .slot span {
  font-size: 13px;
  color: var(--default-color);
}

.doctors .profile-tabs .schedule-grid .slot.closed {
  background: var(--sh-soft-bg);
}

.doctors .profile-tabs .schedule-grid .slot.closed span {
  color: var(--sh-muted);
}

.doctors .profile-tabs .review-card {
  background: var(--background-color);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-sm);
  padding: 20px;
}

.doctors .profile-tabs .review-card .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sh-border);
}

.doctors .profile-tabs .review-card .stars {
  display: inline-flex;
  gap: 2px;
}

.doctors .profile-tabs .review-card .stars i {
  color: var(--accent-color);
  font-size: 14px;
}

.doctors .profile-tabs .review-card .review-meta {
  font-size: 13px;
  color: var(--sh-muted);
}

.doctors .profile-tabs .review-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .doctors .featured-card .featured-media {
    min-height: 280px;
  }

  .doctors .featured-card .featured-body {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Appointmnet Section
--------------------------------------------------------------*/
.appointmnet .process-stepper {
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  background-color: var(--surface-color);
  overflow: hidden;
}

.appointmnet .process-stepper .step-card {
  padding: 24px;
  height: 100%;
  border-right: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: background-color 0.2s ease;
}

.appointmnet .process-stepper .step-card:hover {
  background-color: color-mix(in srgb, var(--accent-color) 4%, transparent);
}

.appointmnet .process-stepper .step-card .step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.appointmnet .process-stepper .step-card .step-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.appointmnet .process-stepper .step-card .step-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--default-color) 6%, transparent);
  color: var(--accent-color);
}

.appointmnet .process-stepper .step-card .step-icon i {
  font-size: 18px;
}

.appointmnet .process-stepper .step-card h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.appointmnet .process-stepper .step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .appointmnet .process-stepper .col-md-6:nth-child(2) .step-card {
    border-right: none;
  }

  .appointmnet .process-stepper .col-md-6:nth-child(1) .step-card,
  .appointmnet .process-stepper .col-md-6:nth-child(2) .step-card {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  }
}

@media (max-width: 767px) {
  .appointmnet .process-stepper .col-md-6 .step-card {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  }

  .appointmnet .process-stepper .col-md-6:last-child .step-card {
    border-bottom: none;
  }
}

@media (min-width: 992px) {
  .appointmnet .process-stepper .col-lg-3:last-child .step-card {
    border-right: none;
  }
}

.appointmnet .form-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.appointmnet .form-card .form-card-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.appointmnet .form-card .form-card-header h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 8px 0;
  line-height: 1.2;
}

.appointmnet .form-card .form-card-header .form-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
  margin-bottom: 0;
}

.appointmnet .badge-label {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.appointmnet .appointment-form .input-group {
  display: block;
}

.appointmnet .appointment-form .input-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.appointmnet .appointment-form .input-group label .label-meta {
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: color-mix(in srgb, var(--default-color) 55%, transparent);
}

.appointmnet .appointment-form .input-group .input-help {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin-top: 4px;
}

.appointmnet .appointment-form .form-control,
.appointmnet .appointment-form .form-select {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 20%, transparent);
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.appointmnet .appointment-form .form-control:focus,
.appointmnet .appointment-form .form-select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.appointmnet .appointment-form .form-control::placeholder,
.appointmnet .appointment-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.appointmnet .appointment-form textarea.form-control {
  height: auto;
  min-height: 110px;
  resize: vertical;
  padding: 12px;
}

.appointmnet .appointment-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.appointmnet .appointment-form .btn-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.appointmnet .appointment-form .btn-primary-action:hover {
  background-color: color-mix(in srgb, var(--accent-color) 88%, black);
  border-color: color-mix(in srgb, var(--accent-color) 88%, black);
}

.appointmnet .appointment-form .btn-primary-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.appointmnet .appointment-form .btn-primary-action i {
  font-size: 16px;
}

.appointmnet .appointment-form .btn-ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 20%, transparent);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.appointmnet .appointment-form .btn-ghost-action:hover {
  background-color: color-mix(in srgb, var(--default-color) 5%, transparent);
  border-color: color-mix(in srgb, var(--default-color) 30%, transparent);
}

.appointmnet .appointment-form .btn-ghost-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--default-color) 12%, transparent);
}

.appointmnet .info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.appointmnet .info-stack .info-panel {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.appointmnet .info-stack .info-panel h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 12px 0 8px 0;
  line-height: 1.3;
}

.appointmnet .info-stack .info-panel p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
}

.appointmnet .feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.appointmnet .feature-list .feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.appointmnet .feature-list .feature-row:last-child {
  border-bottom: none;
}

.appointmnet .feature-list .feature-row .feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
}

.appointmnet .feature-list .feature-row .feature-icon i {
  font-size: 18px;
}

.appointmnet .feature-list .feature-row .feature-body h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.appointmnet .feature-list .feature-row .feature-body p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
  margin-bottom: 0;
}

.appointmnet .emergency-panel {
  background-color: color-mix(in srgb, var(--accent-color) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
  border-radius: 8px;
  padding: 24px;
}

.appointmnet .emergency-panel .emergency-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.appointmnet .emergency-panel .emergency-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.appointmnet .emergency-panel .emergency-icon i {
  font-size: 16px;
}

.appointmnet .emergency-panel .emergency-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-color);
  padding: 2px 10px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.appointmnet .emergency-panel h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.appointmnet .emergency-panel p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 16px;
}

.appointmnet .emergency-panel .emergency-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent-color);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  background-color: var(--surface-color);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.appointmnet .emergency-panel .emergency-phone:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .appointmnet .form-card {
    padding: 24px;
  }

  .appointmnet .form-card .form-card-header h3 {
    font-size: 24px;
  }

  .appointmnet .appointment-form .form-actions {
    flex-direction: column;
  }

  .appointmnet .appointment-form .form-actions .btn-primary-action,
  .appointmnet .appointment-form .form-actions .btn-ghost-action {
    width: 100%;
  }

  .appointmnet .feature-list .feature-row {
    padding: 16px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.testimonials .review-card:hover {
  border-color: color-mix(in srgb, var(--default-color) 22%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.testimonials .review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimonials .review-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.testimonials .review-rating {
  display: inline-flex;
  gap: 2px;
  font-size: 14px;
}

.testimonials .review-rating i {
  color: #f59e0b;
}

.testimonials .review-card-content {
  flex: 1;
  margin-bottom: 24px;
}

.testimonials .review-text {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 85%, transparent);
  margin: 0;
}

.testimonials .review-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.testimonials .review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.testimonials .review-author {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.testimonials .review-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.testimonials .review-role {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonials .review-card {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  margin-bottom: 32px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
}

.gallery .filter-bar .filter-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  padding-right: 16px;
  border-right: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
}

@media (max-width: 576px) {
  .gallery .filter-bar .filter-label {
    border-right: none;
    padding-right: 0;
    width: 100%;
  }
}

.gallery .shadcn-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery .shadcn-filters li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: transparent;
  color: var(--default-color);
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
}

.gallery .shadcn-filters li .filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 10px;
  background: color-mix(in srgb, var(--default-color) 8%, transparent);
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  transition: all 0.2s ease;
}

.gallery .shadcn-filters li:hover {
  background: color-mix(in srgb, var(--default-color) 6%, transparent);
  border-color: color-mix(in srgb, var(--default-color) 12%, transparent);
}

.gallery .shadcn-filters li:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.gallery .shadcn-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.gallery .shadcn-filters li.filter-active .filter-count {
  background: color-mix(in srgb, var(--contrast-color) 22%, transparent);
  color: var(--contrast-color);
}

.gallery .gallery-item {
  margin-bottom: 16px;
}

.gallery .shadcn-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery .shadcn-card:hover {
  border-color: color-mix(in srgb, var(--default-color) 22%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.gallery .shadcn-card:hover .card-media img {
  transform: scale(1.03);
}

.gallery .card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: color-mix(in srgb, var(--default-color) 6%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.gallery .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 12px;
  background: color-mix(in srgb, var(--background-color) 92%, transparent);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 15%, transparent);
  backdrop-filter: blur(6px);
}

.gallery .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
}

.gallery .card-head {
  margin-bottom: 16px;
}

.gallery .card-head .card-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--heading-color);
  margin: 0 0 8px 0;
}

.gallery .card-head .card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin: 0;
}

.gallery .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.gallery .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading-color);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color) 18%, transparent);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.gallery .btn-ghost i {
  font-size: 14px;
}

.gallery .btn-ghost:hover {
  background: color-mix(in srgb, var(--default-color) 6%, transparent);
  border-color: color-mix(in srgb, var(--default-color) 28%, transparent);
  color: var(--heading-color);
}

.gallery .btn-ghost:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 22%, transparent);
}

.gallery .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  padding: 8px 4px;
  border-radius: 6px;
  transition: color 0.2s ease;
}

.gallery .btn-link i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.gallery .btn-link:hover {
  color: color-mix(in srgb, var(--accent-color) 80%, transparent);
}

.gallery .btn-link:hover i {
  transform: translate(2px, -2px);
}

.gallery .btn-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 22%, transparent);
}

.gallery .glightbox-clean .gslide-description {
  background: #272727;
}

.gallery .glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (max-width: 768px) {
  .gallery .card-body {
    padding: 20px;
  }

  .gallery .card-head .card-title {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-sidebar {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
}

.faq .faq-sidebar .sidebar-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
  margin-bottom: 16px;
}

.faq .faq-sidebar .sidebar-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 12px;
}

.faq .faq-sidebar .sidebar-desc {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  margin-bottom: 24px;
}

.faq .faq-sidebar .sidebar-divider {
  height: 1px;
  background: color-mix(in srgb, var(--default-color) 10%, transparent);
  margin: 24px 0;
}

.faq .faq-sidebar .sidebar-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.faq .faq-sidebar .sidebar-meta li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  padding: 8px 0;
}

.faq .faq-sidebar .sidebar-meta li i {
  font-size: 16px;
  color: var(--accent-color);
  width: 20px;
  flex-shrink: 0;
}

.faq .faq-sidebar .sidebar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 6px;
  border: 1px solid var(--accent-color);
  transition: all 0.2s ease;
}

.faq .faq-sidebar .sidebar-cta i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.faq .faq-sidebar .sidebar-cta:hover {
  background: color-mix(in srgb, var(--accent-color) 88%, transparent);
  color: var(--contrast-color);
}

.faq .faq-sidebar .sidebar-cta:hover i {
  transform: translate(2px, -2px);
}

.faq .faq-sidebar .sidebar-cta:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

@media (max-width: 992px) {
  .faq .faq-sidebar {
    position: static;
    padding: 24px;
  }
}

.faq .faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 24px 56px 24px 24px;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  cursor: pointer;
}

.faq .faq-container .faq-item:hover {
  border-color: color-mix(in srgb, var(--default-color) 22%, transparent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.faq .faq-container .faq-item .faq-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.faq .faq-container .faq-item .faq-meta .faq-index {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 55%, transparent);
}

.faq .faq-container .faq-item .faq-meta .faq-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 12px;
  background: color-mix(in srgb, var(--default-color) 6%, transparent);
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0;
  transition: color 0.2s ease;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  border-radius: 6px;
  background: color-mix(in srgb, var(--default-color) 6%, transparent);
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  transition: all 0.2s ease;
  cursor: pointer;
}

.faq .faq-container .faq-item:hover .faq-toggle {
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  border-color: color-mix(in srgb, var(--accent-color) 45%, transparent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06), 0 0 0 3px color-mix(in srgb, var(--accent-color) 8%, transparent);
}

.faq .faq-container .faq-active h3 {
  color: var(--heading-color);
}

.faq .faq-container .faq-active .faq-meta .faq-tag {
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(180deg);
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

  .faq .faq-container .faq-item .faq-toggle {
    top: 20px;
    right: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  overflow: hidden;
}

.contact .contact-grid {
  align-items: stretch;
}

.contact .badge-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  margin-bottom: 16px;
}

.contact .contact-panel {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact .contact-panel .panel-header {
  margin-bottom: 32px;
}

.contact .contact-panel .panel-header .panel-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-panel .panel-header .panel-description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
}

.contact .contact-panel .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.contact .contact-panel .contact-list .contact-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .contact-panel .contact-list .contact-list-item:last-child {
  border-bottom: 0;
}

.contact .contact-panel .contact-list .contact-list-item .item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  font-size: 18px;
}

.contact .contact-panel .contact-list .contact-list-item .item-content .item-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin-bottom: 4px;
}

.contact .contact-panel .contact-list .contact-list-item .item-content .item-value {
  font-size: 14px;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 0;
}

.contact .contact-panel .panel-footer {
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .contact-panel .panel-footer .footer-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin-bottom: 12px;
}

.contact .social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color) 15%, transparent);
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  font-size: 14px;
  transition: all 0.2s ease;
}

.contact .social-links a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.contact .social-links a:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.contact .form-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  transition: all 0.2s ease;
}

.contact .form-card:hover {
  border-color: color-mix(in srgb, var(--default-color) 20%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact .form-card .card-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .form-card .card-header .card-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.contact .form-card .card-header .card-description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  margin-bottom: 0;
}

.contact .php-email-form .input-group {
  display: block;
}

.contact .php-email-form .input-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .php-email-form .input-group .input-description {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin-top: 4px;
}

.contact .php-email-form .form-control {
  width: 100%;
  padding: 8px 12px;
  height: 40px;
  color: var(--heading-color);
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 25%, transparent);
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: none;
}

.contact .php-email-form .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.contact .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.contact .php-email-form textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.contact .php-email-form .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 24px;
  height: 40px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.contact .php-email-form .submit-btn i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.contact .php-email-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, transparent);
}

.contact .php-email-form .submit-btn:hover i {
  transform: translateX(3px);
}

.contact .php-email-form .submit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.contact .php-email-form .loading,
.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
  display: none;
  text-align: center;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
}

.contact .php-email-form .loading {
  background: color-mix(in srgb, var(--default-color) 5%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  margin: 0 10px -4px 0;
  border: 2px solid var(--accent-color);
  border-top-color: transparent;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .error-message {
  background: color-mix(in srgb, #ed3c0d 10%, transparent);
  color: #ed3c0d;
  border: 1px solid color-mix(in srgb, #ed3c0d 30%, transparent);
}

.contact .php-email-form .sent-message {
  background: color-mix(in srgb, #18d26e 10%, transparent);
  color: #18d26e;
  border: 1px solid color-mix(in srgb, #18d26e 30%, transparent);
}

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

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

.contact .map-card {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.contact .map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact .map-card:hover {
  border-color: color-mix(in srgb, var(--default-color) 20%, transparent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {

  .contact .contact-panel,
  .contact .form-card {
    padding: 24px;
  }

  .contact .map-card {
    height: 240px;
  }
}

@media (max-width: 576px) {

  .contact .contact-panel,
  .contact .form-card {
    padding: 20px;
  }

  .contact .contact-panel .panel-title,
  .contact .form-card .card-title {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .header-block {
  margin-bottom: 16px;
}

.terms-of-service .header-block .update-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  border-radius: 24px;
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.terms-of-service .header-block h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.terms-of-service .header-block p {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.terms-of-service .sidebar-nav {
  position: sticky;
  top: 200px;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 6%, transparent);
}

.terms-of-service .sidebar-nav h5 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
  font-weight: 700;
}

.terms-of-service .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .sidebar-nav ul li {
  margin-bottom: 4px;
}

.terms-of-service .sidebar-nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: all 0.3s ease;
  text-decoration: none;
}

.terms-of-service .sidebar-nav ul li a i {
  font-size: 1rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.terms-of-service .sidebar-nav ul li a:hover {
  background: color-mix(in srgb, var(--accent-color) 8%, transparent);
  color: var(--accent-color);
}

.terms-of-service .sidebar-nav ul li a:hover i {
  color: var(--accent-color);
}


.terms-of-service .sidebar-nav ul li .nav-link.active {
  background: var(--accent-color);
  color: var(--surface-color);
}

.terms-of-service .sidebar-nav ul li .nav-link.active i {
  color: var(--surface-color);
}

@media (max-width: 992px) {
  .terms-of-service .sidebar-nav {
    display: none;
  }
}

.terms-of-service .terms-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terms-of-service .term-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color) 4%, transparent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-of-service .term-card:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color) 10%, transparent);
  border-color: color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.terms-of-service .term-card .term-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.terms-of-service .term-card .term-card-header .term-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  color: var(--contrast-color);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.terms-of-service .term-card .term-card-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

.terms-of-service .term-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.terms-of-service .highlight-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.terms-of-service .highlight-callout .callout-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .highlight-callout .callout-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.terms-of-service .highlight-callout p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.terms-of-service .check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--accent-color) 5%, transparent);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.terms-of-service .check-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .check-item span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.terms-of-service .check-item:hover {
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.terms-of-service .warning-banner {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--surface-color);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
  border-left: 4px solid var(--accent-color);
}

.terms-of-service .warning-banner .warning-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .warning-banner .warning-icon-wrap i {
  font-size: 1.3rem;
  color: var(--contrast-color);
}

.terms-of-service .warning-banner .warning-text h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.terms-of-service .warning-banner .warning-text p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .terms-of-service .warning-banner {
    flex-direction: column;
  }
}

.terms-of-service .restrict-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: color-mix(in srgb, #dc3545, transparent 94%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.terms-of-service .restrict-item i {
  font-size: 1.1rem;
  color: #dc3545;
  flex-shrink: 0;
}

.terms-of-service .restrict-item span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.terms-of-service .restrict-item:hover {
  background: color-mix(in srgb, #dc3545, transparent 88%);
}

.terms-of-service .disclaimer-panel {
  background: color-mix(in srgb, var(--default-color) 4%, transparent);
  padding: 24px;
  border-radius: 12px;
  margin-top: 20px;
}

.terms-of-service .disclaimer-panel .panel-lead {
  font-weight: 600;
  margin-bottom: 12px !important;
  font-size: 0.95rem;
  color: var(--heading-color);
}

.terms-of-service .disclaimer-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .disclaimer-panel ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.terms-of-service .disclaimer-panel ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .disclaimer-panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
}

.terms-of-service .support-banner {
  margin-top: 32px;
  padding: 32px 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  color: var(--contrast-color);
}

.terms-of-service .support-banner .banner-icon {
  width: 52px;
  height: 52px;
  background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .support-banner .banner-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.terms-of-service .support-banner h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--contrast-color);
}

.terms-of-service .support-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.terms-of-service .support-banner .support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--default-color) 15%, transparent);
}

.terms-of-service .support-banner .support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color) 25%, transparent);
}

@media (max-width: 768px) {
  .terms-of-service .support-banner {
    padding: 28px 24px;
  }
}

@media print {
  .terms-of-service .support-banner {
    display: none;
  }

  .terms-of-service .sidebar-nav {
    display: none;
  }

  .terms-of-service .term-card {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .policy-header {
  padding: 20px 0 50px;
}

.privacy .policy-header .effective-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--accent-color) 10%, var(--background-color));
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.privacy .policy-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.privacy .policy-header .lead-text {
  font-size: 1.15rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.privacy .quick-nav {
  margin-bottom: 48px;
  padding: 24px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .quick-nav .nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
  text-decoration: none;
}

.privacy .quick-nav .nav-pill i {
  font-size: 0.95rem;
}

.privacy .quick-nav .nav-pill:hover {
  background: color-mix(in srgb, var(--accent-color) 12%, var(--background-color));
  color: var(--accent-color);
  transform: translateY(-2px);
}

.privacy .policy-card {
  position: relative;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  border-radius: 16px;
  padding: 40px 40px 40px 100px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy .policy-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
  border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.privacy .policy-card .card-number {
  position: absolute;
  left: 32px;
  top: 40px;
  font-size: 2rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent-color) 20%, transparent);
  font-family: var(--heading-font);
  line-height: 1;
  letter-spacing: -0.02em;
}

.privacy .policy-card .card-body-content .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.privacy .policy-card .card-body-content .card-icon i {
  font-size: 1.25rem;
  color: var(--contrast-color);
}

.privacy .policy-card .card-body-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.privacy .policy-card .card-body-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy .policy-card .card-body-content h3 i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.privacy .policy-card .card-body-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.privacy .policy-card .card-body-content p:last-child {
  margin-bottom: 0;
}

.privacy .policy-card .card-body-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.privacy .policy-card .card-body-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.privacy .policy-card .card-body-content ul li:last-child {
  margin-bottom: 0;
}

.privacy .policy-card .card-body-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 40%, transparent);
}

@media (max-width: 768px) {
  .privacy .policy-card {
    padding: 60px 24px 32px 24px;
  }

  .privacy .policy-card .card-number {
    left: 24px;
    top: 20px;
    font-size: 1.5rem;
  }
}

.privacy .sub-card {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: all 0.3s ease;
}

.privacy .sub-card:hover {
  border-color: color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.privacy .usage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy .usage-item i {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.privacy .usage-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.privacy .usage-item:hover {
  background: color-mix(in srgb, var(--accent-color) 8%, var(--background-color));
}

.privacy .contact-banner {
  margin-top: 40px;
  padding: 40px 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
  color: var(--contrast-color);
}

.privacy .contact-banner h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.privacy .contact-banner p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 0;
  font-size: 1rem;
}

.privacy .contact-banner .contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy .contact-banner .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--contrast-color);
  font-size: 0.95rem;
}

.privacy .contact-banner .info-item i {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 10px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .privacy .contact-banner {
    padding: 32px;
    text-align: center;
  }

  .privacy .contact-banner .contact-info-items {
    margin-top: 24px;
    align-items: center;
  }
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .quick-nav {
    display: none;
  }

  .privacy .policy-card {
    box-shadow: none;
    border: 1pt solid #ccc;
    page-break-inside: avoid;
    margin-bottom: 16pt;
  }

  .privacy .contact-banner {
    background: none;
    color: #000;
    border: 1pt solid #000;
  }

  .privacy .contact-banner h2,
  .privacy .contact-banner p,
  .privacy .contact-banner .info-item {
    color: #000;
  }
}

@media (max-width: 576px) {
  .privacy .policy-header h1 {
    font-size: 2rem;
  }

  .privacy .policy-header .lead-text {
    font-size: 1.05rem;
  }

  .privacy .contact-banner {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding-top: 160px;
  padding-bottom: 80px;
}

.error-404 .error-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.error-404 .card-header-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background-color: color-mix(in srgb, var(--default-color) 3%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.error-404 .card-header-block .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.error-404 .card-header-block .status-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: inline-block;
}

.error-404 .card-header-block .meta-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.error-404 .card-content-block {
  padding: 32px 24px;
}

.error-404 .error-visual {
  position: relative;
  text-align: center;
}

.error-404 .error-visual .visual-frame {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
  margin-bottom: 16px;
}

.error-404 .error-visual .visual-frame i {
  font-size: 36px;
  color: var(--accent-color);
}

.error-404 .error-visual .error-numeric {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  line-height: 1;
}

.error-404 .error-info .error-headline {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
}

.error-404 .error-info .error-description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  margin-bottom: 0;
}

.error-404 .card-divider {
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color) 10%, transparent);
}

.error-404 .card-form-block {
  padding: 24px;
}

.error-404 .card-form-block .form-label-text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.error-404 .card-form-block .search-row {
  display: flex;
  gap: 8px;
}

.error-404 .card-form-block .search-input-wrap {
  position: relative;
  flex: 1;
}

.error-404 .card-form-block .search-input-wrap .input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  pointer-events: none;
}

.error-404 .card-form-block input[type=text] {
  width: 100%;
  height: 40px;
  padding: 8px 12px 8px 36px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 25%, transparent);
  border-radius: 6px;
}

.error-404 .card-form-block input[type=text]:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.error-404 .card-form-block input[type=text]::placeholder {
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.error-404 .card-form-block .btn-search {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
  border-radius: 6px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.error-404 .card-form-block .btn-search:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, transparent);
}

.error-404 .card-form-block .btn-search:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.error-404 .card-form-block .input-helper-text {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin-top: 8px;
  margin-bottom: 0;
}

.error-404 .card-footer-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background-color: color-mix(in srgb, var(--default-color) 3%, transparent);
  flex-wrap: wrap;
}

.error-404 .card-footer-block .footer-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
}

.error-404 .card-footer-block .footer-actions {
  display: flex;
  gap: 8px;
}

.error-404 .card-footer-block .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color) 20%, transparent);
  border-radius: 6px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.error-404 .card-footer-block .btn-ghost:hover {
  background-color: color-mix(in srgb, var(--default-color) 5%, transparent);
  border-color: color-mix(in srgb, var(--default-color) 30%, transparent);
}

.error-404 .card-footer-block .btn-ghost:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--default-color) 10%, transparent);
}

.error-404 .card-footer-block .btn-primary-shadcn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.error-404 .card-footer-block .btn-primary-shadcn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 85%, transparent);
  color: var(--contrast-color);
}

.error-404 .card-footer-block .btn-primary-shadcn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.error-404 .helpful-links {
  margin-top: 32px;
}

.error-404 .helpful-links .helpful-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  margin-bottom: 16px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.error-404 .helpful-links .helpful-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.error-404 .helpful-links .helpful-link>i:first-child {
  font-size: 18px;
  color: var(--accent-color);
}

.error-404 .helpful-links .helpful-link span {
  flex: 1;
}

.error-404 .helpful-links .helpful-link .link-arrow {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  transition: transform 0.2s ease, color 0.2s ease;
}

.error-404 .helpful-links .helpful-link:hover {
  border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
  background-color: color-mix(in srgb, var(--accent-color) 4%, transparent);
  color: var(--heading-color);
}

.error-404 .helpful-links .helpful-link:hover .link-arrow {
  color: var(--accent-color);
  transform: translate(2px, -2px);
}

.error-404 .helpful-links .helpful-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

@media (max-width: 768px) {
  .error-404 {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .error-404 .card-header-block {
    padding: 12px 16px;
  }

  .error-404 .card-content-block {
    padding: 24px 16px;
    text-align: center;
  }

  .error-404 .error-info {
    text-align: center;
    margin-top: 16px;
  }

  .error-404 .error-info .error-headline {
    font-size: 20px;
  }

  .error-404 .card-form-block {
    padding: 16px;
  }

  .error-404 .card-form-block .search-row {
    flex-direction: column;
  }

  .error-404 .card-form-block .btn-search {
    width: 100%;
  }

  .error-404 .card-footer-block {
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .error-404 .card-footer-block .footer-actions {
    flex-direction: column;
  }

  .error-404 .card-footer-block .footer-actions .btn-ghost,
  .error-404 .card-footer-block .footer-actions .btn-primary-shadcn {
    justify-content: center;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  padding-top: 60px;
  padding-bottom: 60px;
  /* Add your styles here */
}























.product-showcase {
  position: relative;
}


.product-showcase .product-card {
  background-color: color-mix(in srgb, var(--background-color) 96%, transparent);
  border: 1px solid color-mix(in srgb, var(--contrast-color) 20%, transparent);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.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;
}

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

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

.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;
}

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

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

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

.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;
}

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

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

.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;
}

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

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

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


.hero .hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn-primary2,
.hero .hero-actions .btn-kakao2,
.hero .hero-actions .btn-secondary2 {
  padding: 14px 48px;
  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-actions .btn-primary2::before,
.hero .hero-actions .btn-kakao2::before,
.hero .hero-actions .btn-secondary2::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-actions .btn-primary2:hover::before,
.hero .hero-actions .btn-kakao2:hover::before,
.hero .hero-actions .btn-secondary2:hover::before {
  left: 100%;
}

.hero .hero-actions .btn-primary2 {
  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-actions .btn-primary2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-actions .btn-kakao2 {
  background: linear-gradient(135deg, #F7D700 0%, color-mix(in srgb, #F7D700, #221715 10%) 100%);
  color: #221715;
  border: none;
  box-shadow: 0 8px 25px color-mix(in srgb, #F7D700, transparent 70%);
}

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

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

.hero .hero-actions .btn-secondary2:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}
@media (max-width: 768px) {

  .hero .hero-actions .btn-primary2,
  .hero .hero-actions .btn-kakao2,
  .hero .hero-actions .btn-secondary2 {
    padding: 10px 18px;
    font-size: 1rem;
  }


}

























/* 메인 추가 */


/* 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;
  }
}





/*--------------------------------------------------------------
# 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: 16px;
}

.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: 18px;
}

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

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

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

.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: 0px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.header .main-header .logo img {
  max-height: 46px;
}

.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 .logo img {
  max-height: 28px;
  margin-left: 10px;
}

}

.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: #ffffff;
}
/* .header .header-nav {
  background-color: var(--accent-color);
} */

@media (min-width: 1200px) {
  .header .header-nav {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.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(--nav-color);
    padding: 12px 30px;
    font-size: 16px;
    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(--nav-hover-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;
  }
}

/* Products Mega Menu 1 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-1 {
    position: static;
    /*  Hide Desktop Mega Menu 1 in Desktop */
    /* Bootstrap Tabs Navigation */
    /* Tab Content */
  }

  .navmenu .products-megamenu-1 .mobile-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-1 .desktop-megamenu,
  .navmenu .products-megamenu-1 .active,
  .navmenu .products-megamenu-1 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .products-megamenu-1 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs {
    margin-bottom: 15px;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 10px 20px;
    color: var(--nav-dropdown-color);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
    border-color: transparent;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Grid */
    /* Product Grid */
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .tab-content {
    display: none;
  }

  .navmenu .products-megamenu-1 .megamenu-content .tab-content.active {
    display: block;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column {
    background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4 {
    color: var(--heading-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li {
    margin-bottom: 10px;
    background-color: none !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start !important;
    width: 100%;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li:last-child {
    margin-bottom: 0;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a {
    color: var(--nav-dropdown-color);
    font-size: 14px;
    transition: 0.3s;
    padding: 0 0 0 20px;
    display: block;
    position: relative;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:before {
    content: "\f285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--accent-color);
    opacity: 0.7;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover:before {
    opacity: 1;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column .active {
    background-color: none;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card {
    background-color: var(--surface-color);
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image {
    height: 160px;
    position: relative;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new,
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 1;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new {
    background-color: #28a745;
    color: white;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
    background-color: #dc3545;
    color: white;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info {
    padding: 15px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info h5 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price .original-price {
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-right: 5px;
    font-weight: normal;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view {
    display: inline-block;
    padding: 5px 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
}

/* Products Mega Menu 1 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-1 {
    /* Hide Desktop Mega Menu 1 in Mobile */
  }

  .navmenu .products-megamenu-1 .desktop-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 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;
    border-radius: 4px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li ul {
    padding: 0;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/* Products Mega Menu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-2 {
    position: static;
    /* Hide Mobile Mega Menu in Desktop */
    /* Tabs Navigation */
    /* Tab Content */
  }

  .navmenu .products-megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-2 .desktop-megamenu,
  .navmenu .products-megamenu-2 .active,
  .navmenu .products-megamenu-2 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .products-megamenu-2 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs {
    padding: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-item {
    margin: 0;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    color: var(--nav-dropdown-color);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.5px;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .products-megamenu-2 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Layout */
    /* Categories Section */
    /* Featured Section */
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .tab-pane {
    padding: 25px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .category-layout {
    display: flex;
    gap: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section {
    flex: 1;
    /* Category Headers */
    /* Category Links */
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 15px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a {
    color: var(--nav-dropdown-color);
    font-size: 14px;
    transition: 0.3s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section {
    width: 300px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image {
    position: relative;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content h3 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    width: fit-content;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
  }
}

/* Products Mega Menu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-2 {
    /* Hide Desktop Mega Menu in Mobile */
  }

  .navmenu .products-megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 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;
    border-radius: 4px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li ul {
    padding: 0;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}



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

.footer .footer-main {
  padding: 40px 0 10px;
  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 .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;
}

.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);
  }
}



/*--------------------------------------------------------------
# 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: 70px;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 85%) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 50px;
}

.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: 1300px;
  margin: 0 auto;
  margin-top: 180px;
  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: 2.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.1rem;
  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-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn-primary,
.hero .hero-actions .btn-kakao,
.hero .hero-actions .btn-secondary {
  padding: 16px 32px;
  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-actions .btn-primary::before,
.hero .hero-actions .btn-kakao::before,
.hero .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-actions .btn-primary:hover::before,
.hero .hero-actions .btn-kakao:hover::before,
.hero .hero-actions .btn-secondary:hover::before {
  left: 100%;
}

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

.hero .hero-actions .btn-kakao {
  background: linear-gradient(135deg, #F7D700 0%, color-mix(in srgb, #F7D700, #221715 10%) 100%);
  color: #221715;
  border: none;
  box-shadow: 0 8px 25px color-mix(in srgb, #F7D700, transparent 70%);
}

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

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

.hero .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: 10%;
  left: 30px;
  animation-delay: 0s;
}

.hero .hero-visuals .floating-elements .floating-icon.wishlist {
  bottom: 3%;
  right: 20px;
  animation-delay: 1s;
}

.hero .hero-visuals .floating-elements .floating-icon.search {
  bottom: 20%;
  left: 10px;
  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-actions .btn-primary,
  .hero .hero-actions .btn-kakao,
  .hero .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: 400px;
  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: 0;
  right: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
}

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

.promo-cards .category-featured .category-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  max-width: 65%;
  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: 140px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #eff1f5;
}

.promo-cards .category-card.cat-gray {
  background-color: #eff1f5;
}

.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: 25px;
  width: 70%;
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-cards .category-card .category-footer {
  position: relative;
  z-index: 2;
  padding: 10px 25px;
  width: 100%;
  height: 30%;
  display: flex;
  background-color: #fff;
}

.promo-cards .category-card .category-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1c242f;
}

.promo-cards .category-card .category-content p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #858f9c;
}

.promo-cards .category-card .category-footer .card-link {
  display: inline-flex;
  align-items: center;
  color: #373e47;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.promo-cards .category-card .category-footer .card-link i {
  margin-left: 10px;
  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;
}

.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);
  color: var(--heading-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:hover {
  background-color: var(--heading-color);
  color: var(--contrast-color);
}

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

.best-sellers .cart-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 12px 24px;
  background-color: var(--contrast-color);
  color: var(--heading-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 .cart-btn:hover {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  border-color: var(--heading-color);
}

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

.best-sellers .product-category {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
  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: 180px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .call-to-action .product-showcase .product-image img {
    height: 150px;
  }
}

.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: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 575px) {
.cart .cart-items {
  background-color: var(--surface-color);
  border-radius: 0rem;
  box-shadow: 0 0rem 0rem rgba(0, 0, 0, 0);
  padding: 0rem;
  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: 1.2rem;
  font-weight: 700;
  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: 7rem;
  height: 7rem;
  min-width: 7rem;
  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 (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: color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  font-size: 0.875rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 10%);
  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: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  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);
}

.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;
  }
}

/*--------------------------------------------------------------
# Checkout Section
--------------------------------------------------------------*/
.checkout {
  padding: 60px 0;
}

.checkout .checkout-container {
  margin-bottom: 2rem;
}

.checkout .checkout-container .checkout-form {
  position: relative;
}

.checkout .checkout-section {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.checkout .checkout-section:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.checkout .checkout-section .section-header {
  padding: 20px 24px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .checkout-section .section-header .section-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.checkout .checkout-section .section-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
}

.checkout .checkout-section .section-content {
  padding: 24px;
}

.checkout .checkout-section .section-content .form-group {
  margin-bottom: 20px;
}

.checkout .checkout-section .section-content .form-group:last-child {
  margin-bottom: 0;
}

.checkout .checkout-section .section-content .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.checkout .checkout-section .section-content .form-group .form-control,
.checkout .checkout-section .section-content .form-group .form-select {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  height: auto;
  background-color: var(--surface-color);
  transition: all 0.25s ease;
}

.checkout .checkout-section .section-content .form-group .form-control:hover,
.checkout .checkout-section .section-content .form-group .form-select:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.checkout .checkout-section .section-content .form-group .form-control:focus,
.checkout .checkout-section .section-content .form-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: none;
}

.checkout .checkout-section .section-content .form-group .form-control::placeholder,
.checkout .checkout-section .section-content .form-group .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 0.9rem;
}

.checkout .checkout-section .section-content .form-group .form-control.is-invalid,
.checkout .checkout-section .section-content .form-group .form-select.is-invalid {
  border-color: #dc3545;
  background-image: none;
}

.checkout .checkout-section .section-content .form-group .form-control.is-invalid:focus,
.checkout .checkout-section .section-content .form-group .form-select.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

.checkout .checkout-section .section-content .form-group .form-select {
  background-position: right 16px center;
  padding-right: 40px;
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper {
  position: relative;
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper .card-icons {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper .card-icons i {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper input {
  padding-right: 80px;
}

.checkout .checkout-section .section-content .form-group .cvv-wrapper {
  position: relative;
}

.checkout .checkout-section .section-content .form-group .cvv-wrapper .cvv-hint {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
  transition: color 0.2s ease;
}

.checkout .checkout-section .section-content .form-group .cvv-wrapper .cvv-hint:hover {
  color: var(--accent-color);
}

.checkout .checkout-section .section-content .form-check {
  margin-bottom: 12px;
  padding-left: 1.8rem;
}

.checkout .checkout-section .section-content .form-check:last-child {
  margin-bottom: 0;
}

.checkout .checkout-section .section-content .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-left: -1.8rem;
  margin-top: 0.2rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: var(--surface-color);
  cursor: pointer;
}

.checkout .checkout-section .section-content .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkout .checkout-section .section-content .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout .checkout-section .section-content .form-check .form-check-label {
  font-size: 0.9rem;
  cursor: pointer;
}

.checkout .checkout-section .section-content .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.checkout .checkout-section .section-content .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.checkout .checkout-section .section-content .form-check.terms-check {
  margin-top: 10px;
  margin-bottom: 20px;
}

.checkout .checkout-section .section-content .form-check.terms-check .form-check-label {
  font-size: 0.85rem;
}

.checkout .checkout-section .section-content .payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout .checkout-section .section-content .payment-options .payment-option {
  flex: 1;
  min-width: 120px;
  position: relative;
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio]:checked+label {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio]:checked+label .payment-icon {
  color: var(--accent-color);
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio]:focus+label {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout .checkout-section .section-content .payment-options .payment-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  height: 100%;
}

.checkout .checkout-section .section-content .payment-options .payment-option label:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.checkout .checkout-section .section-content .payment-options .payment-option label .payment-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.25s ease;
}

.checkout .checkout-section .section-content .payment-options .payment-option label .payment-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.checkout .checkout-section .section-content .payment-options .payment-option.active label {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.checkout .checkout-section .section-content .payment-options .payment-option.active label .payment-icon {
  color: var(--accent-color);
}

@media (max-width: 575.98px) {
  .checkout .checkout-section .section-content .payment-options .payment-option {
    min-width: 100%;
  }

  .checkout .checkout-section .section-content .payment-options .payment-option label {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }

  .checkout .checkout-section .section-content .payment-options .payment-option label .payment-icon {
    margin-bottom: 0;
  }
}

.checkout .checkout-section .section-content .payment-details {
  padding-top: 8px;
}

.checkout .checkout-section .section-content .payment-details.d-none {
  display: none;
}

.checkout .checkout-section .section-content .payment-details .payment-info {
  padding: 16px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.checkout .checkout-section .section-content .success-message {
  padding: 16px;
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 12px;
  color: #28a745;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.checkout .checkout-section .section-content .success-message.d-none {
  display: none;
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  background-color: var(--accent-color);
  border: none;
  box-shadow: 0 4px 12px rgba(54, 144, 231, 0.2);
  transition: all 0.3s ease;
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(54, 144, 231, 0.25);
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(54, 144, 231, 0.2);
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn .btn-price {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.checkout .order-summary {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.checkout .order-summary .order-summary-header {
  padding: 20px 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout .order-summary .order-summary-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.checkout .order-summary .order-summary-header .item-count {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  padding: 4px 10px;
  border-radius: 20px;
}

.checkout .order-summary .order-summary-content {
  padding: 24px;
}

.checkout .order-summary .order-summary-content .order-items {
  margin-bottom: 24px;
}

.checkout .order-summary .order-summary-content .order-items .order-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .order-summary .order-summary-content .order-items .order-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details {
  flex: 1;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-variant {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .quantity {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .price {
  color: var(--heading-color);
}

.checkout .order-summary .order-summary-content .promo-code {
  margin-bottom: 24px;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-right: none;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
  outline: none;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 0.9rem;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: none;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 0 16px;
  font-weight: 500;
  color: var(--accent-color);
  background-color: var(--surface-color);
  transition: all 0.25s ease;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn:focus {
  box-shadow: none;
}

.checkout .order-summary .order-summary-content .order-totals {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.checkout .order-summary .order-summary-content .order-totals>div {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.checkout .order-summary .order-summary-content .order-totals>div:last-child {
  margin-bottom: 0;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.checkout .order-summary .order-summary-content .secure-checkout {
  text-align: center;
}

.checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header i {
  color: #28a745;
  font-size: 1.1rem;
}

.checkout .order-summary .order-summary-content .secure-checkout .payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.checkout .order-summary .order-summary-content .secure-checkout .payment-icons i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991.98px) {
  .checkout .order-summary {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

.checkout .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkout .modal-content .modal-header {
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .modal-content .modal-header .modal-title {
  font-weight: 600;
}

.checkout .modal-content .modal-footer {
  border-top-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .checkout .checkout-section .section-header h3 {
    font-size: 1.1rem;
  }

  .checkout .order-summary .order-summary-header h3 {
    font-size: 1.1rem;
  }
}

.checkout .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# Order Confirmation Section
--------------------------------------------------------------*/
.order-confirmation {
  position: relative;
  /* ===== Sidebar Styles ===== */
  /* ===== Main Content Styles ===== */
}

.order-confirmation .sidebar {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 60%));
  color: var(--contrast-color);
  border-radius: 16px 0 0 16px;
  /* Success Animation */
  /* Order ID */
  /* Stepper */
  /* Price Summary */
  /* Delivery Info */
  /* Customer Service */
}

.order-confirmation .sidebar .sidebar-content {
  padding: 2.5rem 1.5rem;
  position: sticky;
  top: 100px;
}

.order-confirmation .sidebar .sidebar-content h4,
.order-confirmation .sidebar .sidebar-content h5 {
  color: var(--contrast-color);
}

@media (max-width: 991.98px) {
  .order-confirmation .sidebar .sidebar-content {
    position: relative;
    top: 0;
    border-radius: 16px 16px 0 0;
  }
}

.order-confirmation .sidebar .success-animation {
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.order-confirmation .sidebar .success-animation::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  animation: pulse 2s infinite;
}

.order-confirmation .sidebar .success-animation i {
  font-size: 3rem;
  color: white;
  position: relative;
  z-index: 2;
}

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

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

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

.order-confirmation .sidebar .order-id {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.order-confirmation .sidebar .order-id h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.order-confirmation .sidebar .order-id .order-date {
  opacity: 0.8;
  font-size: 0.95rem;
}

.order-confirmation .sidebar .order-progress {
  margin-bottom: 2rem;
}

.order-confirmation .sidebar .order-progress .stepper-container {
  display: flex;
  flex-direction: column;
}

.order-confirmation .sidebar .order-progress .stepper-item {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 1.5rem;
}

.order-confirmation .sidebar .order-progress .stepper-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 14px;
  width: 2px;
  height: calc(100% - 10px);
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.order-confirmation .sidebar .order-progress .stepper-item .stepper-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-right: 0.75rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.order-confirmation .sidebar .order-progress .stepper-item .stepper-text {
  font-weight: 500;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.order-confirmation .sidebar .order-progress .stepper-item.completed .stepper-icon,
.order-confirmation .sidebar .order-progress .stepper-item.current .stepper-icon {
  background-color: white;
  color: var(--accent-color);
}

.order-confirmation .sidebar .order-progress .stepper-item.completed .stepper-text,
.order-confirmation .sidebar .order-progress .stepper-item.current .stepper-text {
  opacity: 1;
}

.order-confirmation .sidebar .order-progress .stepper-item.current .stepper-icon {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.order-confirmation .sidebar .price-summary {
  margin-bottom: 2rem;
}

.order-confirmation .sidebar .price-summary h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.order-confirmation .sidebar .price-summary .summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-confirmation .sidebar .price-summary .summary-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.order-confirmation .sidebar .price-summary .summary-list li.total {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 1.1rem;
}

.order-confirmation .sidebar .delivery-info {
  margin-bottom: 2rem;
}

.order-confirmation .sidebar .delivery-info h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.order-confirmation .sidebar .delivery-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.order-confirmation .sidebar .delivery-info p i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.order-confirmation .sidebar .customer-service h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.order-confirmation .sidebar .customer-service .help-link {
  display: flex;
  align-items: center;
  color: var(--contrast-color);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.order-confirmation .sidebar .customer-service .help-link i {
  margin-right: 0.5rem;
}

.order-confirmation .sidebar .customer-service .help-link:hover {
  opacity: 0.8;
}

@media (max-width: 991.98px) {
  .order-confirmation .sidebar {
    border-radius: 16px 16px 0 0;
  }
}

.order-confirmation .main-content {
  background-color: var(--surface-color);
  border-radius: 0 16px 16px 0;
  padding: 3rem 2.5rem;
  /* Thank You Message */
  /* Details Cards */
  /* Action Area */
  /* Recommended Products */
}

@media (max-width: 991.98px) {
  .order-confirmation .main-content {
    border-radius: 0 0 16px 16px;
    padding: 2rem 1.5rem;
  }
}

.order-confirmation .main-content .thank-you-message {
  margin-bottom: 2.5rem;
}

.order-confirmation .main-content .thank-you-message h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.order-confirmation .main-content .thank-you-message p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
}

.order-confirmation .main-content .details-card {
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  overflow: hidden;
}

.order-confirmation .main-content .details-card .card-header {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
}

.order-confirmation .main-content .details-card .card-header:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.order-confirmation .main-content .details-card .card-header h3 {
  font-size: 1.15rem;
  margin: 0;
  display: flex;
  align-items: center;
}

.order-confirmation .main-content .details-card .card-header h3 i {
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.order-confirmation .main-content .details-card .card-header .toggle-icon {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: transform 0.2s ease;
}

.order-confirmation .main-content .details-card .card-header.collapsed .toggle-icon {
  transform: rotate(180deg);
}

.order-confirmation .main-content .details-card .card-body {
  padding: 1.5rem;
  /* Payment Styles */
  /* Order Items */
}

.order-confirmation .main-content .details-card .card-body label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.order-confirmation .main-content .details-card .card-body address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 0;
}

.order-confirmation .main-content .details-card .card-body .contact-info p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.order-confirmation .main-content .details-card .card-body .contact-info p i {
  width: 20px;
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.order-confirmation .main-content .details-card .card-body .payment-method {
  display: flex;
  align-items: center;
}

.order-confirmation .main-content .details-card .card-body .payment-method .payment-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.order-confirmation .main-content .details-card .card-body .payment-method .payment-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.order-confirmation .main-content .details-card .card-body .payment-method .payment-details .card-type {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.order-confirmation .main-content .details-card .card-body .payment-method .payment-details .card-number {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.order-confirmation .main-content .details-card .card-body .billing-address h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.order-confirmation .main-content .details-card .card-body .billing-address p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.order-confirmation .main-content .details-card .card-body .item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.order-confirmation .main-content .details-card .card-body .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.order-confirmation .main-content .details-card .card-body .item .item-image {
  flex: 0 0 70px;
  margin-right: 1rem;
}

.order-confirmation .main-content .details-card .card-body .item .item-image img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.order-confirmation .main-content .details-card .card-body .item .item-details {
  flex: 1;
}

.order-confirmation .main-content .details-card .card-body .item .item-details h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.order-confirmation .main-content .details-card .card-body .item .item-details .item-meta {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
}

.order-confirmation .main-content .details-card .card-body .item .item-details .item-meta span {
  display: inline-block;
  margin-right: 1rem;
}

.order-confirmation .main-content .details-card .card-body .item .item-details .item-price {
  font-size: 0.95rem;
}

.order-confirmation .main-content .details-card .card-body .item .item-details .item-price .quantity {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.order-confirmation .main-content .details-card .card-body .item .item-details .item-price .price {
  font-weight: 600;
}

.order-confirmation .main-content .action-area {
  margin-bottom: 3rem;
}

.order-confirmation .main-content .action-area .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.order-confirmation .main-content .action-area .btn.btn-back {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  justify-content: flex-start;
}

.order-confirmation .main-content .action-area .btn.btn-back i {
  margin-right: 0.75rem;
}

.order-confirmation .main-content .action-area .btn.btn-back:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: translateY(-2px);
}

.order-confirmation .main-content .action-area .btn.btn-account {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  justify-content: space-between;
}

.order-confirmation .main-content .action-area .btn.btn-account i {
  margin-left: 0.75rem;
}

.order-confirmation .main-content .action-area .btn.btn-account:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.order-confirmation .main-content .recommended h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.order-confirmation .main-content .recommended h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.order-confirmation .main-content .recommended .product-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 2rem;
}

.order-confirmation .main-content .recommended .product-card:hover {
  transform: translateY(-5px);
}

.order-confirmation .main-content .recommended .product-card .product-image {
  height: 150px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.order-confirmation .main-content .recommended .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.order-confirmation .main-content .recommended .product-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding: 0 0.75rem;
}

.order-confirmation .main-content .recommended .product-card .product-price {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.order-confirmation .main-content .recommended .product-card .btn-add-cart {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.order-confirmation .main-content .recommended .product-card .btn-add-cart i {
  margin-right: 0.5rem;
}

.order-confirmation .main-content .recommended .product-card .btn-add-cart:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 767.98px) {
  .order-confirmation .main-content {
    padding: 2rem 1.5rem;
  }

  .order-confirmation .main-content .thank-you-message h1 {
    font-size: 1.8rem;
  }

  .order-confirmation .main-content .thank-you-message p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Search Results Header Section
--------------------------------------------------------------*/
.search-results-header .results-count h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.search-results-header .results-count p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.search-results-header .results-count .results-number,
.search-results-header .results-count .search-term {
  font-weight: 600;
  color: var(--accent-color);
}

.search-results-header .search-form {
  position: relative;
}

.search-results-header .search-form .input-group {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  overflow: hidden;
}

.search-results-header .search-form .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 12px 20px;
  border-radius: 50px 0 0 50px;
  border-right: none;
  height: auto;
}

.search-results-header .search-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.search-results-header .search-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.search-results-header .search-form .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0 25px;
  border-radius: 0 50px 50px 0;
  transition: all 0.3s ease;
}

.search-results-header .search-form .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.search-results-header .search-filters .filter-label {
  font-weight: 600;
  margin-right: 10px;
  color: var(--heading-color);
}

.search-results-header .search-filters .tags-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-results-header .search-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.85rem;
  padding: 5px 12px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .filter-tag i {
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .filter-tag:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.search-results-header .search-filters .filter-tag:hover i {
  transform: scale(1.1);
}

.search-results-header .search-filters .sort-options label {
  color: var(--heading-color);
  font-weight: 500;
}

.search-results-header .search-filters .sort-options .form-select {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .sort-options .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .search-results-header .filter-tags {
    margin-bottom: 15px;
  }

  .search-results-header .sort-options {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .search-results-header .results-count h2 {
    font-size: 1.5rem;
  }

  .search-results-header .results-count p {
    font-size: 1rem;
  }

  .search-results-header .filter-label {
    display: block;
    margin-bottom: 8px;
  }

  .search-results-header .tags-wrapper {
    margin-top: 5px;
  }
}

/*--------------------------------------------------------------
# Search Product List Section
--------------------------------------------------------------*/
.search-product-list .product-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

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

.search-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;
}

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

.search-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;
}

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

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

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

.search-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;
}

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

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

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

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

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

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

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

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

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

.search-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;
}

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

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

.search-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) {
  .search-product-list .product-image {
    padding-top: 100%;
  }

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

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

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

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

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

/*--------------------------------------------------------------
# Account Section
--------------------------------------------------------------*/
.account .mobile-menu .mobile-menu-toggle {
  width: 100%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.account .mobile-menu .mobile-menu-toggle i {
  font-size: 20px;
}

.account .mobile-menu .mobile-menu-toggle:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.account .profile-menu {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.account .profile-menu .user-info {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .user-info .user-avatar {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
}

.account .profile-menu .user-info .user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--surface-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.account .profile-menu .user-info .user-avatar .status-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--surface-color);
}

.account .profile-menu .user-info .user-avatar .status-badge i {
  color: var(--contrast-color);
  font-size: 14px;
}

.account .profile-menu .user-info h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.account .profile-menu .user-info .user-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 13px;
}

.account .profile-menu .user-info .user-status i {
  font-size: 14px;
}

.account .profile-menu .menu-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--default-color);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-nav .nav-link i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-nav .nav-link span {
  flex: 1;
}

.account .profile-menu .menu-nav .nav-link .badge {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex: 0;
}

.account .profile-menu .menu-nav .nav-link .badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account .profile-menu .menu-nav .nav-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-nav .nav-link:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-nav .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
}

.account .profile-menu .menu-nav .nav-link.active i {
  color: var(--contrast-color);
}

.account .profile-menu .menu-nav .nav-link.active .badge {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}


/*--------------------------------------------------------------
#왼쪽메뉴 추가
--------------------------------------------------------------*/

.checkout .profile-menu .menu-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.checkout .profile-menu .menu-nav .nav-link i {
  font-size: 14px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.checkout .profile-menu .menu-nav .nav-link span {
  flex: 1;
}

.checkout .profile-menu .menu-nav .nav-link .badge {
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex: 0;
}

.checkout .profile-menu .menu-nav .nav-link .badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.checkout .profile-menu .menu-nav .nav-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.checkout .profile-menu .menu-nav .nav-link:hover i {
  color: var(--accent-color);
}

.checkout .profile-menu .menu-nav .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
}

.checkout .profile-menu .menu-nav .nav-link.active i {
  color: var(--contrast-color);
}

.checkout .profile-menu .menu-nav .nav-link.active .badge {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}







.account .profile-menu .menu-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .menu-footer a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--default-color);
  border-radius: 12px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a.logout-link {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link i {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link:hover {
  background-color: rgba(239, 68, 68, 0.08);
}

.account .content-area {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.account .content-area .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.account .content-area .section-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.account .content-area .section-header .header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.account .content-area .section-header .header-actions .search-box {
  position: relative;
}

.account .content-area .section-header .header-actions .search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
}

.account .content-area .section-header .header-actions .search-box input {
  width: 240px;
  height: 44px;
  padding: 0 16px 0 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.account .content-area .section-header .header-actions .search-box input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.account .content-area .section-header .header-actions .filter-btn {
  height: 44px;
  padding: 0 20px;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.account .content-area .section-header .header-actions .filter-btn i {
  font-size: 16px;
}

.account .content-area .section-header .header-actions .filter-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .content-area .orders-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.account .content-area .orders-grid .order-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .content-area .orders-grid .order-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .content-area .orders-grid .order-card .order-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.account .content-area .orders-grid .order-card .order-header .order-id .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-right: 6px;
}

.account .content-area .orders-grid .order-card .order-header .order-id .value {
  font-weight: 500;
  font-family: var(--heading-font);
}

.account .content-area .orders-grid .order-card .order-header .order-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .content-area .orders-grid .order-card .tracking-info,
.account .content-area .orders-grid .order-card .order-details {
  margin-top: 20px;
  background-color: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.account .content-area .orders-grid .order-card .tracking-info.collapse:not(.show),
.account .content-area .orders-grid .order-card .order-details.collapse:not(.show) {
  display: none;
}

.account .content-area .orders-grid .order-card .tracking-info.collapsing,
.account .content-area .orders-grid .order-card .order-details.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline {
  position: relative;
  padding: 24px 24px 24px 56px;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline:before {
  content: "";
  position: absolute;
  left: 39px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background-color: #e5e7eb;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item {
  position: relative;
  padding-bottom: 24px;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-icon {
  position: absolute;
  left: -32px;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-icon i {
  font-size: 14px;
  color: #9ca3af;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content {
  padding-left: 16px;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content p {
  margin: 0 0 4px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content .timeline-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content .shipping-info {
  margin-top: 8px;
  padding: 8px 12px;
  background-color: #ffffff;
  border-radius: 8px;
  font-size: 13px;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content .shipping-info .tracking-number {
  font-family: var(--heading-font);
  font-weight: 500;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item.completed .timeline-icon {
  background-color: #f0fdf4;
  border-color: #22c55e;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item.completed .timeline-icon i {
  color: #22c55e;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item.active .timeline-icon {
  background-color: #fff7ed;
  border-color: #f97316;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item.active .timeline-icon i {
  color: #f97316;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item.active .timeline-content h5 {
  color: #f97316;
}

.account .content-area .orders-grid .order-card .order-details .details-content {
  padding: 24px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section h5 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .info-grid .info-item .label {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 4px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .info-grid .info-item .value {
  font-size: 14px;
  font-weight: 500;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 12px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item:last-child {
  margin-bottom: 0;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item .item-info {
  flex: 1;
  min-width: 0;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item .item-info h6 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item .item-info .item-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item .item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown .price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown .price-row:not(.total) {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown .price-row.total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 600;
  color: var(--accent-color);
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .address-info {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .address-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .address-info p.contact {
  margin-top: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .content-area .orders-grid .order-card .order-content {
  margin-bottom: 20px;
}

.account .content-area .orders-grid .order-card .order-content .product-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.account .content-area .orders-grid .order-card .order-content .product-grid::-webkit-scrollbar {
  display: none;
}

.account .content-area .orders-grid .order-card .order-content .product-grid img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.account .content-area .orders-grid .order-card .order-content .product-grid .more-items {
  min-width: 64px;
  height: 64px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row:last-child {
  margin-bottom: 0;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status {
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.processing {
  background-color: #fff7ed;
  color: #f97316;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.shipped {
  background-color: #ecfeff;
  color: #06b6d4;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.delivered {
  background-color: #f0fdf4;
  color: #22c55e;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.cancelled {
  background-color: #fef2f2;
  color: #ef4444;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .price {
  font-weight: 600;
  color: var(--heading-color);
}

.account .content-area .orders-grid .order-card .order-footer {
  display: flex;
  gap: 12px;
}

.account .content-area .orders-grid .order-card .order-footer button {
  flex: 1;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-track {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-track:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .content-area .orders-grid .order-card .order-footer button.btn-details {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-details:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .content-area .orders-grid .order-card .order-footer button.btn-review {
  background-color: #f0fdf4;
  color: #22c55e;
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-review:hover {
  background-color: #dcfce7;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-reorder {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-reorder:hover {
  background-color: #fee2e2;
}

.account .content-area .pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.account .content-area .pagination-wrapper button {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
  background-color: transparent;
  color: var(--default-color);
}

.account .content-area .pagination-wrapper button:hover:not(:disabled) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .content-area .pagination-wrapper button.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account .content-area .pagination-wrapper button:disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  cursor: not-allowed;
}

.account .content-area .pagination-wrapper button i {
  font-size: 18px;
}

.account .content-area .pagination-wrapper .page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .content-area .pagination-wrapper .page-numbers span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}






.account .content-area .faq-list {
  padding: 0;
}

.account .content-area .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;
}

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

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

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

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

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

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

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

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

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

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

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














@media (max-width: 991.98px) {
  .account .profile-menu {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .account .content-area {
    padding: 20px;
  }

  .account .content-area .section-header .header-actions {
    width: 100%;
  }

  .account .content-area .section-header .header-actions .search-box {
    flex: 1;
  }

  .account .content-area .section-header .header-actions .search-box input {
    width: 100%;
  }
}

.account .wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.account .wishlist-grid .wishlist-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.account .wishlist-grid .wishlist-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .wishlist-grid .wishlist-card:hover .wishlist-image img {
  transform: scale(1.05);
}

.account .wishlist-grid .wishlist-card:hover .wishlist-image .btn-remove {
  opacity: 1;
  transform: translateY(0);
}

.account .wishlist-grid .wishlist-card .wishlist-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.account .wishlist-grid .wishlist-card .wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.account .wishlist-grid .wishlist-card .wishlist-image .btn-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.account .wishlist-grid .wishlist-card .wishlist-image .btn-remove:hover {
  background-color: #ef4444;
  color: #ffffff;
}

.account .wishlist-grid .wishlist-card .wishlist-image .sale-badge,
.account .wishlist-grid .wishlist-card .wishlist-image .out-of-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.account .wishlist-grid .wishlist-card .wishlist-image .sale-badge {
  background-color: #fef2f2;
  color: #ef4444;
}

.account .wishlist-grid .wishlist-card .wishlist-image .out-of-stock-badge {
  background-color: #f3f4f6;
  color: #6b7280;
}

.account .wishlist-grid .wishlist-card .wishlist-content {
  padding: 20px;
}

.account .wishlist-grid .wishlist-card .wishlist-content h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta {
  margin-bottom: 16px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .rating i {
  color: #f59e0b;
  font-size: 14px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .rating span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .price .current {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .price .original {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart,
.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify:hover {
  background-color: #e5e7eb;
}

.account .payment-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.account .payment-cards-grid .payment-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .payment-cards-grid .payment-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .payment-cards-grid .payment-card.default {
  border-color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account .payment-cards-grid .payment-card .card-header i {
  font-size: 24px;
  color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header .card-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .payment-cards-grid .payment-card .card-header .card-badges span {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.account .payment-cards-grid .payment-card .card-header .card-badges .default-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header .card-badges .card-type {
  background-color: #f3f4f6;
  color: #6b7280;
}

.account .payment-cards-grid .payment-card .card-body {
  margin-bottom: 16px;
}

.account .payment-cards-grid .payment-card .card-body .card-number {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.account .payment-cards-grid .payment-card .card-body .card-info {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .payment-cards-grid .payment-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account .payment-cards-grid .payment-card .card-actions button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.account .payment-cards-grid .payment-card .card-actions button i {
  font-size: 14px;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-remove {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-remove:hover {
  background-color: #fee2e2;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-make-default {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-make-default:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .reviews-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.account .reviews-grid .review-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .reviews-grid .review-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .reviews-grid .review-card .review-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.account .reviews-grid .review-card .review-header .product-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.account .reviews-grid .review-card .review-header .review-meta {
  flex: 1;
}

.account .reviews-grid .review-card .review-header .review-meta h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.account .reviews-grid .review-card .review-header .review-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.account .reviews-grid .review-card .review-header .review-meta .rating i {
  color: #f59e0b;
  font-size: 14px;
}

.account .reviews-grid .review-card .review-header .review-meta .rating span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .reviews-grid .review-card .review-header .review-meta .review-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .reviews-grid .review-card .review-content {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .reviews-grid .review-card .review-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.account .reviews-grid .review-card .review-footer {
  display: flex;
  gap: 12px;
}

.account .reviews-grid .review-card .review-footer button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .reviews-grid .review-card .review-footer button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .reviews-grid .review-card .review-footer button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .reviews-grid .review-card .review-footer button.btn-delete {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .reviews-grid .review-card .review-footer button.btn-delete:hover {
  background-color: #fee2e2;
}

.account .addresses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.account .addresses-grid .address-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .addresses-grid .address-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .addresses-grid .address-card.default {
  border-color: var(--accent-color);
}

.account .addresses-grid .address-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account .addresses-grid .address-card .card-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.account .addresses-grid .address-card .card-header .default-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .addresses-grid .address-card .card-body {
  margin-bottom: 16px;
}

.account .addresses-grid .address-card .card-body .address-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
}

.account .addresses-grid .address-card .card-body .contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 4px;
}

.account .addresses-grid .address-card .card-body .contact-info div:last-child {
  margin-bottom: 0;
}

.account .addresses-grid .address-card .card-body .contact-info div i {
  font-size: 14px;
}

.account .addresses-grid .address-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account .addresses-grid .address-card .card-actions button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.account .addresses-grid .address-card .card-actions button i {
  font-size: 14px;
}

.account .addresses-grid .address-card .card-actions button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .addresses-grid .address-card .card-actions button.btn-remove {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-remove:hover {
  background-color: #fee2e2;
}

.account .addresses-grid .address-card .card-actions button.btn-make-default {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-make-default:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .settings-content .settings-section {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.account .settings-content .settings-section:last-child {
  margin-bottom: 0;
}

.account .settings-content .settings-section h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
}

.account .settings-content .settings-section.danger-zone {
  border-color: #fee2e2;
}

.account .settings-content .settings-section.danger-zone h3 {
  color: #ef4444;
}

.account .settings-content .settings-section.danger-zone .danger-zone-content p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account .settings-content .settings-section.danger-zone .danger-zone-content .btn-danger {
  height: 40px;
  padding: 0 20px;
  background-color: #ef4444;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .settings-content .settings-section.danger-zone .danger-zone-content .btn-danger:hover {
  background-color: #dc2626;
}

.account .settings-content .settings-section.danger-zone .danger-zone-content .btn-save {
  height: 40px;
  padding: 0 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .settings-content .settings-section.danger-zone .danger-zone-content .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .settings-content .settings-form .form-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.account .settings-content .settings-form .form-control {
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.account .settings-content .settings-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.account .settings-content .settings-form .form-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.account .settings-content .settings-form .form-buttons .btn-save {
  height: 40px;
  padding: 0 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .settings-content .settings-form .form-buttons .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .settings-content .preferences-list .preference-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .settings-content .preferences-list .preference-item:first-child {
  padding-top: 0;
}

.account .settings-content .preferences-list .preference-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.account .settings-content .preferences-list .preference-item .preference-info {
  margin-right: 16px;
}

.account .settings-content .preferences-list .preference-item .preference-info h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
}

.account .settings-content .preferences-list .preference-item .preference-info p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .settings-content .preferences-list .preference-item .form-check {
  margin: 0;
  min-height: auto;
}

.account .settings-content .preferences-list .preference-item .form-check .form-check-input {
  width: 3rem;
  height: 1.5rem;
  margin: 0;
}

.account .settings-content .preferences-list .preference-item .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.account .settings-content .preferences-list .preference-item .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 575.98px) {
  .account .orders-grid .order-card .order-header {
    flex-direction: column;
    gap: 8px;
  }

  .account .section-header .header-actions {
    width: 100%;
    justify-content: stretch;
  }

  .account .section-header .header-actions .search-box,
  .account .section-header .header-actions .dropdown,
  .account .section-header .header-actions button {
    width: 100%;
  }

  .account .payment-cards-grid,
  .account .addresses-grid {
    grid-template-columns: 1fr;
  }

  .account .review-card .review-header {
    flex-direction: column;
    text-align: center;
  }

  .account .review-card .review-header .product-image {
    margin: 0 auto;
  }

  .account .review-card .review-header .rating {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Login Section
--------------------------------------------------------------*/
.login .auth-container {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
  position: relative;
}

@media (max-width: 576px) {
  .login .auth-container {
    margin: 0 15px;
  }
}

.login .auth-form {
  padding: 40px 35px;
  display: none;
}

.login .auth-form.active {
  display: block;
  animation: slideIn 0.5s ease-out;
}

@media (max-width: 576px) {
  .login .auth-form {
    padding: 30px 25px;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

.login .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.login .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.login .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
}

.login .input-group {
  position: relative;
  margin-bottom: 20px;
}

.login .input-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  transition: color 0.3s;
  pointer-events: none;
}

.login .input-group .form-control {
  padding: 16px 16px 16px 50px;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 12px !important;
}

.login .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  outline: none;
}

.login .input-group .form-control:focus~.input-icon {
  color: var(--accent-color);
}

.login .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.login .input-group .password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  z-index: 3;
  transition: color 0.3s;
}

.login .input-group .password-toggle:hover {
  color: var(--accent-color);
}

.login .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .login .name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.login .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.login .form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login .form-options .remember-me input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.login .form-options .remember-me input[type=checkbox]:checked {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.login .form-options .remember-me input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login .form-options .remember-me label {
  font-size: 14px;
  color: var(--default-color);
  cursor: pointer;
}

.login .form-options .forgot-password {
  font-size: 14px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.login .form-options .forgot-password:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.login .terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.login .terms-check input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 2px;
  flex-shrink: 0;
}

.login .terms-check input[type=checkbox]:checked {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.login .terms-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login .terms-check label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.4;
  cursor: pointer;
}

.login .terms-check label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.login .terms-check label a:hover {
  text-decoration: underline;
}

.login .auth-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login .auth-btn.primary-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.login .auth-btn.primary-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-1px);
}

.login .auth-btn.primary-btn:active {
  transform: translateY(0);
}

.login .auth-btn.social-btn {
  background: var(--background-color);
  color: var(--default-color);
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.login .auth-btn.social-btn:hover {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.login .auth-btn.social-btn i {
  font-size: 18px;
}

.login .auth-btn i {
  font-size: 16px;
}

.login .divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
}

.login .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.login .divider span {
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login .switch-form {
  text-align: center;
  margin-top: 25px;
}

.login .switch-form span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

.login .switch-form .switch-btn {
  background: none;
  border: none;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-left: 5px;
  transition: color 0.3s;
}

.login .switch-form .switch-btn:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register .registration-form-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 60px 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.register .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.register .decorative-elements .circle {
  position: absolute;
  border-radius: 50%;
}

.register .decorative-elements .circle.circle-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.register .decorative-elements .circle.circle-2 {
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 97%));
}

.register .decorative-elements .circle.circle-3 {
  top: 40%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 70%), color-mix(in srgb, var(--accent-color), transparent 90%));
}

.register .decorative-elements .square {
  position: absolute;
  transform: rotate(45deg);
}

.register .decorative-elements .square.square-1 {
  top: 20%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.register .decorative-elements .square.square-2 {
  bottom: 15%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 85%), color-mix(in srgb, var(--heading-color), transparent 95%));
}

.register .form-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.register .form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register .form-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register form {
  position: relative;
  z-index: 1;
}

.register form .form-floating {
  margin-bottom: 1rem;
}

.register form .form-floating .form-control,
.register form .form-floating .form-select {
  height: 60px;
  padding: 1rem 1rem 0.5rem;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  color: var(--default-color);
}

.register form .form-floating .form-control:focus,
.register form .form-floating .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.register form .form-floating .form-control:focus~label,
.register form .form-floating .form-select:focus~label {
  color: var(--accent-color);
}

.register form .form-floating .form-control:focus~label:after,
.register form .form-floating .form-select:focus~label:after {
  background: transparent;
}

.register form .form-floating .form-control::placeholder,
.register form .form-floating .form-select::placeholder {
  color: transparent;
}

.register form .form-floating .form-control:not(:placeholder-shown)~label,
.register form .form-floating .form-select:not(:placeholder-shown)~label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register form .form-floating .form-control:not(:placeholder-shown)~label:after,
.register form .form-floating .form-select:not(:placeholder-shown)~label:after {
  background: transparent;
}

.register form .form-floating label {
  padding: 1rem 1rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.register form .form-floating label:after {
  background: transparent;
}

.register form .form-check {
  padding-left: 1.8rem;
  margin-top: 1rem;
}

.register form .form-check .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: -1.8rem;
  margin-top: 0.15rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.register form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register form .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register form .form-check .form-check-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.register form .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.register form .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.register .btn-register {
  position: relative;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  color: var(--contrast-color);
  border: none;
  overflow: hidden;
  transition: all 0.3s;
}

.register .btn-register::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: all 0.6s;
}

.register .btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register .btn-register:hover::before {
  left: 100%;
}

.register .btn-register:active {
  transform: translateY(0);
}

.register .login-link {
  margin-top: 1.5rem;
}

.register .login-link p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register .login-link p a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.register .login-link p a:hover {
  text-decoration: underline;
}

.register .social-login {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.register .social-login .divider {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.register .social-login .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.register .social-login .divider span {
  position: relative;
  background-color: var(--surface-color);
  padding: 0 1rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .social-login .social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.register .social-login .social-buttons .btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  border-radius: 12px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.register .social-login .social-buttons .btn-social i {
  font-size: 1.2rem;
}

.register .social-login .social-buttons .btn-social i.bi-google {
  color: #DB4437;
}

.register .social-login .social-buttons .btn-social i.bi-facebook {
  color: #4267B2;
}

.register .social-login .social-buttons .btn-social i.bi-apple {
  color: #000000;
}

.register .social-login .social-buttons .btn-social:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.register .social-login .social-buttons .btn-social:active {
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .register {
    padding: 2rem 1.5rem;
    margin: 40px 0;
  }

  .register .form-header h2 {
    font-size: 1.8rem;
  }

  .register .form-header p {
    font-size: 1rem;
  }

  .register .social-buttons {
    grid-template-columns: 1fr;
  }
}










/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-header {
  margin-bottom: 50px;
}

.team .team-header h2 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.team .team-header h2:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.team .team-header p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
}

@media (max-width: 991px) {
  .team .team-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .team .team-header h2:before {
    left: 50%;
    transform: translateX(-50%);
  }

  .team .team-header p {
    margin: 0 auto;
  }

  .team .team-header .team-controls {
    margin-top: 30px;
    justify-content: center;
  }
}

.team .team-controls {
  display: flex;
  gap: 12px;
}

.team .team-controls .team-control-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-controls .team-control-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .team-slider {
  padding: 10px 5px 40px;
}

.team .team-slider .swiper-wrapper {
  height: auto !important;
}

.team .team-member {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team .team-member:hover .member-image .member-social {
  opacity: 1;
  bottom: 20px;
}

.team .team-member:hover .member-image:before {
  opacity: 0.8;
}

.team .team-member .member-image {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-image:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.team .team-member .member-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team .team-member .member-image .member-social {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  bottom: -30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team .team-member .member-image .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

.team .team-member .member-image .member-social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .team-member .member-content {
  padding: 25px;
}

.team .team-member .member-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-member .member-content span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.team .team-member .member-content p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .section-intro {
  margin-bottom: 48px;
}

.services .section-intro .intro-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.services .section-intro .intro-text {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.services .section-intro .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.services .section-intro .btn-view-all i {
  font-size: 18px;
  transition: transform 0.3s;
}

.services .section-intro .btn-view-all:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services .section-intro .btn-view-all:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services .section-intro .intro-title {
    font-size: 28px;
  }

  .services .section-intro .btn-view-all {
    margin-top: 16px;
  }
}

.services .service-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.services .service-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.services .service-item:hover .icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.05);
}

.services .service-item:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.services .service-item:hover .service-cta i {
  transform: translateX(4px);
}

.services .service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services .icon-wrapper {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.services .icon-wrapper i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s;
}

.services .badge-popular {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.services p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 20px;
}

.services .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.services .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 10px;
  line-height: 1.5;
}

.services .feature-list li i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.services .feature-list li:last-child {
  margin-bottom: 0;
}

.services .service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s;
}

.services .service-cta i {
  font-size: 16px;
  transition: transform 0.3s;
}

.services .service-cta:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.services .cta-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #8b5cf6 30%));
  border-radius: 16px;
  padding: 48px;
  margin-top: 64px;
}

.services .cta-banner .cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.services .cta-banner h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.services .cta-banner p {
  font-size: 16px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 0;
  line-height: 1.6;
}

.services .cta-banner .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 12px;
}

.services .cta-banner .btn-primary i {
  font-size: 16px;
}

.services .cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--accent-color);
}

.services .cta-banner .btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--contrast-color);
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  margin-left: 12px;
}

.services .cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .services .cta-banner {
    padding: 40px 32px;
  }

  .services .cta-banner h3 {
    font-size: 24px;
  }

  .services .cta-banner .btn-primary,
  .services .cta-banner .btn-secondary {
    display: block;
    text-align: center;
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 28px;
    margin-bottom: 24px;
  }

  .services .icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .services .icon-wrapper i {
    font-size: 24px;
  }

  .services h3 {
    font-size: 20px;
  }

  .services p {
    font-size: 14px;
  }

  .services .feature-list li {
    font-size: 13px;
  }

  .services .feature-list li i {
    font-size: 14px;
  }

  .services .cta-banner {
    padding: 32px 24px;
    margin-top: 48px;
  }

  .services .cta-banner h3 {
    font-size: 22px;
  }

  .services .cta-banner p {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content-wrapper {
  padding-right: 24px;
}

@media (max-width: 992px) {
  .about .content-wrapper {
    padding-right: 0;
    margin-bottom: 48px;
  }
}

.about .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 2rem;
  }
}

.about .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
}

.about .stat-item {
  text-align: center;
}

.about .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .about .stat-item .stat-number {
    font-size: 2rem;
  }
}

.about .stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .features-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.about .feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about .feature-item .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .feature-item .feature-content {
  flex: 1;
}

.about .feature-item .feature-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.about .feature-item .feature-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about .cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about .btn i {
  transition: transform 0.3s ease;
}

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

.about .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-primary:hover i {
  transform: translateX(4px);
}

.about .btn-secondary {
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
}

.about .btn-secondary:hover {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.about .image-stack {
  position: relative;
  height: 600px;
}

@media (max-width: 992px) {
  .about .image-stack {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .about .image-stack {
    height: 400px;
  }
}

.about .image-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .image-primary {
  width: 75%;
  height: 70%;
  top: 0;
  right: 0;
  z-index: 2;
}

.about .image-secondary {
  width: 55%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: 3;
  border: 4px solid var(--background-color);
}

.about .floating-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 4;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .floating-badge {
    padding: 16px;
    right: 50%;
    transform: translate(50%, -50%);
  }
}

.about .floating-badge .badge-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 8px;
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.about .floating-badge .badge-text .badge-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--heading-color);
  line-height: 1.2;
}

.about .floating-badge .badge-text .badge-subtitle {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 2px;
}









/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .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-2 .section-badge i {
  font-size: 1rem;
}

.about-2 .about-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-weight: 500;
}

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

.about-2 .features-boxes .feature-box {
  height: 100%;
  position: relative;
}

.about-2 .features-boxes .feature-box .icon-box {
  width: 60px;
  height: 60px;
  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: 1.75rem;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.about-2 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

/*--------------------------------------------------------------
.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}
--------------------------------------------------------------*/
.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.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: 0.9rem;
  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-pattern2 {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: auto;
  height: 2.5rem;
  background-color: var(--surface-color);
  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 h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .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 h3 {
    font-size: 1rem;
  }

  .testimonials .position {
    font-size: 0.8125rem;
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-2 .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-2 .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-2 .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact-2 .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-2 .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact-2 .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact-2 .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact-2 .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-2 .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact-2 .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-2 .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact-2 .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-2 .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact-2 .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact-2 .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .loading,
.contact-2 .contact-form-wrapper .error-message,
.contact-2 .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact-2 .form-container-overlap {
    margin-top: -120px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-2 .contact-info-box {
    margin-bottom: 20px;
  }

  .contact-2 .form-container-overlap {
    margin-top: -100px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 25px;
  }

  .contact-2 .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact-2 .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact-2 .form-container-overlap {
    margin-top: -80px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 20px;
  }

  .contact-2 .btn-submit {
    width: 100%;
  }

  .contact-2 .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Support Section
--------------------------------------------------------------*/
.support .support-header {
  text-align: center;
  margin-bottom: 60px;
}

.support .support-header .header-content {
  max-width: 700px;
  margin: 0 auto;
}

.support .support-header .header-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.support .support-header .header-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
  border-radius: 2px;
}

.support .support-header .header-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

.support .quick-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .support .quick-support {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .support .quick-support {
    grid-template-columns: 1fr;
  }
}

.support .quick-support .action-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.support .quick-support .action-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  opacity: 0;
  transition: opacity 0.3s;
}

.support .quick-support .action-item:hover::before {
  opacity: 1;
}

.support .quick-support .action-item .action-content {
  background-color: var(--surface-color);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%;
  transition: transform 0.3s;
}

.support .quick-support .action-item .action-content:hover {
  transform: translateY(-5px);
}

.support .quick-support .action-item .action-content i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.support .quick-support .action-item .action-content h4 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.support .quick-support .action-item .action-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.support .quick-support .action-item .action-content .action-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.support .quick-support .action-item .action-content .action-button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.support .help-categories {
  margin-bottom: 70px;
}

.support .help-categories h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.support .help-categories .category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .support .help-categories .category-cards {
    grid-template-columns: 1fr;
  }
}

.support .help-categories .category-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.3s;
}

.support .help-categories .category-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support .help-categories .category-card:hover .arrow {
  transform: translateX(5px);
  opacity: 1;
}

.support .help-categories .category-card .icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support .help-categories .category-card .icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.support .help-categories .category-card h5 {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.support .help-categories .category-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support .help-categories .category-card ul li {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.support .help-categories .category-card ul li:last-child {
  margin-bottom: 0;
}

.support .help-categories .category-card .arrow {
  color: var(--accent-color);
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s;
}

.support .self-help .content-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.support .self-help .content-box .subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.support .self-help .content-box .resource-links {
  display: grid;
  gap: 20px;
}

.support .self-help .content-box .resource-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.support .self-help .content-box .resource-link:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.support .self-help .content-box .resource-link:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.support .self-help .content-box .resource-link i {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s;
}

.support .self-help .content-box .resource-link .link-content h6 {
  margin: 0 0 5px;
  color: var(--heading-color);
  font-size: 1.1rem;
}

.support .self-help .content-box .resource-link .link-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.support .self-help .faq-section {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

@media (max-width: 991px) {
  .support .self-help .faq-section {
    margin-top: 40px;
  }
}

.support .self-help .faq-section h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.support .self-help .faq-section .faq-list .faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 15px;
}

.support .self-help .faq-section .faq-list .faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.support .self-help .faq-section .faq-list .faq-item h3 {
  margin: 0;
  padding: 15px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--heading-color);
  transition: all 0.3s;
}

.support .self-help .faq-section .faq-list .faq-item h3 i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.support .self-help .faq-section .faq-list .faq-item .faq-answer {
  display: none;
  padding: 0 0 15px;
}

.support .self-help .faq-section .faq-list .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.support .self-help .faq-section .faq-list .faq-item.faq-active h3 i {
  transform: rotate(45deg);
}

.support .self-help .faq-section .faq-list .faq-item.faq-active .faq-answer {
  display: block;
}

@media (max-width: 767px) {
  .support .support-header .header-content h2 {
    font-size: 2rem;
  }

  .support .category-card {
    grid-template-columns: auto 1fr !important;
  }

  .support .category-card .arrow {
    display: none;
  }

  .support .self-help .resource-link {
    padding: 15px;
  }

  .support .self-help .resource-link i {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .support .self-help .faq-section {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-header {
  text-align: center;
  margin-bottom: 70px;
  padding: 60px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .update-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--surface-color);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.privacy .privacy-header .header-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy .privacy-header .header-content p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.privacy .privacy-header .header-content .privacy-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .privacy .privacy-header .header-content .privacy-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.privacy .privacy-header .header-content .privacy-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
}

.privacy .privacy-header .header-content .privacy-badges .badge-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.privacy .privacy-header .header-content .privacy-badges .badge-item span {
  font-weight: 500;
}

.privacy .info-section {
  margin-bottom: 70px;
}

.privacy .info-section .section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .privacy .info-section .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .privacy .info-section .section-grid {
    grid-template-columns: 1fr;
  }
}

.privacy .info-section .info-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.privacy .info-section .info-card:hover {
  transform: translateY(-10px);
}

.privacy .info-section .info-card:hover .card-header i {
  transform: scale(1.1);
}

.privacy .info-section .info-card .card-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .info-section .info-card .card-header i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s;
}

.privacy .info-section .info-card .card-header h3 {
  font-size: 1.4rem;
  margin: 0;
}

.privacy .info-section .info-card .card-content {
  padding: 30px;
}

.privacy .info-section .info-card .card-content .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy .info-section .info-card .card-content .info-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.privacy .info-section .info-card .card-content .info-list li:last-child {
  margin-bottom: 0;
}

.privacy .info-section .info-card .card-content .info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.privacy .security-section {
  margin-bottom: 70px;
  text-align: center;
}

.privacy .security-section .section-header {
  margin-bottom: 40px;
}

.privacy .security-section .section-header h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.privacy .security-section .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

.privacy .security-section .measures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .privacy .security-section .measures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .privacy .security-section .measures-grid {
    grid-template-columns: 1fr;
  }
}

.privacy .security-section .measure-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s;
}

.privacy .security-section .measure-item:hover {
  transform: translateY(-5px);
}

.privacy .security-section .measure-item:hover i {
  color: var(--accent-color);
}

.privacy .security-section .measure-item i {
  font-size: 2rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  margin-bottom: 20px;
  transition: color 0.3s;
}

.privacy .security-section .measure-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.privacy .security-section .measure-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.privacy .rights-section {
  margin-bottom: 70px;
}

.privacy .rights-section .rights-content {
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
}

.privacy .rights-section .rights-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.privacy .rights-section .rights-content>p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
}

.privacy .rights-section .rights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .privacy .rights-section .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .privacy .rights-section .rights-grid {
    grid-template-columns: 1fr;
  }
}

.privacy .rights-section .right-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.privacy .rights-section .right-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.privacy .rights-section .right-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.privacy .additional-info {
  margin-bottom: 70px;
}

.privacy .additional-info .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .privacy .additional-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .privacy .additional-info .info-grid {
    grid-template-columns: 1fr;
  }
}

.privacy .additional-info .info-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
}

.privacy .additional-info .info-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.privacy .additional-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.privacy .privacy-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .privacy .privacy-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.privacy .privacy-contact .contact-box .contact-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy .privacy-contact .contact-box .contact-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.privacy .privacy-contact .contact-box .contact-content {
  flex: 1;
}

.privacy .privacy-contact .contact-box .contact-content h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-box .contact-content .contact-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.privacy .privacy-contact .contact-box .contact-content .contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Retun Policy Section
--------------------------------------------------------------*/
.retun-policy .return-hero {
  margin-bottom: 0px;
  text-align: center;
  position: relative;
}

.retun-policy .return-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.retun-policy .return-hero .hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.retun-policy .return-hero .hero-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.retun-policy .return-hero .return-period-box {
  margin-top: 40px;
}

.retun-policy .return-hero .return-period-box .box-content {
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  display: inline-flex;
  align-items: baseline;
  padding: 20px 40px;
  border-radius: 50px;
  gap: 10px;
}

.retun-policy .return-hero .return-period-box .box-content .days {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.retun-policy .return-hero .return-period-box .box-content .text {
  font-size: 1.4rem;
  color: var(--heading-color);
  font-weight: 500;
}

.retun-policy .policy-overview {
  margin-bottom: 20px;
}

.retun-policy .policy-overview .feature-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.retun-policy .policy-overview .feature-card:hover {
  transform: translateY(-10px);
}

.retun-policy .policy-overview .feature-card:hover .card-content::before {
  opacity: 1;
}

.retun-policy .policy-overview .feature-card:hover .card-content .learn-more i {
  transform: translateX(5px);
}

.retun-policy .policy-overview .feature-card .card-content {
  padding: 40px;
  position: relative;
  z-index: 1;
}

.retun-policy .policy-overview .feature-card .card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.retun-policy .policy-overview .feature-card .card-content i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.retun-policy .policy-overview .feature-card .card-content h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.retun-policy .policy-overview .feature-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.retun-policy .policy-overview .feature-card .card-content .learn-more {
  color: var(--accent-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.retun-policy .policy-overview .feature-card .card-content .learn-more i {
  font-size: 1.2rem;
  margin: 0;
  transition: transform 0.3s;
}

.retun-policy .return-requirements {
  margin-bottom: 70px;
}

.retun-policy .return-requirements .requirements-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.retun-policy .return-requirements .requirements-content .subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.retun-policy .return-requirements .checks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.retun-policy .return-requirements .checks-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.retun-policy .return-requirements .checks-list li:last-child {
  margin-bottom: 0;
}

.retun-policy .return-requirements .checks-list li i {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.retun-policy .return-requirements .checks-list li .requirement-text h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.retun-policy .return-requirements .checks-list li .requirement-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.retun-policy .return-requirements .exceptions-box {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

.retun-policy .return-requirements .exceptions-box .box-header {
  text-align: center;
  margin-bottom: 30px;
}

.retun-policy .return-requirements .exceptions-box .box-header i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.retun-policy .return-requirements .exceptions-box .box-header h4 {
  font-size: 1.5rem;
  margin: 0;
}

.retun-policy .return-requirements .exceptions-box .exceptions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item {
  text-align: center;
  padding: 20px;
  background-color: var(--background-color);
  border-radius: 15px;
  transition: all 0.3s;
}

.retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item:hover {
  transform: scale(1.05);
}

.retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: block;
}

.retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item span {
  font-weight: 500;
}

.retun-policy .return-steps {
  margin-bottom: 20px;
  text-align: center;
}

.retun-policy .return-steps h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.retun-policy .return-steps .steps-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.retun-policy .return-steps .steps-timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
}

@media (max-width: 991px) {
  .retun-policy .return-steps .steps-timeline {
    flex-direction: column;
    gap: 30px;
  }

  .retun-policy .return-steps .steps-timeline::before {
    display: none;
  }
}

.retun-policy .return-steps .step-item {
  flex: 1;
  position: relative;
  padding: 0 15px;
}

.retun-policy .return-steps .step-item .step-number {
  width: 50px;
  height: 50px;
  background-color: var(--surface-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
  position: relative;
  z-index: 1;
}

.retun-policy .return-steps .step-item .step-content h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.retun-policy .return-steps .step-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.retun-policy .return-steps .step-item.active .step-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.retun-policy .return-faqs {
  margin-bottom: 70px;
}

.retun-policy .return-faqs .faq-header h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.retun-policy .return-faqs .faq-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.retun-policy .return-faqs .faq-header .contact-support {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.retun-policy .return-faqs .faq-header .contact-support:hover {
  transform: translateX(5px);
}

.retun-policy .return-faqs .faq-header .contact-support i {
  font-size: 1.5rem;
}

.retun-policy .return-faqs .faq-list .faq-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 15px;
}

.retun-policy .return-faqs .faq-list .faq-item h3 {
  margin: 0;
  padding: 10px 25px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--heading-color);
}

.retun-policy .return-faqs .faq-list .faq-item h3 i {
  color: var(--accent-color);
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.retun-policy .return-faqs .faq-list .faq-item .faq-answer {
  display: none;
  padding: 0 25px 20px;
}

.retun-policy .return-faqs .faq-list .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.retun-policy .return-faqs .faq-list .faq-item.faq-active h3 i {
  transform: rotate(45deg);
}

.retun-policy .return-faqs .faq-list .faq-item.faq-active .faq-answer {
  display: block;
}

.retun-policy .return-cta {
  text-align: center;
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.retun-policy .return-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
}

.retun-policy .return-cta h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.retun-policy .return-cta p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.retun-policy .return-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.retun-policy .return-cta .cta-buttons a {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.retun-policy .return-cta .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.retun-policy .return-cta .cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.retun-policy .return-cta .cta-buttons .btn-secondary {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.retun-policy .return-cta .cta-buttons .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-3px);
}

@media (max-width: 576px) {
  .retun-policy .return-cta {
    padding: 40px 20px;
  }

  .retun-policy .return-cta .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .retun-policy .return-hero .hero-content h2 {
    font-size: 2.5rem;
  }

  .retun-policy .return-hero .return-period-box .box-content {
    padding: 15px 30px;
  }

  .retun-policy .return-hero .return-period-box .box-content .days {
    font-size: 2.5rem;
  }

  .retun-policy .return-hero .return-period-box .box-content .text {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Paymnt Methods Section
--------------------------------------------------------------*/
.paymnt-methods .payment-header {
  margin-bottom: 60px;
}

.paymnt-methods .payment-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.paymnt-methods .payment-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
}

.paymnt-methods .payment-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

.paymnt-methods .payment-options {
  margin-bottom: 70px;
}

.paymnt-methods .payment-options .payment-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s;
}

.paymnt-methods .payment-options .payment-card:hover {
  transform: translateY(-10px);
}

.paymnt-methods .payment-options .payment-card:hover .icon-box {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.paymnt-methods .payment-options .payment-card:hover .icon-box i {
  color: var(--contrast-color);
}

.paymnt-methods .payment-options .payment-card .card-content {
  padding: 40px 30px;
  text-align: center;
}

.paymnt-methods .payment-options .payment-card .icon-box {
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s;
}

.paymnt-methods .payment-options .payment-card .icon-box i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.paymnt-methods .payment-options .payment-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.paymnt-methods .payment-options .payment-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.paymnt-methods .payment-options .payment-card .accepted-cards {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.paymnt-methods .payment-options .payment-card .accepted-cards .card-icon {
  padding: 8px 15px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.paymnt-methods .security-features {
  margin-bottom: 70px;
}

.paymnt-methods .security-features .security-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.paymnt-methods .security-features .security-content .subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.paymnt-methods .security-features .security-content .security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paymnt-methods .security-features .security-content .security-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.paymnt-methods .security-features .security-content .security-list li:last-child {
  margin-bottom: 0;
}

.paymnt-methods .security-features .security-content .security-list li i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.paymnt-methods .security-features .security-content .security-list li .feature-text h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.paymnt-methods .security-features .security-content .security-list li .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.paymnt-methods .security-features .process-steps {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

@media (max-width: 991px) {
  .paymnt-methods .security-features .process-steps {
    margin-top: 40px;
  }
}

.paymnt-methods .security-features .process-steps h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.paymnt-methods .security-features .process-steps .steps-list {
  display: grid;
  gap: 25px;
}

.paymnt-methods .security-features .process-steps .steps-list .step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.paymnt-methods .security-features .process-steps .steps-list .step .step-number {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.paymnt-methods .security-features .process-steps .steps-list .step .step-content h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.paymnt-methods .security-features .process-steps .steps-list .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.paymnt-methods .payment-faqs {
  margin-bottom: 70px;
}

.paymnt-methods .payment-faqs h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.paymnt-methods .payment-faqs .faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item h3 {
  margin: 0;
  padding: 20px 25px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item h3 i {
  transition: transform 0.3s;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item .faq-answer {
  display: none;
  padding: 0 25px 20px;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active h3 i {
  transform: rotate(180deg);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active .faq-answer {
  display: block;
}

.paymnt-methods .payment-support .support-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.paymnt-methods .payment-support .support-content i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.paymnt-methods .payment-support .support-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.paymnt-methods .payment-support .support-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.paymnt-methods .payment-support .support-content .support-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .paymnt-methods .payment-support .support-content .support-actions {
    flex-direction: column;
  }
}

.paymnt-methods .payment-support .support-content .support-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.paymnt-methods .payment-support .support-content .support-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.paymnt-methods .payment-support .support-content .support-actions .btn-primary i {
  font-size: 1.2rem;
  margin: 0;
}

.paymnt-methods .payment-support .support-content .support-actions .divider {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

@media (max-width: 576px) {
  .paymnt-methods .payment-support .support-content .support-actions .divider {
    display: none;
  }
}

.paymnt-methods .payment-support .support-content .support-actions .contact-email {
  color: var(--heading-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.paymnt-methods .payment-support .support-content .support-actions .contact-email:hover {
  color: var(--accent-color);
}

.paymnt-methods .payment-support .support-content .support-actions .contact-email i {
  font-size: 1.2rem;
  margin: 0;
}

/*--------------------------------------------------------------
# Shipping Info Section
--------------------------------------------------------------*/
.shipping-info .content-block {
  padding: 60px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.shipping-info .content-block:first-child {
  padding-top: 0;
}

.shipping-info .content-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.shipping-info .content-block .section-heading {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.shipping-info .content-block .section-heading i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.shipping-info .content-block .section-heading h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.shipping-info .content-block .section-heading p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.shipping-info .delivery-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
}

.shipping-info .delivery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.shipping-info .delivery-card .card-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.shipping-info .delivery-card .card-icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.shipping-info .delivery-card h4 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.shipping-info .delivery-card p {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.shipping-info .delivery-card .delivery-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
}

.shipping-info .delivery-card .delivery-time i {
  font-size: 1.1rem;
}

.shipping-info .shipping-rates {
  display: grid;
  gap: 20px;
}

.shipping-info .shipping-rates .rate-item {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
}

.shipping-info .shipping-rates .rate-item:hover {
  transform: translateY(-5px);
}

.shipping-info .shipping-rates .rate-item.highlight {
  border: 2px solid var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.shipping-info .shipping-rates .rate-item .rate-type {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.shipping-info .shipping-rates .rate-item .rate-cost {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.shipping-info .shipping-rates .rate-item .rate-info {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.shipping-info .international-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.shipping-info .international-info .info-item {
  text-align: center;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: transform 0.3s;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
}

.shipping-info .international-info .info-item:hover {
  transform: translateY(-5px);
}

.shipping-info .international-info .info-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.shipping-info .international-info .info-item h5 {
  margin-bottom: 10px;
}

.shipping-info .international-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.shipping-info .faq-list .faq-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
}

.shipping-info .faq-list .faq-item h3 {
  margin: 0;
  padding: 20px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  transition: color 0.3s;
}

.shipping-info .faq-list .faq-item h3 i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.shipping-info .faq-list .faq-item h3 i.faq-toggle {
  margin-left: auto;
  transition: transform 0.3s;
}

.shipping-info .faq-list .faq-item .faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.shipping-info .faq-list .faq-item .faq-answer p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

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

.shipping-info .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(180deg);
}

.shipping-info .faq-list .faq-item.faq-active .faq-answer {
  display: block;
}

@media (max-width: 767px) {
  .shipping-info .delivery-card {
    padding: 20px;
  }

  .shipping-info .delivery-card .card-icon {
    width: 50px;
    height: 50px;
  }

  .shipping-info .delivery-card .card-icon i {
    font-size: 1.5rem;
  }

  .shipping-info .international-info {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.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;
}

.product-categories-widget .category-tree {
  margin-top: 1rem;
}

.product-categories-widget .category-tree .category-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 0;
}

.product-categories-widget .category-tree .category-item:last-child {
  border-bottom: none;
}

.product-categories-widget .category-tree .category-item .category-header {
  cursor: pointer;
  transition: all 0.3s;
}

.product-categories-widget .category-tree .category-item .category-header:hover .category-link {
  color: var(--accent-color);
}

.product-categories-widget .category-tree .category-item .category-header:hover .category-toggle {
  color: var(--accent-color);
}

.product-categories-widget .category-tree .category-item .category-link {
  color: var(--default-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .category-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .category-toggle .bi-chevron-up {
  display: none;
}

.product-categories-widget .category-tree .category-item .category-header:not(.collapsed) .category-toggle .bi-chevron-down {
  display: none;
}

.product-categories-widget .category-tree .category-item .category-header:not(.collapsed) .category-toggle .bi-chevron-up {
  display: inline;
}

.product-categories-widget .category-tree .category-item .subcategory-list li {
  padding: 0.5rem 0;
}

.product-categories-widget .category-tree .category-item .subcategory-list li:first-child {
  padding-top: 0.75rem;
}

.product-categories-widget .category-tree .category-item .subcategory-list li:last-child {
  padding-bottom: 0;
}

.product-categories-widget .category-tree .category-item .subcategory-list .subcategory-link {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .subcategory-list .subcategory-link:hover {
  color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .product-categories-widget .category-tree .category-item {
    padding: 0.625rem 0;
  }

  .product-categories-widget .category-tree .category-item .subcategory-list li {
    padding: 0.4rem 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%);
}

.brand-filter-widget .brand-filter-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.brand-filter-widget .brand-search {
  position: relative;
  margin-bottom: 5px;
}

.brand-filter-widget .brand-search input {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 10px 35px 10px 15px;
}

.brand-filter-widget .brand-search input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.brand-filter-widget .brand-search input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.brand-filter-widget .brand-search .bi-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.brand-filter-widget .brand-list {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 5px;
  /* Custom scrollbar */
}

.brand-filter-widget .brand-list::-webkit-scrollbar {
  width: 5px;
}

.brand-filter-widget .brand-list::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 10px;
}

.brand-filter-widget .brand-list::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 10px;
}

.brand-filter-widget .brand-list::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--default-color), transparent 60%);
}

.brand-filter-widget .brand-item {
  margin-bottom: 10px;
}

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

.brand-filter-widget .brand-item .form-check {
  display: flex;
  align-items: center;
  margin: 0;
}

.brand-filter-widget .brand-item .form-check-input {
  margin-top: 0;
  margin-right: 10px;
  cursor: pointer;
}

.brand-filter-widget .brand-item .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.brand-filter-widget .brand-item .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.brand-filter-widget .brand-item .form-check-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  color: var(--default-color);
}

.brand-filter-widget .brand-item .brand-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: auto;
}

.brand-filter-widget .brand-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.brand-filter-widget .brand-actions .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.brand-filter-widget .brand-actions .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.brand-filter-widget .brand-actions .btn-link {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.brand-filter-widget .brand-actions .btn-link:hover {
  color: var(--default-color);
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .brand-filter-widget .brand-list {
    max-height: 200px;
  }
}

.color-filter-widget .color-filter-content .color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.color-filter-widget .color-filter-content .color-options .color-option {
  margin: 0;
  padding: 0;
  position: relative;
  flex: 0 0 auto;
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch {
  transform: scale(1.15);
  border: 2px solid var(--accent-color);
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.9;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch[style*="background-color: #ffffff"]::after {
  background-color: var(--accent-color);
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch[style*="background-color: #f1c40f"]::after,
.color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch[style*="background-color: #2ecc71"]::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.color-filter-widget .color-filter-content .color-options .color-option .color-swatch {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.2s ease;
}

.color-filter-widget .color-filter-content .color-options .color-option .color-swatch:hover {
  transform: scale(1.1);
  border-color: var(--accent-color);
}

.color-filter-widget .color-filter-content .color-options .color-option .color-swatch[style*="background-color: #ffffff"] {
  border: 1px solid #e0e0e0;
}

.color-filter-widget .color-filter-content .filter-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.color-filter-widget .color-filter-content .filter-actions .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.color-filter-widget .color-filter-content .filter-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.color-filter-widget .color-filter-content .filter-actions .btn.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%);
}

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

.color-filter-widget .color-filter-content .filter-actions .btn.btn-outline-secondary {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.color-filter-widget .color-filter-content .filter-actions .btn.btn-outline-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
}

@media (max-width: 575.98px) {
  .color-filter-widget .color-filter-content .color-options {
    justify-content: center;
  }
}