@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: 'Vollkorn', sans-serif;
  --nav-font: 'Vollkorn', 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: #f9f6f1; /* Background color for the entire website, including individual sections */
  --default-color: #3d3028; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3d3028; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3d3028; /* 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: #3d3028; /* The default color of the main navmenu links */
  --nav-hover-color: #3d3028; /* 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: #3d3028; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3d3028; /* 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: #ffffff;
  --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 {
  --background-color: #dfc9c8;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

@media (max-width: 768px) {
  .header .main-header .logo img {
    max-height: 32px;
    margin-left: 30px;
  }

  .header .main-header .logo h1 {
    font-size: 24px;
  }
}

.header .main-header .header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

@media (max-width: 1199.98px) {
  .header .main-header .header-nav {
    display: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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;
  padding-bottom: 50px;
  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-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.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 50%);
  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 20%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  overflow: hidden;
}

.hero .fashion-hero-slider {
  height: 100vh;
  min-height: 600px;
}

.hero .fashion-hero-slider .swiper-wrapper {
  height: auto !important;
}

.hero .fashion-hero-slider .swiper-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero .hero-slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .hero .overlay-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  }
}

.hero .slide-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero .slide-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .content-wrapper {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .hero .content-wrapper {
    text-align: center;
    padding: 0 1rem;
  }
}

.hero .brand-tagline {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

@media (min-width: 768px) {
  .hero .brand-tagline {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--contrast-color);
}

@media (min-width: 768px) {
  .hero .hero-title {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.hero .cta-section {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .hero .cta-section {
    margin-top: 3rem;
  }
}

.hero .primary-cta {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .primary-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .hero .primary-cta {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 576px) {
  .hero .primary-cta {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
}

.hero .navigation-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 992px) {
  .hero .navigation-controls {
    display: none;
  }
}

.hero .nav-arrow {
  width: 50px;
  height: 50px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--default-color);
  font-size: 1.25rem;
  pointer-events: all;
}

.hero .nav-arrow:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: scale(1.1);
}

@media (min-width: 1200px) {
  .hero .nav-arrow {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero .fashion-hero-slider {
    height: 80vh;
    min-height: 500px;
  }

  .hero .swiper-slide {
    height: 80vh;
    min-height: 500px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about h1 {
  color: var(--heading-color);
  font-size: 30px;
}

.about p {
  line-height: 1.7;
  color: var(--default-color);
}

.about .swiper-pagination {
  position: absolute;
  bottom: 30px;
}

.about .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #ffffff;
  opacity: 0.3;
}

.about .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

.about .section-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Promo Cards Section
--------------------------------------------------------------*/
.promo-cards .promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 400px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

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

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

.promo-cards .promo-card .promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
  transition: 0.3s;
}

.promo-cards .promo-card .promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 3;
  transition: all 0.4s ease;
}

.promo-cards .promo-card .promo-content .promo-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.promo-cards .promo-card .promo-content .promo-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--contrast-color);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.promo-cards .promo-card .promo-content .btn-promo {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  background-color: transparent;
  color: var(--contrast-color);
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
}

.promo-cards .promo-card .promo-content .btn-promo:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.promo-cards .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.promo-cards .promo-card:hover .promo-content {
  transform: translateY(-10px);
}

@media (max-width: 991.98px) {
  .promo-cards .promo-card {
    height: 350px;
  }

  .promo-cards .promo-card .promo-content {
    padding: 1.5rem;
  }

  .promo-cards .promo-card .promo-content .promo-title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .promo-cards .promo-card {
    height: 300px;
  }

  .promo-cards .promo-card .promo-content {
    padding: 1.2rem;
  }

  .promo-cards .promo-card .promo-content .promo-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .promo-cards .promo-card .promo-content .promo-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .promo-cards .promo-card .promo-content .btn-promo {
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
  }
}

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

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

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  color: #f9f6f1;
}

.about-2 .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about-2 .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about-2 .our-story {
  padding: 40px;
  /* background-color: color-mix(in srgb, var(--default-color), transparent 96%); */
  background-color: #c69795;
}

@media (min-width: 991px) {
  .about-2 .our-story {
    padding-right: 35%;
  }
}

.about-2 .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  /* color: color-mix(in srgb, var(--default-color), transparent 50%); */
}

.about-2 .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  /* color: color-mix(in srgb, var(--default-color), transparent 20%); */
}

.about-2 .our-story p:last-child {
  margin-bottom: 0;
}

.about-2 ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about-2 ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about-2 ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  /* color: var(--accent-color); */
  color: #f9f6f1;
}

.about-2 .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about-2 .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about-2 .watch-video:hover a {
  color: var(--accent-color);
}

.about-2 .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about-2 .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# 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: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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);
}

/*--------------------------------------------------------------
# Product List 2 Section
--------------------------------------------------------------*/
.product-list-2 .product-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination-4 li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/*--------------------------------------------------------------
# Product List 3 Section
--------------------------------------------------------------*/
.product-list-3 .product-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# 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: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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);
}

/*--------------------------------------------------------------
# Product Details 2 Section
--------------------------------------------------------------*/
.product-details-2 .product-images {
  position: relative;
  margin-bottom: 2rem;
}

.product-details-2 .product-images .main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--surface-color);
}

.product-details-2 .product-images .main-image-container .image-zoom-container {
  position: relative;
  width: 100%;
}

.product-details-2 .product-images .main-image-container .image-zoom-container .main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: crosshair;
}

.product-details-2 .product-images .drift-zoom-pane {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.product-details-2 .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;
  }
}

.product-details-2 .product-images .product-thumbnails {
  margin-top: 1rem;
}

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

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

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

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

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

.product-details-2 .product-images .product-thumbnails .swiper-button-next,
.product-details-2 .product-images .product-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);
}

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

.product-details-2 .product-info {
  padding: 0 0.5rem;
}

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

.product-details-2 .product-info .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-details-2 .product-info .product-meta .product-category {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.product-details-2 .product-info .product-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--heading-color);
}

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

.product-details-2 .product-info .product-price-container {
  display: flex;
  align-items: center;
}

.product-details-2 .product-info .product-price-container .current-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
}

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

.product-details-2 .product-info .product-price-container .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;
}

.product-details-2 .product-info .product-short-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.product-details-2 .product-info .product-availability {
  display: flex;
  align-items: center;
}

.product-details-2 .product-info .product-availability i {
  margin-right: 0.5rem;
}

.product-details-2 .product-info .product-availability .stock-count {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details-2 .product-info .product-colors .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details-2 .product-info .product-colors .color-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.product-details-2 .product-info .product-colors .color-options .color-option {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-details-2 .product-info .product-colors .color-options .color-option:hover {
  transform: scale(1.1);
}

.product-details-2 .product-info .product-colors .color-options .color-option.active {
  border-color: var(--accent-color);
}

.product-details-2 .product-info .product-colors .color-options .color-option.active i {
  opacity: 1;
}

.product-details-2 .product-info .product-colors .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;
}

.product-details-2 .product-info .product-colors .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details-2 .product-info .product-sizes .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details-2 .product-info .product-sizes .size-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.product-details-2 .product-info .product-sizes .size-options .size-option {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
}

.product-details-2 .product-info .product-sizes .size-options .size-option:hover {
  border-color: var(--accent-color);
}

.product-details-2 .product-info .product-sizes .size-options .size-option.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.product-details-2 .product-info .product-sizes .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details-2 .product-info .product-quantity .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details-2 .product-info .product-quantity .quantity-selector {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.product-details-2 .product-info .product-quantity .quantity-selector .quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.product-details-2 .product-info .product-quantity .quantity-selector .quantity-btn.decrease {
  border-radius: 4px 0 0 4px;
}

.product-details-2 .product-info .product-quantity .quantity-selector .quantity-btn.increase {
  border-radius: 0 4px 4px 0;
}

.product-details-2 .product-info .product-quantity .quantity-selector .quantity-input {
  width: 60px;
  height: 36px;
  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(--surface-color);
  font-size: 14px;
}

.product-details-2 .product-info .product-quantity .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.product-details-2 .product-info .product-quantity .quantity-selector .quantity-input::-webkit-inner-spin-button,
.product-details-2 .product-info .product-quantity .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-details-2 .product-info .product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.product-details-2 .product-info .product-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-details-2 .product-info .product-actions .btn i {
  margin-right: 0.5rem;
}

.product-details-2 .product-info .product-actions .add-to-cart-btn {
  flex: 1;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-details-2 .product-info .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%);
}

.product-details-2 .product-info .product-actions .buy-now-btn {
  flex: 1;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.product-details-2 .product-info .product-actions .buy-now-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-details-2 .product-info .product-actions .wishlist-btn {
  width: 46px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details-2 .product-info .product-actions .wishlist-btn i {
  margin-right: 0;
  font-size: 1.125rem;
}

.product-details-2 .product-info .product-actions .wishlist-btn:hover {
  color: #fff;
  border-color: #e53935;
  background-color: #e53935;
}

@media (max-width: 575px) {
  .product-details-2 .product-info .product-actions {
    flex-direction: column;
    justify-content: center;
  }

  .product-details-2 .product-info .product-actions .wishlist-btn {
    align-self: center;
  }
}

.product-details-2 .product-info .additional-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details-2 .product-info .additional-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details-2 .product-info .additional-info .info-item i {
  color: var(--accent-color);
  font-size: 1.125rem;
  margin-right: 0.75rem;
}

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

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

.product-details-2 .product-details-tabs .nav-tabs {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 1.5rem;
}

.product-details-2 .product-details-tabs .nav-tabs .nav-item {
  margin-bottom: -1px;
}

.product-details-2 .product-details-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

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

.product-details-2 .product-details-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
  border-bottom: 2px solid var(--accent-color);
}

.product-details-2 .product-details-tabs .tab-content {
  padding: 1rem 0;
}

.product-details-2 .product-details-tabs .tab-content h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.product-details-2 .product-details-tabs .tab-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.product-details-2 .product-details-tabs .tab-content ul li {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.product-details-2 .product-details-tabs .product-specifications .specs-group {
  margin-bottom: 2rem;
}

.product-details-2 .product-details-tabs .product-specifications .specs-group h4 {
  margin-bottom: 1rem;
}

.product-details-2 .product-details-tabs .product-specifications .specs-table .specs-row {
  display: flex;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details-2 .product-details-tabs .product-specifications .specs-table .specs-row:last-child {
  border-bottom: none;
}

.product-details-2 .product-details-tabs .product-specifications .specs-table .specs-row .specs-label {
  width: 40%;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details-2 .product-details-tabs .product-specifications .specs-table .specs-row .specs-value {
  width: 60%;
  padding: 0.75rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (min-width: 768px) {
  .product-details-2 .product-details-tabs .product-reviews .reviews-summary {
    flex-direction: row;
  }
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary .overall-rating {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-stars {
  margin: 0.5rem 0;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-stars i {
  color: #ffd700;
  font-size: 1.25rem;
  margin-right: 2px;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary .rating-breakdown {
  flex: 2;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label {
  width: 60px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress {
  flex: 1;
  height: 8px;
  margin: 0 0.75rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details-2
  .product-details-tabs
  .product-reviews
  .reviews-summary
  .rating-breakdown
  .rating-bar
  .progress
  .progress-bar {
  background-color: #ffd700;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-count {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: right;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container {
  margin-bottom: 3rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container h4 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container .form-control {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container .form-text {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container .star-rating input[type='radio'] {
  display: none;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container .star-rating label {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0 0.25rem;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container .star-rating label i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.2s ease;
}

.product-details-2
  .product-details-tabs
  .product-reviews
  .review-form-container
  .star-rating
  input[type='radio']:checked
  ~ label
  i,
.product-details-2 .product-details-tabs .product-reviews .review-form-container .star-rating label:hover i,
.product-details-2 .product-details-tabs .product-reviews .review-form-container .star-rating label:hover ~ label i {
  color: #ffd700;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.product-details-2 .product-details-tabs .product-reviews .review-form-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.product-details-2 .product-details-tabs .product-reviews .reviews-list h4 {
  margin-bottom: 1.5rem;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-list .review-item {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--surface-color);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-details-2 .product-details-tabs .product-reviews .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}

.product-details-2
  .product-details-tabs
  .product-reviews
  .reviews-list
  .review-item
  .review-header
  .reviewer-info
  .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.product-details-2
  .product-details-tabs
  .product-reviews
  .reviews-list
  .review-item
  .review-header
  .reviewer-info
  .reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-details-2
  .product-details-tabs
  .product-reviews
  .reviews-list
  .review-item
  .review-header
  .reviewer-info
  .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details-2 .product-details-tabs .product-reviews .reviews-list .review-item .review-header .review-rating i {
  color: #ffd700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-list .review-item .review-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.product-details-2 .product-details-tabs .product-reviews .reviews-list .review-item .review-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-list .load-more-btn {
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  border-color: var(--accent-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.product-details-2 .product-details-tabs .product-reviews .reviews-list .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Cart 2 Section
--------------------------------------------------------------*/
.cart-2 .cart-items {
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cart-2 .cart-items::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 0.25rem 0.25rem 0 0;
}

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

.cart-2 .cart-items .cart-header h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--heading-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cart-2 .cart-items .cart-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.cart-2 .cart-items .cart-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.cart-2 .cart-items .cart-item .product-info .product-image {
  width: 5.5rem;
  height: 5.5rem;
  min-width: 5.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-right: 1.25rem;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: transform 0.3s ease;
}

.cart-2 .cart-items .cart-item .product-info .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cart-2 .cart-items .cart-item .product-info .product-image:hover img {
  transform: scale(1.05);
}

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

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

.cart-2 .cart-items .cart-item .product-info .product-details .product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.cart-2 .cart-items .cart-item .product-info .product-details .product-title:hover {
  color: var(--accent-color);
}

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

.cart-2 .cart-items .cart-item .product-info .product-details .product-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 0.375rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.cart-2 .cart-items .cart-item .product-info .product-details .remove-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #dc3545;
  transition: width 0.3s ease;
}

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

.cart-2 .cart-items .cart-item .product-info .product-details .remove-item:hover::after {
  width: 100%;
}

.cart-2 .cart-items .cart-item .product-info .product-details .remove-item i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.cart-2 .cart-items .cart-item .product-info .product-details .remove-item:hover i {
  transform: translateX(-2px);
}

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

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

.cart-2 .cart-items .cart-item .quantity-selector {
  display: inline-flex;
  align-items: center;
  border-radius: 2rem;
  overflow: hidden;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.cart-2 .cart-items .cart-item .quantity-selector:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.cart-2 .cart-items .cart-item .quantity-selector .quantity-btn {
  background: none;
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cart-2 .cart-items .cart-item .quantity-selector .quantity-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: -1;
}

.cart-2 .cart-items .cart-item .quantity-selector .quantity-btn:hover {
  color: var(--accent-color);
}

.cart-2 .cart-items .cart-item .quantity-selector .quantity-btn:hover::before {
  transform: scale(1);
}

.cart-2 .cart-items .cart-item .quantity-selector .quantity-btn:active {
  transform: scale(0.95);
}

.cart-2 .cart-items .cart-item .quantity-selector .quantity-input {
  width: 2.5rem;
  text-align: center;
  border: none;
  font-size: 0.9375rem;
  color: var(--heading-color);
  font-weight: 600;
  padding: 0.25rem 0;
  background-color: transparent;
}

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

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

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

.cart-2 .cart-items .cart-item .item-total span {
  position: relative;
  display: inline-block;
}

.cart-2 .cart-items .cart-item .item-total span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 1px;
}

@media (max-width: 767.98px) {
  .cart-2 .cart-items .cart-item {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
}

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

.cart-2 .cart-items .cart-actions .coupon-form .input-group {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.03);
}

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

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

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

.cart-2 .cart-items .cart-actions .coupon-form .input-group .btn {
  border-radius: 0 2rem 2rem 0;
  font-size: 0.875rem;
  padding-right: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.cart-2 .cart-items .cart-actions .btn i {
  transition: transform 0.3s ease;
}

.cart-2 .cart-items .cart-actions .btn:hover i {
  transform: rotate(15deg);
}

.cart-2 .cart-summary {
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: sticky;
  top: 6.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cart-2 .cart-summary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 50%), var(--accent-color));
  border-radius: 0.25rem 0.25rem 0 0;
}

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

.cart-2 .cart-summary .summary-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 3rem;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 1px;
}

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

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

.cart-2 .cart-summary .summary-item.discount .summary-value {
  background-color: rgba(40, 167, 69, 0.1);
}

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

.cart-2 .cart-summary .summary-item .summary-value {
  font-weight: 600;
  color: var(--heading-color);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  transition: transform 0.3s ease;
}

.cart-2 .cart-summary .summary-item .summary-value:hover {
  transform: translateX(-3px);
}

.cart-2 .cart-summary .summary-item .shipping-options {
  width: 100%;
  padding: 0 1rem 1rem 1rem;
}

.cart-2 .cart-summary .summary-item .shipping-options .form-check {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
}

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

.cart-2 .cart-summary .summary-item .shipping-options .form-check .form-check-input {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  margin-left: -2rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  transition: all 0.3s ease;
}

.cart-2 .cart-summary .summary-item .shipping-options .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.cart-2 .cart-summary .summary-item .shipping-options .form-check .form-check-label {
  font-size: 0.875rem;
  color: var(--default-color);
  transition: color 0.3s ease;
}

.cart-2 .cart-summary .summary-item .shipping-options .form-check .form-check-label:hover {
  color: var(--accent-color);
}

.cart-2 .cart-summary .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.75rem 0;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent-color), transparent 95%),
    color-mix(in srgb, var(--background-color), transparent 95%)
  );
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

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

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

.cart-2 .cart-summary .summary-total .summary-value::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 1px;
}

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

.cart-2 .cart-summary .checkout-button .btn {
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cart-2 .cart-summary .checkout-button .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  z-index: -1;
  transition: transform 0.6s ease;
  transform: translateX(-100%);
}

.cart-2 .cart-summary .checkout-button .btn:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.cart-2 .cart-summary .checkout-button .btn:hover::before {
  transform: translateX(0);
}

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

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

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

.cart-2 .cart-summary .continue-shopping .btn-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
  border-radius: 2rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

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

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

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

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

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

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

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

.cart-2 .cart-summary .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

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

.cart-2 .btn-accent:hover,
.cart-2 .btn-accent:focus,
.cart-2 .btn-accent:active {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.cart-2 .btn-accent:active {
  transform: translateY(0);
}

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

.cart-2 .btn-outline-accent:hover,
.cart-2 .btn-outline-accent:focus,
.cart-2 .btn-outline-accent:active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.cart-2 .btn-outline-accent:active {
  transform: translateY(0);
}

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

.cart-2 .btn-outline-danger:hover,
.cart-2 .btn-outline-danger:focus,
.cart-2 .btn-outline-danger:active {
  color: var(--contrast-color);
  background-color: #dc3545;
  border-color: #dc3545;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.cart-2 .btn-outline-danger:active {
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .cart-2 .cart-summary {
    position: static;
    margin-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .cart-2 .cart-items,
  .cart-2 .cart-summary {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  overflow: hidden;
}

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

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

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

.blog-posts .meta-top {
  margin-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top i {
  font-size: 24px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .post-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.blog-details .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .post-img {
    height: 300px;
  }
}

.blog-details .article-content {
  padding: 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content {
    padding: 1.5rem;
  }
}

.blog-details .meta-categories {
  margin-bottom: 1rem;
}

.blog-details .meta-categories .category,
.blog-details .meta-categories .reading-time {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.blog-details .meta-categories .category i,
.blog-details .meta-categories .reading-time i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-details .title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 1rem 0 1.5rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .blog-details .title {
    font-size: 2rem;
  }
}

.blog-details .meta-top {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .meta-top ul li {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-top ul li i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.blog-details .meta-top ul li .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.blog-details .meta-top ul li a {
  color: var(--heading-color);
}

.blog-details .meta-top ul li a:hover {
  color: var(--accent-color);
}

.blog-details .content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-details .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--heading-color);
}

.blog-details .content p {
  margin-bottom: 1.5rem;
}

.blog-details .content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.blog-details .content ul li {
  margin-bottom: 0.5rem;
}

.blog-details .content .content-image {
  margin: 2rem 0;
}

.blog-details .content .content-image img {
  width: 100%;
  border-radius: 8px;
}

.blog-details .content .content-image figcaption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .content .content-image-split {
  margin: 2rem 0;
}

.blog-details .content .content-image-split img {
  border-radius: 8px;
}

.blog-details .content blockquote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.blog-details .content blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
}

.blog-details .content blockquote cite {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-style: normal;
  display: block;
}

.blog-details .content blockquote cite:before {
  content: '— ';
}

.blog-details .meta-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-details .meta-bottom .article-tags {
  display: flex;
  align-items: center;
}

.blog-details .meta-bottom .article-tags i {
  margin-right: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-bottom .article-tags .tags {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .meta-bottom .article-tags .tags li a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.blog-details .meta-bottom .article-tags .tags li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .meta-bottom .article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .meta-bottom .article-share span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-bottom .article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .meta-bottom .article-share a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .meta-bottom .article-share a i {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Properties Section
--------------------------------------------------------------*/
.properties .property-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.properties .property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.properties .property-card .property-image {
  position: relative;
  overflow: hidden;
}

.properties .property-card .property-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform 0.3s ease;
}

.properties .property-card .property-image:hover img {
  transform: scale(1.05);
}

.properties .property-card .property-image .property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.properties .property-card .property-image .property-badge.featured {
  background-color: #ff6b35;
}

.properties .property-card .property-image .property-badge.new {
  background-color: #28a745;
}

.properties .property-card .property-image .property-badge.exclusive {
  background-color: #6f42c1;
}

.properties .property-card .property-image .property-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.properties .property-card .property-details {
  padding: 25px;
}

.properties .property-card .property-details h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.properties .property-card .property-details h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.properties .property-card .property-details h3 a:hover {
  color: var(--accent-color);
}

.properties .property-card .property-details .property-location {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-card .property-details .property-location i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 14px;
}

.properties .property-card .property-details .property-location span {
  font-size: 14px;
  font-weight: 500;
}

.properties .property-card .property-details .property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.properties .property-card .property-details .property-specs .spec-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.properties .property-card .property-details .property-specs .spec-item i {
  color: var(--accent-color);
  margin-right: 6px;
  font-size: 12px;
}

.properties .property-card .property-details p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
}

.properties .property-card .property-details .property-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.properties .property-card .property-details .property-actions .btn {
  background-color: var(--accent-color);
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.properties .property-card .property-details .property-actions .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.properties .property-card .property-details .property-actions .property-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.properties .property-card .property-details .property-actions .property-meta .property-type {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.properties .property-card .property-details .property-actions .property-meta .property-date {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 768px) {
  .properties .property-card .property-details {
    padding: 20px;
  }

  .properties .property-card .property-details .property-specs {
    justify-content: space-between;
  }

  .properties .property-card .property-details .property-actions {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .properties .property-card .property-details .property-actions .property-meta {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(
    120deg,
    var(--heading-color),
    color-mix(in srgb, var(--heading-color), var(--accent-color) 30%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Account 2 Section
--------------------------------------------------------------*/
.account-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.account-2 .sidebar-toggle .btn-toggle {
  width: 100%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.account-2 .sidebar-toggle .btn-toggle i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.account-2 .sidebar-toggle .btn-toggle:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

@media (max-width: 991.98px) {
  .account-2 .profile-sidebar {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 992px) {
  .account-2 .profile-sidebar {
    max-width: 280px;
  }
}

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

.account-2 .profile-sidebar .profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account-2 .profile-sidebar .profile-header .profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
}

.account-2 .profile-sidebar .profile-header .profile-info h4 {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.account-2 .profile-sidebar .profile-header .profile-info .profile-bonus {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account-2 .profile-sidebar .profile-header .profile-info .profile-bonus i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.account-2 .profile-sidebar .profile-nav .nav-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 1.5rem 0 0.75rem;
  padding-left: 0.5rem;
}

.account-2 .profile-sidebar .profile-nav .nav-item {
  margin-bottom: 0.25rem;
}

.account-2 .profile-sidebar .profile-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}

.account-2 .profile-sidebar .profile-nav .nav-link i {
  margin-right: 0.75rem;
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: all 0.3s ease;
}

.account-2 .profile-sidebar .profile-nav .nav-link .badge {
  margin-left: auto;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
}

.account-2 .profile-sidebar .profile-nav .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.account-2 .profile-sidebar .profile-nav .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.account-2 .profile-sidebar .profile-nav .nav-link.active i {
  color: var(--contrast-color);
}

.account-2 .profile-sidebar .profile-nav .nav-link.logout {
  color: #ef4444;
}

.account-2 .profile-sidebar .profile-nav .nav-link.logout i {
  color: #ef4444;
}

.account-2 .profile-content .tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.account-2 .profile-content .tab-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.account-2 .profile-content .tab-header .tab-filters {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .account-2 .profile-content .tab-header .tab-filters {
    margin-top: 0;
    width: auto;
  }
}

.account-2 .profile-content .tab-header .tab-filters .dropdown .btn {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.625rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  /* Hide Bootstrap's default dropdown caret */
}

@media (min-width: 768px) {
  .account-2 .profile-content .tab-header .tab-filters .dropdown .btn {
    width: auto;
    min-width: 180px;
  }
}

.account-2 .profile-content .tab-header .tab-filters .dropdown .btn.dropdown-toggle::after {
  display: none;
}

.account-2 .profile-content .tab-header .tab-filters .dropdown .btn i {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.account-2 .profile-content .tab-header .tab-filters .dropdown .btn[aria-expanded='true'] i {
  transform: rotate(180deg);
}

.account-2 .profile-content .tab-header .tab-filters .dropdown .dropdown-menu {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  min-width: 100%;
}

.account-2 .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.account-2 .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:hover,
.account-2 .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:focus {
  background-color: rgba(0, 0, 0, 0.02);
}

.account-2 .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:active {
  background-color: rgba(0, 0, 0, 0.03);
}

.account-2 .profile-content .orders-table {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.account-2 .profile-content .orders-table .table-header {
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account-2 .profile-content .orders-table .table-header .sort-header {
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.account-2 .profile-content .orders-table .table-header .sort-header i {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.account-2 .profile-content .orders-table .table-header .sort-header i:hover {
  opacity: 1;
}

.account-2 .profile-content .orders-table .order-items .order-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.account-2 .profile-content .orders-table .order-items .order-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.account-2 .profile-content .orders-table .order-items .order-item:last-child {
  border-bottom: none;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-id {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.875rem;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account-2 .profile-content .orders-table .order-items .order-item .order-status {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-status.in-progress {
  color: #f59e0b;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-status.in-progress .status-dot {
  background-color: #f59e0b;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-status.delivered {
  color: #10b981;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-status.delivered .status-dot {
  background-color: #10b981;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-status.canceled {
  color: #ef4444;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-status.canceled .status-dot {
  background-color: #ef4444;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-total {
  font-weight: 600;
  font-size: 0.875rem;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}

.account-2 .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails {
  display: flex;
  align-items: center;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails .product-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.account-2 .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails .more-products {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--default-color);
  font-size: 0.75rem;
  font-weight: 600;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-products .order-details-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--default-color);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.account-2 .profile-content .orders-table .order-items .order-item .order-products .order-details-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.account-2 .profile-content .orders-table .order-items .order-item .order-products .order-details-link i {
  transition: transform 0.3s ease;
}

.account-2
  .profile-content
  .orders-table
  .order-items
  .order-item
  .order-products
  .order-details-link[aria-expanded='true']
  i {
  transform: rotate(180deg);
}

.account-2 .profile-content .orders-table .order-details {
  background-color: rgba(0, 0, 0, 0.01);
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}

.account-2 .profile-content .orders-table .order-details .order-details-content {
  padding: 1.5rem;
}

.account-2 .profile-content .orders-table .order-details .order-details-content .order-details-header {
  margin-bottom: 1.5rem;
}

.account-2 .profile-content .orders-table .order-details .order-details-content .order-details-header h5 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account-2 .profile-content .orders-table .order-details .order-details-content .order-details-header .order-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.account-2
  .profile-content
  .orders-table
  .order-details
  .order-details-content
  .order-details-header
  .order-info
  .info-item
  .info-label {
  font-weight: 500;
  margin-right: 0.5rem;
}

.account-2
  .profile-content
  .orders-table
  .order-details
  .order-details-content
  .order-details-header
  .order-info
  .info-item
  .info-value {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account-2 .profile-content .orders-table .order-details .order-details-content .order-items-list {
  margin-bottom: 1.5rem;
}

.account-2 .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.account-2
  .profile-content
  .orders-table
  .order-details
  .order-details-content
  .order-items-list
  .order-item-detail:last-child {
  border-bottom: none;
}

.account-2
  .profile-content
  .orders-table
  .order-details
  .order-details-content
  .order-items-list
  .order-item-detail
  .item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}

.account-2
  .profile-content
  .orders-table
  .order-details
  .order-details-content
  .order-items-list
  .order-item-detail
  .item-image
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-2
  .profile-content
  .orders-table
  .order-details
  .order-details-content
  .order-items-list
  .order-item-detail
  .item-info {
  flex-grow: 1;
}

.account-2
  .profile-content
  .orders-table
  .order-details
  .order-details-content
  .order-items-list
  .order-item-detail
  .item-info
  h6 {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.account-2
  .profile-content
  .orders-table
  .order-details
  .order-details-content
  .order-items-list
  .order-item-detail
  .item-info
  .item-meta {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account-2
  .profile-content
  .orders-table
  .order-details
  .order-details-content
  .order-items-list
  .order-item-detail
  .item-info
  .item-meta
  .item-sku {
  margin-right: 1rem;
}

.account-2
  .profile-content
  .orders-table
  .order-details
  .order-details-content
  .order-items-list
  .order-item-detail
  .item-price {
  font-weight: 600;
  font-size: 0.875rem;
  margin-left: 1rem;
}

.account-2 .profile-content .orders-table .order-details .order-details-content .order-summary {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.account-2 .profile-content .orders-table .order-details .order-details-content .order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.account-2 .profile-content .orders-table .order-details .order-details-content .order-summary .summary-row.total {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-color);
}

.account-2 .profile-content .orders-table .order-details .order-details-content .shipping-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.account-2 .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address,
.account-2 .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method {
  flex: 1;
  min-width: 200px;
}

.account-2 .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address h6,
.account-2 .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method h6 {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.account-2 .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address p,
.account-2 .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account-2 .profile-content .orders-table .order-details .order-details-content .cancellation-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}

.account-2 .profile-content .orders-table .order-details .order-details-content .cancellation-info h6 {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ef4444;
}

.account-2 .profile-content .orders-table .order-details .order-details-content .cancellation-info p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account-2 .profile-content .orders-table .pagination-container {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.account-2 .profile-content .orders-table .pagination-container .pagination .page-item {
  margin: 0 0.25rem;
}

.account-2 .profile-content .orders-table .pagination-container .pagination .page-item .page-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.account-2 .profile-content .orders-table .pagination-container .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account-2 .profile-content .orders-table .pagination-container .pagination .page-item:not(.active) .page-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.account-2 .profile-content .wishlist-items .wishlist-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.account-2 .profile-content .wishlist-items .wishlist-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.account-2 .profile-content .wishlist-items .wishlist-item .wishlist-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.account-2 .profile-content .wishlist-items .wishlist-item .wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.account-2 .profile-content .wishlist-items .wishlist-item .wishlist-image .remove-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.account-2 .profile-content .wishlist-items .wishlist-item .wishlist-image:hover img {
  transform: scale(1.05);
}

.account-2 .profile-content .wishlist-items .wishlist-item .wishlist-image:hover .remove-wishlist {
  opacity: 1;
  transform: translateY(0);
}

.account-2 .profile-content .wishlist-items .wishlist-item .wishlist-content {
  padding: 1.25rem;
}

.account-2 .profile-content .wishlist-items .wishlist-item .wishlist-content h5 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.account-2 .profile-content .wishlist-items .wishlist-item .wishlist-content .product-price {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.account-2 .profile-content .wishlist-items .wishlist-item .wishlist-content .btn-add-cart {
  width: 100%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account-2 .profile-content .wishlist-items .wishlist-item .wishlist-content .btn-add-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account-2 .profile-content .payment-methods .payment-method-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.account-2 .profile-content .payment-methods .payment-method-item .payment-card {
  display: flex;
  align-items: center;
}

.account-2 .profile-content .payment-methods .payment-method-item .payment-card .card-type {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.account-2 .profile-content .payment-methods .payment-method-item .payment-card .card-type i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.account-2 .profile-content .payment-methods .payment-method-item .payment-card .card-info {
  flex-grow: 1;
}

.account-2 .profile-content .payment-methods .payment-method-item .payment-card .card-info .card-number {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.account-2 .profile-content .payment-methods .payment-method-item .payment-card .card-info .card-expiry {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account-2 .profile-content .payment-methods .payment-method-item .payment-card .card-actions {
  display: flex;
  align-items: center;
}

.account-2 .profile-content .payment-methods .payment-method-item .payment-card .card-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.account-2 .profile-content .payment-methods .payment-method-item .payment-card .card-actions button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.account-2 .profile-content .payment-methods .payment-method-item .payment-card .card-actions button.btn-delete-card {
  color: #ef4444;
}

.account-2 .profile-content .payment-methods .payment-method-item .default-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #e8f4ff;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
  margin-top: 1rem;
}

.account-2 .profile-content .payment-methods .payment-method-item .btn-make-default {
  background-color: #f5f5f5;
  color: var(--default-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.account-2 .profile-content .payment-methods .payment-method-item .btn-make-default:hover {
  background-color: #e9e9e9;
}

.account-2 .profile-content .btn-add-payment,
.account-2 .profile-content .btn-add-address {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.account-2 .profile-content .btn-add-payment i,
.account-2 .profile-content .btn-add-address i {
  margin-right: 0.5rem;
}

.account-2 .profile-content .btn-add-payment:hover,
.account-2 .profile-content .btn-add-address:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account-2 .profile-content .reviews-list .review-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.account-2 .profile-content .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

@media (max-width: 575.98px) {
  .account-2 .profile-content .reviews-list .review-item .review-header {
    flex-direction: column;
  }
}

.account-2 .profile-content .reviews-list .review-item .review-header .review-product {
  display: flex;
  align-items: center;
}

.account-2 .profile-content .reviews-list .review-item .review-header .review-product .product-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.account-2 .profile-content .reviews-list .review-item .review-header .review-product .product-info h5 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.account-2 .profile-content .reviews-list .review-item .review-header .review-product .product-info .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account-2 .profile-content .reviews-list .review-item .review-header .review-rating {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

@media (max-width: 575.98px) {
  .account-2 .profile-content .reviews-list .review-item .review-header .review-rating {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.account-2 .profile-content .reviews-list .review-item .review-header .review-rating i {
  color: #f59e0b;
  margin-right: 0.25rem;
}

.account-2 .profile-content .reviews-list .review-item .review-header .review-rating i:last-child {
  margin-right: 0;
}

.account-2 .profile-content .reviews-list .review-item .review-content {
  margin-bottom: 1rem;
}

.account-2 .profile-content .reviews-list .review-item .review-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.account-2 .profile-content .reviews-list .review-item .review-actions {
  display: flex;
  justify-content: flex-end;
}

.account-2 .profile-content .reviews-list .review-item .review-actions button {
  background-color: #f5f5f5;
  color: var(--default-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.account-2 .profile-content .reviews-list .review-item .review-actions button:hover {
  background-color: #e9e9e9;
}

.account-2 .profile-content .reviews-list .review-item .review-actions button.btn-delete-review {
  color: #ef4444;
}

.account-2 .profile-content .personal-info-form {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.account-2 .profile-content .personal-info-form .form-label {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.account-2 .profile-content .personal-info-form .form-control {
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.account-2 .profile-content .personal-info-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(54, 144, 231, 0.1);
}

.account-2 .profile-content .personal-info-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.account-2 .profile-content .personal-info-form .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(54, 144, 231, 0.1);
}

.account-2 .profile-content .personal-info-form .btn-save {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account-2 .profile-content .personal-info-form .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account-2 .profile-content .addresses-list .address-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  height: 100%;
  position: relative;
}

.account-2 .profile-content .addresses-list .address-item .address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.account-2 .profile-content .addresses-list .address-item .address-header h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.account-2 .profile-content .addresses-list .address-item .address-header .address-actions {
  display: flex;
  align-items: center;
}

.account-2 .profile-content .addresses-list .address-item .address-header .address-actions button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.account-2 .profile-content .addresses-list .address-item .address-header .address-actions button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.account-2 .profile-content .addresses-list .address-item .address-header .address-actions button.btn-delete-address {
  color: #ef4444;
}

.account-2 .profile-content .addresses-list .address-item .address-content {
  margin-bottom: 1rem;
}

.account-2 .profile-content .addresses-list .address-item .address-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.account-2 .profile-content .addresses-list .address-item .default-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #e8f4ff;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
}

.account-2 .profile-content .addresses-list .address-item .btn-make-default {
  background-color: #f5f5f5;
  color: var(--default-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account-2 .profile-content .addresses-list .address-item .btn-make-default:hover {
  background-color: #e9e9e9;
}

.account-2 .profile-content .notifications-settings {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.account-2 .profile-content .notifications-settings .notification-group {
  margin-bottom: 2rem;
}

.account-2 .profile-content .notifications-settings .notification-group:last-of-type {
  margin-bottom: 1.5rem;
}

.account-2 .profile-content .notifications-settings .notification-group h5 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account-2 .profile-content .notifications-settings .notification-group .notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.account-2 .profile-content .notifications-settings .notification-group .notification-item:last-child {
  border-bottom: none;
}

.account-2
  .profile-content
  .notifications-settings
  .notification-group
  .notification-item
  .notification-info
  .notification-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.account-2
  .profile-content
  .notifications-settings
  .notification-group
  .notification-item
  .notification-info
  .notification-desc {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account-2 .profile-content .notifications-settings .notification-group .notification-item .form-check-input {
  width: 2.5rem;
  height: 1.25rem;
  margin-left: 1rem;
}

.account-2 .profile-content .notifications-settings .notification-group .notification-item .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.account-2 .profile-content .notifications-settings .notification-actions {
  display: flex;
  justify-content: flex-end;
}

.account-2 .profile-content .notifications-settings .notification-actions .btn-save {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account-2 .profile-content .notifications-settings .notification-actions .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register .registration-form-wrapper {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.register .registration-form-wrapper .section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.register .registration-form-wrapper .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .registration-form-wrapper label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.register .registration-form-wrapper .form-control {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: var(--default-color);
}

.register .registration-form-wrapper .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.register .registration-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 0.9rem;
}

.register .registration-form-wrapper .password-input {
  position: relative;
}

.register .registration-form-wrapper .password-input .toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.register .registration-form-wrapper .password-input .toggle-password:hover {
  color: var(--heading-color);
}

.register .registration-form-wrapper .password-requirements {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}

.register .registration-form-wrapper .form-check .form-check-input {
  float: none;
  margin-left: 0;
  margin-right: 0.5rem;
  cursor: pointer;
}

.register .registration-form-wrapper .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register .registration-form-wrapper .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register .registration-form-wrapper .form-check .form-check-label {
  color: var(--default-color);
  font-weight: normal;
  cursor: pointer;
}

.register .registration-form-wrapper .form-check .form-check-label a {
  text-decoration: underline;
}

.register .registration-form-wrapper .form-check .form-check-label a:hover {
  text-decoration: none;
}

.register .registration-form-wrapper .btn-primary {
  padding: 0.75rem 2rem;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

.register .registration-form-wrapper .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(-1px);
}

.register .registration-form-wrapper .btn-primary:active {
  transform: translateY(0);
}

.register .registration-form-wrapper .loading,
.register .registration-form-wrapper .error-message,
.register .registration-form-wrapper .sent-message {
  margin: 1rem 0;
}

@media (max-width: 767.98px) {
  .register .register-form {
    padding: 1.5rem;
  }

  .register .register-form .section-header h2 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Login Section
--------------------------------------------------------------*/
.login .auth-container {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
  position: relative;
}

@media (max-width: 576px) {
  .login .auth-container {
    margin: 0 15px;
  }
}

.login .auth-form {
  padding: 40px 35px;
  display: none;
}

.login .auth-form.active {
  display: block;
  animation: slideIn 0.5s ease-out;
}

@media (max-width: 576px) {
  .login .auth-form {
    padding: 30px 25px;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

.login .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.login .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

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

.login .input-group {
  position: relative;
  margin-bottom: 20px;
}

.login .input-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  transition: color 0.3s;
  pointer-events: none;
}

.login .input-group .form-control {
  padding: 16px 16px 16px 50px;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 12px !important;
}

.login .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  outline: none;
}

.login .input-group .form-control:focus ~ .input-icon {
  color: var(--accent-color);
}

.login .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.login .input-group .password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  z-index: 3;
  transition: color 0.3s;
}

.login .input-group .password-toggle:hover {
  color: var(--accent-color);
}

.login .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .login .name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.login .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.login .form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login .form-options .remember-me input[type='checkbox'] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.login .form-options .remember-me input[type='checkbox']:checked {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.login .form-options .remember-me input[type='checkbox']:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login .form-options .remember-me label {
  font-size: 14px;
  color: var(--default-color);
  cursor: pointer;
}

.login .form-options .forgot-password {
  font-size: 14px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.login .form-options .forgot-password:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.login .terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.login .terms-check input[type='checkbox'] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 2px;
  flex-shrink: 0;
}

.login .terms-check input[type='checkbox']:checked {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.login .terms-check input[type='checkbox']:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login .terms-check label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.4;
  cursor: pointer;
}

.login .terms-check label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.login .terms-check label a:hover {
  text-decoration: underline;
}

.login .auth-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login .auth-btn.primary-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.login .auth-btn.primary-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-1px);
}

.login .auth-btn.primary-btn:active {
  transform: translateY(0);
}

.login .auth-btn.social-btn {
  background: var(--background-color);
  color: var(--default-color);
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.login .auth-btn.social-btn:hover {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.login .auth-btn.social-btn i {
  font-size: 18px;
}

.login .auth-btn i {
  font-size: 16px;
}

.login .divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
}

.login .divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.login .divider span {
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login .switch-form {
  text-align: center;
  margin-top: 25px;
}

.login .switch-form span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

.login .switch-form .switch-btn {
  background: none;
  border: none;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-left: 5px;
  transition: color 0.3s;
}

.login .switch-form .switch-btn:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Checkout 3 Section
--------------------------------------------------------------*/
.checkout-3 {
  --step-border-radius: 20px;
  --section-spacing: 30px;
}

.checkout-3 .checkout-steps .checkout-step {
  background-color: var(--surface-color);
  border-radius: var(--step-border-radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--section-spacing);
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.checkout-3 .checkout-steps .checkout-step:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkout-3 .checkout-steps .checkout-step .step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-3 .checkout-steps .checkout-step .step-header .step-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.checkout-3 .checkout-steps .checkout-step .step-header .step-title {
  flex: 1;
}

.checkout-3 .checkout-steps .checkout-step .step-header .step-title h3 {
  margin: 0 0 5px 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.checkout-3 .checkout-steps .checkout-step .step-header .step-title p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout-3 .checkout-steps .checkout-step .step-content {
  padding: 30px;
}

.checkout-3 .checkout-steps .checkout-step .step-content label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.checkout-3 .checkout-steps .checkout-step .step-content .form-control,
.checkout-3 .checkout-steps .checkout-step .step-content .form-select {
  padding: 12px 15px;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 0.95rem;
  background-color: var(--surface-color);
  transition: all 0.25s ease;
}

.checkout-3 .checkout-steps .checkout-step .step-content .form-control:focus,
.checkout-3 .checkout-steps .checkout-step .step-content .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout-3 .checkout-steps .checkout-step .step-content .form-control::placeholder,
.checkout-3 .checkout-steps .checkout-step .step-content .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
}

.checkout-3 .checkout-steps .checkout-step .step-content .form-check {
  margin-top: 15px;
}

.checkout-3 .checkout-steps .checkout-step .step-content .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.checkout-3 .checkout-steps .checkout-step .step-content .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkout-3 .checkout-steps .checkout-step .step-content .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout-3 .checkout-steps .checkout-step .step-content .form-check .form-check-label {
  font-size: 0.9rem;
}

.checkout-3 .checkout-steps .checkout-step .step-content .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.checkout-3 .checkout-steps .checkout-step .step-content .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.checkout-3 .checkout-steps .checkout-step .step-content .card-input-wrapper,
.checkout-3 .checkout-steps .checkout-step .step-content .cvv-wrapper {
  position: relative;
}

.checkout-3 .checkout-steps .checkout-step .step-content .card-input-wrapper .card-icons,
.checkout-3 .checkout-steps .checkout-step .step-content .cvv-wrapper .card-icons {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
}

.checkout-3 .checkout-steps .checkout-step .step-content .card-input-wrapper .card-icons i,
.checkout-3 .checkout-steps .checkout-step .step-content .cvv-wrapper .card-icons i {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout-3 .checkout-steps .checkout-step .step-content .card-input-wrapper .help-icon,
.checkout-3 .checkout-steps .checkout-step .step-content .cvv-wrapper .help-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
}

.checkout-3 .checkout-steps .checkout-step .step-content .card-input-wrapper .help-icon:hover,
.checkout-3 .checkout-steps .checkout-step .step-content .cvv-wrapper .help-icon:hover {
  color: var(--accent-color);
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option:last-child {
  margin-bottom: 0;
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option input[type='radio'] {
  display: none;
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-icon {
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 24px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-info {
  flex: 1;
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-info p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option.active {
  border-color: var(--accent-color);
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option.active label:after {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.checkout-3
  .checkout-steps
  .checkout-step
  .step-content
  .payment-methods
  .payment-method-option.active
  label
  .method-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.checkout-3
  .checkout-steps
  .checkout-step
  .step-content
  .payment-methods
  .payment-method-option.active
  .payment-details {
  display: block !important;
  animation: slideDown 0.3s ease forwards;
}

.checkout-3 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option .payment-details {
  display: none;
  padding: 5px 20px 20px;
}

.checkout-3
  .checkout-steps
  .checkout-step
  .step-content
  .payment-methods
  .payment-method-option
  .payment-details
  .alert-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: none;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.checkout-3
  .checkout-steps
  .checkout-step
  .step-content
  .payment-methods
  .payment-method-option
  .payment-details
  .alert-info
  i {
  font-size: 18px;
  color: var(--accent-color);
}

.checkout-3 .checkout-steps .checkout-step .step-content .checkout-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.checkout-3 .checkout-steps .checkout-step .step-content .checkout-actions .btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-3 .checkout-steps .checkout-step .step-content .checkout-actions .btn i {
  font-size: 18px;
}

.checkout-3 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-secondary {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border: none;
  color: var(--default-color);
}

.checkout-3 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.checkout-3 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border: none;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.checkout-3 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

.checkout-3 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-primary:active {
  transform: translateY(0);
}

.checkout-3 .checkout-steps .checkout-step .step-content .terms-agreement {
  margin-bottom: 20px;
}

.checkout-3 .checkout-summary-mobile {
  background-color: var(--surface-color);
  border-radius: var(--step-border-radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--section-spacing);
  overflow: hidden;
}

.checkout-3 .checkout-summary-mobile .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-3 .checkout-summary-mobile .summary-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout-3 .checkout-summary-mobile .summary-header .toggle-summary-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 0;
}

.checkout-3 .checkout-summary-mobile .summary-header .toggle-summary-btn i {
  transition: transform 0.3s ease;
}

.checkout-3 .checkout-summary-mobile .summary-header .toggle-summary-btn[aria-expanded='true'] i {
  transform: rotate(180deg);
}

.checkout-3 .checkout-summary-mobile .summary-content {
  padding: 20px;
}

.checkout-3 .checkout-summary-mobile .summary-content .product-list {
  margin-bottom: 20px;
}

.checkout-3 .checkout-summary-mobile .summary-content .product-list .product-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-3 .checkout-summary-mobile .summary-content .product-list .product-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checkout-3 .checkout-summary-mobile .summary-content .product-list .product-item .product-image {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-3 .checkout-summary-mobile .summary-content .product-list .product-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-3 .checkout-summary-mobile .summary-content .product-list .product-item .product-info {
  flex: 1;
}

.checkout-3 .checkout-summary-mobile .summary-content .product-list .product-item .product-info h5 {
  font-size: 0.95rem;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.checkout-3 .checkout-summary-mobile .summary-content .product-list .product-item .product-info .product-meta {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.checkout-3 .checkout-summary-mobile .summary-content .product-list .product-item .product-info .product-price {
  font-size: 0.9rem;
  font-weight: 500;
}

.checkout-3 .checkout-summary-mobile .summary-content .product-list .product-item .product-info .product-price .qty {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 3px;
}

.checkout-3 .checkout-summary-mobile .summary-content .discount-code {
  margin-bottom: 20px;
}

.checkout-3 .checkout-summary-mobile .summary-content .discount-code .input-group .form-control {
  border-radius: 10px 0 0 10px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: none;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.checkout-3 .checkout-summary-mobile .summary-content .discount-code .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.checkout-3 .checkout-summary-mobile .summary-content .discount-code .input-group .btn-apply {
  border-radius: 0 10px 10px 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 15px;
}

.checkout-3 .checkout-summary-mobile .summary-content .discount-code .input-group .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.checkout-3 .checkout-summary-mobile .summary-content .price-breakdown {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 15px;
  padding: 15px;
}

.checkout-3 .checkout-summary-mobile .summary-content .price-breakdown .price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.checkout-3 .checkout-summary-mobile .summary-content .price-breakdown .price-row:last-child {
  margin-bottom: 0;
}

.checkout-3 .checkout-summary-mobile .summary-content .price-breakdown .price-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 700;
  font-size: 1rem;
}

.checkout-3 .order-summary {
  background-color: var(--surface-color);
  border-radius: var(--step-border-radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: sticky;
  top: 90px;
}

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

.checkout-3 .order-summary .items-container {
  margin-bottom: 25px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 5px;
}

.checkout-3 .order-summary .items-container::-webkit-scrollbar {
  width: 6px;
}

.checkout-3 .order-summary .items-container::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 3px;
}

.checkout-3 .order-summary .items-container::-webkit-scrollbar-thumb {
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 3px;
}

.checkout-3 .order-summary .items-container .order-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-3 .order-summary .items-container .order-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checkout-3 .order-summary .items-container .order-item .item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  flex-shrink: 0;
}

.checkout-3 .order-summary .items-container .order-item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-3 .order-summary .items-container .order-item .item-details {
  flex: 1;
}

.checkout-3 .order-summary .items-container .order-item .item-details .item-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.checkout-3 .order-summary .items-container .order-item .item-details .item-variant {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.checkout-3 .order-summary .items-container .order-item .item-details .item-price-qty {
  font-size: 0.95rem;
  font-weight: 500;
}

.checkout-3 .order-summary .items-container .order-item .item-details .item-price-qty .item-qty {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 5px;
}

.checkout-3 .order-summary .discount-code-container {
  margin-bottom: 25px;
}

.checkout-3 .order-summary .discount-code-container .input-group .form-control {
  border-radius: 12px 0 0 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: none;
  padding: 12px 15px;
  background-color: var(--surface-color);
}

.checkout-3 .order-summary .discount-code-container .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.checkout-3 .order-summary .discount-code-container .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
}

.checkout-3 .order-summary .discount-code-container .input-group .btn-apply {
  border-radius: 0 12px 12px 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 20px;
}

.checkout-3 .order-summary .discount-code-container .input-group .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.checkout-3 .order-summary .summary-details {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 40%);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
}

.checkout-3 .order-summary .summary-details .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.checkout-3 .order-summary .summary-details .summary-row .summary-label {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.checkout-3 .order-summary .summary-details .summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 1.2rem;
  font-weight: 700;
}

.checkout-3 .order-summary .checkout-security {
  margin-bottom: 20px;
  text-align: center;
}

.checkout-3 .order-summary .checkout-security .security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.checkout-3 .order-summary .checkout-security .security-badge i {
  color: #198754;
  font-size: 18px;
}

.checkout-3 .order-summary .checkout-security .security-badge span {
  font-weight: 500;
  font-size: 0.95rem;
}

.checkout-3 .order-summary .checkout-security .payment-options {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.checkout-3 .order-summary .checkout-security .payment-options i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout-3 .order-summary .shipping-guarantee {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 15px;
  padding: 15px;
}

.checkout-3 .order-summary .shipping-guarantee .guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.checkout-3 .order-summary .shipping-guarantee .guarantee-item:last-child {
  margin-bottom: 0;
}

.checkout-3 .order-summary .shipping-guarantee .guarantee-item i {
  color: var(--accent-color);
}

.checkout-3 .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.checkout-3 .modal-content .modal-header {
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 20px 30px;
}

.checkout-3 .modal-content .modal-header .modal-title {
  font-weight: 600;
}

.checkout-3 .modal-content .modal-body {
  padding: 30px;
  font-size: 0.95rem;
}

.checkout-3 .modal-content .modal-body p {
  margin-bottom: 15px;
}

.checkout-3 .modal-content .modal-body p:last-child {
  margin-bottom: 0;
}

.checkout-3 .modal-content .modal-footer {
  padding: 15px 30px;
  border-top-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-3 .modal-content .modal-footer .btn-primary {
  background-color: var(--accent-color);
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-weight: 500;
}

.checkout-3 .modal-content .modal-footer .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .checkout-3 .order-summary {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .checkout-3 .checkout-step .step-header {
    padding: 20px;
  }

  .checkout-3 .checkout-step .step-header .step-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .checkout-3 .checkout-step .step-header .step-title h3 {
    font-size: 1.1rem;
  }

  .checkout-3 .checkout-step .step-content {
    padding: 20px;
  }
}

.checkout-3 .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  position: relative;
  overflow: hidden;
  /* Left Sidebar */
  /* Testimonials Carousel */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials .testimonials-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.testimonials .testimonials-sidebar .avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar:first-child {
  margin-left: 0;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar:hover {
  transform: scale(1.1) translateY(-4px);
  z-index: 5;
}

.testimonials .testimonials-sidebar .avatar-stack .avatar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  margin-left: -12px;
  border: 3px solid var(--surface-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  margin-bottom: 24px;
}

.testimonials .testimonials-sidebar .sidebar-content .satisfied-badge i {
  font-size: 12px;
}

.testimonials .testimonials-sidebar .sidebar-content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.testimonials .testimonials-sidebar .sidebar-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all i {
  transition: transform 0.3s ease;
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all:hover i {
  transform: translateX(5px);
}

.testimonials .testimonials-carousel {
  padding-bottom: 60px;
}

.testimonials .testimonials-carousel .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials .testimonial-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #9333ea 40%));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonials .testimonial-card:hover::before {
  opacity: 1;
}

.testimonials .testimonial-card:hover .quote-mark {
  transform: scale(1.15);
  background: var(--accent-color);
  color: var(--contrast-color);
}

.testimonials .testimonial-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.testimonials .testimonial-card .card-top .stars {
  display: flex;
  gap: 4px;
}

.testimonials .testimonial-card .card-top .stars i {
  color: #f59e0b;
  font-size: 16px;
}

.testimonials .testimonial-card .card-top .quote-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.testimonials .testimonial-card .card-top .quote-mark i {
  font-size: 22px;
}

.testimonials .testimonial-card .testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 28px;
  position: relative;
}

.testimonials .testimonial-card .author-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials .testimonial-card .author-info .author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.testimonials .testimonial-card .author-info .author-details h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 4px;
}

.testimonials .testimonial-card .author-info .author-details span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 10px;
  background: var(--accent-color);
}

@media (max-width: 1199px) {
  .testimonials .testimonials-sidebar {
    padding-right: 24px;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 28px;
  }

  .testimonials .testimonial-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonials-sidebar {
    padding-right: 0;
    padding-bottom: 48px;
    text-align: center;
  }

  .testimonials .testimonials-sidebar .avatar-stack {
    justify-content: center;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 26px;
  }

  .testimonials .testimonials-sidebar .sidebar-content p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonials-sidebar .avatar-stack .avatar,
  .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    width: 42px;
    height: 42px;
  }

  .testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 24px;
  }

  .testimonials .testimonials-sidebar .sidebar-content p {
    font-size: 15px;
  }

  .testimonials .testimonials-sidebar .sidebar-content .btn-view-all {
    padding: 12px 28px;
    font-size: 14px;
  }

  .testimonials .testimonial-card {
    padding: 24px;
  }

  .testimonials .testimonial-card .card-top .stars i {
    font-size: 14px;
  }

  .testimonials .testimonial-card .card-top .quote-mark {
    width: 40px;
    height: 40px;
  }

  .testimonials .testimonial-card .card-top .quote-mark i {
    font-size: 18px;
  }

  .testimonials .testimonial-card .testimonial-text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .testimonials .testimonial-card .author-info {
    gap: 12px;
    padding-top: 16px;
  }

  .testimonials .testimonial-card .author-info .author-img {
    width: 46px;
    height: 46px;
  }

  .testimonials .testimonial-card .author-info .author-details h5 {
    font-size: 15px;
  }

  .testimonials .testimonial-card .author-info .author-details span {
    font-size: 13px;
  }

  .testimonials .testimonials-carousel {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .testimonials::before,
  .testimonials::after {
    display: none;
  }

  .testimonials .testimonials-sidebar {
    padding-bottom: 40px;
  }

  .testimonials .testimonials-sidebar .avatar-stack {
    margin-bottom: 24px;
  }

  .testimonials .testimonials-sidebar .avatar-stack .avatar,
  .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    width: 38px;
    height: 38px;
    margin-left: -10px;
  }

  .testimonials .testimonials-sidebar .avatar-stack .avatar:first-child,
  .testimonials .testimonials-sidebar .avatar-stack .avatar-count:first-child {
    margin-left: 0;
  }

  .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    font-size: 11px;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 22px;
  }

  .testimonials .testimonials-sidebar .sidebar-content p {
    font-size: 14px;
  }

  .testimonials .testimonial-card {
    padding: 20px;
  }

  .testimonials .testimonial-card .card-top {
    margin-bottom: 20px;
  }

  .testimonials .testimonial-card .card-top .quote-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .testimonials .testimonial-card .card-top .quote-mark i {
    font-size: 16px;
  }

  .testimonials .testimonial-card .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-card .author-info .author-img {
    width: 42px;
    height: 42px;
    border-width: 2px;
  }

  .testimonials .testimonial-card .author-info .author-details h5 {
    font-size: 14px;
  }

  .testimonials .testimonial-card .author-info .author-details span {
    font-size: 12px;
  }

  .testimonials .testimonials-carousel {
    padding-bottom: 45px;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 26px;
  }
}
