/**
* Template Name: ShopWise
* Template URL: https://bootstrapmade.com/shopwise-bootstrap-ecommerce-template/
* Updated: Apr 08 2026 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@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: "Quicksand",  sans-serif;
  --nav-font: "Inter",  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: #5a6577; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #10243d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3769fd; /* 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: #5a6577;  /* The default color of the main navmenu links */
  --nav-hover-color: #3769fd; /* 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: #5a6577; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3769fd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #112946;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #203856;
  --contrast-color: #ffffff;
}

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

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

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

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.3s ease;
  z-index: 997;
}

.header .utility-bar {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 6px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.header .utility-bar .utility-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.header .utility-bar .utility-links .utility-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.header .utility-bar .utility-links .utility-link i {
  font-size: 13px;
}

.header .utility-bar .utility-links .utility-link:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.header .utility-bar .utility-links .utility-divider {
  width: 1px;
  height: 14px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 4px;
}

.header .utility-bar .promo-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-color);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .header .utility-bar {
    display: none;
  }
}

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

.header .main-bar .logo {
  flex-shrink: 0;
  text-decoration: none;
}

.header .main-bar .logo i {
  font-size: 24px;
  margin-right: 8px;
}

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

.header .main-bar .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .header .main-bar .logo h1 {
    font-size: 18px;
  }
}

.header .main-bar .search-bar {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.header .main-bar .search-bar .search-icon {
  position: absolute;
  left: 12px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
  pointer-events: none;
}

.header .main-bar .search-bar .search-field {
  flex: 1;
  height: 40px;
  padding: 8px 100px 8px 36px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.2s ease;
}

.header .main-bar .search-bar .search-field::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.header .main-bar .search-bar .search-field:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.header .main-bar .search-bar .search-submit {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.header .main-bar .search-bar .search-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.header .main-bar .action-group {
  gap: 4px;
}

.header .main-bar .action-group .action-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--default-color);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  transition: all 0.2s ease;
}

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

.header .main-bar .action-group .action-btn .action-text {
  font-size: 13px;
  font-weight: 500;
}

.header .main-bar .action-group .action-btn .badge-count {
  position: absolute;
  top: 2px;
  left: 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

.header .main-bar .action-group .action-btn:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--accent-color);
}

.header .main-bar .action-group .action-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.header .main-bar .action-group .account-flyout {
  min-width: 288px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 10px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  margin-top: 8px;
  overflow: hidden;
}

.header .main-bar .action-group .account-flyout .flyout-header {
  padding: 20px 20px 12px;
}

.header .main-bar .action-group .account-flyout .flyout-header h6 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.header .main-bar .action-group .account-flyout .flyout-header p {
  margin: 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.header .main-bar .action-group .account-flyout .flyout-actions {
  padding: 0 20px 16px;
  display: flex;
  gap: 8px;
}

.header .main-bar .action-group .account-flyout .flyout-actions .btn-primary-action {
  flex: 1;
  text-align: center;
  padding: 10px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.header .main-bar .action-group .account-flyout .flyout-actions .btn-primary-action:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.header .main-bar .action-group .account-flyout .flyout-actions .btn-outline-action {
  flex: 1;
  text-align: center;
  padding: 10px;
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.header .main-bar .action-group .account-flyout .flyout-actions .btn-outline-action:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.header .main-bar .action-group .account-flyout .flyout-links {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 8px 0;
}

.header .main-bar .action-group .account-flyout .flyout-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.header .main-bar .action-group .account-flyout .flyout-links a i {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  width: 20px;
  text-align: center;
  transition: color 0.2s ease;
}

.header .main-bar .action-group .account-flyout .flyout-links a:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--accent-color);
}

.header .main-bar .action-group .account-flyout .flyout-links a:hover i {
  color: var(--accent-color);
}

.header .main-bar .action-group .cart-flyout {
  min-width: 370px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 10px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  right: 0;
  left: auto;
  margin-top: 8px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .header .main-bar .action-group .cart-flyout {
    min-width: 300px;
  }
}

.header .main-bar .action-group .cart-flyout .flyout-top {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-bar .action-group .cart-flyout .flyout-top h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.header .main-bar .action-group .cart-flyout .flyout-top .items-label {
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  padding: 2px 10px;
  border-radius: 12px;
}

.header .main-bar .action-group .cart-flyout .flyout-items {
  max-height: 300px;
  overflow-y: auto;
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 20px;
  gap: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item:last-child {
  border-bottom: none;
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .flyout-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .flyout-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .flyout-item-details {
  flex: 1;
  min-width: 0;
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .flyout-item-details h6 {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .flyout-item-details .item-option {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 4px;
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .flyout-item-details .item-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .flyout-item-details .item-bottom .item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .flyout-item-details .item-bottom .item-qty {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .item-dismiss {
  background: none;
  border: none;
  padding: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 65%);
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
  border-radius: 4px;
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .item-dismiss:hover {
  color: #dc3545;
  background-color: color-mix(in srgb, #dc3545, transparent 94%);
}

.header .main-bar .action-group .cart-flyout .flyout-items .flyout-item .item-dismiss i {
  font-size: 14px;
}

.header .main-bar .action-group .cart-flyout .flyout-bottom {
  padding: 16px 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-bar .action-group .cart-flyout .flyout-bottom .subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
}

.header .main-bar .action-group .cart-flyout .flyout-bottom .subtotal-row .subtotal-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
}

.header .main-bar .action-group .cart-flyout .flyout-bottom .btn-proceed {
  display: block;
  text-align: center;
  padding: 10px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  transition: background 0.2s ease;
}

.header .main-bar .action-group .cart-flyout .flyout-bottom .btn-proceed:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.header .main-bar .action-group .cart-flyout .flyout-bottom .link-viewbag {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  transition: color 0.2s ease;
}

.header .main-bar .action-group .cart-flyout .flyout-bottom .link-viewbag:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.header .nav-strip {
  background-color: var(--surface-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0;
}

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

.header #mobileSearch .mobile-search {
  padding: 8px 0 12px;
}

.header #mobileSearch .mobile-search .mobile-search-inner {
  display: flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  padding: 0 12px;
  background-color: var(--background-color);
  transition: border-color 0.2s ease;
}

.header #mobileSearch .mobile-search .mobile-search-inner:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.header #mobileSearch .mobile-search .mobile-search-inner i {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 55%);
  margin-right: 10px;
  flex-shrink: 0;
}

.header #mobileSearch .mobile-search .mobile-search-inner .form-control {
  border: none;
  padding: 10px 0;
  font-size: 14px;
  background-color: transparent;
  color: var(--default-color);
}

.header #mobileSearch .mobile-search .mobile-search-inner .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.header #mobileSearch .mobile-search .mobile-search-inner .form-control:focus {
  box-shadow: none;
}

@media (max-width: 992px) {
  .header .main-bar {
    padding: 12px 0;
  }

  .header .main-bar .action-group {
    gap: 0;
  }

  .header .main-bar .action-group .action-btn {
    padding: 8px;
  }

  .header .main-bar .action-group .action-btn i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# 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: 18px 15px;
    font-size: 14px;
    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: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:first-child a {
    padding-left: 0;
  }

  .navmenu li:last-child a {
    padding-right: 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(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    margin-left: 20px;
  }

  .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%;
    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-headers h4:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
  }

  .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%;
    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: 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-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 60px 0;
}

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

.footer .footer-newsletter p {
  font-size: 16px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .footer-newsletter .newsletter-form {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  height: 54px;
  border-radius: 4px;
  padding: 10px 25px;
  width: 100%;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer .footer-newsletter .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.footer .footer-newsletter .newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
  border-radius: 4px;
  padding: 0 30px;
  font-weight: 600;
  font-size: 15px;
}

.footer .footer-newsletter .newsletter-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-main {
  padding: 70px 0 40px;
}

.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 span {
  color: var(--heading-color);
  font-size: 26px;
  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;
}

.footer .footer-main .footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.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: center;
  margin-bottom: 15px;
  justify-content: flex-start;
}

.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 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;
}

.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer .footer-main .footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer .footer-main .footer-links a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a:hover:before {
  width: 100%;
}

.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: 8px 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);
  transform: translateY(-3px);
  color: var(--contrast-color);
}

.footer .footer-main .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-main .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  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-icons a:hover {
  background-color: var(--accent-color);
  transform: rotate(360deg);
  color: var(--contrast-color);
}

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

.footer .footer-bottom .payment-methods {
  display: flex;
  align-items: center;
}

.footer .footer-bottom .payment-methods span {
  margin-right: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.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 {
  padding-top: 10px;
}

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

.footer .footer-bottom .copyright p strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits {
  text-align: center;
  padding-top: 5px;
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0 15px 0;
}

.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-newsletter {
    padding: 50px 0;
  }

  .footer .footer-newsletter h2 {
    font-size: 28px;
  }

  .footer .footer-main {
    padding: 60px 0 30px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-newsletter {
    padding: 40px 0;
  }

  .footer .footer-newsletter h2 {
    font-size: 24px;
  }

  .footer .footer-newsletter p {
    font-size: 15px;
  }

  .footer .footer-newsletter .newsletter-form button {
    padding: 0 20px;
    font-size: 14px;
  }

  .footer .footer-bottom .payment-methods {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer .footer-bottom .copyright {
    text-align: center;
  }

  .footer .app-buttons {
    justify-content: center;
  }

  .footer .social-icons {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
  /* Slider Section */
}

.hero .intro-content .badge-label {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero .intro-content .headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .hero .intro-content .headline {
    font-size: 32px;
  }
}

.hero .intro-content .subtext {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 32px;
  max-width: 440px;
}

.hero .action-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero .action-group .btn-primary-action {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  border: none;
}

.hero .action-group .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), #000 12%);
  color: var(--contrast-color);
}

.hero .action-group .btn-primary-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .action-group .btn-ghost-action {
  background: transparent;
  color: var(--default-color);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.hero .action-group .btn-ghost-action:hover {
  background: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
  color: var(--default-color);
}

.hero .trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .trust-indicators .indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero .trust-indicators .indicator i {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hero .trust-indicators .indicator span {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .product-tile {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  height: 100%;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero .product-tile:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .product-tile.featured {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .product-tile.featured:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
}

.hero .product-tile .tile-image {
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.hero .product-tile .tile-image img {
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.hero .product-tile .tile-image .tile-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  background: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .product-tile .tile-image .tile-badge.accent {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .product-tile:hover .tile-image img {
  transform: scale(1.04);
}

.hero .product-tile .tile-info {
  padding: 16px 20px 20px;
}

.hero .product-tile .tile-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.hero .product-tile .tile-info .tile-desc {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero .product-tile .tile-info .tile-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero .product-tile .tile-info .tile-price .current {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .product-tile .tile-info .tile-price .original {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.hero .product-tile.horizontal .tile-image {
  min-height: 180px;
  height: 100%;
  border-radius: 8px 0 0 8px;
}

.hero .product-tile.horizontal .tile-info {
  padding: 24px;
}

.hero .slider-section {
  margin-top: 24px;
}

.hero .slider-section .slider-header {
  margin-bottom: 32px;
}

.hero .slider-section .slider-header .slider-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.hero .slider-section .slider-header .slider-subtitle {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.hero .product-carousel {
  position: relative;
  padding-bottom: 48px;
}

.hero .product-carousel .swiper-wrapper {
  height: auto !important;
}

.hero .product-carousel .slide-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  height: 100%;
  box-shadow: 0 1px 2px color-mix(in srgb, var(--default-color), transparent 95%);
}

.hero .product-carousel .slide-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .product-carousel .slide-card .slide-card-image {
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.hero .product-carousel .slide-card .slide-card-image img {
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.hero .product-carousel .slide-card .slide-card-image .slide-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 6px;
  background: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .product-carousel .slide-card .slide-card-image .slide-badge.accent {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .product-carousel .slide-card:hover .slide-card-image img {
  transform: scale(1.04);
}

.hero .product-carousel .slide-card .slide-card-body {
  padding: 16px;
}

.hero .product-carousel .slide-card .slide-card-body h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.hero .product-carousel .slide-card .slide-card-body p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.5;
  margin-bottom: 12px;
}

.hero .product-carousel .slide-card .slide-card-body .slide-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero .product-carousel .slide-card .slide-card-body .slide-card-price .price-now {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .product-carousel .slide-card .slide-card-body .slide-card-price .price-was {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.hero .product-carousel .swiper-pagination {
  bottom: 0;
}

.hero .product-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  transition: all 0.2s ease;
}

.hero .product-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 24px;
  border-radius: 4px;
}

.hero .product-carousel .swiper-button-prev,
.hero .product-carousel .swiper-button-next {
  width: 36px;
  height: 36px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 6px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.2s ease;
  top: calc(50% - 24px);
}

.hero .product-carousel .swiper-button-prev::after,
.hero .product-carousel .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
  color: var(--default-color);
}

.hero .product-carousel .swiper-button-prev:hover,
.hero .product-carousel .swiper-button-next:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 768px) {

  .hero .product-carousel .swiper-button-prev,
  .hero .product-carousel .swiper-button-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 64px 0;
  }

  .hero .trust-indicators {
    gap: 12px;
  }

  .hero .product-tile.horizontal .tile-image {
    border-radius: 8px 8px 0 0;
    min-height: 160px;
  }

  .hero .slider-section {
    margin-top: 48px;
    padding-top: 32px;
  }
}

/*--------------------------------------------------------------
# Promo Cards Section
--------------------------------------------------------------*/
.promo-cards .highlight-card {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.promo-cards .highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.promo-cards .highlight-info {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.promo-cards .highlight-info .tag-label {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  width: fit-content;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-cards .highlight-info h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.promo-cards .highlight-info p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 24px;
}

.promo-cards .highlight-info .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.promo-cards .highlight-info .feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--default-color);
  padding: 6px 0;
}

.promo-cards .highlight-info .feature-list li i {
  color: var(--accent-color);
  font-size: 16px;
}

.promo-cards .highlight-info .btn-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  width: fit-content;
  transition: background 0.2s ease;
}

.promo-cards .highlight-info .btn-primary-action i {
  transition: transform 0.2s ease;
}

.promo-cards .highlight-info .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.promo-cards .highlight-info .btn-primary-action:hover i {
  transform: translateX(4px);
}

.promo-cards .highlight-info .btn-primary-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 992px) {
  .promo-cards .highlight-info {
    padding: 32px 24px;
  }

  .promo-cards .highlight-info h2 {
    font-size: 1.6rem;
  }
}

.promo-cards .category-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.promo-cards .category-card .card-img-wrapper {
  overflow: hidden;
  height: 220px;
}

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

.promo-cards .category-card .card-body {
  padding: 20px 20px 8px;
  flex: 1;
}

.promo-cards .category-card .card-body h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.promo-cards .category-card .card-body .count-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.promo-cards .category-card .card-action {
  padding: 0 20px 20px;
  margin-top: auto;
}

.promo-cards .category-card .card-action a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  transition: gap 0.2s ease;
}

.promo-cards .category-card .card-action a i {
  font-size: 12px;
}

.promo-cards .category-card .card-action a:hover {
  gap: 10px;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.promo-cards .category-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.promo-cards .category-card:hover .card-img-wrapper img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .promo-cards .category-card .card-img-wrapper {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .promo-cards .category-card .card-img-wrapper {
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Best Sellers Section
--------------------------------------------------------------*/
.best-sellers .product-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.best-sellers .product-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.best-sellers .product-card:hover .product-media img {
  transform: scale(1.03);
}

.best-sellers .product-card:hover .action-overlay {
  opacity: 1;
}

.best-sellers .product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

.best-sellers .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.best-sellers .badge-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.best-sellers .badge-label.discount {
  background: color-mix(in srgb, #dc2626, transparent 90%);
  color: #dc2626;
  border-color: color-mix(in srgb, #dc2626, transparent 70%);
}

.best-sellers .badge-label.trending {
  background: color-mix(in srgb, #f59e0b, transparent 90%);
  color: #92400e;
  border-color: color-mix(in srgb, #f59e0b, transparent 70%);
}

.best-sellers .action-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

@media (max-width: 768px) {
  .best-sellers .action-overlay {
    opacity: 1;
  }
}

.best-sellers .action-btn {
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.best-sellers .action-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.best-sellers .action-btn.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.best-sellers .product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.best-sellers .product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.best-sellers .category-tag {
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.best-sellers .rating-group {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--default-color);
}

.best-sellers .rating-group i {
  color: #f59e0b;
  font-size: 12px;
}

.best-sellers .rating-group span {
  font-weight: 500;
  font-size: 13px;
}

.best-sellers .rating-group .count {
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 12px;
}

.best-sellers .product-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.best-sellers .product-title a {
  color: var(--heading-color);
  transition: color 0.2s ease;
}

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

.best-sellers .color-options {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.best-sellers .color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 1px;
}

.best-sellers .color-swatch:hover {
  outline-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.best-sellers .color-swatch.active {
  outline-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.best-sellers .product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.best-sellers .product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.best-sellers .product-price .original {
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-right: 6px;
}

.best-sellers .product-price .current {
  color: var(--accent-color);
}

.best-sellers .cart-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 16px;
  transition: background 0.2s ease;
}

.best-sellers .cart-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.best-sellers .cart-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 576px) {
  .best-sellers .product-body {
    padding: 12px;
  }

  .best-sellers .product-title {
    font-size: 14px;
  }

  .best-sellers .product-price {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .tab-nav-wrapper {
  margin-bottom: 32px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cards .filter-tabs {
  border-bottom: none;
  gap: 0;
}

.cards .filter-tabs .nav-item .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
}

.cards .filter-tabs .nav-item .nav-link i {
  font-size: 16px;
}

.cards .filter-tabs .nav-item .nav-link:hover {
  color: var(--default-color);
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.cards .filter-tabs .nav-item .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: none;
}

@media (max-width: 576px) {
  .cards .filter-tabs .nav-item .nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }

  .cards .filter-tabs .nav-item .nav-link i {
    font-size: 14px;
  }
}

.cards .tab-content .tab-pane {
  padding-top: 8px;
}

.cards .product-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cards .product-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%);
}

.cards .product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.cards .product-card:hover .product-thumb .overlay-actions {
  opacity: 1;
  transform: translateY(0);
}

.cards .product-card .product-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.cards .product-card .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cards .product-card .product-thumb .status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  letter-spacing: 0.02em;
  z-index: 2;
}

.cards .product-card .product-thumb .new-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.cards .product-card .product-thumb .sale-badge {
  background-color: #ef4444;
  color: #fff;
}

.cards .product-card .product-thumb .hot-badge {
  background-color: #f59e0b;
  color: #fff;
}

.cards .product-card .product-thumb .exclusive-badge {
  background-color: #10b981;
  color: #fff;
}

.cards .product-card .product-thumb .overlay-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 30%), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.cards .product-card .product-thumb .overlay-actions .action-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cards .product-card .product-thumb .overlay-actions .action-btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.cards .product-card .product-thumb .overlay-actions .action-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.cards .product-card .product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.cards .product-card .product-info .product-meta .rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
}

.cards .product-card .product-info .product-meta .rating i {
  color: #f59e0b;
  font-size: 12px;
}

.cards .product-card .product-info .product-meta .rating .rating-value {
  font-weight: 600;
  color: var(--default-color);
}

.cards .product-card .product-info .product-meta .rating .rating-count {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 12px;
}

.cards .product-card .product-info .product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.cards .product-card .product-info .product-title:hover {
  color: var(--accent-color);
  cursor: pointer;
}

.cards .product-card .product-info .product-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cards .product-card .product-info .product-price .current-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--default-color);
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
}

.cards .product-card .product-info .product-price .original-price {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

@media (max-width: 768px) {
  .cards .product-card .product-thumb .overlay-actions {
    opacity: 1;
    transform: translateY(0);
  }

  .cards .product-card .product-info {
    padding: 12px;
  }

  .cards .product-card .product-info .product-title {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .promo-banner {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
}

@media (max-width: 992px) {
  .call-to-action .promo-banner {
    padding: 24px;
  }
}

.call-to-action .banner-content .sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 16px;
}

.call-to-action .banner-content .sale-badge i {
  font-size: 12px;
  color: #f59e0b;
}

.call-to-action .banner-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

@media (max-width: 576px) {
  .call-to-action .banner-content h2 {
    font-size: 20px;
  }
}

.call-to-action .banner-content p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.call-to-action .timer-block .timer-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 12px;
}

.call-to-action .timer-block .timer-heading i {
  font-size: 14px;
}

.call-to-action .timer-block .countdown {
  gap: 8px;
}

.call-to-action .timer-block .countdown>div {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 6px;
  padding: 10px 12px;
  min-width: 60px;
  text-align: center;
}

@media (max-width: 576px) {
  .call-to-action .timer-block .countdown>div {
    min-width: 52px;
    padding: 8px;
  }
}

.call-to-action .timer-block .countdown>div h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
  font-family: var(--heading-font);
  line-height: 1.2;
}

.call-to-action .timer-block .countdown>div h4 {
  font-size: 10px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.call-to-action .banner-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .call-to-action .banner-actions {
    flex-direction: row;
    margin-top: 8px;
  }
}

@media (max-width: 576px) {
  .call-to-action .banner-actions {
    flex-direction: column;
    width: 100%;
  }
}

.call-to-action .banner-actions .btn-primary-deal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.call-to-action .banner-actions .btn-primary-deal:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
}

.call-to-action .banner-actions .btn-primary-deal:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 576px) {
  .call-to-action .banner-actions .btn-primary-deal {
    width: 100%;
    justify-content: center;
  }
}

.call-to-action .banner-actions .btn-secondary-deal {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: transparent;
  color: var(--default-color);
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.call-to-action .banner-actions .btn-secondary-deal:hover {
  background: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
  color: var(--default-color);
}

@media (max-width: 576px) {
  .call-to-action .banner-actions .btn-secondary-deal {
    width: 100%;
    justify-content: center;
  }
}

.call-to-action .product-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.2s ease;
}

.call-to-action .product-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.call-to-action .product-card:hover .product-image img {
  transform: scale(1.03);
}

.call-to-action .product-card .product-image {
  position: relative;
  overflow: hidden;
}

.call-to-action .product-card .product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .call-to-action .product-card .product-image img {
    height: 180px;
  }
}

.call-to-action .product-card .product-image .discount-label {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .product-card .product-body {
  padding: 16px;
  flex-grow: 1;
}

.call-to-action .product-card .product-body .star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}

.call-to-action .product-card .product-body .star-rating i {
  color: #f59e0b;
  font-size: 12px;
}

.call-to-action .product-card .product-body .star-rating .review-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-left: 4px;
}

.call-to-action .product-card .product-body .product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.4;
}

.call-to-action .product-card .product-body .price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.call-to-action .product-card .product-body .price-row .original-price {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.call-to-action .product-card .product-body .price-row .sale-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .product-card .product-footer {
  padding: 0 16px 16px;
  margin-top: auto;
}

.call-to-action .product-card .product-footer .cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.call-to-action .product-card .product-footer .cart-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .product-card .product-footer .cart-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .image-showcase .main-image-container {
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  aspect-ratio: 1;
}

.product-details .image-showcase .main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: crosshair;
}

.product-details .image-showcase .main-image-container .discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc2626;
  color: var(--contrast-color);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.3px;
}

.product-details .image-showcase .main-image-container .image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 92%);
}

.product-details .image-showcase .main-image-container .image-nav-btn.prev-image {
  left: 12px;
}

.product-details .image-showcase .main-image-container .image-nav-btn.next-image {
  right: 12px;
}

.product-details .image-showcase .main-image-container .image-nav-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.product-details .image-showcase .main-image-container .image-nav-btn i {
  font-size: 14px;
}

.product-details .image-showcase .main-image-container:hover .image-nav-btn {
  opacity: 1;
}

.product-details .image-showcase .thumb-strip {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.product-details .image-showcase .thumb-strip .thumb-cell {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.product-details .image-showcase .thumb-strip .thumb-cell:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.product-details .image-showcase .thumb-strip .thumb-cell.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details .image-showcase .thumb-strip .thumb-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details .product-detail-card {
  padding: 24px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 95%);
}

@media (max-width: 992px) {
  .product-details .product-detail-card {
    padding: 20px;
  }
}

.product-details .product-detail-card .detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-details .product-detail-card .detail-header .type-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-detail-card .detail-header .stock-indicator {
  font-size: 12px;
  font-weight: 500;
  color: #16a34a;
}

.product-details .product-detail-card .detail-header .stock-indicator i {
  font-size: 6px;
  vertical-align: middle;
  margin-right: 4px;
}

.product-details .product-detail-card .product-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

@media (min-width: 1200px) {
  .product-details .product-detail-card .product-heading {
    font-size: 1.625rem;
  }
}

.product-details .product-detail-card .review-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 13px;
}

.product-details .product-detail-card .review-summary .stars-inline {
  display: flex;
  gap: 1px;
}

.product-details .product-detail-card .review-summary .stars-inline i {
  color: #f59e0b;
  font-size: 13px;
}

.product-details .product-detail-card .review-summary .score-text {
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-detail-card .review-summary .divider-dot {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.product-details .product-detail-card .review-summary .reviews-anchor {
  color: var(--accent-color);
  font-size: 13px;
}

.product-details .product-detail-card .review-summary .reviews-anchor:hover {
  text-decoration: underline;
}

.product-details .product-detail-card .review-summary .units-left {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.product-details .product-detail-card .pricing-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 16px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-detail-card .pricing-area .price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-details .product-detail-card .pricing-area .price-now {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.product-details .product-detail-card .pricing-area .price-was {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.product-details .product-detail-card .pricing-area .save-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, #16a34a, transparent 90%);
  color: #16a34a;
  border: 1px solid color-mix(in srgb, #16a34a, transparent 70%);
}

.product-details .product-detail-card .summary-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-details .product-detail-card .separator {
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 16px;
}

.product-details .product-detail-card .variant-picker {
  margin-bottom: 20px;
}

.product-details .product-detail-card .variant-picker .picker-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.product-details .product-detail-card .variant-picker .picker-label .chosen-variant {
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-detail-card .variant-picker .color-dots {
  display: flex;
  gap: 8px;
}

.product-details .product-detail-card .variant-picker .color-dots .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-details .product-detail-card .variant-picker .color-dots .dot i {
  color: var(--contrast-color);
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
  text-shadow: 0 1px 2px color-mix(in srgb, #000, transparent 50%);
}

.product-details .product-detail-card .variant-picker .color-dots .dot:hover {
  transform: scale(1.1);
}

.product-details .product-detail-card .variant-picker .color-dots .dot.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.product-details .product-detail-card .variant-picker .color-dots .dot.active i {
  opacity: 1;
}

.product-details .product-detail-card .action-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

@media (max-width: 576px) {
  .product-details .product-detail-card .action-row {
    flex-wrap: wrap;
  }
}

.product-details .product-detail-card .action-row .quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface-color);
}

.product-details .product-detail-card .action-row .quantity-selector .quantity-btn {
  width: 36px;
  height: 40px;
  background: none;
  border: none;
  color: var(--default-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.product-details .product-detail-card .action-row .quantity-selector .quantity-btn:hover {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.product-details .product-detail-card .action-row .quantity-selector .quantity-input {
  width: 44px;
  height: 40px;
  text-align: center;
  border: none;
  background: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-color);
}

.product-details .product-detail-card .action-row .quantity-selector .quantity-input:focus {
  outline: none;
}

.product-details .product-detail-card .action-row .primary-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease;
}

.product-details .product-detail-card .action-row .primary-action-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
}

.product-details .product-detail-card .action-row .primary-action-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details .product-detail-card .action-row .wishlist-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 6px;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 0;
  transition: all 0.2s ease;
}

.product-details .product-detail-card .action-row .wishlist-toggle:hover {
  border-color: #dc2626;
  color: #dc2626;
  background: color-mix(in srgb, #dc2626, transparent 95%);
}

.product-details .product-detail-card .action-row .wishlist-toggle i {
  font-size: 16px;
}

.product-details .product-detail-card .checkout-now-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  color: var(--default-color);
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}

.product-details .product-detail-card .checkout-now-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.product-details .product-detail-card .guarantee-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
}

.product-details .product-detail-card .guarantee-bar .guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-detail-card .guarantee-bar .guarantee-item:nth-child(2n) {
  border-right: none;
}

.product-details .product-detail-card .guarantee-bar .guarantee-item:nth-child(n+3) {
  border-bottom: none;
}

.product-details .product-detail-card .guarantee-bar .guarantee-item i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.product-details .info-tabs {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 95%);
  overflow: hidden;
}

.product-details .info-tabs .tab-nav {
  display: flex;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-details .info-tabs .tab-nav .nav-link {
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-bottom: -1px;
}

@media (max-width: 576px) {
  .product-details .info-tabs .tab-nav .nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }
}

.product-details .info-tabs .tab-nav .nav-link:hover {
  color: var(--heading-color);
}

.product-details .info-tabs .tab-nav .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: var(--surface-color);
}

.product-details .info-tabs .tab-content .tab-pane {
  padding: 32px;
}

@media (max-width: 768px) {
  .product-details .info-tabs .tab-content .tab-pane {
    padding: 20px;
  }
}

.product-details .info-tabs .desc-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-details .info-tabs .desc-content>.row>.col-lg-8>p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-details .info-tabs .desc-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.product-details .info-tabs .desc-content .highlight-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background: var(--surface-color);
  transition: all 0.2s ease;
  height: 100%;
}

.product-details .info-tabs .desc-content .highlight-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, #000, transparent 94%);
}

.product-details .info-tabs .desc-content .highlight-card>i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-details .info-tabs .desc-content .highlight-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.product-details .info-tabs .desc-content .highlight-card p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.5;
}

.product-details .info-tabs .desc-content .included-box {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

.product-details .info-tabs .desc-content .included-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.product-details .info-tabs .desc-content .included-box h4 i {
  color: var(--accent-color);
  margin-right: 6px;
}

.product-details .info-tabs .desc-content .included-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details .info-tabs .desc-content .included-box ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.product-details .info-tabs .desc-content .included-box ul li:last-child {
  border-bottom: none;
}

.product-details .info-tabs .desc-content .included-box ul li i {
  color: #16a34a;
  font-size: 14px;
}

.product-details .info-tabs .specs-content .spec-block h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid var(--accent-color);
}

.product-details .info-tabs .specs-content .spec-block .data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 6px;
  overflow: hidden;
}

.product-details .info-tabs .specs-content .spec-block .data-table tr {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.product-details .info-tabs .specs-content .spec-block .data-table tr:last-child {
  border-bottom: none;
}

.product-details .info-tabs .specs-content .spec-block .data-table tr:nth-child(even) {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.product-details .info-tabs .specs-content .spec-block .data-table tr td {
  padding: 8px 12px;
  font-size: 13px;
}

.product-details .info-tabs .specs-content .spec-block tr td:first-child {
  font-weight: 500;
  color: var(--heading-color);
  width: 45%;
}

.product-details .info-tabs .specs-content .spec-block tr td:last-child {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .info-tabs .feedback-content .rating-overview {
  text-align: center;
  padding: 24px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-details .info-tabs .feedback-content .rating-overview .big-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 8px;
}

.product-details .info-tabs .feedback-content .rating-overview .star-row {
  margin-bottom: 8px;
}

.product-details .info-tabs .feedback-content .rating-overview .star-row i {
  color: #f59e0b;
  font-size: 16px;
  margin: 0 1px;
}

.product-details .info-tabs .feedback-content .rating-overview .count-label {
  font-size: 12px;
  color: color-mix(in