@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #ffffff; 
  --default-color: #383838;
  --heading-color: #2c2c2b; 
  --accent-color: #660033; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

:root {
  --nav-color: #383838;  
  --nav-hover-color: #660033; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #383838; 
  --nav-dropdown-hover-color: #660033; 
}

.light-background {
  --background-color: #fbfbfb;
  --accent-color: #660033;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #660033;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffe599;
  --surface-color: #fbfbfb;
  --contrast-color: #ffffff;
}
:root {
  --default-size-small: 0.8rem;
  --default-font-size: 1rem;
  --default-font-size1: 1.1rem;
}
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
}

/* 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);
}

body,
html {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--default-color);
  font-size: var(--default-font-size);
  text-decoration: none;
  outline: 0 solid transparent;
  transition: 0.3s;
}

a:focus,
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);
}

.btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .main-header {
  display: flex;
  transition: all 0.5s ease;
  align-items: center;
  justify-content: center;
  max-height: 140px;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.header .main-header .logo img {
  max-height: 140px;
  margin-right: 8px;
}

@media (max-width: 1200px) {
  .header .main-header .logo img {
    max-height: 90px;
    margin-right: 8px;
  }
}

.header .main-header .desktop-search-form {
  min-width: 400px;
}

@media (max-width: 1200px) {
  .header .main-header .desktop-search-form {
    display: none;
  }
}

.header .main-header .header-actions {
  gap: 16px;
}

.header .main-header .header-actions .header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--default-color);
  font-size: var(--default-font-size);
  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(--accent-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: var(--default-font-size);
  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: var(--default-font-size);
  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: var(--default-font-size);
}

.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: var(--default-font-size);
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  transition: 0.3s;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.header .search-form {
  margin: 0;
}

.header .search-form .input-group {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  overflow: hidden;
  overflow: visible;
  background-color: var(--surface-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header .search-form .input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.header .search-form .input-group .form-control {
  border: none;
  padding: 12px 15px;
  font-size: var(--default-font-size);
  background-color: transparent;
  color: var(--default-color);
}

.header .search-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: var(--default-font-size);
}

.header .search-form .input-group .form-control:focus {
  box-shadow: none;
}

.header .search-form .input-group .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 25px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 50px !important;
  margin: 3px;
}

.header .search-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.header .search-form .input-group .btn i {
  font-size: var(--default-font-size);
}

@media (min-width: 1200px) {
  .header .header-nav {
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }
}

.header #mobileSearch {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  z-index: 1000;
}

.header #mobileSearch .search-form {
  padding: 10px 0;
}

@media (max-width: 992px) {
  .header .main-header .header-actions {
    margin-right: 1rem;
    gap: 1rem;
  }

  .header .main-header .header-actions .header-action-btn {
    padding: 0.25rem;
  }

  .header .main-header .header-actions .header-action-btn i {
    font-size: 20px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .main-header {
  height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 2s ease;
}

@media (max-width: 1199px) {
  .scrolled .header .main-header {
    width: 100%;
    height: 90px;
    position: fixed;
    visibility: visible;
    transition: 0.3s;
    background-color: var(--background-color);
  }
}

/*--------------------------------------------------------------
# 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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 15px;
    margin-left: 2px;
    font-size: var(--default-font-size);
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    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;
    margin: 0;
    font-size: var(--default-font-size);
    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(--contrast-color);
    background-color: var(--nav-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);
    top: 0px;
    right: 0px;
    font-size: 32px;
    line-height: 0;
    cursor: pointer;
    display: block !important;
    z-index: 998;
    transition: 0.3s;
  }

  .mobile-nav-toggle:hover {
    color: var(--nav-hover-color);
  }

  .navmenu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    z-index: 997;
    transition: 0.3s;
    width: 300px;
    overflow: hidden;
  }

  .navmenu ul {
    display: block;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 998;
  }

  .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;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    right: 310px;
    font-size: 36px;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: var(--nav-mobile-background-color);
    transition: 0.3s;
  }
}

/* Products Mega Menu 1 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-1 {
    position: static;
    /* Bootstrap Tabs Navigation */
    /* Tab Content */
  }

  .navmenu .products-megamenu-1 .mobile-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-1 .desktop-megamenu,
  .navmenu .products-megamenu-1 .active,
  .navmenu .products-megamenu-1 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .products-megamenu-1 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs {
    margin-bottom: 15px;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 10px 20px;
    color: var(--nav-dropdown-color);
    font-weight: 500;
    font-size: var(--default-font-size);
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
    border-color: transparent;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Grid */
    /* Product Grid */
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .tab-content {
    display: none;
  }

  .navmenu .products-megamenu-1 .megamenu-content .tab-content.active {
    display: block;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column {
    background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4 {
    color: var(--heading-color);
    font-size: var(--default-font-size);
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li {
    margin-bottom: 10px;
    background-color: none !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start !important;
    width: 100%;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li:last-child {
    margin-bottom: 0;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a {
    color: var(--nav-dropdown-color);
    font-size: var(--default-font-size);
    transition: 0.3s;
    padding: 0 0 0 20px;
    display: block;
    position: relative;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:before {
    content: "\f285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--accent-color);
    opacity: 0.7;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover:before {
    opacity: 1;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column .active {
    background-color: none;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card {
    background-color: var(--surface-color);
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image {
    height: 160px;
    position: relative;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new,
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 1;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new {
    background-color: #28a745;
    color: white;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
    background-color: #dc3545;
    color: white;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info {
    padding: 15px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info h5 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: var(--default-font-size);
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price .original-price {
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-right: 5px;
    font-weight: normal;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view {
    display: inline-block;
    padding: 5px 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 4px;
    font-size: var(--default-font-size);
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
}

/* Products Mega Menu 1 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-1 .desktop-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: var(--default-font-size);
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li ul {
    padding: 0;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/* Products Mega Menu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-2 {
    position: static;
    /* Tabs Navigation */
    /* Tab Content */
  }

  .navmenu .products-megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-2 .desktop-megamenu,
  .navmenu .products-megamenu-2 .active,
  .navmenu .products-megamenu-2 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .products-megamenu-2 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs {
    padding: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-item {
    margin: 0;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    color: var(--nav-dropdown-color);
    font-weight: 600;
    font-size: var(--default-font-size);
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.5px;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .products-megamenu-2 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Layout */
    /* Categories Section */
    /* Featured Section */
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .tab-pane {
    padding: 25px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .category-layout {
    display: flex;
    gap: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section {
    flex: 1;
    /* Category Headers */
    /* Category Links */
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 15px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers h4 {
    color: var(--heading-color);
    font-size: var(--default-font-size);
    font-weight: 600;
    position: relative;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a {
    color: var(--nav-dropdown-color);
    font-size: var(--default-font-size);
    transition: 0.3s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section {
    width: 300px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image {
    position: relative;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content h3 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 4px;
    font-size: var(--default-font-size);
    font-weight: 500;
    transition: 0.3s;
    width: fit-content;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
  }
}

/* Products Mega Menu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: var(--default-font-size);
    transition: 0.3s;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li ul {
    padding: 0;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: var(--default-font-size);
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer .footer-about p {
  font-size: var(--default-font-size);
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .payment-methods {
  display: flex;
  align-items: center;
}

.footer .payment-methods span {
  margin-right: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .payment-methods .payment-icons {
  display: flex;
  gap: 12px;
}

.footer .payment-methods .payment-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.footer .credits {
  margin-top: 8px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  margin-top: 180px;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

@media (max-width: 1198px) {
  .page-title {
    margin-top: 90px;
  }
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--default-font-size);
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.page-title-start {
  margin-top: 180px;
}

@media (max-width: 1198px) {
  .page-title-start {
    margin-top: 90px;
  }
}

.page-title-2 {
  margin-top: 140px;
}

@media (max-width: 1198px) {
  .page-title-2 {
    margin-top: 90px;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    padding: 20px 0;
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 26px;
    font-weight: 600;
    position: relative;
  }

  .section-title h2:before,
  .section-title h2:after {
    display: none;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section .text {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Navigation Section
--------------------------------------------------------------*/
.navigation {
  font-size: var(--default-font-size);
  background-color: var(--background-color);
}

.navigation .right-side {
  width: 80%;
}

.navigation .left-side {
  width: 20%;
}

.navigation .tabs-wrapper {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

.navigation .nav-tabs {
  border: 0;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .navigation .nav-tabs {
    flex-direction: column;
    gap: 15px;
  }
}

.navigation .nav-item {
  flex: 1;
  min-width: 0;
}

@media (max-width: 992px) {
  .navigation .nav-item {
    flex: none;
  }
}

.navigation .nav-link {
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
  cursor: pointer;
}

.navigation .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@media (min-width: 998px) {
  .navigation .nav-link {
    min-width: 300px;
    padding: 20px 20px;
  }
}

@media (max-width: 768px) {
  .navigation .nav-link {
    padding: 10px 8px;
    min-height: 50px;
    margin-right: 10px;
  }
}

.navigation .nav-link .tab-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation .nav-link .tab-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .navigation .nav-link .tab-icon {
    width: 40px;
    height: 40px;
  }

  .navigation .nav-link .tab-icon i {
    font-size: 20px;
  }
}

.navigation .nav-link .tab-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.navigation .nav-link .tab-content h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .navigation .nav-link .tab-content h5 {
    font-size: 14px;
  }
}

.navigation .nav-link .tab-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .navigation .nav-link .tab-content span {
    font-size: 12px;
  }
}

.navigation .nav-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.navigation .nav-link:hover::before {
  opacity: 1;
}

.navigation .nav-link:hover .tab-icon {
  background: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.navigation .nav-link:hover .tab-icon i {
  color: var(--accent-color);
}

.navigation .nav-link:hover .tab-content h5,
.navigation .nav-link:hover .tab-content span {
  color: var(--contrast-color);
}

.navigation .nav-link.active {
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.navigation .nav-link.active::before {
  opacity: 1;
}

.navigation .nav-link.active .tab-icon {
  background: var(--contrast-color);
}

.navigation .nav-link.active .tab-icon i {
  color: var(--accent-color);
}

.navigation .nav-link.active .tab-content h5,
.navigation .nav-link.active .tab-content span {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199.98px) {
  .hero {
    padding-top: 20px;
    padding-right: 0;
    padding-left: 0;
    position: relative;
    overflow: hidden;
  }
}

.hero .content-col {
  position: relative;
  z-index: 2;
}

.hero .content-col .content {
  padding-right: 2rem;
}

.hero .content-col .content .promo-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero .content-col .content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .content-col .content h1 span {
  color: var(--accent-color);
  position: relative;
}

.hero .content-col .content h1 span::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: -1;
}

.hero .content-col .content p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .content-col .content .hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero .content-col .content .hero-cta .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.hero .content-col .content .hero-cta .btn.btn-shop {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.hero .content-col .content .hero-cta .btn.btn-shop i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.hero .content-col .content .hero-cta .btn.btn-shop:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.hero .content-col .content .hero-cta .btn.btn-shop:hover i {
  transform: translateX(5px);
}

.hero .content-col .content .hero-cta .btn.btn-collection {
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.hero .content-col .content .hero-cta .btn.btn-collection:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: var(--default-color);
}

.hero .content-col .content .hero-features {
  display: flex;
  gap: 2rem;
}

.hero .content-col .content .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero .content-col .content .hero-features .feature-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero .content-col .content .hero-features .feature-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero .image-col {
  position: relative;
}

.hero .image-col .hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero .image-col .hero-image .main-product {
  max-width: 100%;
  height: auto;
  z-index: 1;
}

.hero .image-col .hero-image .floating-product {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero .image-col .hero-image .floating-product img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  border-radius: 0.5rem;
  margin-bottom: 5px;
}

.hero .image-col .hero-image .floating-product .product-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.hero .image-col .hero-image .floating-product .product-info .price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .image-col .hero-image .floating-product.product-1 {
  top: 3%;
  left: 4%;
}

@media (max-width: 991.98px) {
  .hero .content-col .content {
    padding-right: 0;
    text-align: center;
    margin-top: 1rem;
  }

  .hero .content-col .content h1 {
    font-size: 2.75rem;
  }

  .hero .content-col .content .hero-cta {
    justify-content: center;
  }

  .hero .content-col .content .hero-features {
    justify-content: center;
  }

  .hero .image-col .hero-image .floating-product.product-1 {
    top: 10%;
    left: 5%;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding-right: 0;
    padding-left: 0;
  }

  .hero .content-col .content h1 {
    font-size: 2.25rem;
  }

  .hero .content-col .content .hero-cta {
    flex-direction: column;
  }

  .hero .content-col .content .hero-cta .btn {
    width: 100%;
  }

  .hero .content-col .content .hero-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero .image-col .hero-image .floating-product {
    padding: 0.5rem;
  }

  .hero .image-col .hero-image .floating-product img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero .image-col .hero-image .floating-product .product-info h4 {
    font-size: 0.75rem;
  }

  .hero .image-col .hero-image .floating-product .product-info .price {
    font-size: 0.75rem;
  }
}

/*--------------------------------------------------------------
# Company Section
--------------------------------------------------------------*/
.company .section-intro {
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.company .section-intro .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .company .section-intro .title {
    font-size: 2.3rem;
  }
}

.company .section-intro h2 {
  font-size: 1.4rem;
}

.company .highlight-cards {
  margin-top: 5rem;
}

.company .highlight-cards .highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 350px;
}

.company .highlight-cards .highlight-card.elevated {
  transform: translateY(2rem);
}

@media (max-width: 768px) {
  .company .highlight-cards .highlight-card.elevated {
    transform: translateY(0);
  }
}

.company .highlight-cards .highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.company .highlight-cards .highlight-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.company .highlight-cards .highlight-card .card-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  transition: transform 0.3s ease;
}

.company .highlight-cards .highlight-card .card-content .card-title {
  color: var(--contrast-color);
  font-size: 1.25rem;
  font-weight: 600;
}

.company .highlight-cards .highlight-card:hover img {
  transform: scale(1.1);
}

.company .highlight-cards .highlight-card:hover .card-content {
  transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Company Gerald Section
--------------------------------------------------------------*/
.company-gerald {
  padding-top: 48px;
  padding-bottom: 48px;
}

.company-gerald .content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.company-gerald .content p:last-child {
  margin-bottom: 0;
}

.company-gerald .content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.company-gerald .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Best Sellers Section
--------------------------------------------------------------*/
.best-sellers .featured-product {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.best-sellers .featured-product .product-image {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.best-sellers .featured-product .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.best-sellers .featured-product .product-image .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.best-sellers .featured-product .product-image .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.best-sellers .featured-product .product-image .product-overlay .product-details {
  max-width: 90%;
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-description {
  font-size: var(--default-font-size);
  margin-bottom: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-meta {
  margin-bottom: 1.5rem;
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-meta .product-price .current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-right: 0.75rem;
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-meta .product-price .old-price {
  font-size: 1rem;
  text-decoration: line-through;
  opacity: 0.7;
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-actions {
  display: flex;
  gap: 1rem;
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary,
.best-sellers .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: var(--default-font-size);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary {
  background-color: white;
  color: var(--default-color);
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
  background-color: var(--accent-color);
  color: white;
}

.best-sellers .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 15%);
  transform: translateY(-3px);
}

.best-sellers .product-card {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.best-sellers .product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.best-sellers .product-card:hover .product-image .quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.best-sellers .product-card .product-image {
  position: relative;
  overflow: hidden;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.best-sellers .product-card .product-image img {
  transition: transform 0.5s ease;
}

.best-sellers .product-card .product-image .discount-badge,
.best-sellers .product-card .product-image .status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
}

.best-sellers .product-card .product-image .discount-badge {
  background-color: #FF5252;
  color: white;
}

.best-sellers .product-card .product-image .status-badge.new {
  background-color: #4CAF50;
  color: white;
}

.best-sellers .product-card .product-image .quick-actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.best-sellers .product-card .product-image .quick-actions .quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: white;
  color: var(--default-color);
  font-size: var(--default-font-size);
  cursor: pointer;
  transition: all 0.3s ease;
}

.best-sellers .product-card .product-image .quick-actions .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.best-sellers .product-card .product-info {
  padding: 15px;
}

.best-sellers .product-card .product-info .product-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.best-sellers .product-card .product-info .product-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.best-sellers .product-card .product-info .product-title a:hover {
  color: var(--accent-color);
}

.best-sellers .product-card .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.best-sellers .product-card .product-info .product-price .current-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-color);
}

.best-sellers .product-card .product-info .product-price .old-price {
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.best-sellers .quick-action-btn {
  position: relative;
  overflow: hidden;
}

.best-sellers .quick-action-btn .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 1199.98px) {
  .best-sellers .featured-product .product-image {
    min-height: 450px;
  }

  .best-sellers .featured-product .product-image .product-overlay .product-details .product-title {
    font-size: 1.35rem;
  }

  .best-sellers .featured-product .product-image .product-overlay .product-details .product-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 991.98px) {
  .best-sellers .featured-product {
    margin-bottom: 1rem;
  }

  .best-sellers .featured-product .product-image {
    min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .best-sellers .featured-product .product-image {
    min-height: 500px;
  }

  .best-sellers .featured-product .product-image .product-overlay {
    padding: 20px;
  }

  .best-sellers .featured-product .product-image .product-overlay .product-details {
    max-width: 100%;
  }

  .best-sellers .featured-product .product-image .product-overlay .product-details .product-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .best-sellers .featured-product .product-image .product-overlay .product-details .product-actions {
    flex-direction: column;
    width: 100%;
  }

  .best-sellers .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary,
  .best-sellers .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .best-sellers .product-card .product-image {
    height: 180px;
  }
}

@media (max-width: 575.98px) {
  .best-sellers .product-card .product-image {
    height: 160px;
  }

  .best-sellers .product-card .product-info {
    padding: 12px;
  }

  .best-sellers .product-card .product-info .product-title {
    font-size: 0.85rem;
  }

  .best-sellers .product-card .product-info .product-price .current-price {
    font-size: 1rem;
  }

  .best-sellers .product-card .product-info .product-price .old-price {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Footer Header Section
--------------------------------------------------------------*/
.footer-header .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 60px 0;
}

.footer-header .footer-newsletter h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-header .footer-newsletter p {
  font-size: var(--default-font-size);
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer-header .footer-newsletter .newsletter-form {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.footer-header .footer-newsletter .newsletter-form input[type=email] {
  height: 54px;
  border-radius: 50px;
  padding: 10px 25px;
  width: 100%;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer-header .footer-newsletter .newsletter-form input[type=email]:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer-header .footer-newsletter .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.footer-header .footer-newsletter .newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 0 30px;
  font-weight: 600;
  font-size: 15px;
}

.footer-header .footer-newsletter .newsletter-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Deparment Header Section
--------------------------------------------------------------*/
.deparment-header {
  font-size: var(--default-font-size);
}

/*--------------------------------------------------------------
# Deparment Section
--------------------------------------------------------------*/
.deparment .featured-product {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.deparment .featured-product .product-image {
  position: relative;
  min-height: 500px;
}

.deparment .featured-product .product-image img {
  padding: 2px;
}

.deparment .featured-product .product-image .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deparment .featured-product .product-image .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.deparment .featured-product .product-image .product-overlay .product-details {
  max-width: 90%;
}

.deparment .featured-product .product-image .product-overlay .product-details .product-category {
  font-size: var(--default-font-size);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.deparment .featured-product .product-image .product-overlay .product-details .product-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.deparment .featured-product .product-image .product-overlay .product-details .product-description {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}

.deparment .featured-product .product-image .product-overlay .product-details .product-meta {
  margin-bottom: 1.5rem;
}

.deparment .featured-product .product-image .product-overlay .product-details .product-meta .product-price .current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-right: 0.75rem;
}

.deparment .featured-product .product-image .product-overlay .product-details .product-meta .product-price .old-price {
  font-size: var(--default-font-size);
  text-decoration: line-through;
  opacity: 0.7;
}

.deparment .featured-product .product-image .product-overlay .product-details .product-actions {
  display: flex;
  gap: 1rem;
}

.deparment .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary,
.deparment .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.deparment .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary {
  background-color: white;
  color: var(--default-color);
}

.deparment .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.deparment .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
  background-color: var(--accent-color);
  color: white;
}

.deparment .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 15%);
  transform: translateY(-3px);
}

.deparment .product-card {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.deparment .product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.deparment .product-card:hover .product-image .quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.deparment .product-card .product-image {
  position: relative;
  overflow: hidden;
  padding: 5px;
}

.deparment .product-card .product-image img {
  transition: transform 0.5s ease;
}

.deparment .product-card .product-image .discount-badge,
.deparment .product-card .product-image .status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
}

.deparment .product-card .product-image .quick-actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.deparment .product-card .product-image .quick-actions .quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: white;
  color: var(--default-color);
  font-size: var(--default-font-size);
  cursor: pointer;
  transition: all 0.3s ease;
}

.deparment .product-card .product-image .quick-actions .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.deparment .product-card .product-info {
  padding: 15px;
}

.deparment .product-card .product-info .product-title {
  font-size: var(--default-font-size);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.deparment .product-card .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.deparment .product-card .product-info .product-price .current-price {
  font-size: var(--default-font-size);
  font-weight: 700;
  color: var(--accent-color);
}

.deparment .product-card .product-info .product-price .old-price {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.deparment .quick-action-btn {
  position: relative;
  overflow: hidden;
}

.deparment .quick-action-btn .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 1199.98px) {
  .deparment .featured-product .product-image {
    min-height: 450px;
  }

  .deparment .featured-product .product-image .product-overlay .product-details .product-title {
    font-size: 1.35rem;
  }

  .deparment .featured-product .product-image .product-overlay .product-details .product-description {
    font-size: var(--default-font-size);
  }
}

@media (max-width: 991.98px) {
  .deparment .featured-product {
    margin-bottom: 1rem;
  }

  .deparment .featured-product .product-image {
    min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .deparment .featured-product .product-image {
    min-height: 500px;
  }

  .deparment .featured-product .product-image .product-overlay {
    padding: 20px;
  }

  .deparment .featured-product .product-image .product-overlay .product-details {
    max-width: 100%;
  }

  .deparment .featured-product .product-image .product-overlay .product-details .product-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .deparment .featured-product .product-image .product-overlay .product-details .product-actions {
    flex-direction: column;
    width: 100%;
  }

  .deparment .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary,
  .deparment .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .deparment .product-card .product-image {
    height: 180px;
  }
}

@media (max-width: 575.98px) {
  .deparment .product-card .product-image {
    height: 160px;
  }

  .deparment .product-card .product-info {
    padding: 12px;
  }

  .deparment .product-card .product-info .product-title {
    font-size: 0.85rem;
  }

  .deparment .product-card .product-info .product-price .current-price {
    font-size: var(--default-font-size);
  }

  .deparment .product-card .product-info .product-price .old-price {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Category Product List Section
--------------------------------------------------------------*/
.category-product-list .featured-product {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.category-product-list .featured-product .product-image {
  position: relative;
  min-height: 500px;
}

.category-product-list .featured-product .product-image img {
  padding: 2px;
}

.category-product-list .featured-product .product-image .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-product-list .featured-product .product-image .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.category-product-list .featured-product .product-image .product-overlay .product-details {
  max-width: 90%;
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-category {
  font-size: var(--default-font-size);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-description {
  font-size: var(--default-font-size);
  margin-bottom: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-meta {
  margin-bottom: 1.5rem;
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-meta .product-price .current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-right: 0.75rem;
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-meta .product-price .old-price {
  font-size: var(--default-font-size);
  text-decoration: line-through;
  opacity: 0.7;
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-actions {
  display: flex;
  gap: 1rem;
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary,
.category-product-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary {
  background-color: white;
  color: var(--default-color);
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
  background-color: var(--accent-color);
  color: white;
}

.category-product-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 15%);
  transform: translateY(-3px);
}

.category-product-list .product-card {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.category-product-list .product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.category-product-list .product-card:hover .product-image .quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.category-product-list .product-card .product-image {
  position: relative;
  overflow: hidden;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-product-list .product-card .product-image img {
  transition: transform 0.5s ease;
}

.category-product-list .product-card .product-image .discount-badge,
.category-product-list .product-card .product-image .status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
}

.category-product-list .product-card .product-image .quick-actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-product-list .product-card .product-image .quick-actions .quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: white;
  color: var(--default-color);
  font-size: var(--default-font-size);
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-product-list .product-card .product-image .quick-actions .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.category-product-list .product-card .product-info {
  padding: 15px;
}

.category-product-list .product-card .product-info .product-title {
  font-size: var(--default-font-size);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-product-list .product-card .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-product-list .product-card .product-info .product-price .current-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-color);
}

.category-product-list .product-card .product-info .product-price .old-price {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.category-product-list .quick-action-btn {
  position: relative;
  overflow: hidden;
}

.category-product-list .quick-action-btn .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 1199.98px) {
  .category-product-list .featured-product .product-image {
    min-height: 450px;
  }

  .category-product-list .featured-product .product-image .product-overlay .product-details .product-title {
    font-size: 1.35rem;
  }

  .category-product-list .featured-product .product-image .product-overlay .product-details .product-description {
    font-size: var(--default-font-size);
  }
}

@media (max-width: 991.98px) {
  .category-product-list .featured-product {
    margin-bottom: 1rem;
  }

  .category-product-list .featured-product .product-image {
    min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .category-product-list .featured-product .product-image {
    min-height: 500px;
  }

  .category-product-list .featured-product .product-image .product-overlay {
    padding: 20px;
  }

  .category-product-list .featured-product .product-image .product-overlay .product-details {
    max-width: 100%;
  }

  .category-product-list .featured-product .product-image .product-overlay .product-details .product-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .category-product-list .featured-product .product-image .product-overlay .product-details .product-actions {
    flex-direction: column;
    width: 100%;
  }

  .category-product-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary,
  .category-product-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .category-product-list .product-card .product-image {
    height: 180px;
  }
}

@media (max-width: 575.98px) {
  .category-product-list .product-card .product-image {
    height: 160px;
  }

  .category-product-list .product-card .product-info {
    padding: 12px;
  }

  .category-product-list .product-card .product-info .product-title {
    font-size: 0.85rem;
  }

  .category-product-list .product-card .product-info .product-price .current-price {
    font-size: var(--default-font-size);
  }

  .category-product-list .product-card .product-info .product-price .old-price {
    font-size: var(--default-font-size);
  }
}

/*--------------------------------------------------------------
# Group Gallery Section
--------------------------------------------------------------*/
.group-gallery .category-slider {
  position: relative;
  padding: 1rem 0;
}

.group-gallery .category-slider .container {
  position: relative;
}

.group-gallery .category-slider .swiper-wrapper {
  height: auto !important;
}

.group-gallery .category-slider .swiper-button-next,
.group-gallery .category-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  color: var(--heading-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.group-gallery .category-slider .swiper-button-next::after,
.group-gallery .category-slider .swiper-button-prev::after {
  font-size: var(--default-font-size);
  font-weight: bold;
}

.group-gallery .category-slider .swiper-button-next:hover,
.group-gallery .category-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.group-gallery .category-slider .swiper-button-prev {
  left: 0;
}

.group-gallery .category-slider .swiper-button-next {
  right: 0;
}

.group-gallery .category-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 0.5rem;
  padding: 1rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.group-gallery .category-card:hover {
  transform: translateY(-5px);
}

.group-gallery .category-card:hover .category-title {
  color: var(--accent-color);
}

.group-gallery .category-card:hover .category-image img {
  filter: brightness(1.08);
  transform: rotate(4deg) scale(1.06);
}

.group-gallery .category-card .category-image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.group-gallery .category-card .category-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.group-gallery .category-card .category-title {
  font-size: var(--default-font-size);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  transition: 0.3s;
}

.group-gallery .category-card .category-count {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .group-gallery .category-slider .swiper-button-prev {
    left: -15px;
  }

  .group-gallery .category-slider .swiper-button-next {
    right: -15px;
  }

  .group-gallery .category-card {
    padding: 0.75rem;
  }

  .group-gallery .category-card .category-image {
    height: 100px;
    margin-bottom: 0.75rem;
  }

  .group-gallery .category-card .category-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .group-gallery .category-card .category-count {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {

  .group-gallery .category-slider .swiper-button-prev,
  .group-gallery .category-slider .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .group-gallery .category-slider .swiper-button-prev::after,
  .group-gallery .category-slider .swiper-button-next::after {
    font-size: 0.85rem;
  }

  .group-gallery .category-card .category-image {
    height: 90px;
  }
}

@media (max-width: 575.98px) {
  .group-gallery .category-slider .swiper-button-prev {
    left: -10px;
  }

  .group-gallery .category-slider .swiper-button-next {
    right: -10px;
  }

  .group-gallery .category-card {
    padding: 0.5rem;
  }

  .group-gallery .category-card .category-image {
    height: 80px;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Group List Section
--------------------------------------------------------------*/
.group-list .featured-product {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.group-list .featured-product .product-image {
  position: relative;
  min-height: 500px;
}

.group-list .featured-product .product-image img {
  padding: 2px;
}

.group-list .featured-product .product-image .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.group-list .featured-product .product-image .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.group-list .featured-product .product-image .product-overlay .product-details {
  max-width: 90%;
}

.group-list .featured-product .product-image .product-overlay .product-details .product-category {
  font-size: var(--default-font-size);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.group-list .featured-product .product-image .product-overlay .product-details .product-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.group-list .featured-product .product-image .product-overlay .product-details .product-description {
  font-size: var(--default-font-size);
  margin-bottom: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}

.group-list .featured-product .product-image .product-overlay .product-details .product-meta {
  margin-bottom: 1.5rem;
}

.group-list .featured-product .product-image .product-overlay .product-details .product-meta .product-price .current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-right: 0.75rem;
}

.group-list .featured-product .product-image .product-overlay .product-details .product-meta .product-price .old-price {
  font-size: var(--default-font-size);
  text-decoration: line-through;
  opacity: 0.7;
}

.group-list .featured-product .product-image .product-overlay .product-details .product-actions {
  display: flex;
  gap: 1rem;
}

.group-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary,
.group-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: var(--default-font-size);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.group-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary {
  background-color: white;
  color: var(--default-color);
}

.group-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.group-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
  background-color: var(--accent-color);
  color: white;
}

.group-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 15%);
  transform: translateY(-3px);
}

.group-list .product-card {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.group-list .product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.group-list .product-card:hover .product-image .quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.group-list .product-card .product-image {
  position: relative;
  overflow: hidden;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.group-list .product-card .product-image img {
  transition: transform 0.5s ease;
}

.group-list .product-card .product-image .discount-badge,
.group-list .product-card .product-image .status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
}

.group-list .product-card .product-image .quick-actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.group-list .product-card .product-image .quick-actions .quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: white;
  color: var(--default-color);
  font-size: var(--default-font-size);
  cursor: pointer;
  transition: all 0.3s ease;
}

.group-list .product-card .product-image .quick-actions .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.group-list .product-card .product-info {
  padding: 15px;
}

.group-list .product-card .product-info .product-title {
  font-size: var(--default-font-size);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.group-list .product-card .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.group-list .product-card .product-info .product-price .current-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-color);
}

.group-list .product-card .product-info .product-price .old-price {
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.group-list .quick-action-btn {
  position: relative;
  overflow: hidden;
}

.group-list .quick-action-btn .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 1199.98px) {
  .group-list .featured-product .product-image {
    min-height: 450px;
  }

  .group-list .featured-product .product-image .product-overlay .product-details .product-title {
    font-size: 1.35rem;
  }

  .group-list .featured-product .product-image .product-overlay .product-details .product-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 991.98px) {
  .group-list .featured-product {
    margin-bottom: 1rem;
  }

  .group-list .featured-product .product-image {
    min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .group-list .featured-product .product-image {
    min-height: 500px;
  }

  .group-list .featured-product .product-image .product-overlay {
    padding: 20px;
  }

  .group-list .featured-product .product-image .product-overlay .product-details {
    max-width: 100%;
  }

  .group-list .featured-product .product-image .product-overlay .product-details .product-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .group-list .featured-product .product-image .product-overlay .product-details .product-actions {
    flex-direction: column;
    width: 100%;
  }

  .group-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary,
  .group-list .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .group-list .product-card .product-image {
    height: 180px;
  }
}

@media (max-width: 575.98px) {
  .group-list .product-card .product-image {
    height: 160px;
  }

  .group-list .product-card .product-info {
    padding: 12px;
  }

  .group-list .product-card .product-info .product-title {
    font-size: 0.85rem;
  }

  .group-list .product-card .product-info .product-price .current-price {
    font-size: var(--default-font-size);
  }

  .group-list .product-card .product-info .product-price .old-price {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Pagination Group Section
--------------------------------------------------------------*/
.pagination-group {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-group ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-group li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-group li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-group li a.active,
.pagination-group li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-group li a.active a,
.pagination-group li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .product-images {
  position: relative;
}

.product-details .product-images .main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--surface-color);
}

.product-details .product-images .main-image-container .image-zoom-container {
  position: relative;
  width: 100%;
}

.product-details .product-images .main-image-container .image-zoom-container .main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: crosshair;
}

.product-details .product-images .drift-zoom-pane {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-details .product-images .drift-zoom-pane.drift-opening {
  animation: drift-fadeZoomIn 180ms ease-out;
}

.product-details .product-images .drift-zoom-pane.drift-closing {
  animation: drift-fadeZoomOut 210ms ease-in;
}

.product-details .product-images .drift-zoom-pane-loader {
  display: none;
}

@keyframes drift-fadeZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drift-fadeZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

.product-details .product-images .product-thumbnails {
  margin-top: 1rem;
}

.product-details .product-images .product-thumbnails .swiper-wrapper {
  height: auto !important;
}

.product-details .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 .product-images .product-thumbnails .thumbnail-item:hover {
  opacity: 0.9;
}

.product-details .product-images .product-thumbnails .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
}

.product-details .product-images .product-thumbnails .thumbnail-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-details .product-images .product-thumbnails .swiper-button-next,
.product-details .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 .product-images .product-thumbnails .swiper-button-next::after,
.product-details .product-images .product-thumbnails .swiper-button-prev::after {
  font-size: var(--default-font-size);
}

.product-details .product-info {
  padding: 0 0.5rem;
}

.product-details .product-info .masse {
  padding: 5px 15px;
}

.product-details .product-info .feld {
  padding: 5px 15px;
  border: 1px solid hsla(0, 0%, 83%, 0.41);
}

@media (min-width: 992px) {
  .product-details .product-info {
    padding: 0 1rem;
  }
}

.product-details .product-info .find-store {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-details .product-info .find-store a {
  color: var(--heading-color);
  font-size: 1.2rem;
}

.product-details .product-info .find-store .icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details .product-info .find-store .icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.product-details .product-info .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-details .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 .product-info .product-meta .product-rating {
  display: flex;
  align-items: center;
}

.product-details .product-info .product-meta .product-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.product-details .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 .product-info .product-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem 0 1rem;
  color: var(--heading-color);
}

@media (min-width: 768px) {
  .product-details .product-info .product-title {
    font-size: 2rem;
  }
}

.product-details .product-info .product-price-container {
  display: flex;
  align-items: center;
}

.product-details .product-info .product-price-container .current-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
}

.product-details .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 .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 .product-info .product-short-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.product-details .product-info .product-availability {
  display: flex;
  align-items: center;
}

.product-details .product-info .product-availability i {
  margin-right: 0.5rem;
}

.product-details .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 .product-info .product-colors .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details .product-info .product-colors .color-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.product-details .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 .product-info .product-colors .color-options .color-option:hover {
  transform: scale(1.1);
}

.product-details .product-info .product-colors .color-options .color-option.active {
  border-color: var(--accent-color);
}

.product-details .product-info .product-colors .color-options .color-option.active i {
  opacity: 1;
}

.product-details .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 .product-info .product-colors .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-info .product-sizes .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details .product-info .product-sizes .size-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.product-details .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 .product-info .product-sizes .size-options .size-option:hover {
  border-color: var(--accent-color);
}

.product-details .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 .product-info .product-sizes .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-info .product-quantity .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details .product-info .product-quantity .quantity-selector {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.product-details .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 .product-info .product-quantity .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.product-details .product-info .product-quantity .quantity-selector .quantity-btn.decrease {
  border-radius: 4px 0 0 4px;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-btn.increase {
  border-radius: 0 4px 4px 0;
}

.product-details .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: var(--default-font-size);
}

.product-details .product-info .product-quantity .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-input::-webkit-inner-spin-button,
.product-details .product-info .product-quantity .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-details .product-info .product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.product-details .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 .product-info .product-actions .btn i {
  margin-right: 0.5rem;
}

.product-details .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 .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 .product-info .product-actions .buy-now-btn {
  flex: 1;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.product-details .product-info .product-actions .buy-now-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-details .product-info .product-actions .wishlist-btn {
  width: 46px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details .product-info .product-actions .wishlist-btn i {
  margin-right: 0;
  font-size: 1.125rem;
}

.product-details .product-info .product-actions .wishlist-btn:hover {
  color: #fff;
  border-color: #e53935;
  background-color: #e53935;
}

@media (max-width: 575px) {
  .product-details .product-info .product-actions {
    flex-direction: column;
    justify-content: center;
  }

  .product-details .product-info .product-actions .wishlist-btn {
    align-self: center;
  }
}

.product-details .product-info .additional-info {
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-info .additional-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details .product-info .additional-info .info-item i {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-right: 0.75rem;
}

.product-details .product-info .additional-info .info-item span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .product-details-tabs {
  margin-top: 3rem;
}

.product-details .product-details-tabs .nav-tabs {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 1.5rem;
}

.product-details .product-details-tabs .nav-tabs .nav-item {
  margin-bottom: -1px;
}

.product-details .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 .product-details-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.product-details .product-details-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
  border-bottom: 2px solid var(--accent-color);
}

.product-details .product-details-tabs .tab-content {
  padding: 1rem 0;
}

.product-details .product-details-tabs .tab-content h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-details .product-details-tabs .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-details .product-details-tabs .tab-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.product-details .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 .product-details-tabs .product-specifications .specs-group {
  margin-bottom: 2rem;
}

.product-details .product-details-tabs .product-specifications .specs-group h4 {
  margin-bottom: 1rem;
}

.product-details .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 .product-details-tabs .product-specifications .specs-table .specs-row:last-child {
  border-bottom: none;
}

.product-details .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 .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%);
}

/*--------------------------------------------------------------
# Pre Order Section
--------------------------------------------------------------*/
.pre-order .contact-info-section {
  height: 100%;
}

.pre-order .contact-info-section .order-summary {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pre-order .contact-info-section .order-summary h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pre-order .contact-info-section .order-summary .order-items .item-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.pre-order .contact-info-section .order-summary .order-items .item-row:last-child {
  border-bottom: none;
}

.pre-order .contact-info-section .order-summary .order-items .item-row .item-image {
  flex: 0 0 100px;
  margin-right: 1rem;
}

.pre-order .contact-info-section .order-summary .order-items .item-row .item-image img {
  border-radius: 8px;
  object-fit: contain;
  width: 100px;
  height: 100px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pre-order .contact-info-section .order-summary .order-items .item-row .item-details {
  flex: 1;
}

.pre-order .contact-info-section .order-summary .order-items .item-row .item-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.pre-order .contact-info-section .order-summary .order-items .item-row .item-details p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.pre-order .contact-info-section .order-summary .order-items .item-row .item-details .quantity-price {
  font-size: 0.95rem;
}

.pre-order .contact-info-section .order-summary .order-items .item-row .item-details .quantity-price .price {
  font-weight: 600;
}

.pre-order .contact-info-section .order-summary .order-totals {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 1rem;
  font-size: 0.95rem;
}

.pre-order .contact-info-section .order-summary .order-totals .total-row {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.pre-order .contact-info-section .info-header {
  margin-bottom: 40px;
}

.pre-order .contact-info-section .info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.pre-order .contact-info-section .info-header h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.pre-order .contact-info-section .info-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

.pre-order .contact-info-section .contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.pre-order .contact-info-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.pre-order .contact-info-section .info-item:hover {
  transform: translateX(10px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.pre-order .contact-info-section .info-item:hover .info-icon {
  background-color: var(--accent-color);
}

.pre-order .contact-info-section .info-item:hover .info-icon i {
  color: var(--contrast-color);
}

.pre-order .contact-info-section .info-item .info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.pre-order .contact-info-section .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.pre-order .contact-info-section .info-item .info-content {
  flex: 1;
}

.pre-order .contact-info-section .info-item .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.pre-order .contact-info-section .info-item .info-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.pre-order .contact-info-section .social-contact {
  padding: 30px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 85%));
  border-radius: 20px;
  text-align: center;
}

.pre-order .contact-info-section .social-contact h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.pre-order .contact-form-wrapper {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--background-color) 50%));
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.pre-order .contact-form-wrapper .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.pre-order .contact-form-wrapper .form-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.pre-order .contact-form-wrapper .form-header p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.pre-order .contact-form-wrapper .php-email-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.pre-order .contact-form-wrapper .php-email-form .form-control {
  height: 50px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.pre-order .contact-form-wrapper .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color: var(--surface-color);
  outline: none;
}

.pre-order .contact-form-wrapper .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pre-order .contact-form-wrapper .php-email-form .message-textarea {
  height: 120px;
  resize: vertical;
  font-family: inherit;
}

.pre-order .contact-form-wrapper .php-email-form .submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  border: none;
  padding: 18px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pre-order .contact-form-wrapper .php-email-form .submit-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}

.pre-order .contact-form-wrapper .php-email-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pre-order .contact-form-wrapper .php-email-form .submit-btn:hover:before {
  left: 100%;
}

.pre-order .contact-form-wrapper .php-email-form .submit-btn:hover i {
  transform: translateX(5px);
}

.pre-order .contact-form-wrapper .php-email-form .submit-btn span {
  position: relative;
  z-index: 1;
}

.pre-order .contact-form-wrapper .php-email-form .submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .pre-order .contact-info-section {
    margin-bottom: 40px;
  }

  .pre-order .contact-info-section .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .pre-order .contact-info-section .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .pre-order .contact-info-section .info-item {
    padding: 20px;
  }

  .pre-order .contact-info-section .info-item:hover {
    transform: translateY(-5px);
  }

  .pre-order .contact-form-wrapper {
    padding: 30px 25px;
  }

  .pre-order .contact-form-wrapper .form-header h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Cart Section
--------------------------------------------------------------*/
.cart .cart-items {
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.cart .cart-items .cart-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.cart .cart-items .cart-header h5 {
  font-size: var(--default-font-size);
  font-weight: 600;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.cart .cart-items .cart-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: background-color 0.3s ease;
}

.cart .cart-items .cart-item:last-child {
  border-bottom: none;
}

.cart .cart-items .cart-item:hover {
  background-color: color-mix(in srgb, var(--background-color), transparent 70%);
}

.cart .cart-items .cart-item .product-info .product-image {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  border-radius: 0.375rem;
  overflow: hidden;
  margin-right: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart .cart-items .cart-item .product-info .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .cart .cart-items .cart-item .product-info .product-image {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
  }
}

.cart .cart-items .cart-item .product-info .product-details {
  flex: 1;
}

.cart .cart-items .cart-item .product-info .product-details .product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: var(--default-font-size);
  color: var(--heading-color);
}

.cart .cart-items .cart-item .product-info .product-details .product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.cart .cart-items .cart-item .product-info .product-details .product-meta span {
  display: inline-block;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item {
  background: none;
  border: none;
  padding: 0;
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s ease;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item:hover {
  color: #dc3545;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item i {
  font-size: var(--default-font-size);
}

.cart .cart-items .cart-item .price-tag .current-price {
  font-weight: 600;
  color: var(--heading-color);
  font-size: var(--default-font-size);
}

.cart .cart-items .cart-item .price-tag .original-price {
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: var(--default-font-size);
  margin-left: 0.5rem;
}

.cart .cart-items .cart-item .quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0.375rem;
  overflow: hidden;
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn {
  background: none;
  border: none;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: background-color 0.3s ease;
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.cart .cart-items .cart-item .quantity-selector .quantity-input {
  width: 2.5rem;
  text-align: center;
  border: none;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: var(--default-font-size);
  color: var(--heading-color);
  font-weight: 600;
  padding: 0.25rem 0;
  background-color: var(--surface-color);
}

.cart .cart-items .cart-item .quantity-selector .quantity-input:focus {
  outline: none;
}

.cart .cart-items .cart-item .quantity-selector .quantity-input::-webkit-inner-spin-button,
.cart .cart-items .cart-item .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart .cart-items .cart-item .item-total {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1.125rem;
}

@media (max-width: 767.98px) {
  .cart .cart-items .cart-item {
    padding: 1rem 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .cart .cart-items .cart-item .price-tag,
  .cart .cart-items .cart-item .item-total {
    font-size: 0.9375rem;
  }
}

.cart .cart-items .cart-actions {
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-items .cart-actions .coupon-form .input-group {
  max-width: 24rem;
}

.cart .cart-items .cart-actions .coupon-form .input-group .form-control {
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.875rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.cart .cart-items .cart-actions .coupon-form .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.cart .cart-items .cart-actions .coupon-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.cart .cart-items .cart-actions .coupon-form .input-group .btn {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  font-size: var(--default-font-size);
  background-color: color-mix(in srgb, var(--default-color), transparent 10%);
  color: var(--contrast-color);
}

.cart .cart-items .cart-actions .coupon-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: var(--accent-color);
}

.cart .cart-items .cart-actions .btn {
  font-size: var(--default-font-size);
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
}

.cart .cart-summary {
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 1.5rem;
  position: sticky;
  top: 6.5rem;
}

.cart .cart-summary .summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-summary .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: var(--default-font-size);
}

.cart .cart-summary .summary-item.discount {
  color: #28a745;
}

.cart .cart-summary .summary-item .summary-label {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.cart .cart-summary .summary-item .summary-value {
  font-weight: 600;
  color: var(--heading-color);
}

.cart .cart-summary .summary-item .shipping-options {
  width: 100%;
  margin-top: 0.5rem;
}

.cart .cart-summary .summary-item .shipping-options .form-check {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cart .cart-summary .summary-item .shipping-options .form-check:last-child {
  margin-bottom: 0;
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0.5rem;
  float: none;
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-label {
  font-size: var(--default-font-size);
  color: var(--default-color);
  padding-left: 0;
}

.cart .cart-summary .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-summary .summary-total .summary-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
}

.cart .cart-summary .summary-total .summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

.cart .cart-summary .checkout-button {
  margin-bottom: 1rem;
}

.cart .cart-summary .checkout-button .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cart .cart-summary .checkout-button .btn i {
  transition: transform 0.3s ease;
}

.cart .cart-summary .checkout-button .btn:hover i {
  transform: translateX(0.25rem);
}

.cart .cart-summary .continue-shopping {
  margin-bottom: 1.5rem;
}

.cart .cart-summary .continue-shopping .btn-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: var(--default-font-size);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
}

.cart .cart-summary .continue-shopping .btn-link i {
  transition: transform 0.3s ease;
}

.cart .cart-summary .continue-shopping .btn-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.cart .cart-summary .continue-shopping .btn-link:hover i {
  transform: translateX(-0.25rem);
}

.cart .cart-summary .payment-methods {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1rem;
}

.cart .cart-summary .payment-methods .payment-title {
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
  text-align: center;
}

.cart .cart-summary .payment-methods .payment-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cart .cart-summary .payment-methods .payment-icons i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.cart .cart-summary .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.cart .btn-outline-accent {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: transparent;
}

.cart .btn-outline-accent:hover,
.cart .btn-outline-accent:focus,
.cart .btn-outline-accent:active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart .btn-outline-heading {
  color: var(--heading-color);
  border-color: var(--heading-color);
  background-color: transparent;
}

.cart .btn-outline-heading:hover,
.cart .btn-outline-heading:focus,
.cart .btn-outline-heading:active {
  color: var(--contrast-color);
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}

.cart .btn-outline-remove {
  color: #dc3545;
  border-color: #dc3545;
  background-color: transparent;
}

.cart .btn-outline-remove:hover,
.cart .btn-outline-remove:focus,
.cart .btn-outline-remove:active {
  color: var(--contrast-color);
  background-color: #dc3545;
  border-color: #dc3545;
}

.cart .btn-accent {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart .btn-accent:hover,
.cart .btn-accent:focus,
.cart .btn-accent:active {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@media (max-width: 991.98px) {
  .cart .cart-summary {
    position: static;
  }
}

/*--------------------------------------------------------------
# Checkout Section
--------------------------------------------------------------*/
.checkout {
  padding: 60px 0;
}

.checkout .checkout-container {
  margin-bottom: 2rem;
}

.checkout .checkout-container .checkout-form {
  position: relative;
}

.checkout .checkout-section {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.checkout .checkout-section:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.checkout .checkout-section .section-header {
  padding: 1px 15px 15px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout .checkout-section .section-header .section-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--default-font-size);
  flex-shrink: 0;
}

.checkout .checkout-section .section-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
}

.checkout .checkout-section .section-content {
  padding: 10px;
}

.checkout .checkout-section .section-content .form-group {
  margin-bottom: 8px;
}

.checkout .checkout-section .section-content .form-group:last-child {
  margin-bottom: 0;
}

.checkout .checkout-section .section-content .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: var(--default-font-size);
  font-weight: 500;
  color: var(--heading-color);
}

.checkout .checkout-section .section-content .form-group .form-control,
.checkout .checkout-section .section-content .form-group .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 2px;
  padding: 5px 5px;
  font-size: var(--default-font-size);
  height: auto;
  background-color: var(--surface-color);
  transition: all 0.25s ease;
}

.checkout .checkout-section .section-content .form-group .form-control:hover,
.checkout .checkout-section .section-content .form-group .form-select:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.checkout .checkout-section .section-content .form-group .form-control:focus,
.checkout .checkout-section .section-content .form-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: none;
}

.checkout .checkout-section .section-content .form-group .form-control::placeholder,
.checkout .checkout-section .section-content .form-group .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: var(--default-font-size);
}

.checkout .checkout-section .section-content .form-group .form-control.is-invalid,
.checkout .checkout-section .section-content .form-group .form-select.is-invalid {
  border-color: #dc3545;
  background-image: none;
}

.checkout .checkout-section .section-content .form-group .form-control.is-invalid:focus,
.checkout .checkout-section .section-content .form-group .form-select.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

.checkout .checkout-section .section-content .form-group .form-select {
  background-position: right 16px center;
  padding-right: 40px;
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper {
  position: relative;
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper .card-icons {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper .card-icons i {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper input {
  padding-right: 80px;
}

.checkout .checkout-section .section-content .form-group .cvv-wrapper {
  position: relative;
}

.checkout .checkout-section .section-content .form-group .cvv-wrapper .cvv-hint {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
  transition: color 0.2s ease;
}

.checkout .checkout-section .section-content .form-group .cvv-wrapper .cvv-hint:hover {
  color: var(--accent-color);
}

.checkout .checkout-section .section-content .form-check {
  margin-bottom: 12px;
  padding-left: 1.8rem;
}

.checkout .checkout-section .section-content .form-check:last-child {
  margin-bottom: 0;
}

.checkout .checkout-section .section-content .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-left: -1.8rem;
  margin-top: 0.2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: var(--surface-color);
  cursor: pointer;
}

.checkout .checkout-section .section-content .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkout .checkout-section .section-content .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout .checkout-section .section-content .form-check .form-check-label {
  font-size: var(--default-font-size);
  cursor: pointer;
}

.checkout .checkout-section .section-content .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.checkout .checkout-section .section-content .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.checkout .checkout-section .section-content .form-check.terms-check {
  margin-top: 10px;
  margin-bottom: 20px;
}

.checkout .checkout-section .section-content .form-check.terms-check .form-check-label {
  font-size: var(--default-font-size);
}

.checkout .checkout-section .section-content .payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout .checkout-section .section-content .payment-options .payment-option {
  flex: 1;
  min-width: 120px;
  position: relative;
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio]:checked+label {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio]:checked+label .payment-icon {
  color: var(--accent-color);
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio]:focus+label {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout .checkout-section .section-content .payment-options .payment-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  height: 100%;
}

.checkout .checkout-section .section-content .payment-options .payment-option label:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.checkout .checkout-section .section-content .payment-options .payment-option label .payment-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.25s ease;
}

.checkout .checkout-section .section-content .payment-options .payment-option label .payment-label {
  font-size: var(--default-font-size);
  font-weight: 500;
}

.checkout .checkout-section .section-content .payment-options .payment-option.active label {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.checkout .checkout-section .section-content .payment-options .payment-option.active label .payment-icon {
  color: var(--accent-color);
}

@media (max-width: 575.98px) {
  .checkout .checkout-section .section-content .payment-options .payment-option {
    min-width: 100%;
  }

  .checkout .checkout-section .section-content .payment-options .payment-option label {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }

  .checkout .checkout-section .section-content .payment-options .payment-option label .payment-icon {
    margin-bottom: 0;
  }
}

.checkout .checkout-section .section-content .payment-details {
  padding-top: 8px;
}

.checkout .checkout-section .section-content .payment-details.d-none {
  display: none;
}

.checkout .checkout-section .section-content .payment-details .payment-info {
  padding: 16px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 12px;
  font-size: var(--default-font-size);
  margin-bottom: 0;
}

.checkout .checkout-section .section-content .success-message {
  padding: 16px;
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 12px;
  color: #28a745;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.checkout .checkout-section .section-content .success-message.d-none {
  display: none;
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: var(--default-font-size);
  font-weight: 600;
  border-radius: 12px;
  background-color: var(--accent-color);
  border: none;
  box-shadow: 0 4px 12px rgba(54, 144, 231, 0.2);
  transition: all 0.3s ease;
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(54, 144, 231, 0.25);
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(54, 144, 231, 0.2);
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn .btn-price {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.checkout .order-summary {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.checkout .order-summary .order-summary-header {
  padding: 20px 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout .order-summary .order-summary-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.checkout .order-summary .order-summary-header .item-count {
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  padding: 4px 10px;
  border-radius: 20px;
}

.checkout .order-summary .order-summary-content {
  padding: 24px;
}

.checkout .order-summary .order-summary-content .order-items {
  margin-bottom: 24px;
}

.checkout .order-summary .order-summary-content .order-items .order-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .order-summary .order-summary-content .order-items .order-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details {
  flex: 1;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details h4 {
  font-size: var(--default-font-size);
  margin-bottom: 4px;
  font-weight: 600;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-variant {
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .quantity {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .price {
  color: var(--heading-color);
}

.checkout .order-summary .order-summary-content .promo-code {
  margin-bottom: 24px;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-right: none;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 12px 16px;
  font-size: var(--default-font-size);
  transition: all 0.25s ease;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
  outline: none;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: var(--default-font-size);
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: none;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 0 16px;
  font-weight: 500;
  color: var(--accent-color);
  background-color: var(--surface-color);
  transition: all 0.25s ease;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn:focus {
  box-shadow: none;
}

.checkout .order-summary .order-summary-content .order-totals {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.checkout .order-summary .order-summary-content .order-totals>div {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.checkout .order-summary .order-summary-content .order-totals>div:last-child {
  margin-bottom: 0;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.checkout .order-summary .order-summary-content .secure-checkout {
  text-align: center;
}

.checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--heading-color);
  font-weight: 500;
  font-size: var(--default-font-size);
  margin-bottom: 12px;
}

.checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header i {
  color: #28a745;
  font-size: 1.1rem;
}

.checkout .order-summary .order-summary-content .secure-checkout .payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.checkout .order-summary .order-summary-content .secure-checkout .payment-icons i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991.98px) {
  .checkout .order-summary {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

.checkout .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkout .modal-content .modal-header {
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .modal-content .modal-header .modal-title {
  font-weight: 600;
}

.checkout .modal-content .modal-footer {
  border-top-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .checkout .checkout-section .section-header h3 {
    font-size: 1.1rem;
  }

  .checkout .order-summary .order-summary-header h3 {
    font-size: 1.1rem;
  }
}

.checkout .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# Order Confirmation Section
--------------------------------------------------------------*/
.order-confirmation {
  margin: 0 auto;
}

.order-confirmation .confirmation-header {
  margin-bottom: 2.5rem;
}

.order-confirmation .confirmation-header .success-icon i {
  font-size: 4rem;
  color: #4BB543;
}

.order-confirmation .confirmation-header h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.order-confirmation .confirmation-header .lead {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.order-confirmation .confirmation-header .order-number {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.order-confirmation .confirmation-header .order-number strong {
  color: var(--default-color);
  letter-spacing: 0.5px;
}

.order-confirmation .order-details {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .order-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.order-confirmation .order-details address {
  font-style: normal;
  line-height: 1.6;
}

.order-confirmation .order-details .shipping-method {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.9rem;
}

.order-confirmation .order-details .payment-info .payment-method {
  display: flex;
  align-items: center;
}

.order-confirmation .order-details .payment-info .billing-address {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .order-confirmation .order-details {
    padding: 1.5rem;
  }
}

.order-confirmation .order-summary {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .order-summary h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.order-confirmation .order-summary .order-items .item-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.order-confirmation .order-summary .order-items .item-row:last-child {
  border-bottom: none;
}

.order-confirmation .order-summary .order-items .item-row .item-image {
  flex: 0 0 80px;
  margin-right: 1rem;
}

.order-confirmation .order-summary .order-items .item-row .item-image img {
  border-radius: 8px;
  object-fit: contain;
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.order-confirmation .order-summary .order-items .item-row .item-details {
  flex: 1;
}

.order-confirmation .order-summary .order-items .item-row .item-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.order-confirmation .order-summary .order-items .item-row .item-details p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.order-confirmation .order-summary .order-items .item-row .item-details .quantity-price {
  font-size: 0.95rem;
}

.order-confirmation .order-summary .order-items .item-row .item-details .quantity-price .price {
  font-weight: 600;
}

.order-confirmation .order-summary .order-totals {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 1rem;
  font-size: 0.95rem;
}

.order-confirmation .order-summary .order-totals .total-row {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.order-confirmation .next-steps {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .next-steps h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.order-confirmation .next-steps p {
  margin-bottom: 1.5rem;
}

.order-confirmation .next-steps .tracking-info {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.order-confirmation .next-steps .tracking-info i {
  color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn {
  padding: 0.65rem 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.order-confirmation .next-steps .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.order-confirmation .next-steps .action-buttons .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn.btn-outline-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.order-confirmation .help-contact {
  font-size: 0.95rem;
}

.order-confirmation .help-contact a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.order-confirmation .help-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {

  .order-confirmation .order-details,
  .order-confirmation .order-summary,
  .order-confirmation .next-steps {
    padding: 1.25rem;
  }

  .order-confirmation .order-items .item-row .item-image {
    flex: 0 0 70px;
  }

  .order-confirmation .order-items .item-row .item-image img {
    width: 70px;
    height: 70px;
  }

  .order-confirmation .order-items .item-row .item-details h5 {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Account Section
--------------------------------------------------------------*/
.account {
  padding-top: 60px;
  padding-bottom: 60px;
}

.account .mobile-menu .mobile-menu-toggle {
  width: 100%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.account .mobile-menu .mobile-menu-toggle i {
  font-size: 20px;
}

.account .mobile-menu .mobile-menu-toggle:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.account .profile-menu {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.account .profile-menu .user-info {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .user-info h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.account .profile-menu .user-info p {
  margin: 0 0 8px;
  font-size: var(--default-font-size);
}

.account .profile-menu .user-info .user-number {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: rgba(204, 238, 197, 0.356);
  color: var(--accent-color);
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.account .profile-menu .user-info .user-number i {
  font-size: 14px;
}

.account .profile-menu .menu-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--default-color);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-nav .nav-link i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-nav .nav-link span {
  flex: 1;
}

.account .profile-menu .menu-nav .nav-link .badge {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex: 0;
}

.account .profile-menu .menu-nav .nav-link .badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account .profile-menu .menu-nav .nav-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-nav .nav-link:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-nav .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
}

.account .profile-menu .menu-nav .nav-link.active i {
  color: var(--contrast-color);
}

.account .profile-menu .menu-nav .nav-link.active .badge {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .menu-footer a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--default-color);
  border-radius: 12px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a.logout-link {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link i {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link:hover {
  background-color: rgba(239, 68, 68, 0.08);
}

.account .content-area {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 5px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.account .content-area .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.account .content-area .section-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.account .content-area .section-header .header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.account .content-area .section-header .header-actions .search-box {
  position: relative;
}

.account .content-area .section-header .header-actions .search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
}

.account .content-area .section-header .header-actions .search-box input {
  width: 240px;
  height: 44px;
  padding: 0 16px 0 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: var(--default-font-size);
  transition: all 0.3s ease;
}

.account .content-area .section-header .header-actions .search-box input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.account .content-area .section-header .header-actions .filter-btn {
  height: 44px;
  padding: 0 20px;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--default-font-size);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.account .content-area .section-header .header-actions .filter-btn i {
  font-size: 16px;
}

.account .content-area .section-header .header-actions .filter-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .payment-cards-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 2px;
}

.account .payment-cards-grid .payment-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .payment-cards-grid .payment-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .payment-cards-grid .payment-card.default {
  border-color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account .payment-cards-grid .payment-card .card-header i {
  font-size: 24px;
  color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .account .profile-menu {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .account .content-area {
    padding: 1px;
  }

  .account .content-area .section-header .header-actions {
    width: 100%;
  }

  .account .content-area .section-header .header-actions .search-box {
    flex: 1;
  }

  .account .content-area .section-header .header-actions .search-box input {
    width: 100%;
  }
}

.account .settings-content .settings-section {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.account .settings-content .settings-section:last-child {
  margin-bottom: 0;
}

.account .settings-content .settings-section h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
}

.account .settings-content .settings-section.danger-zone {
  border-color: #fee2e2;
}

.account .settings-content .settings-section.danger-zone h3 {
  color: #ef4444;
}

.account .settings-content .settings-section.danger-zone .danger-zone-content p {
  margin: 0 0 16px;
  font-size: var(--default-font-size);
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account .settings-content .settings-section.danger-zone .danger-zone-content .btn-danger {
  height: 40px;
  padding: 0 20px;
  background-color: #ef4444;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: var(--default-font-size);
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .settings-content .settings-section.danger-zone .danger-zone-content .btn-danger:hover {
  background-color: #dc2626;
}

.account .settings-content .settings-form .form-label {
  font-size: var(--default-font-size);
  font-weight: 500;
  margin-bottom: 8px;
}

.account .settings-content .settings-form .form-control {
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-size: var(--default-font-size);
  transition: all 0.3s ease;
}

.account .settings-content .settings-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.account .settings-content .settings-form .form-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.account .settings-content .settings-form .form-buttons .btn-save {
  height: 40px;
  padding: 0 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 10px;
  font-size: var(--default-font-size);
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .settings-content .settings-form .form-buttons .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .settings-content .preferences-list .preference-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .settings-content .preferences-list .preference-item:first-child {
  padding-top: 0;
}

.account .settings-content .preferences-list .preference-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.account .settings-content .preferences-list .preference-item .preference-info {
  margin-right: 16px;
}

.account .settings-content .preferences-list .preference-item .preference-info h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
}

.account .settings-content .preferences-list .preference-item .preference-info p {
  margin: 0;
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .settings-content .preferences-list .preference-item .form-check {
  margin: 0;
  min-height: auto;
}

.account .settings-content .preferences-list .preference-item .form-check .form-check-input {
  width: 3rem;
  height: 1.5rem;
  margin: 0;
}

.account .settings-content .preferences-list .preference-item .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.account .settings-content .preferences-list .preference-item .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 575.98px) {
  .account .orders-grid .order-card .order-header {
    flex-direction: column;
    gap: 8px;
  }

  .account .section-header .header-actions {
    width: 100%;
    justify-content: stretch;
  }

  .account .section-header .header-actions .search-box,
  .account .section-header .header-actions .dropdown,
  .account .section-header .header-actions button {
    width: 100%;
  }

  .account .payment-cards-grid,
  .account .addresses-grid {
    grid-template-columns: 1fr;
  }

  .account .review-card .review-header {
    flex-direction: column;
    text-align: center;
  }

  .account .review-card .review-header .product-image {
    margin: 0 auto;
  }

  .account .review-card .review-header .rating {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Impressum Section
--------------------------------------------------------------*/
.impressum .text {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Login Register Section
--------------------------------------------------------------*/
.login-register .login-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-register .login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
  .login-register .login-card {
    padding: 30px 20px;
  }
}

.login-register .login-header h2 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 28px;
}

.login-register .login-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: var(--default-font-size);
}

.login-register .form-label {
  font-weight: 500;
  font-size: var(--default-font-size);
  margin-bottom: 8px;
}

.login-register .input-group {
  border-radius: 0.375rem;
  overflow: hidden;
}

.login-register .input-group .input-group-text {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.login-register .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: var(--default-font-size);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.login-register .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.login-register .input-group .form-control:focus~.input-group-text {
  border-color: var(--accent-color);
}

.login-register .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.login-register .forgot-password {
  font-size: var(--default-font-size);
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

.login-register .forgot-password:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

.login-register .form-check .form-check-input {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.login-register .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.login-register .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
}

.login-register .form-check .form-check-label {
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.login-register .btn-login {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.login-register .btn-login:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.login-register .btn-login:active {
  transform: translateY(0);
}

.login-register .divider {
  display: flex;
  align-items: center;
  text-align: center;
}

.login-register .divider::before,
.login-register .divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.login-register .divider span {
  padding: 0 15px;
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.login-register .social-login {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.login-register .social-login .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.login-register .social-login .social-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.login-register .social-login .social-btn i {
  font-size: 18px;
}

.login-register .signup-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.login-register .signup-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Login Acount Section
--------------------------------------------------------------*/
.login-acount .mobile-menu .mobile-menu-toggle {
  width: 100%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.login-acount .mobile-menu .mobile-menu-toggle i {
  font-size: 20px;
}

.login-acount .mobile-menu .mobile-menu-toggle:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.login-acount .profile-menu {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.login-acount .profile-menu .user-info {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.login-acount .profile-menu .user-info h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.login-acount .profile-menu .user-info .user-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 13px;
}

.login-acount .profile-menu .user-info .user-status i {
  font-size: 14px;
}

.login-acount .profile-menu .menu-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--default-color);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.login-acount .profile-menu .menu-nav .nav-link i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.login-acount .profile-menu .menu-nav .nav-link span {
  flex: 1;
}

.login-acount .profile-menu .menu-nav .nav-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.login-acount .profile-menu .menu-nav .nav-link:hover i {
  color: var(--accent-color);
}

.login-acount .profile-menu .menu-nav .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
}

.login-acount .profile-menu .menu-nav .nav-link.active i {
  color: var(--contrast-color);
}

.login-acount .profile-menu .menu-nav .nav-link.active .badge {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.login-acount .profile-menu .menu-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.login-acount .profile-menu .menu-footer a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--default-color);
  border-radius: 12px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.login-acount .profile-menu .menu-footer a i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.login-acount .profile-menu .menu-footer a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.login-acount .profile-menu .menu-footer a:hover i {
  color: var(--accent-color);
}

.login-acount .profile-menu .menu-footer a.logout-link {
  color: #ef4444;
}

.login-acount .profile-menu .menu-footer a.logout-link i {
  color: #ef4444;
}

.login-acount .profile-menu .menu-footer a.logout-link:hover {
  background-color: rgba(239, 68, 68, 0.08);
}

.login-acount .content-area {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

@media (max-width: 991.98px) {
  .login-acount .profile-menu {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .login-acount .content-area {
    padding: 20px;
  }
}

.login-acount .settings-content .settings-section {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.login-acount .settings-content .settings-section:last-child {
  margin-bottom: 0;
}

.login-acount .settings-content .settings-section h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
}

.login-acount .settings-content .settings-section.danger-zone {
  border-color: #fee2e2;
}

.login-acount .settings-content .settings-section.danger-zone h3 {
  color: #ef4444;
}

.login-acount .settings-content .settings-section.danger-zone .danger-zone-content p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.login-acount .settings-content .settings-section.danger-zone .danger-zone-content .btn-danger {
  height: 40px;
  padding: 0 20px;
  background-color: #ef4444;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.login-acount .settings-content .settings-section.danger-zone .danger-zone-content .btn-danger:hover {
  background-color: #dc2626;
}

.login-acount .settings-content .settings-form .form-label {
  font-size: var(--default-font-size);
  font-weight: 500;
  margin-bottom: 8px;
}

.login-acount .settings-content .settings-form .form-control {
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.login-acount .settings-content .settings-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.login-acount .settings-content .settings-form .form-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.login-acount .settings-content .settings-form .form-buttons .btn-save {
  height: 40px;
  padding: 0 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 10px;
  font-size: var(--default-font-size);
  line-height: 2.5rem;
  transition: all 0.3s ease;
}

.login-acount .settings-content .settings-form .form-buttons .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.login-acount .settings-content .preferences-list .preference-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.login-acount .settings-content .preferences-list .preference-item:first-child {
  padding-top: 0;
}

.login-acount .settings-content .preferences-list .preference-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.login-acount .settings-content .preferences-list .preference-item .preference-info {
  margin-right: 16px;
}

.login-acount .settings-content .preferences-list .preference-item .preference-info h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
}

.login-acount .settings-content .preferences-list .preference-item .preference-info p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.login-acount .settings-content .preferences-list .preference-item .form-check {
  margin: 0;
  min-height: auto;
}

.login-acount .settings-content .preferences-list .preference-item .form-check .form-check-input {
  width: 3rem;
  height: 1.5rem;
  margin: 0;
}

.login-acount .settings-content .preferences-list .preference-item .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.login-acount .settings-content .preferences-list .preference-item .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .contact-info-section {
  height: 100%;
}

.contact .contact-info-section .info-header {
  margin-bottom: 40px;
}

.contact .contact-info-section .info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.contact .contact-info-section .info-header h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.contact .contact-info-section .info-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-info-section .contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.contact .contact-info-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 3%));
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item:hover {
  transform: translateX(10px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-info-section .info-item:hover .info-icon {
  background-color: var(--accent-color);
}

.contact .contact-info-section .info-item:hover .info-icon i {
  color: var(--contrast-color);
}

.contact .contact-info-section .info-item .info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-content {
  flex: 1;
}

.contact .contact-info-section .info-item .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-info-section .info-item .info-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-info-section .social-contact {
  padding: 30px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 85%));
  border-radius: 20px;
  text-align: center;
}

.contact .contact-info-section .social-contact h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.contact .contact-info-section .social-contact .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact .contact-info-section .social-contact .social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .contact-info-section .social-contact .social-icons .social-icon:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Company Slider Section
--------------------------------------------------------------*/
.company-slider {
  text-align: center;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .row {
  align-items: center;
}

@media (max-width: 991px) {
  .team .team-intro {
    margin-bottom: 10px;
  }
}

.team .team-intro .team-intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

@media (max-width: 1199px) {
  .team .team-intro .team-intro-content h2 {
    font-size: 24px;
    font-weight: 700;
  }
}

.team .team-intro .team-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.team .team-intro .team-intro-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.team .team-intro .team-intro-content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-intro .team-navigation {
  display: flex;
  gap: 10px;
}

.team .team-intro .team-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-intro .team-navigation button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.team .member-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-10px);
}

.team .member-card:hover .member-image:before {
  opacity: 0.7;
}

.team .member-card .member-image {
  position: relative;
  overflow: hidden;
}

.team .member-card .member-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.team .member-card .member-image:hover img {
  transform: scale(1.05);
}

.team .member-card .member-info {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team .member-card .member-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .member-card .member-info span {
  color: var(--accent-color);
  font-size: var(--default-font-size);
  font-weight: 500;
  margin-bottom: 5px;
}

.team .member-card .member-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.team .member-card .member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .member-card .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .member-card .member-bio p {
  font-size: var(--default-font-size);
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.team .team-carousel-wrap {
  overflow-x: hidden;
  padding: 30px 20px;
}

.team .team-carousel {
  overflow: visible;
}

.team .team-carousel .swiper-slide {
  height: auto;
}

/*--------------------------------------------------------------
# Lebenslauf Section
--------------------------------------------------------------*/
.lebenslauf .resume-wrapper .resume-block {
  margin-bottom: 3rem;
}

.lebenslauf .resume-wrapper .resume-block:last-child {
  margin-bottom: 0;
}

.lebenslauf .resume-wrapper .resume-block h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.lebenslauf .resume-wrapper .resume-block h2 span {
  color: var(--accent-color);
}

.lebenslauf .resume-wrapper .resume-block .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
  font-weight: 400;
}

.lebenslauf .resume-wrapper .timeline {
  position: relative;
}

.lebenslauf .resume-wrapper .timeline::before {
  content: "";
  position: absolute;
  left: 20%;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.lebenslauf .resume-wrapper .timeline .timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
}

.lebenslauf .resume-wrapper .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.lebenslauf .resume-wrapper .timeline .timeline-item .timeline-left {
  width: 20%;
  padding-right: 3rem;
}

.lebenslauf .resume-wrapper .timeline .timeline-item .timeline-left .company {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.lebenslauf .resume-wrapper .timeline .timeline-item .timeline-left .period {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.lebenslauf .resume-wrapper .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: calc(20% + 1px);
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.lebenslauf .resume-wrapper .timeline .timeline-item .timeline-right {
  width: 70%;
  padding-left: 3rem;
  margin-top: -4px;
}

.lebenslauf .resume-wrapper .timeline .timeline-item .timeline-right .position {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.lebenslauf .resume-wrapper .timeline .timeline-item .timeline-right .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.lebenslauf .resume-wrapper .timeline .timeline-item .timeline-right ul {
  padding-left: 15px;
}

.lebenslauf .resume-wrapper .timeline .timeline-item .timeline-right ul li {
  padding-bottom: 12px;
}

@media (max-width: 992px) {
  .lebenslauf .resume-wrapper .resume-block h2 {
    font-size: 2rem;
  }

  .lebenslauf .resume-wrapper .timeline::before {
    left: 1rem;
  }

  .lebenslauf .resume-wrapper .timeline .timeline-item {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .lebenslauf .resume-wrapper .timeline .timeline-item .timeline-left {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
    margin-bottom: 1.6rem;
    margin-top: -4px;
  }

  .lebenslauf .resume-wrapper .timeline .timeline-item .timeline-dot {
    left: calc(1rem + 1px);
  }

  .lebenslauf .resume-wrapper .timeline .timeline-item .timeline-right {
    width: 100%;
    padding-left: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Museum Section
--------------------------------------------------------------*/
.museum .section-title {
  margin-bottom: 60px;
}

.museum .content {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 7rem 0;
}

.museum .content .img-overlap {
  margin-top: -150px;
}

.museum p {
  color: var(--contrast-color);
}

.museum .content-title {
  color: var(--contrast-color);
  font-weight: 300;
  text-align: left;
}

.museum .content-title strong {
  font-weight: 700;
}

.museum .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}

/*--------------------------------------------------------------
# Museum Gallery Section
--------------------------------------------------------------*/
.museum-gallery .gallery {
  padding: 20px;
}

/*--------------------------------------------------------------
# Appointment Section
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: var(--accent-color);
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Search Section
--------------------------------------------------------------*/
.search .featured-product {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.search .featured-product .product-image {
  position: relative;
  min-height: 500px;
}

.search .featured-product .product-image img {
  padding: 2px;
}

.search .featured-product .product-image .featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search .featured-product .product-image .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9), transparent);
  color: white;
}

.search .featured-product .product-image .product-overlay .product-details {
  max-width: 90%;
}

.search .featured-product .product-image .product-overlay .product-details .product-category {
  font-size: var(--default-font-size);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.search .featured-product .product-image .product-overlay .product-details .product-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.search .featured-product .product-image .product-overlay .product-details .product-description {
  font-size: var(--default-font-size);
  margin-bottom: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
}

.search .featured-product .product-image .product-overlay .product-details .product-meta {
  margin-bottom: 1.5rem;
}

.search .featured-product .product-image .product-overlay .product-details .product-meta .product-price .current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-right: 0.75rem;
}

.search .featured-product .product-image .product-overlay .product-details .product-meta .product-price .old-price {
  font-size: var(--default-font-size);
  text-decoration: line-through;
  opacity: 0.7;
}

.search .featured-product .product-image .product-overlay .product-details .product-actions {
  display: flex;
  gap: 1rem;
}

.search .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary,
.search .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: var(--default-font-size);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.search .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary {
  background-color: white;
  color: var(--default-color);
}

.search .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.search .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
  background-color: var(--accent-color);
  color: white;
}

.search .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #fff 15%);
  transform: translateY(-3px);
}

.search .product-card {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.search .product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.search .product-card:hover .product-image .quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.search .product-card .product-image {
  position: relative;
  overflow: hidden;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search .product-card .product-image img {
  transition: transform 0.5s ease;
}

.search .product-card .product-image .discount-badge,
.search .product-card .product-image .status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
}

.search .product-card .product-image .quick-actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search .product-card .product-image .quick-actions .quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: white;
  color: var(--default-color);
  font-size: var(--default-font-size);
  cursor: pointer;
  transition: all 0.3s ease;
}

.search .product-card .product-image .quick-actions .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.search .product-card .product-info {
  padding: 15px;
}

.search .product-card .product-info .product-title {
  font-size: var(--default-font-size);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.search .product-card .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search .product-card .product-info .product-price .current-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-color);
}

.search .product-card .product-info .product-price .old-price {
  font-size: var(--default-font-size);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.search .quick-action-btn {
  position: relative;
  overflow: hidden;
}

.search .quick-action-btn .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 1199.98px) {
  .search .featured-product .product-image {
    min-height: 450px;
  }

  .search .featured-product .product-image .product-overlay .product-details .product-title {
    font-size: 1.35rem;
  }

  .search .featured-product .product-image .product-overlay .product-details .product-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 991.98px) {
  .search .featured-product {
    margin-bottom: 1rem;
  }

  .search .featured-product .product-image {
    min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .search .featured-product .product-image {
    min-height: 500px;
  }

  .search .featured-product .product-image .product-overlay {
    padding: 20px;
  }

  .search .featured-product .product-image .product-overlay .product-details {
    max-width: 100%;
  }

  .search .featured-product .product-image .product-overlay .product-details .product-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .search .featured-product .product-image .product-overlay .product-details .product-actions {
    flex-direction: column;
    width: 100%;
  }

  .search .featured-product .product-image .product-overlay .product-details .product-actions .btn-primary,
  .search .featured-product .product-image .product-overlay .product-details .product-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .search .product-card .product-image {
    height: 180px;
  }
}

@media (max-width: 575.98px) {
  .search .product-card .product-image {
    height: 160px;
  }

  .search .product-card .product-info {
    padding: 12px;
  }

  .search .product-card .product-info .product-title {
    font-size: 0.85rem;
  }

  .search .product-card .product-info .product-price .current-price {
    font-size: var(--default-font-size);
  }

  .search .product-card .product-info .product-price .old-price {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Pagination Group 2 Section
--------------------------------------------------------------*/
.pagination-group-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-group-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-group-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-group-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-group-2 li a.active,
.pagination-group-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-group-2 li a.active a,
.pagination-group-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Paymnt Methods Section
--------------------------------------------------------------*/
.paymnt-methods .payments-hero {
  text-align: center;
  position: relative;
  padding: 20px 0;
}

.paymnt-methods .payments-hero .hero-content {
  margin: 0 auto;
}

.paymnt-methods .payments-hero .hero-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.paymnt-methods .payments-hero .hero-content p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.paymnt-methods .payment-cards .payment-method {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.paymnt-methods .payment-cards .payment-method .method-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.paymnt-methods .payment-cards .payment-method .method-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.paymnt-methods .payment-cards .payment-method .method-content h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.paymnt-methods .payment-cards .payment-method .method-content p {
  margin-bottom: 10px;
}

.paymnt-methods .payment-cards .payment-method .method-content .supported-cards {
  display: flex;
  gap: 10px;
}

.paymnt-methods .payment-cards .payment-method .method-content .supported-cards img {
  height: 25px;
  width: auto;
}

.paymnt-methods .payment-cards .payment-method .method-footer {
  position: absolute;
  top: 20px;
  right: 20px;
}

.paymnt-methods .payment-cards .payment-method .method-footer .tag {
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.paymnt-methods .payment-features {
  margin-bottom: 70px;
}

.paymnt-methods .payment-features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .paymnt-methods .payment-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .paymnt-methods .payment-features .features-grid {
    grid-template-columns: 1fr;
  }
}

.paymnt-methods .payment-features .feature-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 20px;
  transition: transform 0.3s;
}

.paymnt-methods .payment-features .feature-item:hover {
  transform: translateY(-5px);
}

.paymnt-methods .payment-features .feature-item:hover .feature-icon {
  background-color: var(--accent-color);
}

.paymnt-methods .payment-features .feature-item:hover .feature-icon i {
  color: var(--contrast-color);
}

.paymnt-methods .payment-features .feature-item .feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.paymnt-methods .payment-features .feature-item .feature-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.paymnt-methods .payment-features .feature-item .feature-content h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.paymnt-methods .payment-features .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.paymnt-methods .payment-process {
  margin-bottom: 70px;
  text-align: center;
}

.paymnt-methods .payment-process .process-header {
  margin-bottom: 40px;
}

.paymnt-methods .payment-process .process-header h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.paymnt-methods .payment-process .process-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.paymnt-methods .payment-process .process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.paymnt-methods .payment-process .process-timeline::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 40px;
  right: 40px;
  height: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
  .paymnt-methods .payment-process .process-timeline {
    flex-direction: column;
    gap: 40px;
  }

  .paymnt-methods .payment-process .process-timeline::before {
    display: none;
  }
}

.paymnt-methods .payment-process .process-timeline .timeline-item {
  flex: 1;
  position: relative;
  z-index: 1;
}

.paymnt-methods .payment-process .process-timeline .timeline-item .timeline-marker {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 600;
}

.paymnt-methods .payment-process .process-timeline .timeline-item .timeline-content h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.paymnt-methods .payment-process .process-timeline .timeline-item .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.paymnt-methods .payment-faq {
  margin-bottom: 70px;
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 60px;
}

@media (max-width: 767px) {
  .paymnt-methods .payment-faq {
    padding: 40px 20px;
  }
}

.paymnt-methods .payment-faq .faq-image img {
  max-width: 100%;
  height: auto;
}

.paymnt-methods .payment-faq .faq-content h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.paymnt-methods .payment-faq .faq-content .faq-items .faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.paymnt-methods .payment-faq .faq-content .faq-items .faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.paymnt-methods .payment-faq .faq-content .faq-items .faq-item .faq-header {
  margin: 0;
  padding: 15px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--heading-color);
  font-weight: 600;
  transition: color 0.3s;
}

.paymnt-methods .payment-faq .faq-content .faq-items .faq-item .faq-header i {
  color: var(--accent-color);
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.paymnt-methods .payment-faq .faq-content .faq-items .faq-item .faq-answer {
  display: none;
  padding: 0 0 15px;
}

.paymnt-methods .payment-faq .faq-content .faq-items .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.paymnt-methods .payment-faq .faq-content .faq-items .faq-item.faq-active .faq-header {
  color: var(--accent-color);
}

.paymnt-methods .payment-faq .faq-content .faq-items .faq-item.faq-active .faq-header i {
  transform: rotate(180deg);
}

.paymnt-methods .payment-faq .faq-content .faq-items .faq-item.faq-active .faq-answer {
  display: block;
}

.paymnt-methods .payment-help .help-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 767px) {
  .paymnt-methods .payment-help .help-box {
    flex-direction: column;
    text-align: center;
  }
}

.paymnt-methods .payment-help .help-box .help-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paymnt-methods .payment-help .help-box .help-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.paymnt-methods .payment-help .help-box .help-content {
  flex: 1;
}

.paymnt-methods .payment-help .help-box .help-content h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.paymnt-methods .payment-help .help-box .help-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.paymnt-methods .payment-help .help-box .help-action .help-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.paymnt-methods .payment-help .help-box .help-action .help-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Shipping Info Section
--------------------------------------------------------------*/
.shipping-info .shipping-info-header {
  text-align: center;
  margin-bottom: 60px;
}

.shipping-info .shipping-info-header h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

@media (max-width: 1199px) {
  .shipping-info .shipping-info-header h2 {
    font-size: 1.8rem;
  }
}

.shipping-info .shipping-info-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.shipping-info .shipping-info-header h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

@media (max-width: 1199px) {
  .shipping-info .shipping-info-header h3 {
    font-size: 1.8rem;
  }
}

.shipping-info .shipping-info-header h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.shipping-info .shipping-info-header p {
  font-size: 1.1rem;
  color: var(--default-color);
  max-width: 1000px;
  margin: 0 auto;
}

.shipping-info .delivery-options {
  margin-bottom: 80px;
}

.shipping-info .delivery-options .delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px 0;
  position: relative;
}

@media (max-width: 991px) {
  .shipping-info .delivery-options .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .shipping-info .delivery-options .delivery-grid {
    grid-template-columns: 1fr;
  }
}

.shipping-info .delivery-option {
  position: relative;
}

.shipping-info .delivery-option .option-content {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.shipping-info .delivery-option .option-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--surface-color) 100%);
  transition: height 0.4s ease-out;
  z-index: -1;
}

.shipping-info .delivery-option .option-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.shipping-info .delivery-option .option-content:hover::before {
  height: 100%;
}

.shipping-info .delivery-option.featured .option-content {
  border: 1px solid var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.shipping-info .delivery-option.featured .option-content:hover {
  transform: scale(1.05) translateY(-5px);
}

.shipping-info .delivery-option .icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.3s;
}

.shipping-info .delivery-option .icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-color);
}

.shipping-info .delivery-option:hover .icon-wrapper {
  transform: rotateY(180deg);
}

.shipping-info .delivery-option .option-details h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.shipping-info .delivery-option .option-details .time {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin-bottom: 15px;
}

.shipping-info .delivery-option .option-details .time i {
  font-size: 1.1rem;
}

.shipping-info .delivery-option .option-details .description {
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.shipping-info .price-tag {
  line-height: 2rem;
  color: var(--accent-color);
  font-weight: 600;
}

.shipping-info .shipping-features {
  margin-bottom: 80px;
}

.shipping-info .shipping-features .feature-item {
  text-align: center;
  background-color: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.shipping-info .shipping-features .feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: width 0.3s;
}

.shipping-info .shipping-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shipping-info .shipping-features .feature-item:hover::after {
  width: 80%;
}

.shipping-info .shipping-features .feature-item:hover i {
  transform: scale(1.2);
}

.shipping-info .shipping-features .feature-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: transform 0.3s;
  display: inline-block;
}

.shipping-info .shipping-features .feature-item h5 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.shipping-info .shipping-features .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.shipping-info .international-shipping {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 60px;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .shipping-info .international-shipping {
    padding: 40px 20px;
  }
}

.shipping-info .international-shipping .content-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.shipping-info .international-shipping .content-box .lead {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.shipping-info .international-shipping .content-box .shipping-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shipping-info .international-shipping .content-box .shipping-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.shipping-info .international-shipping .content-box .shipping-benefits li i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.shipping-info .international-shipping .info-cards {
  display: grid;
  gap: 20px;
}

.shipping-info .international-shipping .info-cards .info-card {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s;
}

.shipping-info .international-shipping .info-cards .info-card:hover {
  transform: translateX(-10px);
}

.shipping-info .international-shipping .info-cards .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.shipping-info .international-shipping .info-cards .info-card h5 {
  margin-bottom: 10px;
}

.shipping-info .international-shipping .info-cards .info-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.shipping-info .faq-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.shipping-info .faq-section .faq-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.shipping-info .faq-section .faq-grid .faq-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
}

.shipping-info .faq-section .faq-grid .faq-item h3 {
  margin: 0;
  padding: 25px 30px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.shipping-info .faq-section .faq-grid .faq-item h3 i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.shipping-info .faq-section .faq-grid .faq-item .faq-answer {
  display: none;
  padding: 30px 25px;
}

.shipping-info .faq-section .faq-grid .faq-item .faq-answer p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.shipping-info .faq-section .faq-grid .faq-item.faq-active h3 {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.shipping-info .faq-section .faq-grid .faq-item.faq-active h3 i {
  transform: rotate(45deg);
}

.shipping-info .faq-section .faq-grid .faq-item.faq-active .faq-answer {
  display: block;
}

@media (max-width: 991px) {
  .shipping-info .international-shipping .row>div:first-child {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Factory Hero Section
--------------------------------------------------------------*/
.factory-hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.factory-hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.factory-hero:before {
  content: "";
  background: color-mix(in srgb, var(--bs-gray-700), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.factory-hero .container {
  position: relative;
  z-index: 3;
}

.factory-hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.factory-hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.factory-hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.factory-hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .factory-hero h2 {
    font-size: 32px;
  }

  .factory-hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Factory Content Section
--------------------------------------------------------------*/
.factory-content {
  padding: 80px 0;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--background-color) 70%);
  position: relative;
  overflow: hidden;
}

.factory-content::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 40%);
  border-radius: 50%;
  pointer-events: none;
}

.factory-content .hero-content {
  position: relative;
  z-index: 2;
}

.factory-content .hero-content .hero-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .factory-content .hero-content .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .factory-content .hero-content .hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .factory-content .hero-content .hero-title {
    font-size: 2.2rem;
  }
}

.factory-content .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .factory-content .hero-content .hero-description {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}

@media (max-width: 1199px) {
  .factory-content {
    padding: 120px 0 60px 0;
  }
}

@media (max-width: 768px) {
  .factory-content .hero-content {
    text-align: center !important;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.product-categories-widget .category-tree {
  margin-top: 1rem;
}

.product-categories-widget .category-tree .category-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 0;
}

.product-categories-widget .category-tree .category-item:last-child {
  border-bottom: none;
}

.product-categories-widget .category-tree .category-item .category-header {
  cursor: pointer;
  transition: all 0.3s;
}

.product-categories-widget .category-tree .category-item .category-header:hover .category-link {
  color: var(--accent-color);
}

.product-categories-widget .category-tree .category-item .category-header:hover .category-toggle {
  color: var(--accent-color);
}

.product-categories-widget .category-tree .category-item .category-link {
  color: var(--default-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .category-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .category-toggle .bi-chevron-up {
  display: none;
}

.product-categories-widget .category-tree .category-item .category-header:not(.collapsed) .category-toggle .bi-chevron-down {
  display: none;
}

.product-categories-widget .category-tree .category-item .category-header:not(.collapsed) .category-toggle .bi-chevron-up {
  display: inline;
}

.product-categories-widget .category-tree .category-item .subcategory-list li {
  padding: 0.5rem 0;
}

.product-categories-widget .category-tree .category-item .subcategory-list li:first-child {
  padding-top: 0.75rem;
}

.product-categories-widget .category-tree .category-item .subcategory-list li:last-child {
  padding-bottom: 0;
}

.product-categories-widget .category-tree .category-item .subcategory-list .subcategory-link {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .subcategory-list .subcategory-link:hover {
  color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .product-categories-widget .category-tree .category-item {
    padding: 0.625rem 0;
  }

  .product-categories-widget .category-tree .category-item .subcategory-list li {
    padding: 0.4rem 0;
  }
}