/*--------------------------------------------------------------
# Font & Color Variables 
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  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: "Roboto",  sans-serif;
  --nav-font: "Poppins",  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 */
  --default-color: #364d59; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #52565e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #00a69c; /* 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. */
  --accent-secondary-color: #2bb573;
  --bs-primary: #00a69c;
  --bs-primary-rgb: rgb(0, 166, 156);
}

/* 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: rgba(255, 255, 255, 0.55);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #00a69c; /* 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: #f4f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.theme-background{

  --background-color: #243a76;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  /* background-color: var(--background-color); */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 0px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo{
  background-color: rgba(255, 255, 255, 1);
  border-radius: 25px;
  border-top-left-radius:0px;
  border-top-right-radius:0px;
  position: relative;
  transform: translateY(-20px);
  padding: 25px 20px 15px;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 68px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 24px;
  padding-left: 1px;
  font-family: var(--heading-font);
  color: var(--color-primary);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.95);
  --heading-color: #3c3c3c;
  --nav-color: #3c3c3c;
  --nav-hover-color: #3c3c3c;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.scrolled .header .logo{
  transform: translateY( 0px);
  padding: 20px 20px 20px;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .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;
    font-weight: 400;
    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;
  }
}

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    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);
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

.footer .container {
  position: relative;
}

.footer:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 68px;
  margin-right: 6px;
 filter: brightness(0) invert(1);
}

.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 .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h2 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.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-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: var(--surface-color);
}

.scroll-top i {
  font-size: 24px;
  color: var(--surface-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 buttons
--------------------------------------------------------------*/

.btn-primary {
   font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
 
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}


.btn-outline {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
 
  margin: 0px;
  border: 2px solid var(--accent-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.page-title {
  color: var(--default-color);
  background-color: var(--surface-color);
  background: url("../img/bredchrum.jpg") top center no-repeat;
  background-size: cover;
  background-position: center; 
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: absolute;
  inset: 0;
}
.page-title:after{
    content: "";
    background-color: var(--surface-color);
  background: url("../img/overlay.png") top center repeat;
  
  background-position: center; 
   position: absolute;
  inset: 0;
  z-index: 1;
}


.page-title h1 {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 15px;
  color: var(--contrast-color) ;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 5px 10px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  width: max-content;
  border-radius: 30px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}
.page-title .breadcrumb-item a{ color: var(--contrast-color) ;}
.page-title .breadcrumb-item.active{
  color: var(--contrast-color) ;
}
.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.title-wrapper,.breadcrumbs{position: relative;  z-index: 2; color: var(--contrast-color) ;}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 30px 0 30px 0;
}

.hero .info  .col-lg-8.text-center{
  padding: 15px;
 background: rgba(0,0,0, 0.5);
 border-radius: 20px;
 border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 30px 50px 30px 50px;
  }
  p.description{ display: none;}
}

.hero .info h1 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 42px;
  font-weight: 700;
  position: relative;
}

.hero .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h1 {
    font-size: 28px;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 1%);
  font-size: 16px;
}
 

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.hero .carousel-item::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    background: radial-gradient(circle at center,rgba(14, 13, 13, 0.5) 0,transparent 50%);
    z-index: 2;
}

 
.hero .carousel-item::after{
    content: "";
    background-color: var(--surface-color);
  background: url("../img/overlay.png") top center repeat;
 
  background-position: center; 
   
   position: absolute;
  inset: 0;
    z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 1%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}


/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started {
  color: var(--surface-color);
  background-color: var(--surface-color);  
  background-size: cover;
  font-size: 14px;
  position: relative;

}

.get-started .container {
  position: relative;
}

.get-started:before {
  content: "";
  background: color-mix(in srgb, var(--default-color), transparent 10%);
  position: absolute;
  inset: 0;
}
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  color: var(--contrast-color);
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .php-email-form {
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--contrast-color);
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-started .php-email-form input[type=text],
.get-started .php-email-form input[type=email],
.get-started .php-email-form input[type=tel],
.get-started .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-started .php-email-form input[type=text]:focus,
.get-started .php-email-form input[type=email]:focus,
.get-started .php-email-form input[type=tel]:focus,
.get-started .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-started .php-email-form input[type=text]::placeholder,
.get-started .php-email-form input[type=email]::placeholder,
.get-started .php-email-form input[type=tel]::placeholder,
.get-started .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.get-started .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--default-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--default-color), transparent 20%);
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# main-constructions Section
--------------------------------------------------------------*/
.main-constructions .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.main-constructions .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

.main-constructions .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.main-constructions .card-item .card-body {
  padding: 30px;
}

.main-constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.main-constructions .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.cta-section {
    background-color: var(--surface-color);
  background: url("../img/bredchrum.jpg") top center no-repeat;
  background-size: cover;
   background-attachment: fixed;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--surface-color)
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: .9
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    background: radial-gradient(circle at center,rgba(14, 13, 13, 0.75) 0,transparent 70%);
    
    z-index: 0;
}

 
.cta-section::after{
    content: "";
    background-color: var(--surface-color);
  background: url("../img/overlay.png") top center repeat;
 
  background-position: center; 
   
   position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section>* {
    position: relative;
    z-index: 1
}

@keyframes rotate {
    0% {
        transform: rotate(0) scale(1)
    }

    100% {
        transform: rotate(360deg) scale(1)
    }
}

 
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon.w-100.h-auto.mb-3 + h3{ 
  font-size: 18px;
  min-height: 54px;
  margin-bottom: 10px !important;
}

.services .service-item .icon.w-100.h-auto.mb-3 + h3 + a.readmore{ 
 margin-top: 10px;
}

.services .service-item .icon i {
  color: var(--heading-color);
  font-size: 42px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
  display: none;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .icon:before {
  background: var(--accent-color);
}

.services .service-item:hover h3 {
  border-color: var(--accent-color);
  color: var(--heading-color);
}

.services .service-item:hover .readmore {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--accent-color);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-tabs .nav-item {
    flex: 0 0 auto;
    width: 25%;
}

@media (max-width: 992px) {
.features .nav-tabs .nav-item {
    flex: 0 0 auto;
    width: 50%;
}
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 42px;
}

.features .nav-link h4 ,.features .nav-link h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-transform: capitalize;
 
}

@media (max-width: 575px) {
  .features .nav-link h4 ,.features .nav-link h3{
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  color: var(--surface-color);
  border-color: var(--accent-color);
}
.features .nav-link.active h4,.features .nav-link.active h3 {
 color: var(--surface-color);
}

.features .tab-content {
  margin-top: 0px;
}

.features .tab-pane{
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
   text-transform: capitalize;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.portfolio .portfolio-filters {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.portfolio .portfolio-filters::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio .portfolio-filters li {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.4s ease-out;
  letter-spacing: 0.5px;
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.4s ease-out;
  transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.portfolio .portfolio-card {
  background: var(--surface-color);
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio .portfolio-card:hover .image-container img {
  transform: scale(1.05);
}

.portfolio .portfolio-card:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .content h3 {
  color: var(--accent-color);
}

.portfolio .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 8px;
}

.portfolio .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.portfolio .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  backdrop-filter: blur(2px);
}

.portfolio .image-container .overlay-content {
  display: flex;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .portfolio .image-container .overlay-content {
  transform: translateY(0);
}

.portfolio .image-container .overlay-content a {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.portfolio .image-container .overlay-content a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .content {
  padding: 30px 0;
  text-align: center;
}

.portfolio .content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.portfolio .content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.3px;
}

 
  .portfolio .portfolio-grid .portfolio-card{
    margin-bottom: 1.5rem;
    height: calc(100% - 1.5rem);
  }
 

 
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img ,.testimonials .testimonial-item span.avatar-placeholder{
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--accent-color);
  background: var(--accent-color);
  color:var(--contrast-color);
  position: absolute;
  left: -45px;
  text-align: center;
  justify-content: center;
  font-size: 30px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

 
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--accent-color);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about .intro-content .section-badge i {
  font-size: 1rem;
}

.about .intro-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .about .intro-content h2 {
    font-size: 2rem;
  }
}

.about .intro-content .lead-text {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.57;
  margin-bottom: 1.2rem;
}

.about .intro-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about .founder-highlight {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  border-left: 4px solid var(--accent-color);
  margin-top: 2rem;
}

.about .founder-highlight .founder-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .about .founder-highlight{
    margin-bottom: 30px;
    padding: 1rem;
  }
  .about .founder-highlight .founder-image {
    width: 80px;
    height: 80px;
  }
}

.about .founder-highlight .founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .founder-highlight .founder-info {
  overflow: hidden;
}

.about .founder-highlight .founder-info blockquote {
  font-style: italic;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about .founder-highlight .founder-info .founder-details h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.about .founder-highlight .founder-info .founder-details span {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 500;
}

.about .visual-section {
  position: relative;
}

.about .visual-section .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about .visual-section .main-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .visual-section .main-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .about .visual-section .main-image img {
    height: 350px;
  }
}

.about .visual-section .experience-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--surface-color);
  padding: 1.2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent-color);
}

.about .visual-section .experience-badge .badge-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about .visual-section .experience-badge .badge-text {
  font-size: 0.8rem;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .visual-section .overlay-image {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .visual-section .overlay-image {
    display: none;
  }
}

.about .visual-section .overlay-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about .achievements-grid {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 10%));
  border-radius: 20px;
  padding: 2rem 2rem;
  margin: 3rem 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.about .achievements-grid .achievement-item {
  padding: 1.25rem;
}

.about .achievements-grid .achievement-item .achievement-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.about .achievements-grid .achievement-item .achievement-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about .achievements-grid .achievement-item .achievement-icon:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
}

.about .achievements-grid .achievement-item .achievement-icon:hover i {
  color: var(--contrast-color);
}

.about .achievements-grid .achievement-item .achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .about .achievements-grid .achievement-item .achievement-number {
    font-size: 2.5rem;
  }
}

.about .achievements-grid .achievement-item .achievement-label {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .timeline-section {
  margin: 5rem 0 0;
}

.about .timeline-section .section-header h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.about .timeline-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.about .timeline-section .timeline {
  position: relative;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline {
  padding: 2rem;
  }
}

.about .timeline-section .timeline .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item {
    padding-left: 60px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.about .timeline-section .timeline .timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
  text-align: right;
  padding-right: 2rem;
  padding-left: 0;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-right: 0;
  }
}

.about .timeline-section .timeline .timeline-item .timeline-year {
  width: 120px;
  height: 120px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item .timeline-year {
    position: absolute;
    left: -40px;
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }
}

.about .timeline-section .timeline .timeline-item .timeline-content {
  flex: 1;
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item .timeline-content {
    padding-left: 0;
    margin-top: 1rem;
  }
}

.about .timeline-section .timeline .timeline-item .timeline-content h4 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 0.8rem;
}

.about .timeline-section .timeline .timeline-item .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
}

.about .team-preview {
  text-align: center;
  margin: 5rem 0;
}

.about .team-preview h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.about .team-preview .team-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about .team-preview .team-member {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.about .team-preview .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about .team-preview .team-member .member-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--accent-color);
}

.about .team-preview .team-member .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .team-preview .team-member .member-info h5 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.about .team-preview .team-member .member-info span {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.about .team-preview .view-team-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.about .team-preview .view-team-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
}

.client-logo ul{
    border-radius: 6px;
    border: 1px solid #eaeaea;
}

.client-logo ul li {    
    padding: 10px 16px;
    border-right: 1px solid #eaeaea;   
    border-bottom: 1px solid #eaeaea;
}
.client-logo ul li img { width: 100%; height: auto; }
/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats-counter .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats-counter .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services-2 .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services-2 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.alt-services-2 .icon-box {
  margin-top: 30px;
}

.alt-services-2 .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.alt-services-2 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services-2 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-cards p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-cards ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--default-color);
  color: var(--contrast-color);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 30px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
  display: inline-block;
  background:var(--default-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
}

.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.service-details .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-card .contact-header {
  background: var(--default-color);
  color: var(--contrast-color);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
  padding: 30px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: scale(1.1);
}

.service-details .service-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .section-header .divider {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.service-details .service-content .details-content p:last-child {
  margin-bottom: 0;
}

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-details .service-content .service-features .feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  z-index: -1;
  transition: 0.4s;
}

.service-details .service-content .service-features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-card:hover:before {
  height: 100%;
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 26px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .service-details .service-content .service-features .feature-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .hero-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.project-details .hero-banner .banner-slider .swiper-wrapper {
  height: auto !important;
}

.project-details .hero-banner .banner-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.project-details .hero-banner .banner-slider .slider-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  background: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 6px 14px;
  border-radius: 30px;
}

.project-details .hero-banner .banner-slider .swiper-button-next,
.project-details .hero-banner .banner-slider .swiper-button-prev {
  position: static;
  width: 30px;
  height: 30px;
  margin: 0;
}

.project-details .hero-banner .banner-slider .swiper-button-next::after,
.project-details .hero-banner .banner-slider .swiper-button-prev::after {
  font-size: 14px;
  color: var(--contrast-color);
}

.project-details .hero-banner .banner-slider .swiper-pagination {
  position: static;
  width: auto;
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
}

.project-details .hero-banner .banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 24px;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 10%), transparent);
  z-index: 5;
}

.project-details .hero-banner .banner-overlay .tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.project-details .hero-banner .banner-overlay h2 {
  color: var(--contrast-color);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.project-details .detail-tabs .nav-tabs {
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  gap: 4px;
}

.project-details .detail-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  margin-bottom: -2px;
}

.project-details .detail-tabs .nav-tabs .nav-link i {
  font-size: 16px;
}

.project-details .detail-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
  border-bottom-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.project-details .detail-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.project-details .detail-tabs .tab-content {
  padding: 28px 0;
}

.project-details .detail-tabs .tab-content .summary {
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
  font-weight: 500;
}

.project-details .detail-tabs .tab-content p {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.project-details .photo-grid h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .photo-grid img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: all 0.3s;
  cursor: pointer;
}

.project-details .photo-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 80%);
}

.project-details .sticky-sidebar {
  position: sticky;
  top: 100px;
}

.project-details .sticky-sidebar .meta-header {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--default-color) 30%));
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.project-details .sticky-sidebar .meta-header .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .meta-header .status-badge i {
  font-size: 14px;
}

.project-details .sticky-sidebar .meta-header .meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.project-details .sticky-sidebar .meta-header .meta-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-details .sticky-sidebar .meta-header .meta-row i {
  font-size: 16px;
  opacity: 0.85;
}

.project-details .sticky-sidebar .specs-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .specs-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}

.project-details .sticky-sidebar .specs-card .spec-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.project-details .sticky-sidebar .specs-card .spec-row:last-child {
  margin-bottom: 0;
}

.project-details .sticky-sidebar .specs-card .spec-item {
  flex: 1;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.project-details .sticky-sidebar .specs-card .spec-item .spec-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.project-details .sticky-sidebar .specs-card .spec-item .spec-label {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.project-details .sticky-sidebar .capabilities-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .capabilities-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .sticky-sidebar .capabilities-card .capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag i {
  color: var(--accent-color);
  font-size: 15px;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
}

.project-details .sticky-sidebar .client-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
}

.project-details .sticky-sidebar .client-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .sticky-sidebar .client-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-details .sticky-sidebar .client-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.project-details .sticky-sidebar .client-card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-details .sticky-sidebar .client-card ul li:first-child {
  padding-top: 0;
}

.project-details .sticky-sidebar .client-card ul li .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.project-details .sticky-sidebar .client-card ul li .value {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.project-details .bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding: 24px 0;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.project-details .bottom-nav .btn-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.project-details .bottom-nav .btn-nav i {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.project-details .bottom-nav .btn-nav .btn-text {
  display: flex;
  flex-direction: column;
}

.project-details .bottom-nav .btn-nav .btn-text .btn-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.project-details .bottom-nav .btn-nav .btn-text .btn-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--default-color);
  transition: color 0.3s;
}

.project-details .bottom-nav .btn-nav.prev-btn:hover i {
  transform: translateX(-4px);
}

.project-details .bottom-nav .btn-nav.prev-btn:hover .btn-title {
  color: var(--accent-color);
}

.project-details .bottom-nav .btn-nav.next-btn {
  text-align: right;
}

.project-details .bottom-nav .btn-nav.next-btn:hover i {
  transform: translateX(4px);
}

.project-details .bottom-nav .btn-nav.next-btn:hover .btn-title {
  color: var(--accent-color);
}

.project-details .bottom-nav .btn-nav.center-btn {
  padding: 10px 28px;
  border-radius: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
}

.project-details .bottom-nav .btn-nav.center-btn i {
  color: var(--contrast-color);
}

.project-details .bottom-nav .btn-nav.center-btn span {
  color: var(--contrast-color);
}

.project-details .bottom-nav .btn-nav.center-btn:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 992px) {
  .project-details .hero-banner .banner-overlay h2 {
    font-size: 24px;
  }

  .project-details .sticky-sidebar {
    position: static;
    margin-top: 20px;
  }

  .project-details .detail-tabs .nav-tabs .nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .project-details .hero-banner .banner-overlay {
    padding: 30px 20px 18px;
  }

  .project-details .hero-banner .banner-overlay h2 {
    font-size: 20px;
  }

  .project-details .hero-banner .banner-overlay .tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .project-details .hero-banner .banner-slider .slider-controls {
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
  }

  .project-details .detail-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .project-details .detail-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 12px;
  }

  .project-details .sticky-sidebar .specs-card .spec-item .spec-number {
    font-size: 20px;
  }

  .project-details .sticky-sidebar .meta-header,
  .project-details .sticky-sidebar .specs-card,
  .project-details .sticky-sidebar .capabilities-card,
  .project-details .sticky-sidebar .client-card {
    padding: 20px;
  }

  .project-details .bottom-nav {
    flex-direction: column;
    gap: 16px;
  }

  .project-details .bottom-nav .btn-nav.center-btn {
    order: -1;
  }

  .project-details .bottom-nav .btn-nav.prev-btn .btn-text .btn-title,
  .project-details .bottom-nav .btn-nav.next-btn .btn-text .btn-title {
    font-size: 13px;
  }
}


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 15px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -15px -15px 15px -15px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 15px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}

.pagination-2 nav {
  position: relative;
}

.pagination-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.pagination-2 li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.pagination-2 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%);
}

.pagination-2 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%);
}

.pagination-2 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%);
}

.pagination-2 li a i {
  font-size: 14px;
}

.pagination-2 li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .pagination-2 ul {
    gap: 4px;
  }

  .pagination-2 li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  
  margin: 60px auto 0;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: -60px auto 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.blog-comment-form form {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9375rem;
}

.blog-comment-form .input-group {
  margin-bottom: 1rem;
  position: relative;
}

.blog-comment-form .input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown)+.error-text,
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown)+.error-text {
  opacity: 1;
  transform: translateY(0);
}

.blog-comment-form .input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .input-group .error-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #dc3545;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.blog-comment-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comment-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.blog-comment-form button[type=submit]:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 1.5rem;
  }

  .blog-comment-form .form-header h3 {
    font-size: 1.5rem;
  }

  .blog-comment-form button[type=submit] {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}

/*--------------------------------------------------------------
# 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;
  }
}


/*--------------------------------------------------------------
# Product Categories Widget Widget
--------------------------------------------------------------*/
.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 .category-toggle:not(.collapsed) .bi-chevron-down {
  display: none;
}

.product-categories-widget .category-tree .category-item .category-header .category-toggle:not(.collapsed) .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 Widget
--------------------------------------------------------------*/
.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%);
}

/*--------------------------------------------------------------
# Filter Widget Widget
--------------------------------------------------------------*/
.filter-widget .brand-filter-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.filter-widget .brand-search {
  position: relative;
  margin-bottom: 5px;
}

.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;
}

.filter-widget .brand-search input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.filter-widget .brand-search input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.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;
}

.filter-widget .brand-list {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 5px;
  /* Custom scrollbar */
}

.filter-widget .brand-list::-webkit-scrollbar {
  width: 5px;
}

.filter-widget .brand-list::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 10px;
}

.filter-widget .brand-list::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 10px;
}

.filter-widget .brand-list::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--default-color), transparent 60%);
}

.filter-widget .brand-item {
  margin-bottom: 10px;
}

.filter-widget .brand-item:last-child {
  margin-bottom: 0;
}

.filter-widget .brand-item .form-check {
  display: flex;
  align-items: center;
  margin: 0;
}

.filter-widget .brand-item .form-check-input {
  margin-top: 0;
  margin-right: 10px;
  cursor: pointer;
}

.filter-widget .brand-item .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.filter-widget .brand-item .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.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);
}

.filter-widget .brand-item .brand-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: auto;
}

.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%);
}

.filter-widget .brand-actions .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.filter-widget .brand-actions .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.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;
}

.filter-widget .brand-actions .btn-link:hover {
  color: var(--default-color);
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .filter-widget .brand-list {
    max-height: 200px;
  }
}

/*--------------------------------------------------------------
# Filter Widget 2 Widget
--------------------------------------------------------------*/
.filter-widget-2 .color-filter-content .color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.filter-widget-2 .color-filter-content .color-options .color-option {
  margin: 0;
  padding: 0;
  position: relative;
  flex: 0 0 auto;
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filter-widget-2 .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);
}

.filter-widget-2 .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);
}

.filter-widget-2 .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);
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch[style*="background-color: #f1c40f"]::after,
.filter-widget-2 .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);
}

.filter-widget-2 .color-filter-content .color-options .color-option .form-check-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.filter-widget-2 .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;
}

.filter-widget-2 .color-filter-content .color-options .color-option .color-swatch:hover {
  transform: scale(1.1);
  border-color: var(--accent-color);
}

.filter-widget-2 .color-filter-content .color-options .color-option .color-swatch[style*="background-color: #ffffff"] {
  border: 1px solid #e0e0e0;
}

.filter-widget-2 .color-filter-content .filter-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.filter-widget-2 .color-filter-content .filter-actions .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.filter-widget-2 .color-filter-content .filter-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.filter-widget-2 .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%);
}

.filter-widget-2 .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%);
}

.filter-widget-2 .color-filter-content .filter-actions .btn.btn-outline-secondary {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.filter-widget-2 .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) {
  .filter-widget-2 .color-filter-content .color-options {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Filter Widget 3 Widget
--------------------------------------------------------------*/
.filter-widget-3 .brand-filter-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.filter-widget-3 .brand-search {
  position: relative;
  margin-bottom: 5px;
}

.filter-widget-3 .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;
}

.filter-widget-3 .brand-search input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.filter-widget-3 .brand-search input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.filter-widget-3 .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;
}

.filter-widget-3 .brand-list {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 5px;
  /* Custom scrollbar */
}

.filter-widget-3 .brand-list::-webkit-scrollbar {
  width: 5px;
}

.filter-widget-3 .brand-list::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 10px;
}

.filter-widget-3 .brand-list::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 10px;
}

.filter-widget-3 .brand-list::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--default-color), transparent 60%);
}

.filter-widget-3 .brand-item {
  margin-bottom: 10px;
}

.filter-widget-3 .brand-item:last-child {
  margin-bottom: 0;
}

.filter-widget-3 .brand-item .form-check {
  display: flex;
  align-items: center;
  margin: 0;
}

.filter-widget-3 .brand-item .form-check-input {
  margin-top: 0;
  margin-right: 10px;
  cursor: pointer;
}

.filter-widget-3 .brand-item .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.filter-widget-3 .brand-item .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.filter-widget-3 .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);
}

.filter-widget-3 .brand-item .brand-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: auto;
}

.filter-widget-3 .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%);
}

.filter-widget-3 .brand-actions .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.filter-widget-3 .brand-actions .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.filter-widget-3 .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;
}

.filter-widget-3 .brand-actions .btn-link:hover {
  color: var(--default-color);
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .filter-widget-3 .brand-list {
    max-height: 200px;
  }
}



/*--------------------------------------------------------------
# Category Header Section
--------------------------------------------------------------*/
.category-header {
  padding-bottom: 0;
}

.category-header .controls-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 94%);
  margin-bottom: 16px;
}

.category-header .controls-header {
  padding: 16px 24px;
}

.category-header .controls-divider {
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-header .controls-filters {
  padding: 16px 24px;
}

.category-header .search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.category-header .search-field i {
  position: absolute;
  left: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.category-header .search-field input {
  width: 100%;
  height: 40px;
  padding: 8px 12px 8px 36px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 6px;
  background-color: var(--background-color);
  font-size: 14px;
  color: var(--default-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-header .search-field input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.category-header .search-field input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.category-header .view-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-header .view-switcher .switcher-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  white-space: nowrap;
}

.category-header .view-switcher .switcher-group {
  display: inline-flex;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 6px;
  overflow: hidden;
}

.category-header .view-switcher .switcher-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
}

.category-header .view-switcher .switcher-btn:not(:last-child) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.category-header .view-switcher .switcher-btn:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
}

.category-header .view-switcher .switcher-btn.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.category-header .view-switcher .switcher-btn:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.category-header .search-submit {
  width: 100%;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.category-header .search-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 12%);
}

.category-header .search-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.category-header .filter-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.category-header .filter-field .form-select {
  width: 100%;
  height: 40px;
  padding: 8px 32px 8px 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 6px;
  background-color: var(--background-color);
  font-size: 14px;
  font-weight: 400;
  color: var(--default-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-header .filter-field .form-select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.category-header .clear-filters-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 40px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-header .clear-filters-btn i {
  font-size: 14px;
}

.category-header .clear-filters-btn:hover {
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.category-header .clear-filters-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-header .active-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}

.category-header .active-tags .tags-label {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  white-space: nowrap;
}

.category-header .active-tags .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-header .active-tags .tag-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px 4px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.category-header .active-tags .tag-item .tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  color: var(--accent-color);
  cursor: pointer;
  border-radius: 4px;
  padding: 0;
  transition: background-color 0.2s ease;
}

.category-header .active-tags .tag-item .tag-remove i {
  font-size: 14px;
}

.category-header .active-tags .tag-item .tag-remove:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.category-header .active-tags .reset-all {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.category-header .active-tags .reset-all:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
}

@media (max-width: 768px) {
  .category-header .controls-header {
    padding: 16px;
  }

  .category-header .controls-filters {
    padding: 16px;
  }

  .category-header .view-switcher {
    justify-content: flex-start;
  }

  .category-header .active-tags .reset-all {
    margin-left: 0;
    width: 100%;
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Category Product List Section
--------------------------------------------------------------*/
.category-product-list .product-tile {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-product-list .product-tile:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-product-list .product-tile:hover .tile-actions {
  opacity: 1;
  transform: translateX(0);
}

.category-product-list .tile-visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.category-product-list .tile-visual a {
  /* display: block;
  width: 100%;
  height: 100%; */
}

.category-product-list .tile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-product-list .tile-visual:hover img {
  transform: scale(1.04);
}

.category-product-list .tile-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s ease;
  z-index: 2;
}

.category-product-list .action-btn {
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--surface-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
}

.category-product-list .action-btn i {
  font-size: 14px;
  color: var(--default-color);
  transition: color 0.2s ease;
}

.category-product-list .action-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.category-product-list .action-btn:hover i {
  color: var(--contrast-color);
}

.category-product-list .action-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-badges {
      position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px;
    border-radius: 20px;
}

.category-product-list .status-tag {
 
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  z-index: 2;
}

.category-product-list .status-tag.tag-fresh {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.category-product-list .status-tag.tag-discount {
  background: color-mix(in srgb, #e74c3c, transparent 90%);
  color: #e74c3c;
  border: 1px solid color-mix(in srgb, #e74c3c, transparent 70%);
}

.category-product-list .tile-body {
  padding: 16px 16px 0;
}

.category-product-list .tile-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 6px;
}

.category-product-list .tile-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.category-product-list .tile-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.category-product-list .tile-title a:hover {
  color: var(--accent-color);
}

.category-product-list .tile-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.category-product-list .tile-rating .stars {
  display: flex;
  gap: 1px;
}

.category-product-list .tile-rating .stars i {
  font-size: 12px;
  color: #f5a623;
}

.category-product-list .tile-rating .count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.category-product-list .tile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-product-list .tile-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

del {
    color: #e74c3c;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #e74c3c;
}

.category-product-list .tile-price .original-price {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 400;
}

.category-product-list .add-cart-btn {
  padding: 8px 16px;
  border: none;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.category-product-list .add-cart-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
}

.category-product-list .add-cart-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}
.category-product-list .add-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

@media (max-width: 768px) {
  .category-product-list .tile-body {
    padding: 12px 12px 0;
  }

  .category-product-list .tile-title {
    font-size: 13px;
  }

  .category-product-list .tile-footer {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .category-product-list .add-cart-btn {
    width: 100%;
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
  }
  

  .category-product-list .tile-price {
    font-size: 14px;
  }

  .category-product-list .tile-actions {
    opacity: 1;
    transform: translateX(0);
  }

  .category-product-list .action-btn {
    width: 32px;
    height: 32px;
  }

  .category-product-list .action-btn i {
    font-size: 12px;
  }

  .category-product-list .status-tag {
    font-size: 10px;
    padding: 1px 8px;
  }

  .category-product-list .tile-badge {
    font-size: 10px;
  }

  .category-product-list .tile-rating .stars i {
    font-size: 10px;
  }

  .category-product-list .tile-rating .count {
    font-size: 10px;
  }
}

 




/*--------------------------------------------------------------
# Category Pagination Section
--------------------------------------------------------------*/
.category-pagination {
  padding-top: 0;
}

.category-pagination .pagination-bar {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 12px 24px;
  background-color: var(--surface-color);
  box-shadow: 0 1px 2px color-mix(in srgb, var(--default-color), transparent 95%);
}

.category-pagination .results-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
  line-height: 1.5;
}

.category-pagination .results-label .current-page,
.category-pagination .results-label .total-pages {
  font-weight: 600;
  color: var(--default-color);
}

.category-pagination .page-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-pagination .page-link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.category-pagination .page-link-item:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.category-pagination .page-link-item.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  border-color: var(--accent-color);
}

.category-pagination .page-link-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.category-pagination .page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  user-select: none;
  letter-spacing: 2px;
}

.category-pagination .page-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--default-color);
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: transparent;
  transition: all 0.2s ease;
}

.category-pagination .page-control i {
  font-size: 14px;
  line-height: 1;
}

.category-pagination .page-control:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.category-pagination .page-control:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.category-pagination .goto-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.category-pagination .goto-group label {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  white-space: nowrap;
}

.category-pagination .goto-group input {
  width: 56px;
  height: 36px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  background-color: var(--background-color);
  outline: none;
  transition: all 0.2s ease;
  -moz-appearance: textfield;
}

.category-pagination .goto-group input::-webkit-outer-spin-button,
.category-pagination .goto-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.category-pagination .goto-group input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.category-pagination .goto-group .goto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  text-decoration: none;
  transition: all 0.2s ease;
}

.category-pagination .goto-group .goto-btn:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.category-pagination .goto-group .goto-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .category-pagination .pagination-bar {
    padding: 16px;
  }

  .category-pagination .results-label {
    text-align: center;
    font-size: 13px;
  }

  .category-pagination .goto-group {
    justify-content: center;
  }

  .category-pagination .page-link-item,
  .category-pagination .page-ellipsis,
  .category-pagination .page-control {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .category-pagination .goto-group input {
    width: 48px;
    height: 32px;
  }

  .category-pagination .goto-group .goto-btn {
    height: 32px;
    padding: 0 12px;
    font-size: 13px;
  }
}



/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .image-showcase .main-image-container {
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  aspect-ratio: 1;
}

.product-details .image-showcase .main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: crosshair;
}

.product-details .image-showcase .main-image-container .discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc2626;
  color: var(--contrast-color);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.3px;
}

.product-details .image-showcase .main-image-container .image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 92%);
}

.product-details .image-showcase .main-image-container .image-nav-btn.prev-image {
  left: 12px;
}

.product-details .image-showcase .main-image-container .image-nav-btn.next-image {
  right: 12px;
}

.product-details .image-showcase .main-image-container .image-nav-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.product-details .image-showcase .main-image-container .image-nav-btn i {
  font-size: 14px;
}

.product-details .image-showcase .main-image-container:hover .image-nav-btn {
  opacity: 1;
}

.product-details .image-showcase .thumb-strip {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-details .image-showcase .thumb-strip .thumb-cell {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.product-details .image-showcase .thumb-strip .thumb-cell:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.product-details .image-showcase .thumb-strip .thumb-cell.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details .image-showcase .thumb-strip .thumb-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details .product-detail-card {
  padding: 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 95%);
}

@media (max-width: 992px) {
  .product-details .product-detail-card {
    padding: 20px;
  }
}

.product-details .product-detail-card .detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-details .product-detail-card .detail-header .type-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}
.product-details .product-detail-card .product-detail-rating{ 
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.product-details .product-detail-card .product-detail-rating .stars {
  display: flex;
  align-items: center;
}

.product-details .product-detail-card .product-detail-rating .stars i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.product-details .product-detail-card .product-detail-rating  .count {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 4px;
}


.product-details .product-detail-card .detail-header .stock-indicator {
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  border:1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 4px 10px;
}

.product-details .product-detail-card .detail-header .stock-indicator i {
  font-size: 6px;
  vertical-align: middle;
  margin-right: 4px;
}

.product-details .product-detail-card .product-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

@media (min-width: 1200px) {
  .product-details .product-detail-card .product-heading {
    font-size: 1.625rem;
  }
}

.product-details .product-detail-card .review-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 13px;
}

.product-details .product-detail-card .review-summary .stars-inline {
  display: flex;
  gap: 1px;
}

.product-details .product-detail-card .review-summary .stars-inline i {
  color: #f59e0b;
  font-size: 13px;
}

.product-details .product-detail-card .review-summary .score-text {
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-detail-card .review-summary .divider-dot {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.product-details .product-detail-card .review-summary .reviews-anchor {
  color: var(--accent-color);
  font-size: 13px;
}

.product-details .product-detail-card .review-summary .reviews-anchor:hover {
  text-decoration: underline;
}

.product-details .product-detail-card .review-summary .units-left {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.product-details .product-detail-card .pricing-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 16px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-detail-card .pricing-area .price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-details .product-detail-card .pricing-area .price-now {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.product-details .product-detail-card .pricing-area .price-was {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.product-details .product-detail-card .pricing-area .save-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, #16a34a, transparent 90%);
  color: #16a34a;
  border: 1px solid color-mix(in srgb, #16a34a, transparent 70%);
}

.product-details .product-detail-card .summary-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-details .product-detail-card .separator {
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 16px;
}

.product-details .product-detail-card .variant-picker {
  margin-bottom: 20px;
}

.product-details .product-detail-card .variant-picker .picker-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.product-details .product-detail-card .variant-picker .picker-label .chosen-variant {
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-detail-card .variant-picker .color-dots {
  display: flex;
  gap: 8px;
}

.product-details .product-detail-card .variant-picker .color-dots .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-details .product-detail-card .variant-picker .color-dots .dot i {
  color: var(--contrast-color);
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
  text-shadow: 0 1px 2px color-mix(in srgb, #000, transparent 50%);
}

.product-details .product-detail-card .variant-picker .color-dots .dot:hover {
  transform: scale(1.1);
}

.product-details .product-detail-card .variant-picker .color-dots .dot.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.product-details .product-detail-card .variant-picker .color-dots .dot.active i {
  opacity: 1;
}

.product-details .product-detail-card .action-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

@media (max-width: 576px) {
  .product-details .product-detail-card .action-row {
    flex-wrap: wrap;
  }
}

.product-details .product-detail-card .action-row .quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface-color);
}

.product-details .product-detail-card .action-row .quantity-selector .quantity-btn {
  width: 36px;
  height: 40px;
  background: none;
  border: none;
  color: var(--default-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.product-details .product-detail-card .action-row .quantity-selector .quantity-btn:hover {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.product-details .product-detail-card .action-row .quantity-selector .quantity-input {
  width: 44px;
  height: 40px;
  text-align: center;
  border: none;
  background: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-color);
}

.product-details .product-detail-card .action-row .quantity-selector .quantity-input:focus {
  outline: none;
}

.product-details .product-detail-card .action-row .primary-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease;
}

.product-details .product-detail-card .action-row .primary-action-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
}

.product-details .product-detail-card .action-row .primary-action-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details .product-detail-card .action-row .wishlist-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 6px;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 0;
  transition: all 0.2s ease;
}

.product-details .product-detail-card .action-row .wishlist-toggle:hover {
  border-color: #dc2626;
  color: #dc2626;
  background: color-mix(in srgb, #dc2626, transparent 95%);
}

.product-details .product-detail-card .action-row .wishlist-toggle i {
  font-size: 16px;
}

.product-details .product-detail-card .checkout-now-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  color: var(--default-color);
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}

.product-details .product-detail-card .checkout-now-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.product-details .product-detail-card .guarantee-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
}

.product-details .product-detail-card .guarantee-bar .guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-detail-card .guarantee-bar .guarantee-item:nth-child(2n) {
  border-right: none;
}

.product-details .product-detail-card .guarantee-bar .guarantee-item:nth-child(n+3) {
  border-bottom: none;
}

.product-details .product-detail-card .guarantee-bar .guarantee-item i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.product-details .info-tabs {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 95%);
  overflow: hidden;
}

.product-details .info-tabs .tab-nav {
  display: flex;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-details .info-tabs .tab-nav .nav-link {
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-bottom: -1px;
}

@media (max-width: 576px) {
  .product-details .info-tabs .tab-nav .nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }
}

.product-details .info-tabs .tab-nav .nav-link:hover {
  color: var(--heading-color);
}

.product-details .info-tabs .tab-nav .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: var(--surface-color);
}

.product-details .info-tabs .tab-content .tab-pane {
  padding: 32px;
}

@media (max-width: 768px) {
  .product-details .info-tabs .tab-content .tab-pane {
    padding: 20px;
  }
}

.product-details .info-tabs .desc-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-details .info-tabs .desc-content>.row>.col-lg-8>p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-details .info-tabs .desc-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.product-details .info-tabs .desc-content .highlight-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background: var(--surface-color);
  transition: all 0.2s ease;
  height: 100%;
}

.product-details .info-tabs .desc-content .highlight-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, #000, transparent 94%);
}

.product-details .info-tabs .desc-content .highlight-card>i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-details .info-tabs .desc-content .highlight-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.product-details .info-tabs .desc-content .highlight-card p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.5;
}

.product-details .info-tabs .desc-content .included-box {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

.product-details .info-tabs .desc-content .included-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.product-details .info-tabs .desc-content .included-box h4 i {
  color: var(--accent-color);
  margin-right: 6px;
}

.product-details .info-tabs .desc-content .included-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details .info-tabs .desc-content .included-box ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.product-details .info-tabs .desc-content .included-box ul li:last-child {
  border-bottom: none;
}

.product-details .info-tabs .desc-content .included-box ul li i {
  color: #16a34a;
  font-size: 14px;
}

.product-details .info-tabs .specs-content .spec-block h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid var(--accent-color);
}

.product-details .info-tabs .specs-content .spec-block .data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  overflow: hidden;
}

.product-details .info-tabs .specs-content .spec-block .data-table tr {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.product-details .info-tabs .specs-content .spec-block .data-table tr:last-child {
  border-bottom: none;
}

.product-details .info-tabs .specs-content .spec-block .data-table tr:nth-child(even) {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.product-details .info-tabs .specs-content .spec-block .data-table tr td {
  padding: 8px 12px;
  font-size: 13px;
}

.product-details .info-tabs .specs-content .spec-block .data-table tr td:first-child {
  font-weight: 500;
  color: var(--heading-color);
  width: 45%;
  background-color: #f5fbfa;
}

.product-details .info-tabs .specs-content .spec-block .data-table tr td:last-child {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  background-color: #f9f9f9;
}

.product-details .product-details-tabs .product-reviews .reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (min-width: 768px) {
  .product-details .product-details-tabs .product-reviews .reviews-summary {
    flex-direction: row;
  }
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-stars {
  margin: 0.5rem 0;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 1.25rem;
  margin-right: 2px;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown {
  flex: 2;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label {
  width: 60px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress {
  flex: 1;
  height: 8px;
  margin: 0 0.75rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress .progress-bar {
  background-color: #FFD700;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-count {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: right;
}

.product-details .product-details-tabs .product-reviews .review-form-container {
  margin-bottom: 3rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-details .product-details-tabs .product-reviews .review-form-container h4 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

.product-details .product-details-tabs .product-reviews .review-form-container h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.product-details .product-details-tabs .product-reviews .review-form-container .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.product-details .product-details-tabs .product-reviews .review-form-container .form-control {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}

.product-details .product-details-tabs .product-reviews .review-form-container .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details .product-details-tabs .product-reviews .review-form-container .form-text {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating input[type=radio] {
  display: none;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating label {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0 0.25rem;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating label i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.2s ease;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating input[type=radio]:checked~label i,
.product-details .product-details-tabs .product-reviews .review-form-container .star-rating label:hover i,
.product-details .product-details-tabs .product-reviews .review-form-container .star-rating label:hover~label i {
  color: #FFD700;
}

.product-details .product-details-tabs .product-reviews .review-form-container .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.product-details .product-details-tabs .product-reviews .review-form-container .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%);
}

.product-details .product-details-tabs .product-reviews .reviews-list h4 {
  margin-bottom: 1.5rem;
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--surface-color);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .review-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.product-details .product-details-tabs .product-reviews .reviews-list .load-more-btn {
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  border-color: var(--accent-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.product-details .product-details-tabs .product-reviews .reviews-list .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}


.product-related {
       padding-top: 10px;
  }

  .product-related .product-card {
    border-radius: 8px;
    padding: 15px;
    overflow: hidden;
        background: var(--surface-color);
    border: 1px solid
 color-mix(in srgb, var(--default-color), transparent 88%);
  }

  .product-related .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .product-related .product-card .product-image {
    height: 160px;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .product-related .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }

  .product-related .product-card .product-image .badge-new,
  .product-related .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;
  }

  .product-related .product-card .product-image .badge-new {
    background-color: #28a745;
    color: white;
  }

  .product-related .product-card .product-image .badge-sale {
    background-color: #dc3545;
    color: white;
  }

  .product-related .product-card .product-info {
    padding: 15px;
  }

  .product-related .product-card .product-info h5 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
  }

  .product-related .product-card .product-info .price {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .product-related .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;
  }

  .product-related .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;
  }

  .product-related .product-card .product-info .btn-view:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

/*--------------------------------------------------------------
# Cart Section
--------------------------------------------------------------*/
.cart .cart-table {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--surface-color);
}

.cart .table-head {
  padding: 12px 24px;
  padding-right: 56px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}

.cart .cart-item {
  position: relative;
  padding: 20px 24px;
  padding-right: 56px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: background-color 0.2s ease;
}

.cart .cart-item:last-child {
  border-bottom: none;
}

.cart .cart-item:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
}

.cart .cart-item .remove-btn {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart .cart-item .remove-btn:hover {
  background-color: color-mix(in srgb, #dc3545, transparent 90%);
  color: #dc3545;
}

.cart .cart-item .remove-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.cart .cart-item .product-img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.cart .cart-item .product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart .cart-item .product-meta .product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart .cart-item .product-meta .product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.cart .cart-item .product-meta .product-tags .tag-item {
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.cart .cart-item .product-meta .discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 12px;
  background-color: color-mix(in srgb, #28a745, transparent 90%);
  color: #28a745;
  border: 1px solid color-mix(in srgb, #28a745, transparent 70%);
}

.cart .cart-item .price-col .current-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  display: block;
}

.cart .cart-item .price-col .original-price {
  font-size: 12px;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
  display: block;
}

.cart .cart-item .quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 6px;
  overflow: hidden;
}

.cart .cart-item .quantity-selector .quantity-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart .cart-item .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.cart .cart-item .quantity-selector .quantity-btn:focus {
  outline: none;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.cart .cart-item .quantity-selector .quantity-input {
  width: 36px;
  height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.cart .cart-item .quantity-selector .quantity-input:focus {
  outline: none;
}

.cart .cart-item .quantity-selector .quantity-input::-webkit-inner-spin-button,
.cart .cart-item .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart .cart-item .row-total {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .cart .cart-item {
    padding-right: 48px;
  }

  .cart .cart-item .remove-btn {
    top: 16px;
    right: 8px;
    transform: none;
  }

  .cart .cart-item .price-col .current-price,
  .cart .cart-item .price-col .row-total,
  .cart .cart-item .total-col .current-price,
  .cart .cart-item .total-col .row-total {
    font-size: 13px;
  }
}

.cart .cart-actions {
  margin-top: 16px;
  padding: 8px 0;
}

.cart .cart-actions .action-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart .cart-actions .action-link i {
  transition: transform 0.2s ease;
}

.cart .cart-actions .action-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.cart .cart-actions .action-link:hover i {
  transform: translateX(-3px);
}

.cart .cart-actions .action-clear {
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: 1px solid color-mix(in srgb, #dc3545, transparent 50%);
  color: #dc3545;
  padding: 6px 16px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart .cart-actions .action-clear:hover {
  background-color: #dc3545;
  color: var(--contrast-color);
  border-color: #dc3545;
}

.cart .cart-actions .action-clear:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, #dc3545, transparent 80%);
}

.cart .summary-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 6.5rem;
}

.cart .summary-card .summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .summary-card .summary-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.cart .summary-card .summary-header .items-count {
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.cart .summary-card .summary-body {
  padding: 24px;
}

.cart .summary-card .coupon-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.cart .summary-card .coupon-section .coupon-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.cart .summary-card .coupon-section .input-group .form-control {
  height: 40px;
  border-radius: 6px 0 0 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  font-size: 14px;
  padding: 8px 12px;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.cart .summary-card .coupon-section .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%);
}

.cart .summary-card .coupon-section .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.cart .summary-card .coupon-section .input-group .coupon-btn {
  border-radius: 0 6px 6px 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  transition: background 0.2s ease;
}

.cart .summary-card .coupon-section .input-group .coupon-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.cart .summary-card .coupon-section .input-group .coupon-btn:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.cart .summary-card .summary-lines {
  margin-bottom: 16px;
}

.cart .summary-card .summary-lines .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}

.cart .summary-card .summary-lines .summary-row .label-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cart .summary-card .summary-lines .summary-row .value-text {
  font-weight: 600;
  color: var(--heading-color);
}

.cart .summary-card .summary-lines .summary-row.discount-row .value-text {
  color: #28a745;
}

.cart .summary-card .summary-lines .shipping-options {
  padding: 8px 0 8px 4px;
}

.cart .summary-card .summary-lines .shipping-options .form-check {
  margin-bottom: 6px;
}

.cart .summary-card .summary-lines .shipping-options .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart .summary-card .summary-lines .shipping-options .form-check .form-check-input:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.cart .summary-card .summary-lines .shipping-options .form-check .form-check-label {
  font-size: 13px;
  color: var(--default-color);
}

.cart .summary-card .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.cart .summary-card .summary-total span:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.cart .summary-card .summary-total .total-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.cart .summary-card .proceed-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
  margin-bottom: 20px;
}

.cart .summary-card .proceed-btn i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.cart .summary-card .proceed-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  color: var(--contrast-color);
}

.cart .summary-card .proceed-btn:hover i {
  transform: translateX(3px);
}

.cart .summary-card .proceed-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.cart .summary-card .payment-info {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.cart .summary-card .payment-info .payment-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 8px;
  display: block;
}

.cart .summary-card .payment-info .payment-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cart .summary-card .payment-info .payment-icons i {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
  transition: color 0.2s ease;
}

.cart .summary-card .payment-info .payment-icons i:hover {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .cart .summary-card {
    position: static;
  }
}


/*--------------------------------------------------------------
# Checkout Section
--------------------------------------------------------------*/
.checkout .step-indicator {
  gap: 0;
}

.checkout .step-indicator .step-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.2s ease;
}

.checkout .step-indicator .step-pill .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.2s ease;
}

.checkout .step-indicator .step-pill .step-text {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.2s ease;
}

.checkout .step-indicator .step-pill.active {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.checkout .step-indicator .step-pill.active .step-num {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.checkout .step-indicator .step-pill.active .step-text {
  color: var(--accent-color);
  font-weight: 600;
}

.checkout .step-indicator .step-connector {
  width: 32px;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .checkout .step-indicator .step-text {
    display: none;
  }

  .checkout .step-indicator .step-pill {
    padding: 8px;
  }

  .checkout .step-indicator .step-connector {
    width: 16px;
  }
}

.checkout .checkout-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
}

@media (max-width: 768px) {
  .checkout .checkout-card {
    padding: 20px;
  }
}

.checkout .section-divider {
  border: none;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin: 32px 0;
}

.checkout .form-section .section-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout .form-section .section-label .label-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.checkout .form-section .section-label h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.checkout .form-section .section-label p {
  margin: 2px 0 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout .form-section .section-fields .field-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.checkout .form-section .section-fields .field-group .form-control,
.checkout .form-section .section-fields .field-group .form-select {
  height: 40px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 6px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.2s ease;
}

.checkout .form-section .section-fields .field-group .form-control:hover,
.checkout .form-section .section-fields .field-group .form-select:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.checkout .form-section .section-fields .field-group .form-control:focus,
.checkout .form-section .section-fields .field-group .form-select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.checkout .form-section .section-fields .field-group .form-control::placeholder,
.checkout .form-section .section-fields .field-group .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.checkout .form-section .section-fields .field-group .form-select {
  background-position: right 12px center;
  padding-right: 36px;
}

.checkout .form-section .section-fields .field-group .input-with-icon {
  position: relative;
}

.checkout .form-section .section-fields .field-group .input-with-icon .trailing-icons {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
}

.checkout .form-section .section-fields .field-group .input-with-icon .trailing-icons i {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}

.checkout .form-section .section-fields .field-group .input-with-icon .trailing-hint {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  cursor: pointer;
  transition: color 0.2s ease;
}

.checkout .form-section .section-fields .field-group .input-with-icon .trailing-hint:hover {
  color: var(--accent-color);
}

.checkout .form-section .section-fields .field-group .input-with-icon input {
  padding-right: 64px;
}

.checkout .form-section .section-fields .form-check .form-check-input {
  width: 16px;
  height: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 65%);
  border-radius: 4px;
  background-color: var(--surface-color);
  cursor: pointer;
}

.checkout .form-section .section-fields .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkout .form-section .section-fields .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 90%);
}

.checkout .form-section .section-fields .form-check .form-check-label {
  font-size: 14px;
  cursor: pointer;
}

.checkout .form-section .section-fields .form-check .form-check-label a {
  font-weight: 600;
}

.checkout .form-section .section-fields .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.checkout .method-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.checkout .method-tabs .method-tab {
  flex: 1;
  cursor: pointer;
}

.checkout .method-tabs .method-tab input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkout .method-tabs .method-tab .tab-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  transition: all 0.2s ease;
}

.checkout .method-tabs .method-tab .tab-inner i {
  font-size: 1.1rem;
}

.checkout .method-tabs .method-tab.active .tab-inner,
.checkout .method-tabs .method-tab input:checked+.tab-inner {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.checkout .method-tabs .method-tab:hover .tab-inner {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 576px) {
  .checkout .method-tabs {
    flex-direction: column;
  }
}

.checkout .method-content.d-none {
  display: none;
}

.checkout .method-content .alt-method-msg {
  padding: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 6px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.checkout .method-content .alt-method-msg i {
  color: var(--accent-color);
}

.checkout .confirm-area .agree-check {
  margin-bottom: 20px;
}

.checkout .confirm-area .agree-check .form-check-label {
  font-size: 13px;
}

.checkout .confirm-area .order-success {
  padding: 12px 16px;
  background-color: color-mix(in srgb, #22c55e, transparent 92%);
  border: 1px solid color-mix(in srgb, #22c55e, transparent 80%);
  border-radius: 6px;
  color: #16a34a;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

.checkout .confirm-area .order-success.d-none {
  display: none;
}

.checkout .confirm-area .place-order-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  transition: all 0.2s ease;
}

.checkout .confirm-area .place-order-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 12%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.checkout .confirm-area .place-order-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.checkout .confirm-area .place-order-btn:active {
  transform: scale(0.99);
}

.checkout .order-summary-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
  position: sticky;
  top: 100px;
}

.checkout .order-summary-card .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .order-summary-card .summary-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.checkout .order-summary-card .summary-header .item-count {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 2px 10px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 93%);
}

.checkout .order-summary-card .summary-products {
  padding: 16px 24px;
}

.checkout .order-summary-card .summary-products .product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.checkout .order-summary-card .summary-products .product-row:not(:last-child) {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
}

.checkout .order-summary-card .summary-products .product-row:first-child {
  padding-top: 0;
}

.checkout .order-summary-card .summary-products .product-row:last-child {
  padding-bottom: 0;
}

.checkout .order-summary-card .summary-products .product-row .product-img {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .order-summary-card .summary-products .product-row .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout .order-summary-card .summary-products .product-row .product-img .qty-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout .order-summary-card .summary-products .product-row .product-detail {
  flex: 1;
  min-width: 0;
}

.checkout .order-summary-card .summary-products .product-row .product-detail h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout .order-summary-card .summary-products .product-row .product-detail .product-variant {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.checkout .order-summary-card .summary-products .product-row .product-price {
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-color);
  flex-shrink: 0;
}

.checkout .order-summary-card .promo-input {
  padding: 0 24px 16px;
}

.checkout .order-summary-card .promo-input .input-group .form-control {
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 8px 12px;
  font-size: 14px;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.checkout .order-summary-card .promo-input .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
  outline: none;
}

.checkout .order-summary-card .promo-input .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.checkout .order-summary-card .promo-input .input-group .btn {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  border-radius: 0 6px 6px 0;
  padding: 0 16px;
  font-weight: 500;
  font-size: 14px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  transition: all 0.2s ease;
}

.checkout .order-summary-card .promo-input .input-group .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.checkout .order-summary-card .cost-breakdown {
  padding: 0 24px 20px;
}

.checkout .order-summary-card .cost-breakdown .cost-line {
  padding: 6px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.checkout .order-summary-card .cost-breakdown .cost-total {
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

.checkout .order-summary-card .secure-info {
  padding: 16px 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout .order-summary-card .secure-info .secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #16a34a;
}

.checkout .order-summary-card .secure-info .secure-badge i {
  font-size: 1rem;
}

.checkout .order-summary-card .secure-info .payment-icons {
  display: flex;
  gap: 8px;
}

.checkout .order-summary-card .secure-info .payment-icons i {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}

@media (max-width: 992px) {
  .checkout .order-summary-card {
    position: relative;
    top: 0;
    margin-bottom: 24px;
  }
}

.checkout .modal-content {
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 10px 15px color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .modal-content .modal-header {
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 16px 24px;
}

.checkout .modal-content .modal-header .modal-title {
  font-size: 16px;
  font-weight: 600;
}

.checkout .modal-content .modal-body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.7;
}

.checkout .modal-content .modal-footer {
  border-top-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 16px 24px;
}

.checkout .modal-content .modal-footer .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
}

.checkout .modal-content .modal-footer .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 12%);
}

/*--------------------------------------------------------------
# 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);
}

.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%);
}

@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-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;
  }
}

.category-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-toggle .bi-chevron-up {
    display: none;
}

.category-toggle:not(.collapsed) .bi-chevron-down {
    display: none;
}

.category-toggle:not(.collapsed) .bi-chevron-up {
    display: inline-block;
}


:root {
    --track-primary: var(--accent-color);
    --track-success:var(--accent-secondary-color);
    --track-muted: #adb5bd;
    --track-border: #e9ecef;
    --track-bg: #f7f9fc;
    --track-text: var(--default-color);
    --track-secondary: var(--heading-color);
}
 
/* -------------------------------------------------
   PAGE
------------------------------------------------- */

.track-order-page {
    background: var(--track-bg);
    padding: 45px 0 70px;
    min-height: 500px;
}

 

/* -------------------------------------------------
   PAGE HEADER
------------------------------------------------- */

.track-page-header {
    margin-bottom: 30px;
}

.track-page-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--track-text);
    margin: 0 0 7px;
}

.track-page-header p {
    margin: 0;
    color: var(--track-secondary);
    font-size: 15px;
}

/* -------------------------------------------------
   CARDS
------------------------------------------------- */

.track-card {
    background: #fff;
    border: 1px solid var(--track-border);
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, .045);
    overflow: hidden;
}

.track-card + .track-card {
    margin-top: 20px;
}

.track-card-header {
    padding: 22px 25px;
    border-bottom: 1px solid var(--track-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.track-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.track-card-body {
    padding: 25px;
}

/* -------------------------------------------------
   ORDER SUMMARY
------------------------------------------------- */

.order-number {
    font-size: 19px;
    font-weight: 700;
    color: var(--track-primary);
}

.order-number small {
    display: block;
    color: var(--track-secondary);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-item {
    margin-bottom: 18px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    display: block;
    color: var(--track-secondary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 5px;
}

.info-value {
    color: var(--track-text);
    font-size: 15px;
    font-weight: 600;
}

/* -------------------------------------------------
   STATUS BADGES
------------------------------------------------- */

.track-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-packed {
    background: #e7f1ff;
    color: #0d6efd;
}

.status-shipped {
    background: #e8f5e9;
    color: #198754;
}

.status-out {
    background: #e8f0fe;
    color: #0b57d0;
}

.status-delivered {
    background: #d1e7dd;
    color: #0f5132;
}

.status-cancelled {
    background: #f8d7da;
    color: #842029;
}

/* -------------------------------------------------
   TRACKING HEADER
------------------------------------------------- */

.tracking-current {
    display: flex;
    align-items: center;
    gap: 12px;
}

.current-status-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    color: var(--track-success);
    font-size: 20px;
}

.tracking-current-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.tracking-current-text span {
    color: var(--track-secondary);
    font-size: 12px;
}

/* -------------------------------------------------
   HORIZONTAL TIMELINE
------------------------------------------------- */

.order-progress {
    padding: 5px 5px 10px;
}

.progress-track {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 9%;
    right: 9%;
    height: 4px;
    background: #e9ecef;
    border-radius: 10px;
    z-index: 1;
}

.progress-line-active {
    position: absolute;
    top: 20px;
    left: 9%;
    height: 4px;
    background: var(--track-success);
    border-radius: 10px;
    z-index: 2;
    transition: width .3s ease;
}

.progress-step {
    width: 20%;
    position: relative;
    z-index: 3;
    text-align: center;
}

.progress-circle {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #dee2e6;
    color: #adb5bd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: .2s ease;
}

.progress-step.completed .progress-circle {
    background: var(--track-success);
    border-color: var(--track-success);
    color: #fff;
}

.progress-step.active .progress-circle {
    background: #fff;
    border-color: var(--track-success);
    color: var(--track-success);
    box-shadow: 0 0 0 6px rgba(25, 135, 84, .10);
}

.progress-step.upcoming .progress-circle {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #adb5bd;
}

.progress-title {
    font-size: 13px;
    font-weight: 700;
    color: #6c757d;
}

.progress-step.completed .progress-title,
.progress-step.active .progress-title {
    color: #212529;
}

.progress-description {
    font-size: 11px;
    line-height: 1.4;
    color: #8a8f94;
    max-width: 150px;
    margin: 5px auto 0;
}

/* -------------------------------------------------
   SHIPMENT DETAILS
------------------------------------------------- */

.shipment-detail {
    height: 100%;
    padding: 18px;
    border: 1px solid var(--track-border);
    border-radius: 10px;
    background: #fafbfc;
}

.shipment-detail-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--track-secondary);
    font-weight: 700;
    margin-bottom: 7px;
}

.shipment-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--track-text);
    word-break: break-word;
}

.tracking-number-box {
    background: #f1f6ff;
    border: 1px dashed #9ec5fe;
    border-radius: 10px;
    padding: 16px 18px;
}

.tracking-number-box .shipment-detail-value {
    color: var(--track-primary);
    font-size: 17px;
    letter-spacing: .4px;
}

/* -------------------------------------------------
   EMPTY SHIPMENT
------------------------------------------------- */

.no-shipment {
    text-align: center;
    padding: 35px 20px;
}

.no-shipment-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #e7f1ff;
    color: var(--track-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 27px;
}

.no-shipment h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 7px;
}

.no-shipment p {
    color: var(--track-secondary);
    margin: 0;
    font-size: 14px;
}

/* -------------------------------------------------
   CANCELLED
------------------------------------------------- */

.cancelled-box {
    padding: 22px;
    background: #fff5f5;
    border: 1px solid #f1b0b7;
    border-radius: 10px;
    color: #842029;
}

.cancelled-box i {
    font-size: 20px;
    margin-right: 8px;
}

.cancelled-box strong {
    font-size: 15px;
}

/* -------------------------------------------------
   ACTION
------------------------------------------------- */

.track-action {
    margin-top: 25px;
    text-align: center;
}

 

/* -------------------------------------------------
   RESPONSIVE
------------------------------------------------- */

@media (max-width: 991px) {

    .track-order-page {
        padding: 35px 0 55px;
    }

    .progress-description {
        display: none;
    }

}

@media (max-width: 767px) {

    .track-order-page {
        padding: 25px 0 45px;
    }

    .track-page-header h1 {
        font-size: 25px;
    }

    .track-card-header {
        padding: 18px;
    }

    .track-card-body {
        padding: 18px;
    }

    .tracking-current {
        align-items: flex-start;
    }

    /* Mobile timeline */

    .order-progress {
        padding: 5px 0;
    }

    .progress-track {
        display: block;
    }

    .progress-line,
    .progress-line-active {
        left: 20px;
        top: 20px;
        bottom: 20px;
        width: 4px;
        height: auto;
        right: auto;
    }

    .progress-line-active {
        bottom: auto;
        height: var(--active-height, 0);
    }

    .progress-step {
        width: 100%;
        min-height: 82px;
        display: flex;
        align-items: flex-start;
        text-align: left;
    }

    .progress-circle {
        width: 42px;
        min-width: 42px;
        margin: 0 15px 0 0;
    }

    .progress-step-info {
        padding-top: 3px;
    }

    .progress-title {
        font-size: 14px;
    }

    .progress-description {
        display: block;
        max-width: none;
        margin: 4px 0 0;
        font-size: 12px;
    }

    .shipment-detail {
        margin-bottom: 12px;
    }

}


.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}
.page-link:hover {
    z-index: 2;
    color: var(--accent-color);
    background-color: var(--bs-pagination-hover-bg);
    border-color: var(--bs-pagination-hover-border-color);
}

.page-link {
   color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
}

.features .feature-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .card-visual {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.features .card-visual img {
  max-height: 160px;
  object-fit: contain;
}

.features .card-body-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.features .card-body-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.features .card-body-content p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 24px;
}

.features .card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 16px;
  width: fit-content;
}

.features .card-badge i {
  font-size: 12px;
}

.features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 16px;
}

.features .feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 8px;
}

.features .feature-list li:last-child {
  margin-bottom: 0;
}

.features .feature-list li i {
  color: var(--accent-color);
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .features .card-visual {
    padding: 24px;
  }

  .features .card-visual img {
    max-height: 120px;
  }
}

 

 
#dynamic-form-container-1{ 
   color: var(--default-color); 
  background: url("../img/contact-us-bacground.jpg") top center no-repeat;
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  background-size:cover;
}

#dynamic-form-container-1 .card.shadow-sm{ width: 60%;
    margin: auto;
}
@media (max-width: 991px) {
#dynamic-form-container-1{
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

#dynamic-form-container-1 .card.shadow-sm{ width:90%;
    margin: auto;
}

}

#moduleItemEnquiryModal .modal-header{
  background-color: var(--accent-color);
}
#moduleItemEnquiryModal .modal-title{ color: var(--contrast-color);}

#productEnquiryModal .modal-header{
  background-color: var(--accent-color);
}
#productEnquiryModal .modal-title{ color: var(--contrast-color);}


.call-to-action .contact-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 15%) 100%);
  border-radius: 16px;
  padding: 3rem;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .call-to-action .contact-banner {
    padding: 2rem;
  }
}

.call-to-action .contact-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .call-to-action .contact-banner .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

.call-to-action .contact-banner .contact-info {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .call-to-action .contact-banner .contact-info {
    flex-direction: column;
    text-align: center;
  }
}

.call-to-action .contact-banner .contact-icon {
  width: 60px;
  height: 49px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

@media (max-width: 768px) {
  .call-to-action .contact-banner .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.call-to-action .contact-banner .contact-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.call-to-action .contact-banner .contact-text h5 {
  color: var(--contrast-color);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.call-to-action .contact-banner .contact-text p {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  margin: 0;
  line-height: 1.6;
}

.call-to-action .contact-banner .contact-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .call-to-action .contact-banner .contact-actions {
    flex-direction: column;
    width: 100%;
  }
}

.call-to-action .contact-banner .call-btn {
  background: var(--contrast-color);
  color: var(--heading-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .call-to-action .contact-banner .call-btn {
    width: 100%;
    justify-content: center;
  }
}

.call-to-action .contact-banner .call-btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.call-to-action .contact-banner .call-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 75%);
}

.call-to-action .contact-banner .contact-link {
  color: var(--contrast-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 60%);
  transition: all 0.3s ease;
}

.call-to-action .contact-banner .contact-link:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  border-bottom-color: var(--contrast-color);
}