@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: "Montserrat", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

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

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

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f6f6f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #232424;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* 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 .top-bar {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  font-size: 14px;
}
.header .top-bar .top-bar-item {
  color: var(--default-color);
}
.header .top-bar .top-bar-item a {
  color: var(--accent-color);
  text-decoration: none;
}
.header .top-bar .top-bar-item a:hover {
  text-decoration: underline;
}
.header .top-bar .top-bar-item .selected-icon {
  color: var(--accent-color);
  opacity: 1;
  width: 16px;
}
.header .top-bar .announcement-slider {
  color: var(--accent-color);
  font-weight: 500;
  height: 24px;
  overflow: hidden;
}
.header .top-bar .announcement-slider .swiper-wrapper {
  height: auto !important;
}
.header .top-bar .announcement-slider .swiper-slide {
  text-align: center;
  height: 24px;
  line-height: 24px;
}
.header .top-bar .dropdown-menu {
  min-width: 150px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.header .top-bar .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  color: var(--default-color);
  display: flex;
  align-items: center;
}
.header .top-bar .dropdown-menu .dropdown-item .selected-icon {
  opacity: 1;
  color: var(--accent-color);
  width: 16px;
}
.header .top-bar .dropdown-menu .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}
.header .main-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  z-index: 1000;
}
.header .main-header .logo {
  line-height: 1;
}
.header .main-header .logo img {
  width: 40%;
  margin-right: 8px;
}
.header .main-header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .header .main-header .logo h1 {
    font-size: 24px;
  }
}
.header .main-header .desktop-search-form {
  min-width: 400px;
}
@media (max-width: 1200px) {
  .header .main-header .desktop-search-form {
    display: none;
  }
}
.header .main-header .header-actions {
  gap: 16px;
}
.header .main-header .header-actions .header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--default-color);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.header .main-header .header-actions .header-action-btn i {
  font-size: 24px;
}
.header .main-header .header-actions .header-action-btn i.bi-person {
  font-size: 28px;
}
.header .main-header .header-actions .header-action-btn:hover {
  color: var(--accent-color);
}
.header .main-header .header-actions .header-action-btn .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .main-header .account-dropdown .dropdown-menu {
  background-color: var(--surface-color);
  min-width: 280px;
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: right;
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-header {
  padding: 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-header h6 {
  margin: 0 0 0.25rem;
  color: var(--heading-color);
  font-size: 16px;
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-header p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-body {
  padding: 1rem 0;
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item {
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.2s ease;
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.2s ease;
  font-size: 16px;
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover i {
  color: var(--accent-color);
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-footer {
  padding: 1.25rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn {
  font-size: 14px;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}
.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.header .search-form {
  margin: 0;
}
.header .search-form .input-group {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  overflow: visible;
  background-color: var(--surface-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.header .search-form .input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.header .search-form .input-group .form-control {
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  background-color: transparent;
  color: var(--default-color);
}
.header .search-form .input-group .form-control::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}
.header .search-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}
.header .search-form .input-group .form-control:focus {
  box-shadow: none;
}
.header .search-form .input-group .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 25px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 10px !important;
  margin: 3px;
}
.header .search-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.header .search-form .input-group .btn i {
  font-size: 16px;
}
.header .header-nav {
  background-color: var(--accent-color);
}
@media (min-width: 1200px) {
  .header .header-nav {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}
.header #mobileSearch {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  z-index: 1000;
}
.header #mobileSearch .search-form {
  padding: 10px 0;
}
@media (max-width: 991.98px) {
  .header .main-header .header-actions {
    gap: 0.5rem;
  }
  .header .main-header .header-actions .header-action-btn {
    padding: 0.25rem;
  }
  .header .main-header .header-actions .header-action-btn i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 14px;
    line-height: 0;
    font-weight: 500;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:first-child a {
    padding-left: 0;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--heading-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/* Products Mega Menu 1 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-1 {
    position: static;
    /*  Hide Desktop Mega Menu 1 in Desktop */
    /* Bootstrap Tabs Navigation */
    /* Tab Content */
  }
  .navmenu .products-megamenu-1 .mobile-megamenu {
    display: none;
  }
  .navmenu .products-megamenu-1 .desktop-megamenu,
  .navmenu .products-megamenu-1 .active,
  .navmenu .products-megamenu-1 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }
  .navmenu .products-megamenu-1 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }
  .navmenu .products-megamenu-1:hover > .desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .products-megamenu-1 .megamenu-tabs {
    margin-bottom: 15px;
  }
  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
  }
  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 10px 20px;
    color: var(--nav-dropdown-color);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
  }
  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
    border-color: transparent;
  }
  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }
  .navmenu .products-megamenu-1 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Grid */
    /* Product Grid */
  }
  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }
  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }
  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }
  .navmenu .products-megamenu-1 .megamenu-content .tab-content {
    display: none;
  }
  .navmenu .products-megamenu-1 .megamenu-content .tab-content.active {
    display: block;
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column {
    background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4 {
    color: var(--heading-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li {
    margin-bottom: 10px;
    background-color: none !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start !important;
    width: 100%;
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li:last-child {
    margin-bottom: 0;
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a {
    color: var(--nav-dropdown-color);
    font-size: 14px;
    transition: 0.3s;
    padding: 0 0 0 20px;
    display: block;
    position: relative;
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:before {
    content: "\f285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--accent-color);
    opacity: 0.7;
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover:before {
    opacity: 1;
  }
  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column .active {
    background-color: none;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 10px;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card {
    background-color: var(--surface-color);
    overflow: hidden;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card:hover .product-image img {
    transform: scale(1.1);
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image {
    height: 160px;
    position: relative;
    overflow: hidden;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.5s;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new,
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 1;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new {
    background-color: #28a745;
    color: white;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
    background-color: #dc3545;
    color: white;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info {
    padding: 15px;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info h5 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price .original-price {
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-right: 5px;
    font-weight: normal;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view {
    display: inline-block;
    padding: 5px 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
  }
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
}
/* Products Mega Menu 1 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-1 {
    /* Hide Desktop Mega Menu 1 in Mobile */
  }
  .navmenu .products-megamenu-1 .desktop-megamenu {
    display: none;
  }
  .navmenu .products-megamenu-1 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
  }
  .navmenu .products-megamenu-1 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .navmenu .products-megamenu-1 .mobile-megamenu li:last-child {
    border-bottom: none;
  }
  .navmenu .products-megamenu-1 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
  }
  .navmenu .products-megamenu-1 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }
  .navmenu .products-megamenu-1 .mobile-megamenu li ul {
    padding: 0;
  }
  .navmenu .products-megamenu-1 .mobile-megamenu.dropdown-active {
    display: block;
  }
}
/* Products Mega Menu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-2 {
    position: static;
    /* Hide Mobile Mega Menu in Desktop */
    /* Tabs Navigation */
    /* Tab Content */
  }
  .navmenu .products-megamenu-2 .mobile-megamenu {
    display: none;
  }
  .navmenu .products-megamenu-2 .desktop-megamenu,
  .navmenu .products-megamenu-2 .active,
  .navmenu .products-megamenu-2 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }
  .navmenu .products-megamenu-2 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }
  .navmenu .products-megamenu-2:hover > .desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .products-megamenu-2 .megamenu-tabs {
    padding: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
  }
  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-item {
    margin: 0;
  }
  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    color: var(--nav-dropdown-color);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.5px;
  }
  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }
  .navmenu .products-megamenu-2 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Layout */
    /* Categories Section */
    /* Featured Section */
  }
  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }
  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }
  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }
  .navmenu .products-megamenu-2 .megamenu-content .tab-pane {
    padding: 25px;
  }
  .navmenu .products-megamenu-2 .megamenu-content .category-layout {
    display: flex;
    gap: 30px;
  }
  .navmenu .products-megamenu-2 .megamenu-content .categories-section {
    flex: 1;
    /* Category Headers */
    /* Category Links */
  }
  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 15px;
  }
  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a {
    color: var(--nav-dropdown-color);
    font-size: 14px;
    transition: 0.3s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
  }
  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }
  .navmenu .products-megamenu-2 .megamenu-content .featured-section {
    width: 300px;
  }
  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image {
    position: relative;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
  }
  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.9;
  }
  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
  }
  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content h3 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    width: -moz-fit-content;
    width: fit-content;
  }
  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
  }
}
/* Products Mega Menu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-2 {
    /* Hide Desktop Mega Menu in Mobile */
  }
  .navmenu .products-megamenu-2 .desktop-megamenu {
    display: none;
  }
  .navmenu .products-megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
  }
  .navmenu .products-megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .navmenu .products-megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }
  .navmenu .products-megamenu-2 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
  }
  .navmenu .products-megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }
  .navmenu .products-megamenu-2 .mobile-megamenu li ul {
    padding: 0;
  }
  .navmenu .products-megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}
.footer .footer-main {
  padding: 70px 0 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
}
.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}
.footer .footer-main .footer-widget .logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer .footer-main .footer-widget .logo img {
  filter: brightness(0) invert(1);
}
.footer .footer-main .footer-widget .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}
.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.footer .footer-main .footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-main .footer-widget h4:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  right: 0;
}
.footer .footer-main .footer-widget h5 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.footer .footer-main .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-left: 12px;
  margin-top: 3px;
}
.footer .footer-main .footer-contact .contact-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}
.footer .footer-main .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-main .footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}
.footer .footer-main .footer-links li:before {
  content: "-- ";
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}
.footer .footer-main .footer-links a:hover {
  color: var(--accent-color);
}
.footer .footer-main .app-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.footer .footer-main .app-buttons .app-btn {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.footer .footer-main .app-buttons .app-btn i {
  font-size: 20px;
  margin-right: 8px;
}
.footer .footer-main .app-buttons .app-btn span {
  font-size: 13px;
  font-weight: 500;
}
.footer .footer-main .app-buttons .app-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.footer .footer-main .social-links {
  margin-top: 25px;
}
.footer .footer-main .social-links h5 {
  margin-bottom: 15px;
}
.footer .footer-main .social-links .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer .footer-main .social-links .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}
.footer .footer-main .social-links .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.footer .footer-bottom {
  padding: 25px 0;
}
.footer .footer-bottom .payment-methods .payment-icons {
  display: flex;
  gap: 12px;
}
.footer .footer-bottom .payment-methods .payment-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}
.footer .footer-bottom .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}
.footer .footer-bottom .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.footer .footer-bottom .copyright p strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}
.footer .footer-bottom .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.footer .footer-bottom .credits a {
  color: var(--accent-color);
}
.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  transition: color 0.3s ease;
}
.footer .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}
@media (max-width: 991.98px) {
  .footer .footer-main {
    padding: 60px 0 30px;
  }
  .footer .footer-widget h4 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .footer .footer-main {
    padding: 50px 0 20px;
  }
  .footer .footer-main .footer-widget {
    text-align: center;
  }
  .footer .footer-main .footer-widget h4:after {
    width: 50%;
    transform: translateX(-50%);
  }
  .footer .footer-main .footer-contact .contact-item {
    justify-content: center;
  }
  .footer .footer-main .footer-links li {
    padding-left: 0;
  }
  .footer .footer-main .footer-links li:before {
    display: none;
  }
  .footer .footer-main .app-buttons {
    justify-content: center;
  }
  .footer .footer-main .social-icons {
    justify-content: center;
  }
  .footer .footer-bottom .copyright,
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}
.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: 14px;
  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%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
}
.hero .hero-content .hero-text {
  padding-right: 20px;
}
.hero .hero-content .hero-text .season-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero .hero-content .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero .hero-content .hero-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.hero .hero-content .hero-text .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}
.hero .hero-content .hero-text .hero-badges .discount-badge, .hero .hero-content .hero-text .hero-badges .shipping-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}
.hero .hero-content .hero-text .hero-badges .discount-badge {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  color: var(--heading-color);
}
.hero .hero-content .hero-text .hero-badges .discount-badge:before {
  content: "\f242";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}
.hero .hero-content .hero-text .hero-badges .shipping-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}
.hero .hero-content .hero-text .hero-badges .shipping-badge:before {
  content: "\f416";
  font-family: "bootstrap-icons";
  margin-right: 6px;
}
.hero .hero-content .hero-text .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.hero .hero-content .hero-text .hero-actions .btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.hero .hero-content .hero-text .hero-actions .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}
.hero .hero-content .hero-text .hero-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.hero .hero-content .hero-text .hero-actions .btn-outline {
  background-color: transparent;
  border: 2px solid var(--heading-color);
  color: var(--default-color);
}
.hero .hero-content .hero-text .hero-actions .btn-outline:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.hero .hero-content .hero-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-content .hero-image img {
  position: relative;
  z-index: 2;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.hero .hero-content .hero-image .image-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 100%;
  z-index: 1;
}
@media (max-width: 992px) {
  .hero {
    padding: 60px 0;
  }
  .hero .hero-text {
    padding-right: 0;
    text-align: center;
    margin-top: 40px;
  }
  .hero .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero .hero-text .hero-badges {
    justify-content: center;
  }
  .hero .hero-text .hero-actions {
    justify-content: center;
  }
  .hero .hero-image {
    margin-bottom: 40px;
  }
  .hero .hero-image img {
    max-height: 450px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 50px 0;
  }
  .hero .hero-text h1 {
    font-size: 2rem;
  }
  .hero .hero-text p {
    font-size: 1rem;
  }
  .hero .hero-text .hero-actions {
    flex-direction: column;
  }
  .hero .hero-text .hero-actions .btn {
    width: 100%;
  }
  .hero .hero-image img {
    max-height: 350px;
  }
}

/*--------------------------------------------------------------
# Promo Cards Section
--------------------------------------------------------------*/
.promo-cards {
  padding-top: 24px;
  --default-color: #666;
  --heading-color: #333;
  padding-bottom: 30px;
}
.promo-cards .category-featured {
  position: relative;
  border-radius: 12px;
  min-height: 500px;
  overflow: hidden;
  background-color: #f8f5ff;
  transition: all 0.4s ease;
}
.promo-cards .category-featured:hover {
  transform: translateY(-5px);
}
.promo-cards .category-featured:hover .category-image img {
  transform: scale(1.05);
}
.promo-cards .category-featured:hover .btn-shop {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.promo-cards .category-featured:hover .btn-shop i {
  transform: translateX(5px);
}
.promo-cards .category-featured .category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}
.promo-cards .category-featured .category-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.6s ease;
}
.promo-cards .category-featured .category-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  max-width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-cards .category-featured .category-content .category-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.promo-cards .category-featured .category-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}
.promo-cards .category-featured .category-content p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}
.promo-cards .category-featured .category-content .btn-shop {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.promo-cards .category-featured .category-content .btn-shop i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.promo-cards .category-card {
  position: relative;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.promo-cards .category-card.cat-men {
  background-color: #e6f4ff;
}
.promo-cards .category-card.cat-kids {
  background-color: #fff4e6;
}
.promo-cards .category-card.cat-cosmetics {
  background-color: #ffe6eb;
}
.promo-cards .category-card.cat-accessories {
  background-color: #e6ffe8;
}
.promo-cards .category-card:hover {
  transform: translateY(-5px);
}
.promo-cards .category-card:hover .category-image img {
  transform: scale(1.05);
}
.promo-cards .category-card:hover .card-link {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.promo-cards .category-card:hover .card-link i {
  transform: translateX(5px);
}
.promo-cards .category-card .category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}
.promo-cards .category-card .category-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.promo-cards .category-card .category-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-cards .category-card .category-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}
.promo-cards .category-card .category-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.promo-cards .category-card .category-content .card-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.promo-cards .category-card .category-content .card-link i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
@media (max-width: 991.98px) {
  .promo-cards .category-featured {
    height: 420px;
  }
  .promo-cards .category-featured .category-content {
    padding: 30px;
  }
  .promo-cards .category-featured .category-content h2 {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .promo-cards .category-featured {
    height: auto;
  }
  .promo-cards .category-featured .category-image {
    position: relative;
    width: 100%;
    height: 250px;
  }
  .promo-cards .category-featured .category-content {
    max-width: 100%;
    padding: 30px;
  }
  .promo-cards .category-featured .category-content h2 {
    font-size: 1.8rem;
  }
  .promo-cards .category-card {
    height: 200px;
  }
  .promo-cards .category-card .category-content {
    width: 65%;
    padding: 20px;
  }
  .promo-cards .category-card .category-content h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 575.98px) {
  .promo-cards .category-card {
    height: 180px;
  }
  .promo-cards .category-card .category-content {
    width: 70%;
  }
  .promo-cards .category-card .category-content h4 {
    font-size: 1.1rem;
  }
}

.promo-cards-2 {
  padding-top: 57px;
  padding-bottom: 60px;
}
.promo-cards-2 .promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 400px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}
.promo-cards-2 .promo-card .promo-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.promo-cards-2 .promo-card .promo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.promo-cards-2 .promo-card .promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
  transition: 0.3s;
}
.promo-cards-2 .promo-card .promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 3;
  transition: all 0.4s ease;
}
.promo-cards-2 .promo-card .promo-content .promo-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.promo-cards-2 .promo-card .promo-content .promo-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--contrast-color);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.promo-cards-2 .promo-card .promo-content .btn-promo {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  background-color: transparent;
  color: var(--contrast-color);
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
}
.promo-cards-2 .promo-card .promo-content .btn-promo:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.promo-cards-2 .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.promo-cards-2 .promo-card:hover .promo-image img {
  transform: scale(1.1);
}
.promo-cards-2 .promo-card:hover .promo-content {
  transform: translateY(-10px);
}
@media (max-width: 991.98px) {
  .promo-cards-2 .promo-card {
    height: 350px;
  }
  .promo-cards-2 .promo-card .promo-content {
    padding: 1.5rem;
  }
  .promo-cards-2 .promo-card .promo-content .promo-title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .promo-cards-2 .promo-card {
    height: 300px;
  }
  .promo-cards-2 .promo-card .promo-content {
    padding: 1.2rem;
  }
  .promo-cards-2 .promo-card .promo-content .promo-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .promo-cards-2 .promo-card .promo-content .promo-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .promo-cards-2 .promo-card .promo-content .btn-promo {
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
  }
}
@media (max-width: 575.98px) {
  .promo-cards-2 .promo-card {
    height: 280px;
  }
  .promo-cards-2 .promo-card .promo-content .promo-title {
    font-size: 1.2rem;
  }
}

.best-sellers .products-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}
.best-sellers .products-carousel-wrapper .swiper-wrapper {
  height: auto !important;
}
.best-sellers .products-carousel-wrapper .swiper-button-next,
.best-sellers .products-carousel-wrapper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--background-color);
  color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.best-sellers .products-carousel-wrapper .swiper-button-next::after,
.best-sellers .products-carousel-wrapper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: var(--default-color);
}
.best-sellers .products-carousel-wrapper .swiper-button-next:hover,
.best-sellers .products-carousel-wrapper .swiper-button-prev:hover {
  background-color: var(--accent-color);
}
.best-sellers .products-carousel-wrapper .swiper-button-next:hover::after,
.best-sellers .products-carousel-wrapper .swiper-button-prev:hover::after {
  color: var(--contrast-color);
}
.best-sellers .product-item {
  transition: transform 0.3s ease;
  height: auto;
}
.best-sellers .product-card {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.best-sellers .product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.best-sellers .product-card:hover .product-image .quick-actions {
  opacity: 1;
  transform: translateY(0);
}
.best-sellers .product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.best-sellers .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.best-sellers .product-image .discount-badge, .best-sellers .product-image .status-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  z-index: 2;
}
.best-sellers .product-image .discount-badge {
  background-color: #FF5252;
  color: white;
}
.best-sellers .product-image .status-badge.new {
  background-color: #4CAF50;
  color: white;
}
.best-sellers .product-image .status-badge.hot {
  background-color: #FF9800;
  color: white;
}
.best-sellers .product-image .quick-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.best-sellers .product-image .quick-actions .quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: white;
  color: var(--default-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.best-sellers .product-image .quick-actions .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-5px);
}
.best-sellers .product-image .quick-actions .quick-action-btn.add-to-cart {
  width: auto;
  padding: 0 20px;
  border-radius: 20px;
  background-color: var(--accent-color);
  color: white;
}
.best-sellers .product-image .quick-actions .quick-action-btn.add-to-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}
.best-sellers .product-info {
  padding: 20px;
}
.best-sellers .product-info .product-category {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.best-sellers .product-info .product-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
.best-sellers .product-info .product-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}
.best-sellers .product-info .product-title a:hover {
  color: var(--accent-color);
}
.best-sellers .product-info .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #FFB800;
}
.best-sellers .product-info .product-rating .rating-count {
  margin-left: 5px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.best-sellers .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.best-sellers .product-info .product-price .current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}
.best-sellers .product-info .product-price .old-price {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}
.best-sellers .shop-all-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.best-sellers .shop-all-btn:hover {
  color: white;
  background-color: var(--accent-color);
}
@media (max-width: 991.98px) {
  .best-sellers .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .best-sellers .product-image {
    height: 240px;
  }
}
@media (max-width: 767.98px) {
  .best-sellers .categories {
    width: 100%;
    justify-content: space-between;
  }
  .best-sellers .categories .category-btn {
    font-size: 0.9rem;
  }
  .best-sellers .product-image {
    height: 220px;
  }
  .best-sellers .product-image .quick-actions .quick-action-btn {
    width: 36px;
    height: 36px;
  }
  .best-sellers .product-image .quick-actions .quick-action-btn.add-to-cart {
    padding: 0 15px;
  }
  .best-sellers .product-info {
    padding: 15px;
  }
  .best-sellers .product-info .product-title {
    font-size: 15px;
  }
}
@media (max-width: 575.98px) {
  .best-sellers .product-image {
    height: 180px;
  }
  .best-sellers .shop-all-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

.cards {
  padding-top: 30px;
  padding-bottom: 60px;
}
.cards .product-category {
  height: 100%;
  padding: 25px 20px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cards .product-category:hover {
  transform: translateY(-10px);
}
.cards .product-category .category-title {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cards .product-category .category-title i {
  color: var(--accent-color);
  font-size: 1.4rem;
}
.cards .product-category .category-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: var(--accent-color);
}
.cards .product-category .product-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.cards .product-card {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}
.cards .product-card:hover {
  transform: translateX(5px);
}
.cards .product-card:hover .product-name {
  color: var(--accent-color);
}
.cards .product-card .product-image {
  flex: 0 0 85px;
  height: 85px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.cards .product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.cards .product-card .product-image:hover img {
  transform: scale(1.1);
}
.cards .product-card .product-image .product-badges {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cards .product-card .product-image .product-badges [class^=badge-] {
  padding: 3px 6px;
  font-size: 0.65rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}
.cards .product-card .product-image .product-badges .badge-new {
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}
.cards .product-card .product-image .product-badges .badge-sale {
  background-color: #ffebee;
  color: #f44336;
}
.cards .product-card .product-image .product-badges .badge-hot {
  background-color: #fff3e0;
  color: #ff9800;
}
.cards .product-card .product-image .product-badges .badge-limited {
  background-color: #e0f7fa;
  color: #00acc1;
}
.cards .product-card .product-info {
  flex: 1;
}
.cards .product-card .product-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--heading-color);
  transition: color 0.3s;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cards .product-card .product-rating {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 6px;
}
.cards .product-card .product-rating i {
  color: #ffc107;
  margin-right: -1px;
}
.cards .product-card .product-rating span {
  color: #9e9e9e;
  margin-left: 5px;
  font-size: 0.7rem;
}
.cards .product-card .product-price {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cards .product-card .product-price .current-price {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
}
.cards .product-card .product-price .old-price {
  color: #9e9e9e;
  text-decoration: line-through;
  font-size: 0.8rem;
}
@media (max-width: 991px) {
  .cards .product-category {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cards .product-card .product-image {
    flex: 0 0 70px;
    height: 70px;
  }
  .cards .product-card .product-name {
    font-size: 0.9rem;
  }
}
@media (max-width: 575px) {
  .cards {
    padding: 50px 0;
  }
  .cards .product-category {
    padding: 20px 15px;
  }
  .cards .product-category .category-title {
    font-size: 1.2rem;
  }
}

.cards {
  --default-color: #555;
  --heading-color: #333;
}
.cards .info-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cards .info-card:hover {
  transform: translateY(-3px);
}
.cards .info-card .icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.cards .info-card .icon-box i {
  font-size: 1.5rem;
}
.cards .info-card .content {
  display: flex;
  flex-direction: column;
}
.cards .info-card .info-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}
.cards .info-card .info-text {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.5;
}
.cards .info-card.card-1 {
  background-color: #fff9f2;
}
.cards .info-card.card-1 .icon-box {
  background-color: #fff;
  color: #f5a623;
}
.cards .info-card.card-2 {
  background-color: #f0f5ff;
}
.cards .info-card.card-2 .icon-box {
  background-color: #fff;
  color: #ff7a00;
}
.cards .info-card.card-3 {
  background-color: #f0fff7;
}
.cards .info-card.card-3 .icon-box {
  background-color: #fff;
  color: #38b2ac;
}
.cards .info-card.card-4 {
  background-color: #fff0f5;
}
.cards .info-card.card-4 .icon-box {
  background-color: #fff;
  color: #3b82f6;
}
@media (max-width: 991.98px) {
  .cards .info-card {
    padding: 1.25rem;
    gap: 0.75rem;
  }
  .cards .info-card .icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  .cards .info-card .icon-box i {
    font-size: 1.25rem;
  }
  .cards .info-card .info-title {
    font-size: 1rem;
  }
  .cards .info-card .info-text {
    font-size: 0.85rem;
  }
}
@media (max-width: 767.98px) {
  .cards .info-card {
    padding: 1rem;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}
.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}
.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}
.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}
.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}
.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}
.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}
.error-404 .search-box .form-control::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}
.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }
  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }
  .error-404 .error-title {
    font-size: 1.5rem;
  }
  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }
  .error-404 .search-box {
    margin: 0 20px;
  }
}

.blog-details {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.blog-details .post-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.blog-details .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .blog-details .post-img {
    height: 300px;
  }
}
.blog-details .article-content {
  padding: 2rem;
}
@media (max-width: 768px) {
  .blog-details .article-content {
    padding: 1.5rem;
  }
}
.blog-details .meta-categories {
  margin-bottom: 1rem;
}
.blog-details .meta-categories .category, .blog-details .meta-categories .reading-time {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  font-size: 0.9rem;
  color: var(--heading-color);
}
.blog-details .meta-categories .category i, .blog-details .meta-categories .reading-time i {
  margin-right: 0.5rem;
  font-size: 1rem;
}
.blog-details .title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 1rem 0 1.5rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}
@media (max-width: 768px) {
  .blog-details .title {
    font-size: 2rem;
  }
}
.blog-details .meta-top {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.blog-details .meta-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.blog-details .meta-top ul li {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.blog-details .meta-top ul li i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}
.blog-details .meta-top ul li .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.blog-details .meta-top ul li a {
  color: var(--heading-color);
}
.blog-details .meta-top ul li a:hover {
  color: var(--accent-color);
}
.blog-details .content {
  font-size: 1.1rem;
  line-height: 1.8;
}
.blog-details .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}
.blog-details .content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--heading-color);
}
.blog-details .content p {
  margin-bottom: 1.5rem;
}
.blog-details .content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.blog-details .content ul li {
  margin-bottom: 0.5rem;
}
.blog-details .content .content-image {
  margin: 2rem 0;
}
.blog-details .content .content-image img {
  width: 100%;
  border-radius: 8px;
}
.blog-details .content .content-image figcaption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.blog-details .content .content-image-split {
  margin: 2rem 0;
}
.blog-details .content .content-image-split img {
  border-radius: 8px;
}
.blog-details .content blockquote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}
.blog-details .content blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
}
.blog-details .content blockquote cite {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-style: normal;
  display: block;
}
.blog-details .content blockquote cite:before {
  content: "— ";
}
.blog-details .meta-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-details .meta-bottom .article-tags {
  display: flex;
  align-items: center;
}
.blog-details .meta-bottom .article-tags i {
  margin-right: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.blog-details .meta-bottom .article-tags .tags {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-details .meta-bottom .article-tags .tags li a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.blog-details .meta-bottom .article-tags .tags li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.blog-details .meta-bottom .article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-details .meta-bottom .article-share span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.blog-details .meta-bottom .article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.blog-details .meta-bottom .article-share a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.blog-details .meta-bottom .article-share a i {
  font-size: 1rem;
}

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
}
.blog-posts .posts-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
  border-radius: 8px 8px 0 0;
}
.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}
.blog-posts .post-content {
  padding: 30px;
}
.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}
.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}
.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-posts p {
  margin-top: 20px;
}
.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}
.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}
.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}
.blog-posts article:hover .post-title, .blog-posts article:hover .readmore {
  color: var(--accent-color);
}
.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

.product-details .product-images {
  position: relative;
}
.product-details .product-images .vertical-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}
.product-details .product-images .vertical-thumbnails .thumbnail-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
  position: relative;
}
.product-details .product-images .vertical-thumbnails .thumbnail-item:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.product-details .product-images .vertical-thumbnails .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.product-details .product-images .vertical-thumbnails .thumbnail-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-details .product-images .main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.product-details .product-images .main-image-container .image-zoom-container {
  position: relative;
  width: 100%;
  padding: 0.1rem;
}
.product-details .product-images .main-image-container .image-zoom-container .main-image {
  width: 100%;
  height: 400px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-details .product-images .main-image-container .image-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
.product-details .product-images .main-image-container .image-nav .image-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: auto;
  opacity: 0.8;
}
.product-details .product-images .main-image-container .image-nav .image-nav-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  opacity: 1;
}
.product-details .product-images .main-image-container .image-nav .image-nav-btn i {
  font-size: 1.25rem;
}
.product-details .product-images .main-image-container .floating-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-details .product-images .main-image-container .floating-actions .action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.product-details .product-images .main-image-container .floating-actions .action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}
.product-details .product-images .main-image-container .floating-actions .action-btn i {
  font-size: 1rem;
}
.product-details .product-images .mobile-thumbnails .swiper-wrapper {
  height: auto !important;
}
.product-details .product-images .mobile-thumbnails .thumbnail-item {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.product-details .product-images .mobile-thumbnails .thumbnail-item:hover {
  opacity: 0.9;
}
.product-details .product-images .mobile-thumbnails .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
}
.product-details .product-images .mobile-thumbnails .thumbnail-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-details .product-images .mobile-thumbnails .swiper-button-next,
.product-details .product-images .mobile-thumbnails .swiper-button-prev {
  color: var(--accent-color);
  background-color: var(--surface-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product-details .product-images .mobile-thumbnails .swiper-button-next::after,
.product-details .product-images .mobile-thumbnails .swiper-button-prev::after {
  font-size: 14px;
}
.product-details .product-images .drift-zoom-pane {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.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-info-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.product-details .product-info-card .product-header {
  margin-bottom: 1.5rem;
}
.product-details .product-info-card .product-header .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.product-details .product-info-card .product-header .product-meta .product-category {
  font-size: 0.875rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}
.product-details .product-info-card .product-header .product-meta .product-rating {
  display: flex;
  align-items: center;
}
.product-details .product-info-card .product-header .product-meta .product-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}
.product-details .product-info-card .product-header .product-meta .product-rating .rating-count {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 4px;
}
.product-details .product-info-card .product-header .product-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--heading-color);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .product-details .product-info-card .product-header .product-title {
    font-size: 2rem;
  }
}
.product-details .product-info-card .product-header .product-short-description p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}
.product-details .product-info-card .product-price-stock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.product-details .product-info-card .product-price-stock .price-container {
  display: flex;
  flex-direction: column;
}
.product-details .product-info-card .product-price-stock .price-container .current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}
.product-details .product-info-card .product-price-stock .price-container .price-details {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.product-details .product-info-card .product-price-stock .price-container .price-details .original-price {
  font-size: 1.125rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.product-details .product-info-card .product-price-stock .price-container .price-details .discount-badge {
  background-color: #e53935;
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.75rem;
}
.product-details .product-info-card .stock-container .availability-indicator {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.product-details .product-info-card .stock-container .availability-indicator.available {
  color: #2e7d32;
}
.product-details .product-info-card .stock-container .availability-indicator i {
  margin-right: 0.5rem;
}
.product-details .product-info-card .stock-container .stock-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.25rem;
  display: block;
}
@media (max-width: 576px) {
  .product-details .product-info-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .product-details .product-info-card .stock-container {
    text-align: left;
  }
  .product-details .product-info-card .stock-container .availability-indicator {
    justify-content: flex-start;
  }
}
.product-details .product-info-card .product-options {
  margin-bottom: 1.5rem;
}
.product-details .product-info-card .product-options .option-group {
  margin-bottom: 1.5rem;
}
.product-details .product-info-card .product-options .option-group .option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.product-details .product-info-card .product-options .option-group .option-header .option-title {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--heading-color);
}
.product-details .product-info-card .product-options .option-group .option-header .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.product-details .product-info-card .product-options .option-group .color-options {
  display: flex;
  gap: 0.75rem;
}
.product-details .product-info-card .product-options .option-group .color-options .color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.product-details .product-info-card .product-options .option-group .color-options .color-option:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-details .product-info-card .product-options .option-group .color-options .color-option.active {
  border-color: var(--accent-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-details .product-info-card .product-options .option-group .color-options .color-option.active i {
  opacity: 1;
}
.product-details .product-info-card .product-options .option-group .color-options .color-option i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contrast-color);
  font-size: 0.875rem;
  opacity: 0;
}
.product-details .product-info-card .product-options .option-group .size-options {
  display: flex;
  gap: 0.75rem;
}
.product-details .product-info-card .product-options .option-group .size-options .size-option {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
  font-weight: 600;
}
.product-details .product-info-card .product-options .option-group .size-options .size-option:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.product-details .product-info-card .product-options .option-group .size-options .size-option.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-details .product-info-card .quantity-selector {
  display: flex;
  align-items: center;
  max-width: 150px;
}
.product-details .product-info-card .quantity-selector .quantity-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-details .product-info-card .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.product-details .product-info-card .quantity-selector .quantity-btn.decrease {
  border-radius: 8px 0 0 8px;
}
.product-details .product-info-card .quantity-selector .quantity-btn.increase {
  border-radius: 0 8px 8px 0;
}
.product-details .product-info-card .quantity-selector .quantity-btn i {
  font-size: 1.25rem;
}
.product-details .product-info-card .quantity-selector .quantity-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  border-right: none;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 1rem;
  font-weight: 600;
}
.product-details .product-info-card .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}
.product-details .product-info-card .quantity-selector .quantity-input::-webkit-inner-spin-button, .product-details .product-info-card .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-details .product-info-card .product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.product-details .product-info-card .product-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.product-details .product-info-card .product-actions .btn i {
  margin-right: 0.5rem;
  font-size: 1.125rem;
}
.product-details .product-info-card .product-actions .add-to-cart-btn {
  flex: 1;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}
.product-details .product-info-card .product-actions .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.product-details .product-info-card .product-actions .buy-now-btn {
  flex: 1;
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.product-details .product-info-card .product-actions .buy-now-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .product-details .product-info-card .product-actions {
    flex-direction: column;
  }
}
.product-details .product-info-card .additional-info {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.product-details .product-info-card .additional-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.product-details .product-info-card .additional-info .info-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 0.75rem;
  min-width: 24px;
  text-align: center;
}
.product-details .product-info-card .additional-info .info-item span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.product-details .product-details-tabs {
  margin-top: 3rem;
}
.product-details .product-details-tabs .nav-pills {
  border-radius: 8px;
  background-color: var(--surface-color);
  padding: 0.5rem;
  display: inline-flex;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.product-details .product-details-tabs .nav-pills .nav-item {
  margin: 0 0.25rem;
}
.product-details .product-details-tabs .nav-pills .nav-link {
  border-radius: 6px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.product-details .product-details-tabs .nav-pills .nav-link i {
  margin-right: 0.5rem;
  font-size: 1.125rem;
}
.product-details .product-details-tabs .nav-pills .nav-link .review-count {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 20px;
  margin-left: 0.5rem;
}
.product-details .product-details-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}
.product-details .product-details-tabs .nav-pills .nav-link.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
.product-details .product-details-tabs .nav-pills .nav-link.active .review-count {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}
@media (max-width: 576px) {
  .product-details .product-details-tabs .nav-pills {
    width: 100%;
  }
  .product-details .product-details-tabs .nav-pills .nav-item {
    flex: 1;
  }
  .product-details .product-details-tabs .nav-pills .nav-link {
    padding: 0.75rem 0.5rem;
    justify-content: center;
  }
  .product-details .product-details-tabs .nav-pills .nav-link i {
    margin-right: 0.25rem;
  }
}
.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.5rem;
  margin-bottom: 1.25rem;
  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 .product-description .description-section {
  margin-bottom: 2.5rem;
}
.product-details .product-details-tabs .tab-content .product-description .description-section:last-child {
  margin-bottom: 0;
}
.product-details .product-details-tabs .tab-content .product-description .description-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item {
  display: flex;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item .feature-icon i {
  font-size: 1.5rem;
}
.product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item .feature-content h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}
.product-details .product-details-tabs .tab-content .product-description .description-section .features-grid .feature-item .feature-content p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.product-details .product-details-tabs .tab-content .product-description .description-section .box-contents {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.product-details .product-details-tabs .tab-content .product-description .description-section .box-contents .content-item {
  display: flex;
  align-items: center;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.product-details .product-details-tabs .tab-content .product-description .description-section .box-contents .content-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-right: 0.75rem;
}
.product-details .product-details-tabs .tab-content .product-description .description-section .box-contents .content-item span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.product-details .product-details-tabs .tab-content .product-specifications .specs-group {
  margin-bottom: 2.5rem;
}
.product-details .product-details-tabs .tab-content .product-specifications .specs-group:last-child {
  margin-bottom: 0;
}
.product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}
.product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card .specs-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card .specs-icon i {
  font-size: 1.75rem;
}
.product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card .specs-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}
.product-details .product-details-tabs .tab-content .product-specifications .specs-group .specs-cards .specs-card .specs-value {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.875rem;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
@media (min-width: 768px) {
  .product-details .product-details-tabs .tab-content .product-reviews .reviews-summary {
    flex-direction: row;
  }
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating .rating-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating .rating-circle .rating-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating .rating-stars {
  margin: 0.5rem 0;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 1.25rem;
  margin-right: 2px;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .overall-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .rating-breakdown {
  flex: 2;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label {
  width: 60px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress {
  flex: 1;
  height: 8px;
  margin: 0 0.75rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
  overflow: hidden;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress .progress-bar {
  background-color: #FFD700;
  border-radius: 4px;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-count {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: right;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header h4 {
  margin-bottom: 0;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header .write-review-btn {
  display: flex;
  align-items: center;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header .write-review-btn i {
  margin-right: 0.5rem;
}
@media (max-width: 576px) {
  .product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .product-details .product-details-tabs .tab-content .product-reviews .reviews-list .reviews-header .write-review-btn {
    align-self: stretch;
  }
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .form-text {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating input[type=radio] {
  display: none;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating label {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0 0.25rem;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating label i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.2s ease;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating input[type=radio]:checked ~ label i,
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating label:hover i,
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-form-container .star-rating label:hover ~ label i {
  color: #FFD700;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header .reviewer-info .reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0.75rem;
  border: 2px solid var(--accent-color);
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header .reviewer-info .reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header .reviewer-info .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-header .review-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .review-items .review-item .review-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .load-more-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-color: var(--accent-color);
  color: var(--accent-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .load-more-btn i {
  margin-right: 0.5rem;
}
.product-details .product-details-tabs .tab-content .product-reviews .reviews-list .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-list-3 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.product-list-3 .filters .isotope-filters {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.product-list-3 .filters .isotope-filters li {
  color: color-mix(in srgb, var(--heading-color) 80%, transparent);
  cursor: pointer;
  font-weight: 500;
  padding: 8px 20px;
  transition: all 0.3s;
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--heading-color) 10%, transparent);
  border-radius: 50px;
}
.product-list-3 .filters .isotope-filters li:hover {
  color: var(--accent-color);
}
.product-list-3 .filters .isotope-filters li.filter-active {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}
.product-list-3 .filters .dropdown .btn {
  color: color-mix(in srgb, var(--heading-color) 80%, transparent);
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--heading-color) 10%, transparent);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
}
.product-list-3 .filters .dropdown .btn:hover {
  color: var(--accent-color);
}
.product-list-3 .filters .dropdown .btn:after {
  margin-left: 0.5em;
}
.product-list-3 .filters .dropdown .dropdown-menu {
  border: 1px solid color-mix(in srgb, var(--heading-color) 10%, transparent);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
}
.product-list-3 .filters .dropdown .dropdown-menu .dropdown-item {
  color: color-mix(in srgb, var(--heading-color) 80%, transparent);
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 4px;
  transition: all 0.3s;
}
.product-list-3 .filters .dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}
.product-list-3 .product-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.product-list-3 .product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.product-list-3 .product-card:hover .img-wrap .actions {
  opacity: 1;
  visibility: visible;
}
.product-list-3 .product-card:hover .add-to-cart-btn {
  background: color-mix(in srgb, var(--accent-color) 80%, transparent);
}
.product-list-3 .product-card .img-wrap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.product-list-3 .product-card .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 0.5rem solid var(--accent-color);
}
.product-list-3 .product-card .img-wrap .actions {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.product-list-3 .product-card .img-wrap .actions .quick-view-btn {
  background: var(--surface-color);
  color: var(--heading-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s;
}
.product-list-3 .product-card .img-wrap .actions .quick-view-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.product-list-3 .product-card .content {
  padding: 1.5rem;
}
.product-list-3 .product-card .content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}
.product-list-3 .product-card .content .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.product-list-3 .product-card .content .info .ratings {
  color: #ffc107;
  font-size: 14px;
  display: flex;
  gap: 2px;
}
.product-list-3 .product-card .content .info .price {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}
.product-list-3 .product-card .content .add-to-cart-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .product-list-3 .filters .isotope-filters {
    gap: 0.5rem;
  }
  .product-list-3 .filters .isotope-filters li {
    padding: 6px 15px;
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .product-list-3 .product-card .content {
    padding: 1rem;
  }
  .product-list-3 .product-card .content h3 {
    font-size: 15px;
    min-height: 40px;
  }
  .product-list-3 .product-card .content .info .price {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Category Pagination Section
--------------------------------------------------------------*/
.category-pagination {
  padding-top: 0;
}
.category-pagination nav {
  position: relative;
}
.category-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.category-pagination li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.category-pagination li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.category-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}
.category-pagination li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.category-pagination li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}
.category-pagination li a i {
  font-size: 14px;
}
.category-pagination li a span {
  margin: 0 4px;
}
@media (max-width: 575px) {
  .category-pagination ul {
    gap: 4px;
  }
  .category-pagination li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

.account .sidebar-toggle .btn-toggle {
  width: 100%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.account .sidebar-toggle .btn-toggle i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
.account .sidebar-toggle .btn-toggle:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
@media (max-width: 991.98px) {
  .account .profile-sidebar {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 992px) {
  .account .profile-sidebar {
    max-width: 280px;
  }
}
@media (max-width: 991.98px) {
  .account .profile-sidebar {
    margin-bottom: 2rem;
  }
}
.account .profile-sidebar .profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.account .profile-sidebar .profile-header .profile-info h2 {
  margin: 0 0 0.25rem;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--nav-font);
  word-wrap: break-word;
  word-break: break-word;
}
.account .profile-sidebar .profile-header .profile-info .profile-bonus {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.account .profile-sidebar .profile-header .profile-info .profile-bonus i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}
.account .profile-sidebar .profile-nav .nav-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 1.5rem 0 0.75rem;
  padding-left: 0.5rem;
}
.account .profile-sidebar .profile-nav .nav-item {
  margin-bottom: 0.25rem;
}
.account .profile-sidebar .profile-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}
.account .profile-sidebar .profile-nav .nav-link i {
  margin-left: 0.75rem;
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: all 0.3s ease;
}
.account .profile-sidebar .profile-nav .nav-link .badge {
  margin-right: auto;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
}
.account .profile-sidebar .profile-nav .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.account .profile-sidebar .profile-nav .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.account .profile-sidebar .profile-nav .nav-link.active i {
  color: var(--contrast-color);
}
.account .profile-sidebar .profile-nav .nav-link.logout {
  color: #ef4444;
}
.account .profile-sidebar .profile-nav .nav-link.logout i {
  color: #ef4444;
}
.account .profile-content .tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.account .profile-content .tab-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.account .profile-content .tab-header .tab-filters {
  margin-top: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .account .profile-content .tab-header .tab-filters {
    margin-top: 0;
    width: auto;
  }
}
.account .profile-content .tab-header .tab-filters .dropdown .btn {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.625rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  /* Hide Bootstrap's default dropdown caret */
}
@media (min-width: 768px) {
  .account .profile-content .tab-header .tab-filters .dropdown .btn {
    width: auto;
    min-width: 180px;
  }
}
.account .profile-content .tab-header .tab-filters .dropdown .btn.dropdown-toggle::after {
  display: none;
}
.account .profile-content .tab-header .tab-filters .dropdown .btn i {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
  display: inline-block;
}
.account .profile-content .tab-header .tab-filters .dropdown .btn[aria-expanded=true] i {
  transform: rotate(180deg);
}
.account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  min-width: 100%;
}
.account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:hover, .account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:focus {
  background-color: rgba(0, 0, 0, 0.02);
}
.account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:active {
  background-color: rgba(0, 0, 0, 0.03);
}
.account .profile-content .orders-table {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.account .profile-content .orders-table .table-header {
  padding: 1rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.account .profile-content .orders-table .table-header .sort-header {
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.account .profile-content .orders-table .table-header .sort-header i {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}
.account .profile-content .orders-table .table-header .sort-header i:hover {
  opacity: 1;
}
.account .profile-content .orders-table .order-items .order-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  transition: all 0.3s ease;
}
.account .profile-content .orders-table .order-items .order-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.account .profile-content .orders-table .order-items .order-item:last-child {
  border-bottom: none;
}
.account .profile-content .orders-table .order-items .order-item .order-id {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.875rem;
}
.account .profile-content .orders-table .order-items .order-item .order-date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.account .profile-content .orders-table .order-items .order-item .order-status {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}
.account .profile-content .orders-table .order-items .order-item .order-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.account .profile-content .orders-table .order-items .order-item .order-status.in-progress {
  color: #f59e0b;
}
.account .profile-content .orders-table .order-items .order-item .order-status.in-progress .status-dot {
  background-color: #f59e0b;
}
.account .profile-content .orders-table .order-items .order-item .order-status.delivered {
  color: #10b981;
}
.account .profile-content .orders-table .order-items .order-item .order-status.delivered .status-dot {
  background-color: #10b981;
}
.account .profile-content .orders-table .order-items .order-item .order-status.canceled {
  color: #ef4444;
}
.account .profile-content .orders-table .order-items .order-item .order-status.canceled .status-dot {
  background-color: #ef4444;
}
.account .profile-content .orders-table .order-items .order-item .order-total {
  font-weight: 600;
  font-size: 0.875rem;
}
.account .profile-content .orders-table .order-items .order-item .order-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}
.account .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails {
  display: flex;
  align-items: center;
}
.account .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails .product-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.account .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails .more-products {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--default-color);
  font-size: 0.75rem;
  font-weight: 600;
}
.account .profile-content .orders-table .order-items .order-item .order-products .order-details-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--default-color);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.account .profile-content .orders-table .order-items .order-item .order-products .order-details-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.account .profile-content .orders-table .order-items .order-item .order-products .order-details-link i {
  transition: transform 0.3s ease;
}
.account .profile-content .orders-table .order-items .order-item .order-products .order-details-link[aria-expanded=true] i {
  transform: rotate(180deg);
}
.account .profile-content .orders-table .order-details {
  background-color: rgba(0, 0, 0, 0.01);
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}
.account .profile-content .orders-table .order-details .order-details-content {
  padding: 1.5rem;
}
.account .profile-content .orders-table .order-details .order-details-content .order-details-header {
  margin-bottom: 1.5rem;
}
.account .profile-content .orders-table .order-details .order-details-content .order-details-header h5 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.account .profile-content .orders-table .order-details .order-details-content .order-details-header .order-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.account .profile-content .orders-table .order-details .order-details-content .order-details-header .order-info .info-item .info-label {
  font-weight: 500;
  margin-right: 0.5rem;
}
.account .profile-content .orders-table .order-details .order-details-content .order-details-header .order-info .info-item .info-value {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.account .profile-content .orders-table .order-details .order-details-content .order-items-list {
  margin-bottom: 1.5rem;
}
.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}
.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail:last-child {
  border-bottom: none;
}
.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}
.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info {
  flex-grow: 1;
}
.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info h6 {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info .item-meta {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info .item-meta .item-sku {
  margin-right: 1rem;
}
.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-price {
  font-weight: 600;
  font-size: 0.875rem;
  margin-left: 1rem;
}
.account .profile-content .orders-table .order-details .order-details-content .order-summary {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.account .profile-content .orders-table .order-details .order-details-content .order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.account .profile-content .orders-table .order-details .order-details-content .order-summary .summary-row.total {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-color);
}
.account .profile-content .orders-table .order-details .order-details-content .shipping-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address,
.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method {
  flex: 1;
  min-width: 200px;
}
.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address h6,
.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method h6 {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address p,
.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.account .profile-content .orders-table .order-details .order-details-content .cancellation-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}
.account .profile-content .orders-table .order-details .order-details-content .cancellation-info h6 {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ef4444;
}
.account .profile-content .orders-table .order-details .order-details-content .cancellation-info p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.account .profile-content .orders-table .pagination-container {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.account .profile-content .orders-table .pagination-container .pagination .page-item {
  margin: 0 0.25rem;
}
.account .profile-content .orders-table .pagination-container .pagination .page-item .page-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s ease;
}
.account .profile-content .orders-table .pagination-container .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.account .profile-content .orders-table .pagination-container .pagination .page-item:not(.active) .page-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.account .profile-content .wishlist-items .wishlist-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}
.account .profile-content .wishlist-items .wishlist-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.account .profile-content .wishlist-items .wishlist-item .wishlist-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.account .profile-content .wishlist-items .wishlist-item .wishlist-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.account .profile-content .wishlist-items .wishlist-item .wishlist-image .remove-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.account .profile-content .wishlist-items .wishlist-item .wishlist-image:hover img {
  transform: scale(1.05);
}
.account .profile-content .wishlist-items .wishlist-item .wishlist-image:hover .remove-wishlist {
  opacity: 1;
  transform: translateY(0);
}
.account .profile-content .wishlist-items .wishlist-item .wishlist-content {
  padding: 1.25rem;
}
.account .profile-content .wishlist-items .wishlist-item .wishlist-content h5 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.account .profile-content .wishlist-items .wishlist-item .wishlist-content .product-price {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.account .profile-content .wishlist-items .wishlist-item .wishlist-content .btn-add-cart {
  width: 100%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.account .profile-content .wishlist-items .wishlist-item .wishlist-content .btn-add-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.account .profile-content .payment-methods .payment-method-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.account .profile-content .payment-methods .payment-method-item .payment-card {
  display: flex;
  align-items: center;
}
.account .profile-content .payment-methods .payment-method-item .payment-card .card-type {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}
.account .profile-content .payment-methods .payment-method-item .payment-card .card-type i {
  font-size: 1.5rem;
  color: var(--accent-color);
}
.account .profile-content .payment-methods .payment-method-item .payment-card .card-info {
  flex-grow: 1;
}
.account .profile-content .payment-methods .payment-method-item .payment-card .card-info .card-number {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.account .profile-content .payment-methods .payment-method-item .payment-card .card-info .card-expiry {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.account .profile-content .payment-methods .payment-method-item .payment-card .card-actions {
  display: flex;
  align-items: center;
}
.account .profile-content .payment-methods .payment-method-item .payment-card .card-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}
.account .profile-content .payment-methods .payment-method-item .payment-card .card-actions button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.account .profile-content .payment-methods .payment-method-item .payment-card .card-actions button.btn-delete-card {
  color: #ef4444;
}
.account .profile-content .payment-methods .payment-method-item .default-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #e8f4ff;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
  margin-top: 1rem;
}
.account .profile-content .payment-methods .payment-method-item .btn-make-default {
  background-color: #f5f5f5;
  color: var(--default-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.3s ease;
}
.account .profile-content .payment-methods .payment-method-item .btn-make-default:hover {
  background-color: #e9e9e9;
}
.account .profile-content .btn-add-payment,
.account .profile-content .btn-add-address {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.account .profile-content .btn-add-payment i,
.account .profile-content .btn-add-address i {
  margin-right: 0.5rem;
}
.account .profile-content .btn-add-payment:hover,
.account .profile-content .btn-add-address:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.account .profile-content .reviews-list .review-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.account .profile-content .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
  .account .profile-content .reviews-list .review-item .review-header {
    flex-direction: column;
  }
}
.account .profile-content .reviews-list .review-item .review-header .review-product {
  display: flex;
  align-items: center;
}
.account .profile-content .reviews-list .review-item .review-header .review-product .product-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.account .profile-content .reviews-list .review-item .review-header .review-product .product-info h5 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}
.account .profile-content .reviews-list .review-item .review-header .review-product .product-info .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.account .profile-content .reviews-list .review-item .review-header .review-rating {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
@media (max-width: 575.98px) {
  .account .profile-content .reviews-list .review-item .review-header .review-rating {
    margin-left: 0;
    margin-top: 1rem;
  }
}
.account .profile-content .reviews-list .review-item .review-header .review-rating i {
  color: #f59e0b;
  margin-right: 0.25rem;
}
.account .profile-content .reviews-list .review-item .review-header .review-rating i:last-child {
  margin-right: 0;
}
.account .profile-content .reviews-list .review-item .review-content {
  margin-bottom: 1rem;
}
.account .profile-content .reviews-list .review-item .review-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
.account .profile-content .reviews-list .review-item .review-actions {
  display: flex;
  justify-content: flex-end;
}
.account .profile-content .reviews-list .review-item .review-actions button {
  background-color: #f5f5f5;
  color: var(--default-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}
.account .profile-content .reviews-list .review-item .review-actions button:hover {
  background-color: #e9e9e9;
}
.account .profile-content .reviews-list .review-item .review-actions button.btn-delete-review {
  color: #ef4444;
}
.account .profile-content .personal-info-form {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}
.account .profile-content .personal-info-form .form-label {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.account .profile-content .personal-info-form .form-control {
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.account .profile-content .personal-info-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(54, 144, 231, 0.1);
}
.account .profile-content .personal-info-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.account .profile-content .personal-info-form .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(54, 144, 231, 0.1);
}
.account .profile-content .personal-info-form .btn-save {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.account .profile-content .personal-info-form .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.account .profile-content .addresses-list .address-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  height: 100%;
  position: relative;
}
.account .profile-content .addresses-list .address-item .address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.account .profile-content .addresses-list .address-item .address-header h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.account .profile-content .addresses-list .address-item .address-header .address-actions {
  display: flex;
  align-items: center;
}
.account .profile-content .addresses-list .address-item .address-header .address-actions a button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}
.account .profile-content .addresses-list .address-item .address-header .address-actions a button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.account .profile-content .addresses-list .address-item .address-header .address-actions a button.btn-delete-address {
  color: #ef4444;
}
.account .profile-content .addresses-list .address-item .address-content {
  margin-bottom: 1rem;
}
.account .profile-content .addresses-list .address-item .address-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
.account .profile-content .addresses-list .address-item .default-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #e8f4ff;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
}
.account .profile-content .addresses-list .address-item .btn-make-default {
  background-color: #f5f5f5;
  color: var(--default-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.account .profile-content .addresses-list .address-item .btn-make-default:hover {
  background-color: #e9e9e9;
}
.account .profile-content .notifications-settings {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}
.account .profile-content .notifications-settings .notification-group {
  margin-bottom: 2rem;
}
.account .profile-content .notifications-settings .notification-group:last-of-type {
  margin-bottom: 1.5rem;
}
.account .profile-content .notifications-settings .notification-group h5 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.account .profile-content .notifications-settings .notification-group .notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}
.account .profile-content .notifications-settings .notification-group .notification-item:last-child {
  border-bottom: none;
}
.account .profile-content .notifications-settings .notification-group .notification-item .notification-info .notification-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.account .profile-content .notifications-settings .notification-group .notification-item .notification-info .notification-desc {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.account .profile-content .notifications-settings .notification-group .notification-item .form-check-input {
  width: 2.5rem;
  height: 1.25rem;
  margin-left: 1rem;
}
.account .profile-content .notifications-settings .notification-group .notification-item .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.account .profile-content .notifications-settings .notification-actions {
  display: flex;
  justify-content: flex-end;
}
.account .profile-content .notifications-settings .notification-actions .btn-save {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.account .profile-content .notifications-settings .notification-actions .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.order-view {
  max-width: 900px;
  margin: 0 auto;
}
.order-view .view-header {
  margin-bottom: 2.5rem;
}
.order-view .view-header .success-icon i {
  font-size: 4rem;
  color: #4BB543;
}
.order-view .view-header h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.order-view .view-header .lead {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}
.order-view .view-header .order-number {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.order-view .view-header .order-number strong {
  color: var(--default-color);
  letter-spacing: 0.5px;
}
.order-view .order-details {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.order-view .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-view .order-details address {
  font-style: normal;
  line-height: 1.6;
}
.order-view .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-view .order-details .payment-info .payment-method {
  display: flex;
  align-items: center;
}
.order-view .order-details .payment-info .billing-address {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}
@media (max-width: 767.98px) {
  .order-view .order-details {
    padding: 1.5rem;
  }
}
.order-view .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-view .order-summary .tabelle-header {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.order-view .order-summary h4 {
  font-size: 1.25rem;
  font-weight: 600;
}
.order-view .order-summary .order-items .item-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.order-view .order-summary .order-items .item-row:last-child {
  border-bottom: none;
}
.order-view .order-summary .order-items .item-row .item-image {
  flex: 0 0 80px;
  margin-left: 1rem;
}
.order-view .order-summary .order-items .item-row .item-image img {
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}
.order-view .order-summary .order-items .item-row .item-details {
  flex: 1;
}
.order-view .order-summary .order-items .item-row .item-details h5 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}
.order-view .order-summary .order-items .item-row .item-details p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.order-view .order-summary .order-items .item-row .item-details .quantity-price {
  font-size: 1.3rem;
}
.order-view .order-summary .order-items .item-row .item-details .quantity-price .price {
  font-weight: 600;
}
.order-view .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-view .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-view .next-steps {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.order-view .next-steps h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.order-view .next-steps p {
  margin-bottom: 1.5rem;
}
.order-view .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-view .next-steps .tracking-info i {
  color: var(--accent-color);
}
.order-view .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-view .next-steps .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.order-view .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-view .next-steps .action-buttons .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.order-view .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-view .help-contact {
  font-size: 0.95rem;
}
.order-view .help-contact a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}
.order-view .help-contact a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .order-view .order-details,
  .order-view .order-summary,
  .order-view .next-steps {
    padding: 1.25rem;
  }
  .order-view .order-items .item-row .item-image {
    flex: 0 0 70px;
  }
  .order-view .order-items .item-row .item-image img {
    width: 70px;
    height: 70px;
  }
  .order-view .order-items .item-row .item-details h5 {
    font-size: 1rem;
  }
}

.login .login-register-wrapper {
  background: linear-gradient(145deg, var(--surface-color), color-mix(in srgb, var(--surface-color), white 15%));
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 40px -15px color-mix(in srgb, var(--default-color), transparent 90%), 0 0 15px -3px color-mix(in srgb, var(--default-color), transparent 95%) inset;
}
.login .auth-tabs {
  position: relative;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 4px;
  border: 0;
}
.login .auth-tabs .auth-tab-btn.nav-link {
  background: transparent;
  border: none;
  padding: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
}
.login .auth-tabs .auth-tab-btn.nav-link:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.login .auth-tabs .auth-tab-btn.nav-link:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.login .auth-tabs .auth-tab-btn.nav-link i {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.login .auth-tabs .auth-tab-btn.nav-link span {
  display: block;
  font-size: 0.95rem;
}
.login .auth-tabs .auth-tab-btn.nav-link.active, .login .auth-tabs .auth-tab-btn.nav-link.nav-link.active {
  color: var(--contrast-color);
  border: none;
}
.login .auth-tabs .auth-tab-btn.nav-link.active::before, .login .auth-tabs .auth-tab-btn.nav-link.nav-link.active::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 25%));
  border-radius: 8px;
  z-index: -1;
}
.login .auth-title {
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 600;
}
.login .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
}
.login .input-group {
  border-radius: 10px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
}
.login .input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}
.login .input-group .input-group-text {
  background-color: transparent;
  border: none;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding-left: 0;
}
.login .input-group .input-group-text i {
  font-size: 1.1rem;
}
.login .input-group .form-control {
  border: none;
  padding: 0.75rem 0.5rem;
  background-color: transparent;
  font-size: 1rem;
  color: var(--default-color);
}
.login .input-group .form-control:focus {
  box-shadow: none;
}
.login .input-group .form-control::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.login .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.login .form-check .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin-right: 0.5rem;
  cursor: pointer;
}
.login .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.login .form-check .form-check-input:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
}
.login .form-check .form-check-label {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  cursor: pointer;
  font-size: 0.9rem;
}
.login .form-check .form-check-label a {
  color: var(--accent-color);
  font-weight: 500;
  position: relative;
}
.login .form-check .form-check-label a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.login .form-check .form-check-label a:hover::after {
  transform: scaleX(1);
}
.login .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 25%));
  border: none;
  padding: 0.875rem;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.login .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.login .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}
.login .btn-primary:hover::before {
  transform: translateY(0);
}
.login .btn-primary:active {
  transform: translateY(0);
}
.login .forgot-password {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
.login .forgot-password::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.login .forgot-password:hover::after {
  transform: scaleX(1);
}
@media (max-width: 576px) {
  .login {
    padding: 2rem 1.5rem;
  }
  .login .auth-title {
    font-size: 1.5rem;
  }
  .login .auth-tab-btn.nav-link {
    padding: 0.75rem;
  }
  .login .auth-tab-btn.nav-link i {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  .login .auth-tab-btn.nav-link span {
    font-size: 0.85rem;
  }
  .login .form-control {
    font-size: 16px;
  }
}

.order-confirmation {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
  /* ===== Confetti Animation ===== */
  /* ===== Celebration Header ===== */
  /* ===== Order Info Card ===== */
  /* ===== Progress Tracker ===== */
  /* ===== Order Summary ===== */
  /* ===== Info Columns ===== */
  /* ===== What's Next Section ===== */
  /* ===== Action Buttons ===== */
  /* ===== Customer Support ===== */
}
.order-confirmation .confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.order-confirmation .confetti-container .confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  opacity: 0.8;
  border-radius: 0;
  animation: confetti-fall 4s ease-in-out infinite;
}
.order-confirmation .confetti-container .confetti:nth-child(1) {
  left: 10%;
  background-color: var(--accent-color);
  animation-delay: 0s;
  animation-duration: 3.2s;
}
.order-confirmation .confetti-container .confetti:nth-child(2) {
  left: 20%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  animation-delay: 0.2s;
  animation-duration: 3.6s;
}
.order-confirmation .confetti-container .confetti:nth-child(3) {
  left: 30%;
  background-color: var(--accent-color);
  animation-delay: 0.4s;
  animation-duration: 4s;
}
.order-confirmation .confetti-container .confetti:nth-child(4) {
  left: 40%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  animation-delay: 0.6s;
  animation-duration: 3.4s;
}
.order-confirmation .confetti-container .confetti:nth-child(5) {
  left: 50%;
  background-color: var(--accent-color);
  animation-delay: 0.8s;
  animation-duration: 3.8s;
}
.order-confirmation .confetti-container .confetti:nth-child(6) {
  left: 60%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  animation-delay: 1s;
  animation-duration: 4.2s;
}
.order-confirmation .confetti-container .confetti:nth-child(7) {
  left: 70%;
  background-color: var(--accent-color);
  animation-delay: 1.2s;
  animation-duration: 3.5s;
}
.order-confirmation .confetti-container .confetti:nth-child(8) {
  left: 80%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  animation-delay: 1.4s;
  animation-duration: 3.7s;
}
.order-confirmation .confetti-container .confetti:nth-child(9) {
  left: 90%;
  background-color: var(--accent-color);
  animation-delay: 1.6s;
  animation-duration: 4.1s;
}
.order-confirmation .confetti-container .confetti:nth-child(10) {
  left: 15%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  animation-delay: 1.8s;
  animation-duration: 3.9s;
}
.order-confirmation .confetti-container .confetti:nth-child(11) {
  left: 35%;
  background-color: var(--accent-color);
  animation-delay: 2s;
  animation-duration: 4.3s;
}
.order-confirmation .confetti-container .confetti:nth-child(12) {
  left: 65%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  animation-delay: 2.2s;
  animation-duration: 3.3s;
}
.order-confirmation .confetti-container .confetti:nth-child(3n) {
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
.order-confirmation .confetti-container .confetti:nth-child(3n+1) {
  transform: rotate(45deg);
}
.order-confirmation .confetti-container .confetti:nth-child(3n+2) {
  width: 5px;
  height: 15px;
}
@keyframes confetti-fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(600px) rotate(360deg);
    opacity: 0;
  }
}
.order-confirmation .celebration-header {
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
}
.order-confirmation .celebration-header .celebration-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-confirmation .celebration-header .celebration-icon i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}
.order-confirmation .celebration-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--heading-color);
}
.order-confirmation .celebration-header p.lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .order-confirmation .celebration-header h1 {
    font-size: 2rem;
  }
  .order-confirmation .celebration-header p.lead {
    font-size: 1.1rem;
  }
}
.order-confirmation .order-info-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.order-confirmation .order-info-card > div {
  flex: 1;
  padding: 0.75rem;
  min-width: 150px;
}
@media (max-width: 575.98px) {
  .order-confirmation .order-info-card > div {
    flex: 0 0 100%;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .order-confirmation .order-info-card > div:last-child {
    border-bottom: none;
  }
}
.order-confirmation .order-info-card > div .label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}
.order-confirmation .order-info-card > div .value {
  font-size: 1.05rem;
  font-weight: 500;
}
.order-confirmation .progress-tracker {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.order-confirmation .progress-tracker h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.order-confirmation .progress-tracker .progress-container .progress-bar {
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.order-confirmation .progress-tracker .progress-container .progress-bar .progress-fill {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  background-color: var(--accent-color);
  border-radius: 10px;
  transition: width 1s ease;
}
.order-confirmation .progress-tracker .progress-container .progress-labels {
  display: flex;
  justify-content: space-between;
}
.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label {
  flex: 0 0 auto;
  text-align: center;
  max-width: 25%;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label.active {
  opacity: 1;
}
.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label.active .label-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}
.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label.active span {
  font-weight: 600;
  color: var(--default-color);
}
.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label .label-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  transition: all 0.3s ease;
}
.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label .label-icon i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}
.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label span {
  font-size: 0.9rem;
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
@media (max-width: 767.98px) {
  .order-confirmation .progress-tracker .progress-container .progress-labels {
    flex-wrap: wrap;
  }
  .order-confirmation .progress-tracker .progress-container .progress-labels .progress-label {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .order-confirmation .progress-tracker .progress-container .progress-labels .progress-label {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.order-confirmation .order-summary {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.order-confirmation .order-summary h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.order-confirmation .order-summary .summary-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  /* Product Grid */
  /* Price Breakdown */
}
@media (max-width: 767.98px) {
  .order-confirmation .order-summary .summary-grid {
    grid-template-columns: 1fr;
  }
}
.order-confirmation .order-summary .summary-grid .product-grid .product-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.order-confirmation .order-summary .summary-grid .product-grid .product-card:hover {
  transform: translateY(-3px);
}
.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-image {
  position: relative;
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  margin-right: 1.25rem;
}
.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}
.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-image .quantity {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-info {
  flex: 1;
}
.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-info .variant {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
}
.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-info .price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-color);
}
.order-confirmation .order-summary .summary-grid .price-breakdown {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.order-confirmation .order-summary .summary-grid .price-breakdown .breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.order-confirmation .order-summary .summary-grid .price-breakdown .breakdown-row:last-of-type {
  margin-bottom: 0;
}
.order-confirmation .order-summary .summary-grid .price-breakdown .breakdown-row.total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  font-size: 1.2rem;
  font-weight: 700;
}
.order-confirmation .info-columns {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.order-confirmation .info-columns .info-box {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
}
.order-confirmation .info-columns .info-box .info-icon {
  flex: 0 0 50px;
  height: 50px;
  border-radius: 12px;
  margin-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-confirmation .info-columns .info-box .info-icon i {
  font-size: 1.5rem;
}
.order-confirmation .info-columns .info-box.shipping-info .info-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}
.order-confirmation .info-columns .info-box.payment-info .info-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}
.order-confirmation .info-columns .info-box .info-content {
  flex: 1;
}
.order-confirmation .info-columns .info-box .info-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.order-confirmation .info-columns .info-box .info-content address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.order-confirmation .info-columns .info-box .info-content .delivery-estimate {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  font-size: 0.9rem;
}
.order-confirmation .info-columns .info-box .info-content .delivery-estimate i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}
.order-confirmation .info-columns .info-box .info-content .payment-method .card-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.order-confirmation .info-columns .info-box .info-content .payment-method .card-info i {
  margin-right: 0.75rem;
  color: var(--accent-color);
}
.order-confirmation .info-columns .info-box .info-content .payment-method .billing-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.order-confirmation .info-columns .info-box .info-content .payment-method .billing-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.order-confirmation .whats-next {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.order-confirmation .whats-next h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.order-confirmation .whats-next .next-steps {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.order-confirmation .whats-next .next-steps .step {
  display: flex;
  margin-bottom: 1.5rem;
}
.order-confirmation .whats-next .next-steps .step:last-child {
  margin-bottom: 0;
}
.order-confirmation .whats-next .next-steps .step .step-number {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.25rem;
}
.order-confirmation .whats-next .next-steps .step .step-content {
  flex: 1;
}
.order-confirmation .whats-next .next-steps .step .step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.order-confirmation .whats-next .next-steps .step .step-content p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}
.order-confirmation .action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.order-confirmation .action-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.order-confirmation .action-buttons .btn i {
  margin-right: 0.5rem;
}
.order-confirmation .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.order-confirmation .action-buttons .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}
.order-confirmation .action-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}
.order-confirmation .action-buttons .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}
@media (max-width: 575.98px) {
  .order-confirmation .action-buttons .btn {
    flex: 1;
  }
}
@media (max-width: 575.98px) {
  .order-confirmation .action-buttons {
    flex-direction: column;
  }
}
.order-confirmation .customer-support {
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
.order-confirmation .customer-support a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.order-confirmation .customer-support a:hover {
  text-decoration: underline;
}

.contact-2 .info-card {
  background-color: var(--surface-color);
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
}
.contact-2 .info-card:hover {
  transform: translateY(-5px);
}
.contact-2 .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}
.contact-2 .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}
.contact-2 .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.contact-2 .info-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}
.contact-2 .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}
.contact-2 .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}
.contact-2 .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}
.contact-2 .form-wrapper .input-group .form-control::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact-2 .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact-2 .form-wrapper select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}
.contact-2 .form-wrapper textarea.form-control {
  min-height: 160px;
}
.contact-2 .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}
.contact-2 .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 35px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 30px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}
.widget-item:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=main.css.map */