@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Quicksand",  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: "Rubik",  sans-serif;
  --nav-font: "Quicksand",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e90101; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000000;  /* The default color of the main navmenu links */
  --nav-hover-color: #e90101; /* 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: #e90101; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

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

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

  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# 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: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .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;
    width: 100%;
    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;
    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);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 400;
  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: 50%;
  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 h4 {
  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: 25px 0;
  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: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

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

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
  --accent-color: #e90101;
  --surface-color: #e90101;
  padding: 0;
}

.hero-4 .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

.hero-4 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-4 .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-4 .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-4 .carousel-container {
  position: absolute;
  inset: 90px 100px;
  display: flex;
  max-width: 800px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

@media (max-width: 575px) {
  .hero-4 .carousel-container {
    inset: 90px 50px;
  }
}

.hero-4 h2 {
  margin-bottom: 30px;
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-4 h2 span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero-4 h2 {
    font-size: 30px;
  }
}

.hero-4 .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0;
  align-self: flex-start;
  flex-shrink: 0;
  border: 2px solid var(--accent-color);
}

.hero-4 .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-4 .carousel-control-prev,
.hero-4 .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
  z-index: 3;
}

.hero-4 .carousel-control-prev:focus,
.hero-4 .carousel-control-next:focus {
  opacity: 0.5;
}

.hero-4 .carousel-control-prev:hover,
.hero-4 .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero-4 .carousel-control-prev,
  .hero-4 .carousel-control-next {
    width: 5%;
  }
}

.hero-4 .carousel-control-next-icon,
.hero-4 .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero-4 .carousel-indicators {
  list-style: none;
}

.hero-4 .carousel-indicators li {
  cursor: pointer;
  opacity: 1;
  height: 6px;
  width: 20px;
  transition: 0.3s;
  padding: 0;
}

.hero-4 .carousel-indicators .active {
  background-color: var(--accent-color);
  width: 40px;
}

/*--------------------------------------------------------------
# Product List 2 Section
--------------------------------------------------------------*/
.product-list-2 .products-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.product-list-2 .products-carousel-wrapper .swiper-wrapper {
  height: auto !important;
}

.product-list-2 .products-carousel-wrapper .swiper-button-next,
.product-list-2 .products-carousel-wrapper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-list-2 .products-carousel-wrapper .swiper-button-next::after,
.product-list-2 .products-carousel-wrapper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: var(--default-color);
}

.product-list-2 .products-carousel-wrapper .swiper-button-next:hover,
.product-list-2 .products-carousel-wrapper .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

.product-list-2 .products-carousel-wrapper .swiper-button-next:hover::after,
.product-list-2 .products-carousel-wrapper .swiper-button-prev:hover::after {
  color: var(--contrast-color);
}

.product-list-2 .product-item {
  transition: transform 0.3s ease;
  height: auto;
}

.product-list-2 .product-card {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-list-2 .product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-list-2 .product-card:hover .product-image .quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-list-2 .product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

.product-list-2 .product-image .discount-badge,
.product-list-2 .product-image .status-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  z-index: 2;
}

.product-list-2 .product-image .discount-badge {
  background-color: #FF5252;
  color: white;
}

.product-list-2 .product-image .status-badge.new {
  background-color: #4CAF50;
  color: white;
}

.product-list-2 .product-image .status-badge.hot {
  background-color: #FF9800;
  color: white;
}

.product-list-2 .product-image .quick-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.product-list-2 .product-image .quick-actions .quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: white;
  color: var(--default-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-list-2 .product-image .quick-actions .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-5px);
}

.product-list-2 .product-image .quick-actions .quick-action-btn.add-to-cart {
  width: auto;
  padding: 0 20px;
  border-radius: 20px;
  background-color: var(--accent-color);
  color: white;
}

.product-list-2 .product-image .quick-actions .quick-action-btn.add-to-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.product-list-2 .product-info {
  padding: 20px;
}

.product-list-2 .product-info .product-category {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-list-2 .product-info .product-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.product-list-2 .product-info .product-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

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

.product-list-2 .product-info .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #FFB800;
}

.product-list-2 .product-info .product-rating .rating-count {
  margin-left: 5px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-list-2 .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-list-2 .product-info .product-price .current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.product-list-2 .product-info .product-price .old-price {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.product-list-2 .shop-all-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.product-list-2 .shop-all-btn:hover {
  color: white;
  background-color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .product-list-2 .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .product-list-2 .product-image {
    height: 240px;
  }
}

@media (max-width: 767.98px) {
  .product-list-2 .categories {
    width: 100%;
    justify-content: space-between;
  }

  .product-list-2 .categories .category-btn {
    font-size: 0.9rem;
  }

  .product-list-2 .product-image {
    height: 220px;
  }

  .product-list-2 .product-image .quick-actions .quick-action-btn {
    width: 36px;
    height: 36px;
  }

  .product-list-2 .product-image .quick-actions .quick-action-btn.add-to-cart {
    padding: 0 15px;
  }

  .product-list-2 .product-info {
    padding: 15px;
  }

  .product-list-2 .product-info .product-title {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .product-list-2 .product-image {
    height: 180px;
  }

  .product-list-2 .shop-all-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Category Cards 2 Section
--------------------------------------------------------------*/
.category-cards-2 .category-tabs {
  margin-bottom: 40px;
  position: relative;
}

.category-cards-2 .category-tabs .nav {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.category-cards-2 .category-tabs .nav-link {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  position: relative;
  transition: all 0.3s ease;
}

.category-cards-2 .category-tabs .nav-link:hover {
  color: var(--heading-color);
}

.category-cards-2 .category-tabs .nav-link.active {
  color: var(--heading-color);
  font-weight: 700;
  background: transparent;
}

.category-cards-2 .category-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--heading-color);
}

.category-cards-2 .tab-content {
  padding-top: 10px;
}

.category-cards-2 .category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.category-cards-2 .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.category-cards-2 .category-card:hover .category-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.category-cards-2 .category-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (max-width: 991px) {
  .category-cards-2 .category-card img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .category-cards-2 .category-card img {
    height: 250px;
  }
}

.category-cards-2 .category-card .category-link {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--surface-color);
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-cards-2 .category-card .category-link i {
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

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

@media (max-width: 767px) {
  .category-cards-2 .category-tabs .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .category-cards-2 .category-card .category-link {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/*--------------------------------------------------------------
# Category Cards Section
--------------------------------------------------------------*/
.category-cards .category-slider {
  position: relative;
  padding: 1rem 0;
}

.category-cards .category-slider .container {
  position: relative;
}

.category-cards .category-slider .swiper-wrapper {
  height: auto !important;
}

.category-cards .category-slider .swiper-button-next,
.category-cards .category-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  color: var(--heading-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-cards .category-slider .swiper-button-next::after,
.category-cards .category-slider .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
}

.category-cards .category-slider .swiper-button-next:hover,
.category-cards .category-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.category-cards .category-slider .swiper-button-prev {
  left: 0;
}

.category-cards .category-slider .swiper-button-next {
  right: 0;
}

.category-cards .category-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 0.5rem;
  padding: 1rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.category-cards .category-card:hover .category-title {
  color: var(--accent-color);
}

.category-cards .category-card:hover .category-image img {
  filter: brightness(1.08);
  transform: rotate(4deg) scale(1.06);
}

.category-cards .category-card .category-image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.category-cards .category-card .category-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.category-cards .category-card .category-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  transition: 0.3s;
}

.category-cards .category-card .category-count {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .category-cards .category-slider .swiper-button-prev {
    left: -15px;
  }

  .category-cards .category-slider .swiper-button-next {
    right: -15px;
  }

  .category-cards .category-card {
    padding: 0.75rem;
  }

  .category-cards .category-card .category-image {
    height: 100px;
    margin-bottom: 0.75rem;
  }

  .category-cards .category-card .category-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .category-cards .category-card .category-count {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {

  .category-cards .category-slider .swiper-button-prev,
  .category-cards .category-slider .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .category-cards .category-slider .swiper-button-prev::after,
  .category-cards .category-slider .swiper-button-next::after {
    font-size: 0.85rem;
  }

  .category-cards .category-card .category-image {
    height: 90px;
  }
}

@media (max-width: 575.98px) {
  .category-cards .category-slider .swiper-button-prev {
    left: -10px;
  }

  .category-cards .category-slider .swiper-button-next {
    right: -10px;
  }

  .category-cards .category-card {
    padding: 0.5rem;
  }

  .category-cards .category-card .category-image {
    height: 80px;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  padding: 80px 0;
}

.services-2 .service-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.services-2 .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-2 .service-card:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-2 .service-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.services-2 .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services-2 .service-card p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.services-2 .service-card .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.services-2 .service-card .service-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: var(--default-color);
}

.services-2 .service-card .service-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.services-2 .service-card .read-more {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.services-2 .service-card .read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.services-2 .service-card .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.services-2 .service-card .read-more:hover i {
  transform: translateX(5px);
}

.services-2 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.services-2 .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%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.about .content {
  padding-right: 30px;
}

.about .subtitle {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about .description {
  margin-bottom: 30px;
  color: var(--default-color);
}

.about .image-grid {
  display: flex;
  gap: 15px;
  height: 450px;
}

.about .main-image {
  flex: 0 0 65%;
  height: 100%;
}

.about .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .side-images {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about .side-images img {
  width: 100%;
  height: calc(50% - 7.5px);
  object-fit: cover;
}

.about .stats {
  margin-top: 30px;
}

.about .stat-item {
  margin-bottom: 20px;
}

.about .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.about .stat-text {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .about .content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about .image-grid {
    height: auto;
    flex-direction: column;
  }

  .about .main-image,
  .about .side-images {
    flex: 0 0 100%;
  }

  .about .side-images {
    flex-direction: row;
  }

  .about .side-images img {
    height: 200px;
    width: calc(50% - 7.5px);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .row {
  justify-content: center;
}

.services .service-box {
  height: 100%;
  padding: 40px;
  position: relative;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .service-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.3s ease-in-out;
  z-index: -1;
  opacity: 0;
}

.services .service-box .service-icon {
  margin-bottom: 20px;
  position: relative;
  font-size: 28px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--accent-color);
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-in-out;
}

.services .service-box .service-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .service-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.services .service-box p {
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

.services .service-box .service-btn {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.services .service-box .service-btn .service-icon-arrow {
  margin-left: 8px;
  font-size: 14px;
  transition: 0.3s transform ease-in-out;
}

.services .service-box .service-btn:hover .service-icon-arrow {
  transform: translateX(5px);
}

.services .service-box:hover {
  transform: translateY(-10px);
}

.services .service-box:hover::after {
  opacity: 1;
}

.services .service-box:hover .service-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-box:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Category Section Section
--------------------------------------------------------------*/
.category-section .featured-post {
  margin-bottom: 40px;
}

.category-section .featured-post .post-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.category-section .featured-post .post-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.category-section .featured-post .category-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.category-section .featured-post .post-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-section .featured-post .author-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.category-section .featured-post .author-meta .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.category-section .featured-post .author-meta .author-name {
  color: var(--heading-color);
  font-weight: 500;
}

.category-section .featured-post .author-meta .post-date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .featured-post .author-meta .post-date:before {
  content: "-";
  margin: 0 8px;
}

.category-section .featured-post .title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.category-section .featured-post .title a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.category-section .featured-post .title a:hover {
  color: var(--accent-color);
}

.category-section .list-post {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.category-section .list-post .post-img {
  flex: 0 0 100px;
  border-radius: 8px;
  overflow: hidden;
}

.category-section .list-post .post-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.category-section .list-post .post-content {
  flex: 1;
}

.category-section .list-post .post-category {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 8px;
  display: inline-block;
}

.category-section .list-post .title {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.category-section .list-post .title a {
  color: var(--heading-color);
  transition: color 0.3s;
}

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

.category-section .list-post .post-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .list-post .post-meta .read-time:after {
  content: "•";
  margin: 0 8px;
}

@media (max-width: 992px) {
  .category-section .featured-post .title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .category-section .list-post .post-img {
    flex: 0 0 80px;
  }

  .category-section .list-post .post-img img {
    width: 80px;
    height: 80px;
  }

  .category-section .list-post .title {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Featured Posts Section
--------------------------------------------------------------*/
.featured-posts {
  overflow: hidden;
  position: relative;
}

.featured-posts .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}

.featured-posts .blog-post-item {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-item {
    height: 450px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-item {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-item {
    height: 450px;
  }
}

.featured-posts .blog-post-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-posts .blog-post-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.featured-posts .blog-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: var(--contrast-color);
  z-index: 2;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-content {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content {
    padding: 30px;
  }
}

.featured-posts .blog-post-content .post-meta {
  margin-bottom: 15px;
  font-size: 14px;
}

.featured-posts .blog-post-content .post-meta span {
  display: inline-block;
  margin-right: 20px;
}

.featured-posts .blog-post-content .post-meta span i {
  margin-right: 5px;
  font-size: 16px;
}

.featured-posts .blog-post-content .post-meta span:last-child {
  margin-right: 0;
}

.featured-posts .blog-post-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content h2 {
    font-size: 22px;
  }
}

.featured-posts .blog-post-content h2 a {
  color: var(--contrast-color);
  transition: 0.3s;
}

.featured-posts .blog-post-content h2 a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }
}

.featured-posts .blog-post-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
  transition: 0.3s;
}

.featured-posts .blog-post-content .read-more i {
  margin-left: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.featured-posts .blog-post-content .read-more:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  position: relative;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action-2 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action-2 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action-2 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action-2 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action-2 .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action-2 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action-2 .features .feature-item span {
  font-weight: 500;
}

.call-to-action-2 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action-2 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action-2 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action-2 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action-2 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action-2 .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action-2 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action-2 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-2 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action-2 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action-2 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action-2 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action-2 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action-2 .decoration .circle-1,
.call-to-action-2 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action-2 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action-2 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action-2 {
    padding: 2rem;
  }

  .call-to-action-2 .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action-2 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  font-family: var(--default-font);
  font-weight: 500;
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  text-decoration: line-through;
}

.pricing .pricing-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .pricing-item .btn-buy {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .pricing-item .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .recommended .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .recommended .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-item {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 8px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.steps .steps-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 90%);
}

.steps .steps-item .steps-number {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
  line-height: 1;
}

.steps .steps-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.steps .steps-item p {
  margin-bottom: 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 1199px) {
  .steps .steps-item {
    padding: 25px;
  }

  .steps .steps-item .steps-number {
    font-size: 40px;
  }

  .steps .steps-item h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .steps .steps-item {
    padding: 20px;
  }

  .steps .steps-item .steps-number {
    font-size: 36px;
  }

  .steps .steps-item h3 {
    font-size: 20px;
  }

  .steps .steps-item p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item {
  padding: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  height: 100%;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.features-2 .feature-item .feature-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.features-2 .feature-item .feature-content .icon {
  flex-shrink: 0;
}

.features-2 .feature-item .feature-content .icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.features-2 .feature-item .content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features-2 .feature-item .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.features-2 .feature-item .content .feature-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.features-2 .feature-item .content .feature-link i {
  font-size: 14px;
  transition: transform 0.3s ease-in-out;
}

.features-2 .feature-item .content .feature-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.features-2 .feature-item .content .feature-link:hover i {
  transform: translateX(5px);
}

.features-2 .feature-item:hover {
  border-color: var(--accent-color);
}

@media (max-width: 1199px) {
  .features-2 .feature-item {
    padding: 20px;
  }

  .features-2 .feature-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .features-2 .feature-item .feature-content {
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Latest Posts Section
--------------------------------------------------------------*/
.latest-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.latest-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.latest-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.latest-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.latest-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.latest-posts .title a:hover {
  color: var(--accent-color);
}

.latest-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.latest-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.latest-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-2 .gallery-item img {
  transition: 0.3s;
}

.gallery-2 .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery-2 .gallery-links .preview-link,
.gallery-2 .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery-2 .gallery-links .preview-link:hover,
.gallery-2 .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery-2 .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery-2 .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery-2 .gallery-item:hover .preview-link,
.gallery-2 .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery-2 .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Category Postst Section
--------------------------------------------------------------*/
.category-postst article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.category-postst .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.category-postst .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.category-postst .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.category-postst .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

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

.category-postst .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.category-postst .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.category-postst .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;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.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 Author Section
--------------------------------------------------------------*/
.blog-author .author-box {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-author .author-box:hover {
  transform: translateY(-5px);
}

.blog-author .author-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid var(--surface-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-author .author-img:hover {
  transform: scale(1.05);
}

.blog-author .author-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  margin: 0 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.blog-author .author-social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.blog-author .author-social-links a.linkedin:hover {
  background-color: #0077b5;
}

.blog-author .author-social-links a.twitter:hover {
  background-color: #000000;
}

.blog-author .author-social-links a.github:hover {
  background-color: #333333;
}

.blog-author .author-social-links a.facebook:hover {
  background-color: #1877f2;
}

.blog-author .author-social-links a.instagram:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.blog-author .author-content {
  padding-left: 1rem;
}

@media (max-width: 767.98px) {
  .blog-author .author-content {
    padding-left: 0;
    margin-top: 2rem;
    text-align: center;
  }
}

.blog-author .author-content .author-name {
  font-size: 1.75rem;
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-author .author-content .author-title {
  display: inline-block;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.5rem;
  font-family: var(--heading-font);
}

.blog-author .author-content .author-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin: 1rem 0;
}

.blog-author .author-content .author-website {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 767.98px) {
  .blog-author .author-content .author-website {
    justify-content: center;
  }
}

.blog-author .author-content .author-website a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-author .author-content .author-website a i {
  font-size: 1.1rem;
}

.blog-author .author-content .author-website a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  transform: translateX(3px);
}

.blog-author .author-content .author-website .more-posts {
  font-weight: 500;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding-bottom: 30px;
}

.blog-comments .section-header {
  margin-bottom: 40px;
}

.blog-comments .section-header h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-comments .section-header h3 .comment-count {
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
  font-size: 24px;
  font-weight: 500;
}

.blog-comments .comments-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-comments .comment-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-card:hover {
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.blog-comments .comment-card.reply {
  margin-left: 48px;
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 3%);
}

@media (min-width: 768px) {
  .blog-comments .comment-card.reply {
    margin-left: 85px;
  }
}

.blog-comments .reply-thread {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-comments .comment-header {
  margin-bottom: 20px;
}

.blog-comments .comment-header .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-comments .comment-header .user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comments .comment-header .user-info .meta .name {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-comments .comment-header .user-info .meta .date i {
  font-size: 13px;
}

.blog-comments .comment-content p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 20px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  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: transform 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .blog-comments .section-header {
    margin-bottom: 30px;
  }

  .blog-comments .section-header h3 {
    font-size: 28px;
  }

  .blog-comments .section-header h3 .comment-count {
    font-size: 20px;
  }

  .blog-comments .comment-card {
    padding: 20px;
  }

  .blog-comments .comment-card.reply {
    margin-left: 35px;
  }

  .blog-comments .comment-header .user-info img {
    width: 40px;
    height: 40px;
  }

  .blog-comments .comment-header .user-info .meta .name {
    font-size: 15px;
  }

  .blog-comments .comment-header .user-info .meta .date {
    font-size: 13px;
  }

  .blog-comments .comment-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 0 auto 0 auto;
  padding-top: 30px;
}

.blog-comment-form form {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-comment-form .section-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.blog-comment-form .section-header h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-comment-form .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin: 0;
}

.blog-comment-form .form-group {
  margin-bottom: 20px;
}

.blog-comment-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 14px;
}

.blog-comment-form .form-group .form-control {
  height: 48px;
  padding: 10px 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.blog-comment-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comment-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .form-group .form-control:hover:not(:focus) {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .btn-submit {
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-comment-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comment-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 20px;
  }

  .blog-comment-form .section-header h3 {
    font-size: 24px;
  }

  .blog-comment-form .btn-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
# About Me Section
--------------------------------------------------------------*/
.about-me .about-image {
  position: relative;
}

.about-me .about-image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-me .about-content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about-me .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about-me .about-content .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.about-me .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-me .about-content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-me .personal-info {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.about-me .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-me .personal-info .info-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-me .personal-info .info-item .value {
  font-weight: 600;
  color: var(--heading-color);
}

.about-me .signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about-me .signature .signature-image {
  max-width: 150px;
}

.about-me .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about-me .signature .signature-info p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Author Profile Section
--------------------------------------------------------------*/
.author-profile .author-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.author-profile .author-card .author-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.author-profile .author-card .author-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.author-profile .author-card .author-info {
  text-align: center;
}

.author-profile .author-card .author-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.author-profile .author-card .author-info .designation {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.author-profile .author-card .author-info .author-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author-profile .author-card .author-stats {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 1rem 0;
}

.author-profile .author-card .author-stats .stat-item h4 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}

.author-profile .author-card .author-stats .stat-item p {
  font-size: 0.85rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.author-profile .author-card .social-links {
  margin-top: 1.5rem;
}

.author-profile .author-card .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.author-profile .author-card .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.author-profile .author-card .social-links a i {
  font-size: 1rem;
}

.author-profile .author-content {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.author-profile .author-content .content-header {
  margin-bottom: 1.5rem;
}

.author-profile .author-content .content-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0;
}

.author-profile .author-content .content-body p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.author-profile .author-content .content-body .expertise-areas h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.author-profile .author-content .content-body .expertise-areas .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.author-profile .author-content .content-body .expertise-areas .tags span {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.author-profile .author-content .content-body .expertise-areas .tags span:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.author-profile .author-content .content-body .featured-articles h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.author-profile .author-content .content-body .featured-articles .article-card {
  background-color: var(--background-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.author-profile .author-content .content-body .featured-articles .article-card:hover {
  transform: translateY(-5px);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-img {
  height: 200px;
  overflow: hidden;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-img:hover img {
  transform: scale(1.1);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details {
  padding: 1.25rem;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-category {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details h5 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details h5 a:hover {
  color: var(--accent-color);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-meta {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-meta span {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-meta span i {
  margin-right: 0.35rem;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .author-profile .author-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .author-profile .featured-articles .article-card {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .about-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-2 .about-img img {
  transition: transform 0.6s ease;
}

.about-2 .about-img img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .about-2 .about-img {
    margin-bottom: 30px;
  }
}

.about-2 .about-content h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 768px) {
  .about-2 .about-content h3 {
    font-size: 24px;
  }
}

.about-2 .about-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-2 .about-stat {
  text-align: center;
}

.about-2 .about-stat h4 {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .about-2 .about-stat h4 {
    font-size: 28px;
  }
}

.about-2 .about-stat p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-2 .about-card {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-2 .about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-2 .about-card:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-2 .about-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-2 .about-card p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-2 .about-card .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 24px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .about-2 .about-card {
    margin-bottom: 20px;
  }
}

.about-2 .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 .feature-item {
  padding: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  height: 100%;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.features-3 .feature-item .feature-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.features-3 .feature-item .feature-content .icon {
  flex-shrink: 0;
}

.features-3 .feature-item .feature-content .icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.features-3 .feature-item .content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features-3 .feature-item .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.features-3 .feature-item .content .feature-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.features-3 .feature-item .content .feature-link i {
  font-size: 14px;
  transition: transform 0.3s ease-in-out;
}

.features-3 .feature-item .content .feature-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.features-3 .feature-item .content .feature-link:hover i {
  transform: translateX(5px);
}

.features-3 .feature-item:hover {
  border-color: var(--accent-color);
}

@media (max-width: 1199px) {
  .features-3 .feature-item {
    padding: 20px;
  }

  .features-3 .feature-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .features-3 .feature-item .feature-content {
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
}

.team .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-member .member-img {
  flex: 0 0 200px;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.team .team-member .member-info {
  padding: 25px;
  text-align: left;
}

.team .team-member .member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: block;
  margin-bottom: 15px;
}

.team .team-member .member-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
  display: flex;
  gap: 10px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .team-member .member-info .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
  .team .team-member {
    flex-direction: column;
  }

  .team .team-member .member-img {
    flex: auto;
  }

  .team .team-member .member-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .team .team-member .member-info {
    text-align: center;
  }

  .team .team-member .member-info .social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  overflow: hidden;
}

.contact .info-box {
  color: var(--default-color);
  background: var(--surface-color);
  padding: 30px;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.contact .info-box i {
  font-size: 32px;
  color: var(--accent-color);
  border-radius: 50%;
  padding: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}

.contact .info-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
}

.contact .map-container {
  overflow: hidden;
  padding-bottom: 500px;
  position: relative;
  height: 0;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

@media (max-width: 992px) {
  .contact .map-container {
    padding-bottom: 350px;
  }
}

@media (max-width: 768px) {
  .contact .map-container {
    padding-bottom: 300px;
  }
}

.contact .php-email-form {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  background: var(--surface-color);
  border-radius: 15px;
}

.contact .php-email-form .form-control {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ced4da;
  font-size: 14px;
  transition: all 0.3s;
}

.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form .form-control::placeholder {
  color: #adb5bd;
}

.contact .php-email-form textarea.form-control {
  min-height: 120px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 12px 34px;
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.05);
}

.contact .php-email-form .loading,
.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
  display: none;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 500;
  border-radius: 10px;
}

.contact .php-email-form .loading {
  background: #fff;
  color: var(--accent-color);
}

.contact .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: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .error-message {
  color: #fff;
  background: #ed3c0d;
}

.contact .php-email-form .sent-message {
  color: #fff;
  background: #18d26e;
}

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

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

.contact .social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .contact .info-box {
    margin-bottom: 20px;
    padding: 20px;
  }

  .contact .php-email-form {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .contact .info-box {
    padding: 15px;
  }

  .contact .info-box i {
    font-size: 28px;
    padding: 12px;
  }

  .contact .info-box h3 {
    font-size: 18px;
  }

  .contact .social-links {
    gap: 12px;
  }

  .contact .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact-2 .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact-2 .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact-2 .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact-2 .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact-2 .info-box {
    padding: 1.5rem;
  }
}

.contact-2 .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-2 .info-item:last-child {
  margin-bottom: 0;
}

.contact-2 .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact-2 .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact-2 .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact-2 .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-2 .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-2 .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact-2 .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact-2 .contact-form {
    padding: 1.5rem;
  }
}

.contact-2 .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact-2 .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact-2 .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact-2 .contact-form .form-control,
.contact-2 .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact-2 .contact-form .form-control:focus,
.contact-2 .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact-2 .contact-form .form-control::placeholder,
.contact-2 .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-2 .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact-2 .contact-form .btn i {
  font-size: 1.25rem;
}

.contact-2 .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Contact 4 Section
--------------------------------------------------------------*/
.contact-4 .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact-4 .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact-4 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact-4 .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact-4 .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact-4 .php-email-form {
    padding: 20px;
  }
}

.contact-4 .php-email-form input[type=text],
.contact-4 .php-email-form input[type=email],
.contact-4 .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 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-4 .php-email-form input[type=text]:focus,
.contact-4 .php-email-form input[type=email]:focus,
.contact-4 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-4 .php-email-form input[type=text]::placeholder,
.contact-4 .php-email-form input[type=email]::placeholder,
.contact-4 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-4 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact-4 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Search Results Posts Section
--------------------------------------------------------------*/
.search-results-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.search-results-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.search-results-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.search-results-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.search-results-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.search-results-posts .title a:hover {
  color: var(--accent-color);
}

.search-results-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.search-results-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.search-results-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 3 Section
--------------------------------------------------------------*/
.pagination-3 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-3 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-3 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-3 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-3 li a.active,
.pagination-3 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-3 li a.active a,
.pagination-3 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Product List 5 Section
--------------------------------------------------------------*/
.product-list-5 .product-card {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-list-5 .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-list-5 .product-card:hover .default-image {
  opacity: 0;
}

.product-list-5 .product-card:hover .hover-image {
  opacity: 1;
}

.product-list-5 .product-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background-color: #f8f9fa;
}

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

.product-list-5 .product-image .default-image {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.product-list-5 .product-image .hover-image {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-list-5 .product-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.product-list-5 .product-tags .badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 500;
  border-radius: 4px;
  margin-right: 5px;
}

.product-list-5 .product-tags .bg-accent {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-list-5 .product-tags .bg-sale {
  background-color: #ff6b6b;
  color: var(--contrast-color);
}

.product-list-5 .product-tags .bg-sold-out {
  background-color: #6c757d;
  color: var(--contrast-color);
}

.product-list-5 .product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-list-5 .product-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.product-list-5 .product-actions button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-list-5 .product-actions button i {
  font-size: 1rem;
}

.product-list-5 .product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-list-5 .product-info {
  padding: 1.25rem;
}

.product-list-5 .product-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  height: 2.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

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

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

.product-list-5 .product-price {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-list-5 .product-price .current-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
}

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

.product-list-5 .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #ffc107;
  font-size: 0.875rem;
}

.product-list-5 .product-rating i {
  margin-right: 2px;
}

.product-list-5 .product-rating .rating-count {
  margin-left: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
}

.product-list-5 .btn-add-to-cart {
  width: 100%;
  padding: 0.6rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.product-list-5 .btn-add-to-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.product-list-5 .btn-add-to-cart i {
  font-size: 1rem;
}

.product-list-5 .btn-add-to-cart.btn-disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

.product-list-5 .btn-add-to-cart.btn-disabled:hover {
  background-color: #e9ecef;
}

@media (max-width: 991.98px) {
  .product-list-5 .product-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .product-list-5 .product-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .product-list-5 .product-actions {
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Product List 3 Section
--------------------------------------------------------------*/
.product-list-3 .product-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.product-list-3 .product-card .product-image {
  position: relative;
  padding-top: 100%;
  background: var(--surface-color);
  overflow: hidden;
}

.product-list-3 .product-card .product-image .main-image,
.product-list-3 .product-card .product-image .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-list-3 .product-card .product-image .main-image {
  opacity: 1;
  z-index: 1;
}

.product-list-3 .product-card .product-image .hover-image {
  opacity: 0;
  z-index: 0;
}

.product-list-3 .product-card .product-image .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}

.product-list-3 .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.product-list-3 .product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-list-3 .product-card:hover .hover-image {
  opacity: 1;
}

.product-list-3 .product-card:hover .main-image {
  opacity: 0;
}

.product-list-3 .product-card .product-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 2;
}

.product-list-3 .product-card .product-actions .btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.product-list-3 .product-card .product-actions .btn i {
  font-size: 1.25rem;
}

.product-list-3 .product-card .product-info {
  padding: 1.25rem;
}

.product-list-3 .product-card .product-info .product-title {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  font-weight: 500;
}

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

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

.product-list-3 .product-card .product-info .product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.75rem;
  color: #ffc107;
  font-size: 0.875rem;
}

.product-list-3 .product-card .product-info .product-rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 4px;
}

.product-list-3 .product-card .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-list-3 .product-card .product-info .product-price .price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
}

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

@media (max-width: 767.98px) {
  .product-list-3 .product-card .product-info {
    padding: 1rem;
  }

  .product-list-3 .product-card .product-info .product-title {
    font-size: 0.9375rem;
  }

  .product-list-3 .product-card .product-info .product-price .price {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# About Me 3 Section
--------------------------------------------------------------*/
.about-me-3 .about-img {
  position: relative;
}

.about-me-3 .about-img .img-wrapper {
  position: relative;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
}

.about-me-3 .about-img .img-wrapper img {
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.about-me-3 .about-img .img-wrapper img:hover {
  transform: scale(1.02);
}

.about-me-3 .content .section-header {
  margin-bottom: 30px;
}

.about-me-3 .content .section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-me-3 .content .section-header p {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 500;
}

.about-me-3 .content .about-content .bio-text .lead {
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 0;
}

.about-me-3 .content .about-content .bio-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
}

.about-me-3 .content .about-content .info-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-me-3 .content .about-content .info-list .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about-me-3 .content .about-content .info-list .info-item:hover {
  transform: translateY(-3px);
}

.about-me-3 .content .about-content .info-list .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.about-me-3 .content .about-content .info-list .info-item h5 {
  font-size: 16px;
  margin: 0 0 5px;
  font-weight: 600;
  color: var(--heading-color);
}

.about-me-3 .content .about-content .info-list .info-item p {
  margin: 0;
  font-size: 15px;
  color: var(--default-color);
}

.about-me-3 .content .about-content .social-links {
  text-align: center;
}

.about-me-3 .content .about-content .social-links .links-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-me-3 .content .about-content .social-links .links-wrapper a {
  color: var(--heading-color);
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-me-3 .content .about-content .social-links .links-wrapper a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .about-me-3 .about-img {
    margin-bottom: 30px;
  }

  .about-me-3 .content .about-content .info-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-me-3 .content .section-header h2 {
    font-size: 28px;
  }

  .about-me-3 .content .section-header p {
    font-size: 16px;
  }

  .about-me-3 .content .about-content .bio-text .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .about-me-3 .about-img .img-wrapper .social-links {
    padding: 12px 20px;
    gap: 12px;
  }

  .about-me-3 .about-img .img-wrapper .social-links a {
    font-size: 16px;
    width: 32px;
    height: 32px;
  }

  .about-me-3 .content .about-content .info-list {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# About Me 6 Section
--------------------------------------------------------------*/
.about-me-6 .about-image {
  position: relative;
}

.about-me-6 .about-image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about-me-6 .about-content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about-me-6 .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about-me-6 .about-content .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.about-me-6 .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-me-6 .about-content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-me-6 .personal-info {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.about-me-6 .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-me-6 .personal-info .info-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-me-6 .personal-info .info-item .value {
  font-weight: 600;
  color: var(--heading-color);
}

.about-me-6 .signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.about-me-6 .signature .signature-image {
  max-width: 150px;
}

.about-me-6 .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about-me-6 .signature .signature-info p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Ecommerce Product Details Section
--------------------------------------------------------------*/
.ecommerce-product-details .product-images {
  position: relative;
}

.ecommerce-product-details .product-images .vertical-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.ecommerce-product-details .product-images .vertical-thumbnails .thumbnail-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
  position: relative;
}

.ecommerce-product-details .product-images .vertical-thumbnails .thumbnail-item:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.ecommerce-product-details .product-images .vertical-thumbnails .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-images .vertical-thumbnails .thumbnail-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ecommerce-product-details .product-images .main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ecommerce-product-details .product-images .main-image-container .image-zoom-container {
  position: relative;
  width: 100%;
  padding: 1.5rem;
}

.ecommerce-product-details .product-images .main-image-container .image-zoom-container .main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: crosshair;
  transition: transform 0.3s ease;
}

.ecommerce-product-details .product-images .main-image-container .image-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.ecommerce-product-details .product-images .main-image-container .image-nav .image-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: auto;
  opacity: 0.8;
}

.ecommerce-product-details .product-images .main-image-container .image-nav .image-nav-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  opacity: 1;
}

.ecommerce-product-details .product-images .main-image-container .image-nav .image-nav-btn i {
  font-size: 1.25rem;
}

.ecommerce-product-details .product-images .main-image-container .floating-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ecommerce-product-details .product-images .main-image-container .floating-actions .action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-images .main-image-container .floating-actions .action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.ecommerce-product-details .product-images .main-image-container .floating-actions .action-btn i {
  font-size: 1rem;
}

.ecommerce-product-details .product-images .mobile-thumbnails .swiper-wrapper {
  height: auto !important;
}

.ecommerce-product-details .product-images .mobile-thumbnails .thumbnail-item {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-images .mobile-thumbnails .thumbnail-item:hover {
  opacity: 0.9;
}

.ecommerce-product-details .product-images .mobile-thumbnails .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
}

.ecommerce-product-details .product-images .mobile-thumbnails .thumbnail-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ecommerce-product-details .product-images .mobile-thumbnails .swiper-button-next,
.ecommerce-product-details .product-images .mobile-thumbnails .swiper-button-prev {
  color: var(--accent-color);
  background-color: var(--surface-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-images .mobile-thumbnails .swiper-button-next::after,
.ecommerce-product-details .product-images .mobile-thumbnails .swiper-button-prev::after {
  font-size: 14px;
}

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

.ecommerce-product-details .product-images .drift-zoom-pane.drift-opening {
  animation: drift-fadeZoomIn 180ms ease-out;
}

.ecommerce-product-details .product-images .drift-zoom-pane.drift-closing {
  animation: drift-fadeZoomOut 210ms ease-in;
}

.ecommerce-product-details .product-images .drift-zoom-pane-loader {
  display: none;
}

@keyframes drift-fadeZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

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

@keyframes drift-fadeZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

.ecommerce-product-details .product-info-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.ecommerce-product-details .product-info-card .product-header {
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-info-card .product-header .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.ecommerce-product-details .product-info-card .product-header .product-meta .product-category {
  font-size: 0.875rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.ecommerce-product-details .product-info-card .product-header .product-meta .product-rating {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-info-card .product-header .product-meta .product-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.ecommerce-product-details .product-info-card .product-header .product-meta .product-rating .rating-count {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 4px;
}

.ecommerce-product-details .product-info-card .product-header .product-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .ecommerce-product-details .product-info-card .product-header .product-title {
    font-size: 2rem;
  }
}

.ecommerce-product-details .product-info-card .product-header .product-short-description p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}

.ecommerce-product-details .product-info-card .product-price-stock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.ecommerce-product-details .product-info-card .product-price-stock .price-container {
  display: flex;
  flex-direction: column;
}

.ecommerce-product-details .product-info-card .product-price-stock .price-container .current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.ecommerce-product-details .product-info-card .product-price-stock .price-container .price-details {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.ecommerce-product-details .product-info-card .product-price-stock .price-container .price-details .original-price {
  font-size: 1.125rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.ecommerce-product-details .product-info-card .product-price-stock .price-container .price-details .discount-badge {
  background-color: #e53935;
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.75rem;
}

.ecommerce-product-details .product-info-card .product-price-stock .stock-container {
  text-align: right;
}

.ecommerce-product-details .product-info-card .product-price-stock .stock-container .availability-indicator {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 600;
}

.ecommerce-product-details .product-info-card .product-price-stock .stock-container .availability-indicator.available {
  color: #2e7d32;
}

.ecommerce-product-details .product-info-card .product-price-stock .stock-container .availability-indicator i {
  margin-right: 0.5rem;
}

.ecommerce-product-details .product-info-card .product-price-stock .stock-container .stock-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.25rem;
  display: block;
}

@media (max-width: 576px) {
  .ecommerce-product-details .product-info-card .product-price-stock {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .ecommerce-product-details .product-info-card .product-price-stock .stock-container {
    text-align: left;
  }

  .ecommerce-product-details .product-info-card .product-price-stock .stock-container .availability-indicator {
    justify-content: flex-start;
  }
}

.ecommerce-product-details .product-info-card .product-options {
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-info-card .product-options .option-group {
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-info-card .product-options .option-group .option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ecommerce-product-details .product-info-card .product-options .option-group .option-header .option-title {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.ecommerce-product-details .product-info-card .product-options .option-group .option-header .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.ecommerce-product-details .product-info-card .product-options .option-group .color-options {
  display: flex;
  gap: 0.75rem;
}

.ecommerce-product-details .product-info-card .product-options .option-group .color-options .color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info-card .product-options .option-group .color-options .color-option:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-info-card .product-options .option-group .color-options .color-option.active {
  border-color: var(--accent-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-info-card .product-options .option-group .color-options .color-option.active i {
  opacity: 1;
}

.ecommerce-product-details .product-info-card .product-options .option-group .color-options .color-option i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contrast-color);
  font-size: 0.875rem;
  opacity: 0;
}

.ecommerce-product-details .product-info-card .product-options .option-group .size-options {
  display: flex;
  gap: 0.75rem;
}

.ecommerce-product-details .product-info-card .product-options .option-group .size-options .size-option {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
  font-weight: 600;
}

.ecommerce-product-details .product-info-card .product-options .option-group .size-options .size-option:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.ecommerce-product-details .product-info-card .product-options .option-group .size-options .size-option.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-info-card .product-options .option-group .quantity-selector {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.ecommerce-product-details .product-info-card .product-options .option-group .quantity-selector .quantity-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info-card .product-options .option-group .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.ecommerce-product-details .product-info-card .product-options .option-group .quantity-selector .quantity-btn.decrease {
  border-radius: 8px 0 0 8px;
}

.ecommerce-product-details .product-info-card .product-options .option-group .quantity-selector .quantity-btn.increase {
  border-radius: 0 8px 8px 0;
}

.ecommerce-product-details .product-info-card .product-options .option-group .quantity-selector .quantity-btn i {
  font-size: 1.25rem;
}

.ecommerce-product-details .product-info-card .product-options .option-group .quantity-selector .quantity-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  border-right: none;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 1rem;
  font-weight: 600;
}

.ecommerce-product-details .product-info-card .product-options .option-group .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.ecommerce-product-details .product-info-card .product-options .option-group .quantity-selector .quantity-input::-webkit-inner-spin-button,
.ecommerce-product-details .product-info-card .product-options .option-group .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ecommerce-product-details .product-info-card .product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-info-card .product-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.ecommerce-product-details .product-info-card .product-actions .btn i {
  margin-right: 0.5rem;
  font-size: 1.125rem;
}

.ecommerce-product-details .product-info-card .product-actions .add-to-cart-btn {
  flex: 1;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.ecommerce-product-details .product-info-card .product-actions .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ecommerce-product-details .product-info-card .product-actions .buy-now-btn {
  flex: 1;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.ecommerce-product-details .product-info-card .product-actions .buy-now-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .ecommerce-product-details .product-info-card .product-actions {
    flex-direction: column;
  }
}

.ecommerce-product-details .product-info-card .additional-info {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.ecommerce-product-details .product-info-card .additional-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ecommerce-product-details .product-info-card .additional-info .info-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 0.75rem;
  min-width: 24px;
  text-align: center;
}

.ecommerce-product-details .product-info-card .additional-info .info-item span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.ecommerce-product-details .product-details-tabs .nav-pills {
  border-radius: 8px;
  background-color: var(--surface-color);
  padding: 0.5rem;
  display: inline-flex;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ecommerce-product-details .product-details-tabs .nav-pills .nav-item {
  margin: 0 0.25rem;
}

.ecommerce-product-details .product-details-tabs .nav-pills .nav-link {
  border-radius: 6px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-details-tabs .nav-pills .nav-link i {
  margin-right: 0.5rem;
  font-size: 1.125rem;
}

.ecommerce-product-details .product-details-tabs .nav-pills .nav-link .review-count {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 20px;
  margin-left: 0.5rem;
}

.ecommerce-product-details .product-details-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.ecommerce-product-details .product-details-tabs .nav-pills .nav-link.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.ecommerce-product-details .product-details-tabs .nav-pills .nav-link.active .review-count {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .ecommerce-product-details .product-details-tabs .nav-pills {
    width: 100%;
  }

  .ecommerce-product-details .product-details-tabs .nav-pills .nav-item {
    flex: 1;
  }

  .ecommerce-product-details .product-details-tabs .nav-pills .nav-link {
    padding: 0.75rem 0.5rem;
    justify-content: center;
  }

  .ecommerce-product-details .product-details-tabs .nav-pills .nav-link i {
    margin-right: 0.25rem;
  }
}

.ecommerce-product-details .product-details-tabs .tab-content {
  padding: 1rem 0;
}

.ecommerce-product-details .product-details-tabs .tab-content h4 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

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

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section {
  margin-bottom: 2.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section:last-child {
  margin-bottom: 0;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item {
  display: flex;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item .feature-icon i {
  font-size: 1.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item .feature-content h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item .feature-content p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .box-contents {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .box-contents .content-item {
  display: flex;
  align-items: center;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .box-contents .content-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-right: 0.75rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-description .description-section .box-contents .content-item span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-specifications .specs-group {
  margin-bottom: 2.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-specifications .specs-group:last-child {
  margin-bottom: 0;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card .specs-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card .specs-icon i {
  font-size: 1.75rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card .specs-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card .specs-value {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.875rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (min-width: 768px) {
  .ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary {
    flex-direction: row;
  }
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating .rating-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating .rating-circle .rating-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating .rating-stars {
  margin: 0.5rem 0;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 1.25rem;
  margin-right: 2px;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .rating-breakdown {
  flex: 2;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .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%);
}

.ecommerce-product-details .product-details-tabs .tab-content .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%);
  border-radius: 4px;
  overflow: hidden;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress .progress-bar {
  background-color: #FFD700;
  border-radius: 4px;
}

.ecommerce-product-details .product-details-tabs .tab-content .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;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header h4 {
  margin-bottom: 0;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header .write-review-btn {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header .write-review-btn i {
  margin-right: 0.5rem;
}

@media (max-width: 576px) {
  .ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header .write-review-btn {
    align-self: stretch;
  }
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .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%);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .form-text {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating input[type=radio] {
  display: none;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating label {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0 0.25rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .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;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating input[type=radio]:checked~label i,
.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating label:hover i,
.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating label:hover~label i {
  color: #FFD700;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header .reviewer-info .reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
  border: 2px solid var(--accent-color);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header .reviewer-info .reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header .reviewer-info .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header .review-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .load-more-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-color: var(--accent-color);
  color: var(--accent-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .load-more-btn i {
  margin-right: 0.5rem;
}

.ecommerce-product-details .product-details-tabs .tab-content .product-reviews .reviews-list .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding-top: 59px;
  padding-bottom: 60px;
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

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

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

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

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

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.product-categories-widget .categories-container {
  margin-top: 1.25rem;
}

.product-categories-widget .category-group {
  margin-bottom: 0.5rem;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product-categories-widget .category-group:last-child {
  margin-bottom: 0;
}

.product-categories-widget .category-header {
  display: flex;
  align-items: center;
  padding: 0.875rem 1rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.product-categories-widget .category-header:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.product-categories-widget .category-header[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-categories-widget .category-header[aria-expanded=true] .toggle-icon {
  color: var(--accent-color);
}

.product-categories-widget .category-header.no-toggle {
  cursor: default;
}

.product-categories-widget .category-header.no-toggle:hover {
  background-color: var(--surface-color);
}

.product-categories-widget .category-name {
  flex-grow: 1;
  font-weight: 500;
  color: var(--heading-color);
}

.product-categories-widget .category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.5rem;
  padding: 0 0.5rem;
  margin-right: 0.75rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-categories-widget .toggle-icon {
  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 .toggle-icon .bi-dash-lg {
  display: none;
}

.product-categories-widget .category-header[aria-expanded=true] .toggle-icon .bi-plus-lg {
  display: none;
}

.product-categories-widget .category-header[aria-expanded=true] .toggle-icon .bi-dash-lg {
  display: block;
}

.product-categories-widget .category-items {
  display: none;
  flex-direction: column;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: none;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.product-categories-widget .category-items.show {
  display: flex;
}

.product-categories-widget .category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  color: var(--default-color);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: background-color 0.3s;
}

.product-categories-widget .category-item:last-child {
  border-bottom: none;
}

.product-categories-widget .category-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.product-categories-widget .category-item:hover .item-count {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
}

.product-categories-widget .item-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.25rem;
  padding: 0 0.375rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.3s;
}

@media (max-width: 767.98px) {
  .product-categories-widget .category-header {
    padding: 0.75rem 0.875rem;
  }

  .product-categories-widget .category-item {
    padding: 0.625rem 0.875rem;
  }

  .product-categories-widget .category-count {
    min-width: 1.5rem;
    height: 1.375rem;
    margin-right: 0.5rem;
  }
}