/**
* Template Name: NiceShop
* Template URL: https://bootstrapmade.com/niceshop-bootstrap-ecommerce-template/
* Updated: Aug 26 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400&display=swap');

:root {
  --default-font: "NotoSans-Regular", "Roboto", system-ui, -apple-system,
    "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color:  #f4f6f8; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #252223; /* 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. */
 --bg:#f6f7fb;
      --card:#ffffff;
      --muted:#6b7280;
      --accent:#2563eb;
      --accent-600:#1d4ed8;
      --success:#10b981;
      --shadow: 0 6px 18px rgba(25, 35, 50, 0.08);
      --radius:12px;
      --gap:18px;
      --max-width:1200px;
      --transition:200ms cubic-bezier(.2,.9,.3,1);
     
}

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


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

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

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


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


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

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

}

a {
  color: var(--accent-color);
  text-decoration: none;
  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);
}

.container {
  max-width: 100% !important;
  padding-left: 50px !important;
  padding-right: 50px !important;
}

/* Mobile version */
@media (max-width: 768px) {
  .container {
       max-width: 100% !important;
    padding-left:10px !important;
    padding-right: 10px !important;
  }
}



/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

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

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

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

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

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

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

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

.header .top-bar {
    background-color: #ebebeb;
  font-size: 14px;
}

.header .top-bar .top-bar-item {
  color: var(--default-color);
}

.header .top-bar .top-bar-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.header .top-bar .top-bar-item a:hover {
  text-decoration: underline;
}

.header .top-bar .top-bar-item .selected-icon {
  color: var(--accent-color);
  opacity: 1;
  width: 16px;
}

.header .top-bar .announcement-slider {
  color: var(--accent-color);
  font-weight: 500;
  height: 18px;
  overflow: hidden;
}

.header .top-bar .announcement-slider .swiper-wrapper {
  height: auto !important;
}

.header .top-bar .announcement-slider .swiper-slide {
  text-align: center;
  height: 24px;
  line-height: 24px;
}

.header .top-bar .dropdown-menu {
  min-width: 150px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header .top-bar .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  color: var(--default-color);
  display: flex;
  align-items: center;
}

.header .top-bar .dropdown-menu .dropdown-item .selected-icon {
  opacity: 1;
  color: var(--accent-color);
  width: 16px;
}

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

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

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

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

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

@media (max-width: 768px) {
    .header .top-bar {
        display: none;
    }
  .header .main-header .logo h1 {
    font-size: 24px;
  }
  .sign-in{
      display: none;
  }
  
  .cart-in{
      display:none;
  }
}

.header .main-header .desktop-search-form {
  min-width: 600px ;
}

@media (max-width: 1200px) {
  .header .main-header .desktop-search-form {
    display: none;
  }
  
}

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

.header .main-header .header-actions .header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: #061318;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Hide header action button on mobile */
@media (max-width: 768px) {
  .header .main-header .header-actions .cart-count {
    display: none;
  }
  
  .header .main-header .header-actions .header-action-btn i {
      display: none
  }
}


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

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

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

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

.header .main-header .account-dropdown .dropdown-menu {
  position: relative; /* allow arrow positioning */
  background-color: var(--surface-color);
  min-width: 360px; /* wider like Alibaba */
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* Arrow on top (right side) */
.header .main-header .account-dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px; /* just above the box */
  right: 30px; /* push arrow to the right */
  width: 16px;
  height: 16px;
  background: var(--surface-color);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}




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

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

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

.header .main-header .account-dropdown .dropdown-menu .dropdown-body {
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0px; /* little gap between items */
  width: 100%;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 1.25rem;
  font-size: 15px;
  font-weight: 500;
  color: #5d6061;
  border-radius: 6px;
  transition: all 0.25s ease;
}

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

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  transform: translateX(0px); /* subtle slide on hover */
}

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

/* Optional divider between groups of links */
.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-divider {
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 6px 0;
}

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

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


.sign-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
   margin-top: 10px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff5e00, #ff5e00);
  box-shadow: none;
  transition: all 0.3s ease;
}

.sign-btn:hover {
  background: linear-gradient(135deg,#e65100, #e65100);
  box-shadow: 0 6px 16px rgba(20, 117, 203, 0.35);
  transform: translateY(-2px);
  color:#fff;
}

.sign-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(20, 117, 203, 0.25);
}

.sign-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 117, 203, 0.4);
}


.new-customer-text {
  font-size: 13px;
  color: #555;
  margin-top: 20px;
  text-align: center;
}

.new-customer-text a {
  color: #1475cb; /* brand highlight (Amazon uses orange, you can swap) */
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.new-customer-text a:hover {
  color: #0d5ea8;
  text-decoration: underline;
}


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

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

.header .search-form {
  margin: 0;
}

.dropdown-header {
  background: linear-gradient(135deg, #f9fafc, #ffffff);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px 6px 0 0;
}

.dropdown-header h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #222;
}

.dropdown-header .sitename {
  color: #1475cb; /* brand color highlight */
  font-weight: 700;
  
}

.dropdown-header p {
  font-size: 13px;
  color: #666;
  margin: 0;
}


.header .search-form .input-group {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  overflow: visible;
  background-color: #fcfbfb;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header .search-form .input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.header .search-form .input-group .form-control {
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  background-color: transparent;
  color: var(--default-color);
}

.header .search-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.header .search-form .input-group .form-control:focus {
  box-shadow: none;
}

.header .search-form .input-group .btn {
  background-color: #ff5e00 !important;
  color: var(--contrast-color);
  padding: 0 35px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 10px !important;
  margin: 3px;
}

.header .search-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.header .search-form .input-group .btn i {
  font-size: 16px;
}

.header .header-nav {
    background-color: #fff;
    
}

@media (min-width: 1200px) {
  .header .header-nav {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.header #mobileSearch {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  z-index: 1000;
}

.header #mobileSearch .search-form {
  padding: 10px 0;
}

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

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
   
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 12px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color:#000;
  }

  .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(--default-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 0px 0px 0px 0px;
    padding: 50px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: none;
  }

  .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: none;
    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: #000;
    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: #000;
    font-size: 13px;
    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: 50px;
    right: 50px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs {
    padding: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-item {
    margin: 0;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    color: var(--nav-dropdown-color);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.5px;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .products-megamenu-2 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Layout */
    /* Categories Section */
    /* Featured Section */
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .tab-pane {
    padding: 25px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .category-layout {
    display: flex;
    gap: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section {
    flex: 1;
    /* Category Headers */
    /* Category Links */
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 15px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a {
    color: #000;
    font-size: 13px;
    transition: 0.3s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    font-weight: 400;
  }

  .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-main {
  padding: 70px 0 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
}

.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer .footer-main .footer-widget .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

.footer .footer-main .footer-widget h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-main .footer-widget h5 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

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

.footer .footer-main .footer-links li:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

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

.footer .footer-main .app-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer .footer-main .app-buttons .app-btn {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer .footer-main .app-buttons .app-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.footer .footer-main .app-buttons .app-btn span {
  font-size: 13px;
  font-weight: 500;
}

.footer .footer-main .app-buttons .app-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-main .social-links {
  margin-top: 25px;
}

.footer .footer-main .social-links h5 {
  margin-bottom: 15px;
}

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

.footer .footer-main .social-links .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-main .social-links .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-bottom {
  padding: 25px 0;
}

.footer .footer-bottom .payment-methods .payment-icons {
  display: flex;
  gap: 12px;
}

.footer .footer-bottom .payment-methods .payment-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-bottom .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

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

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

.footer .footer-bottom .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

@media (max-width: 991.98px) {
  .footer .footer-main {
    padding: 60px 0 30px;
  }

  .footer .footer-widget h4 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
    .footer .footer-bottom {
        padding-bottom: 80px;
        padding-top: 10px;
    }
  .footer .footer-main {
    padding: 50px 0 20px;
  }

  .footer .footer-main .footer-widget {
    text-align: center;
  }

  .footer .footer-main .footer-widget h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-main .footer-contact .contact-item {
    justify-content: center;
  }

  .footer .footer-main .footer-links li {
    padding-left: 0;
  }

  .footer .footer-main .footer-links li:before {
    display: none;
  }

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 70px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background:none;
  padding: 3px 0;
  border-bottom: none;
  position: relative;
  margin-bottom: 0px;
}

.page-title h1 {
  font-size: 15px;
  font-weight: 600;
  color: #a9a9a9
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color:  #126b9e;
  justify-content: flex-start; /* default (desktop) left aligned */
}

/* ✅ On mobile, align to the right */
@media (max-width: 768px) {
  .page-title .breadcrumbs ol {
    justify-content: flex-end;
    text-align: right;
    margin-top: -30px;
  }
}

.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: 0px 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:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 100px;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 100px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--heading-color), transparent 98%) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.hero .hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .hero .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.hero .hero-content {
  z-index: 2;
}

.hero .hero-content .content-wrapper {
  max-width: 600px;
}

.hero .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.8rem;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 1.1rem;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero .hero-content .hero-actions .btn-primary,
.hero .hero-content .hero-actions .btn-secondary {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .hero-content .hero-actions .btn-primary::before,
.hero .hero-content .hero-actions .btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero .hero-content .hero-actions .btn-primary:hover::before,
.hero .hero-content .hero-actions .btn-secondary:hover::before {
  left: 100%;
}

.hero .hero-content .hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  color: var(--contrast-color);
  border: none;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-content .hero-actions .btn-secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}

.hero .hero-content .hero-actions .btn-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero .hero-content .features-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero .hero-content .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-content .features-list .feature-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.hero .hero-content .features-list .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

.hero .hero-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .hero-visuals .product-showcase {
  position: relative;
  max-width: 500px;
}

.hero .hero-visuals .product-showcase .product-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero .hero-visuals .product-showcase .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 50%);
  border-radius: 24px;
  z-index: -1;
}

.hero .hero-visuals .product-showcase .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-visuals .product-showcase .product-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 20px;
}

.hero .hero-visuals .product-showcase .product-card .product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero .hero-visuals .product-showcase .product-card .product-info h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.hero .hero-visuals .product-showcase .product-card .product-info .price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .hero-visuals .product-showcase .product-card .product-info .price .sale-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .hero-visuals .product-showcase .product-card .product-info .price .original-price {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.hero .hero-visuals .product-showcase .product-grid {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 992px) {
  .hero .hero-visuals .product-showcase .product-grid {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    transform: none;
  }
}

.hero .hero-visuals .product-showcase .product-grid .product-mini {
  width: 120px;
  height: 120px;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.hero .hero-visuals .product-showcase .product-grid .product-mini:hover {
  transform: scale(1.1);
}

.hero .hero-visuals .product-showcase .product-grid .product-mini img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.hero .hero-visuals .product-showcase .product-grid .product-mini .mini-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
}

.hero .hero-visuals .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero .hero-visuals .floating-elements .floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-visuals .floating-elements .floating-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.hero .hero-visuals .floating-elements .floating-icon .notification-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.hero .hero-visuals .floating-elements .floating-icon.cart {
  top: 20%;
  left: -50px;
  animation-delay: 0s;
}

.hero .hero-visuals .floating-elements .floating-icon.wishlist {
  top: 60%;
  right: -50px;
  animation-delay: 1s;
}

.hero .hero-visuals .floating-elements .floating-icon.search {
  bottom: 20%;
  left: -30px;
  animation-delay: 2s;
}

.hero .hero-visuals .floating-elements .floating-icon:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .hero .hero-visuals .floating-elements .floating-icon {
    display: none;
  }
}

@keyframes float {

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

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

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

  .hero .hero-container {
    padding: 0 15px;
  }

  .hero .hero-content .hero-actions .btn-primary,
  .hero .hero-content .hero-actions .btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .hero .hero-content .features-list {
    gap: 20px;
  }

  .hero .hero-content .features-list .feature-item span {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Promo Cards Section
--------------------------------------------------------------*/
.promo-cards {
  padding-top: 10px;
  --default-color: #666;
  --heading-color: #333;
  padding-bottom: 0px;
}
.promo-cards .category-featured {
  position: relative;
  border-radius: 12px;
  min-height: 500px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease;
}
/* ---------- Promo-cards exact 5px gutter (override Bootstrap) ---------- */
.promo-cards {
  --promo-gutter: 5px; /* change here if you want a different gap */
  box-sizing: border-box;
  overflow-x: hidden; /* prevents tiny horizontal scroll from negative margins */
}
/* fix row negative margins to half the gutter */
.promo-cards .row {
  margin-left: calc(var(--promo-gutter) / -2) !important;
  margin-right: calc(var(--promo-gutter) / -2) !important;
}
/* apply half-gutter padding on every column to form the 5px horizontal gap,
   and vertical spacing via margin-bottom on columns */
.promo-cards [class*="col-"] {
  padding-left: calc(var(--promo-gutter) / 2) !important;
  padding-right: calc(var(--promo-gutter) / 2) !important;
  margin-bottom: var(--promo-gutter) !important; /* vertical gap between stacked cols */
  box-sizing: border-box;
}
/* nested rows inside promo-cards must also use the same negative margins */
.promo-cards .row .row {
  margin-left: calc(var(--promo-gutter) / -2) !important;
  margin-right: calc(var(--promo-gutter) / -2) !important;
}
/* nested columns (inside nested rows) */
.promo-cards .row .row [class*="col-"] {
  padding-left: calc(var(--promo-gutter) / 2) !important;
  padding-right: calc(var(--promo-gutter) / 2) !important;
  margin-bottom: var(--promo-gutter) !important;
}
/* prevent double spacing if individual cards already have margin-bottom */
.promo-cards .category-card,
.promo-cards .category-featured {
  margin-bottom: 0 !important;
}
/* small helpers so stacked cards inside a single column still get a tiny gap */
.promo-cards .col > .category-card + .category-card,
.promo-cards .col > .category-card + .category-featured,
.promo-cards .col > .category-featured + .category-card {
  margin-top: calc(var(--promo-gutter)) !important;
}
.promo-cards .category-featured:hover {
  transform: translateY(-5px);
}
.promo-cards .category-featured:hover .btn-shop {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.promo-cards .category-featured:hover .btn-shop i {
  transform: translateX(5px);
}
.promo-cards .category-featured .category-content {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 2;
  padding: 20px;
  max-width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.promo-cards .category-featured .category-content .category-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.promo-cards .category-featured .category-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #113044;
}
.promo-cards .category-featured .category-content p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.6;
}
.promo-cards .category-featured .category-content .btn-shop {
  display: inline-flex !important;  /* force inline-flex */
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #fff 20%));
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  width: auto !important;   /* ✅ force auto width */
  min-width: 120px;
  max-width: fit-content;   /* ✅ prevents stretching */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}


.promo-cards .category-featured .category-content .btn-shop i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.promo-cards .category-card {
  position: relative;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  background-size: cover;
  background-position: center;
}
.promo-cards .category-card.cat-men {
  height: 220px;
}
.promo-cards .category-card.cat-kids {
  height: 550px;
}
.promo-cards .category-card.cat-cosmetics {
  height: 230px;
}
.promo-cards .category-card.cat-accessories {
  height: 273px;
}
.promo-cards .category-featured {
  min-height: 550px;
}

@media (max-width: 767.98px) {
  .promo-cards .category-card.cat-men {
    height: 140px;
  }
  .promo-cards .category-card.cat-kids {
    height: 320px;
  }
  .promo-cards .category-card.cat-cosmetics {
    height: 145px;
  }
  .promo-cards .category-card.cat-accessories {
    height: 170px;
  }
  .promo-cards .category-featured {
    min-height: 400px;
  }
}

@media (max-width: 575.98px) {
  .promo-cards .category-card.cat-men {
    height: 120px;
  }
  .promo-cards .category-card.cat-kids {
    height: 280px;
  }
  .promo-cards .category-card.cat-cosmetics {
    height: 125px;
  }
  .promo-cards .category-card.cat-accessories {
    height: 150px;
  }
  .promo-cards .category-featured {
    min-height: 350px;
  }
}
.promo-cards .category-card:hover {
  transform: translateY(-5px);
}
.promo-cards .category-card .category-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.promo-cards .category-card .category-content h4 {
 font-size: 1.0rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #113044;
}
.promo-cards .category-card .category-content p {
  font-size: 13px;
  margin-bottom: 5px;
  color: #fff;
}
.promo-cards .category-card .category-content .card-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  transition: all 0.3s ease;
}
.promo-cards .category-card .category-content .card-link i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
@media (max-width: 991.98px) {
  .promo-cards .category-featured {
    height: 420px;
  }
  .promo-cards .category-featured .category-content {
    padding: 30px;
    text-align: left;
  }
  .promo-cards .category-featured .category-content h2 {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .promo-cards .category-featured {
    height: auto;
    min-height: 400px;
  }
  .promo-cards .category-featured .category-content {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    padding: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }
  .promo-cards .category-featured .category-content h2 {
    font-size: 1.0rem;
  }
  
  .promo-cards .category-featured .category-content p {
    font-size: 0.8rem;
  }
  
  .promo-cards .category-card {
    height: 200px;
  }
  .promo-cards .category-card .category-content {
    width: 100%;
    padding: 15px;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .promo-cards .category-card .category-content h4 {
    font-size: 1.1rem;
  }
  .promo-cards .category-card .category-content p {
    font-size: 0.8rem;
  }
  .promo-cards .category-card .category-content .card-link {
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  .promo-cards .category-card {
    height: 180px;
  }
  .promo-cards .category-card .category-content {
    width: 100%;
    padding: 12px;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .promo-cards .category-card .category-content h4 {
    font-size: 1rem;
  }
  .promo-cards .category-card .category-content p {
    font-size: 0.75rem;
  }
  .promo-cards .category-card .category-content .card-link {
    font-size: 0.8rem;
  }
}


/*--------------------------------------------------------------
# Best Sellers Section
--------------------------------------------------------------*/
.best-sellers {
  padding-top: 60px;
  padding-bottom: 30px;
}

.best-sellers .product-item {
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.best-sellers .product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.best-sellers .product-item:hover .product-image img {
  transform: scale(1.02);
}

.best-sellers .product-item:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.best-sellers .product-item:hover .cart-btn {
  opacity: 1;
  transform: translateY(0);
}

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

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

.best-sellers .product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background-color: var(--heading-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--heading-font);
  padding: 0.4em 1em;
  border-radius: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.best-sellers .product-badge.sale-badge {
  background-color: #dc2626;
}

.best-sellers .product-badge.trending-badge {
  background-color: var(--accent-color);
}

.best-sellers .product-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.best-sellers .action-btn {
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--contrast-color);
  color: var(--heading-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.best-sellers .cart-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 12px 24px;
  background-color: var(--contrast-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-radius: 10px;
}

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

.best-sellers .product-info {
  padding: 30px 20px 25px;
}

.best-sellers .product-category {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.best-sellers .product-name {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 12px;
  height: 2.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.best-sellers .product-name a {
  color: var(--heading-color);
}

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

.best-sellers .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.best-sellers .stars {
  color: #f59e0b;
  font-size: 0.8rem;
}

.best-sellers .stars i {
  margin-right: 1px;
}

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

.best-sellers .product-price {
  margin-bottom: 15px;
}

.best-sellers .product-price .old-price {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-right: 8px;
}

.best-sellers .product-price .current-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.best-sellers .product-price:not(:has(.old-price)) {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.best-sellers .color-swatches {
  display: flex;
  gap: 6px;
}

.best-sellers .swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.best-sellers .swatch:hover {
  transform: scale(1.15);
}

.best-sellers .swatch.active:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid var(--heading-color);
  border-radius: 50%;
}

@media (max-width: 1199.98px) {
  .best-sellers .product-info {
    padding: 25px 18px 22px;
  }

  .best-sellers .product-name {
    font-size: 0.95rem;
  }
}

@media (max-width: 991.98px) {
  .best-sellers .product-item {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .best-sellers .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 3rem;
  }

  .best-sellers .product-actions {
    opacity: 1;
    transform: translateY(0);
  }

  .best-sellers .cart-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .best-sellers .product-info {
    padding: 22px 16px 20px;
  }
}

@media (max-width: 575.98px) {
  .best-sellers .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2.5rem;
  }

  .best-sellers .product-badge {
    top: 15px;
    left: 15px;
    font-size: 0.7rem;
    padding: 0.35em 0.8em;
  }

  .best-sellers .product-actions {
    top: 15px;
    right: 15px;
  }

  .best-sellers .action-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .best-sellers .cart-btn {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards {
  padding-top: 30px;
  padding-bottom: 60px;
}

.cards .product-category {
  height: 100%;
  padding: 25px 20px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cards .product-category:hover {
  transform: translateY(-10px);
}

.cards .product-category .category-title {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cards .product-category .category-title i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.cards .product-category .category-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: var(--accent-color);
}

.cards .product-category .product-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cards .product-card {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}

.cards .product-card:hover {
  transform: translateX(5px);
}

.cards .product-card:hover .product-name {
  color: var(--accent-color);
}

.cards .product-card .product-image {
  flex: 0 0 85px;
  height: 85px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

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

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

.cards .product-card .product-image .product-badges {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cards .product-card .product-image .product-badges [class^=badge-] {
  padding: 3px 6px;
  font-size: 0.65rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.cards .product-card .product-image .product-badges .badge-new {
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.cards .product-card .product-image .product-badges .badge-sale {
  background-color: #ffebee;
  color: #f44336;
}

.cards .product-card .product-image .product-badges .badge-hot {
  background-color: #fff3e0;
  color: #ff9800;
}

.cards .product-card .product-image .product-badges .badge-limited {
  background-color: #e0f7fa;
  color: #00acc1;
}

.cards .product-card .product-info {
  flex: 1;
}

.cards .product-card .product-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--heading-color);
  transition: color 0.3s;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cards .product-card .product-rating {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.cards .product-card .product-rating i {
  color: #ffc107;
  margin-right: -1px;
}

.cards .product-card .product-rating span {
  color: #9e9e9e;
  margin-left: 5px;
  font-size: 0.7rem;
}

.cards .product-card .product-price {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cards .product-card .product-price .current-price {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
}

.cards .product-card .product-price .old-price {
  color: #9e9e9e;
  text-decoration: line-through;
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .cards .product-category {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .cards .product-card .product-image {
    flex: 0 0 70px;
    height: 70px;
  }

  .cards .product-card .product-name {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .cards {
    padding: 50px 0;
  }

  .cards .product-category {
    padding: 20px 15px;
  }

  .cards .product-category .category-title {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: radial-gradient(ellipse at top, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--surface-color) 50%);
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, color-mix(in srgb, var(--accent-color), transparent 98%) 90deg, transparent 180deg, color-mix(in srgb, var(--heading-color), transparent 98%) 270deg, transparent 360deg);
  animation: rotate 20s linear infinite;
  z-index: 1;
}

.call-to-action::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .main-content {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .call-to-action .main-content {
    padding: 40px 0;
  }
}

.call-to-action .offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color), transparent 70%);
  transform: rotate(-2deg);
}

.call-to-action .offer-badge .limited-time {
  font-size: 12px;
  font-weight: 600;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.call-to-action .offer-badge .offer-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--contrast-color);
  letter-spacing: 1px;
}

.call-to-action h2 {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
  .call-to-action h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 2.5rem;
  }
}

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

.call-to-action .subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .call-to-action .subtitle {
    font-size: 16px;
  }
}

.call-to-action .countdown-wrapper {
  margin-bottom: 48px;
}

.call-to-action .countdown-wrapper .countdown {
  gap: 24px;
}

@media (max-width: 576px) {
  .call-to-action .countdown-wrapper .countdown {
    gap: 16px;
  }
}

.call-to-action .countdown-wrapper .countdown>div {
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  backdrop-filter: blur(10px);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 16px;
  padding: 20px 16px;
  min-width: 80px;
}

@media (max-width: 576px) {
  .call-to-action .countdown-wrapper .countdown>div {
    padding: 16px 12px;
    min-width: 70px;
  }
}

.call-to-action .countdown-wrapper .countdown>div h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

@media (max-width: 576px) {
  .call-to-action .countdown-wrapper .countdown>div h3 {
    font-size: 2rem;
  }
}

.call-to-action .countdown-wrapper .countdown>div h4 {
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.call-to-action .action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 576px) {
  .call-to-action .action-buttons {
    flex-direction: column;
    gap: 16px;
  }
}

.call-to-action .action-buttons .btn-shop-now {
  display: inline-block;
  padding: 16px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .action-buttons .btn-shop-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, white, transparent);
  opacity: 0.3;
  transition: left 0.5s ease;
}

.call-to-action .action-buttons .btn-shop-now:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .action-buttons .btn-shop-now:hover::before {
  left: 100%;
}

@media (max-width: 576px) {
  .call-to-action .action-buttons .btn-shop-now {
    width: 100%;
    max-width: 280px;
  }
}

.call-to-action .action-buttons .btn-view-deals {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--heading-color);
  text-decoration: none;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.call-to-action .action-buttons .btn-view-deals:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.call-to-action .action-buttons .btn-view-deals:hover::after {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .call-to-action .action-buttons .btn-view-deals {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.call-to-action .featured-products-row {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .call-to-action .featured-products-row {
    margin-top: 40px;
  }
}

.call-to-action .product-showcase {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  height: 100%;
}

.call-to-action .product-showcase:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .product-showcase .product-image {
  position: relative;
  margin-bottom: 16px;
}

.call-to-action .product-showcase .product-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

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

.call-to-action .product-showcase .product-image .discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc3545;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.call-to-action .product-showcase .product-details h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.call-to-action .product-showcase .product-details .price-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.call-to-action .product-showcase .product-details .price-section .original-price {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.call-to-action .product-showcase .product-details .price-section .sale-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .product-showcase .product-details .rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.call-to-action .product-showcase .product-details .rating-stars i {
  color: #ffc107;
  font-size: 14px;
}

.call-to-action .product-showcase .product-details .rating-stars .rating-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 8px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

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

  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .product-gallery .main-showcase {
  position: relative;
  margin-bottom: 1.5rem;
 border-radius: 8px;
  overflow: hidden;
  /* CHANGE: Restore/Add white background for the 'Amazon Look' */
  background: #fff; 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.product-details .product-gallery .main-showcase .image-zoom-container {
  position: relative;
  width: 100%;
  height: 530px !important; /* Fixed height for the showcase area */
  overflow: hidden;
  /* Removed 'aspect-ratio: 1' if it conflicts with height, 
     but kept for potential browser fallback/preference. */
  aspect-ratio: 1; 
  /* Crucial for centering the image within the container */
  display: flex;
  align-items: center; /* Centers vertically */
  justify-content: center; /* Centers horizontally */
}

.product-details .product-gallery .main-showcase .image-zoom-container img {
  display: block;
  /* Set width/height to auto to allow object-fit: contain to work */
  width: auto;
  height: auto; 
  max-width: 100%; /* Ensures image fits within the container width */
  max-height: 100%; /* Ensures image fits within the container height (530px) */
  
  /* CHANGE: This is the CORE change for the Amazon look. 
     It ensures the *entire* image is visible, padding it with the white background 
     if the image aspect ratio is different from the container. */
  object-fit: contain; 
  
  object-position: center; 
  transition: transform 0.4s ease;
  cursor: crosshair;
}


.product-details .product-details{
    background: #ffffff;
    border-radius: 8px;
      padding: 10px;
}

.product-details .product-gallery .main-showcase .image-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-details .product-gallery .main-showcase .image-navigation .nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.product-details .product-gallery .main-showcase .image-navigation .nav-arrow:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.product-details .product-gallery .main-showcase .image-navigation .nav-arrow i {
  font-size: 1.25rem;
}

.product-details .product-gallery .main-showcase:hover .image-navigation {
  opacity: 1;
}

.product-details .product-gallery .thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .product-details .product-gallery .thumbnail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  
  /* CHANGES for Amazon Look (Containment and Centering) */
  background: #fff; /* Ensure a clean white background */
  display: flex; /* Enable flexbox for centering */
  align-items: center; /* Center image vertically */
  justify-content: center; /* Center image horizontally */
  /* END CHANGES */
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper img {
  /* Retain full size in wrapper but allow 'contain' to scale it down */
  width: 100%;
  height: 100%;
  
  /* CORE CHANGE: Use 'contain' to show the full image, padding it with 
     the white background of the wrapper if necessary. */
  object-fit: contain;
}

.product-details .product-details {
  padding: 1rem 1rem;
}

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

.product-details .product-details .product-badge-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0rem;
}

.product-details .product-details .product-badge-container .badge-category {
  display: inline-block;
  padding: 0.5rem 0rem;
  background: none;
  color: #2a7eb5;
  font-size: 0.90rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 20px;
  text-decoration: underline;
}

.product-description .hidden {
  display: none;
}

.product-description .toggle-desc {
  color: #007bff;
  cursor: pointer;
  margin-left: 5px;
  text-decoration: none;
  font-weight: 500;
}

.product-description .toggle-desc:hover {
  text-decoration: underline;
}


.product-details .product-details .product-badge-container .rating-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-details .product-details .product-badge-container .rating-group .stars {
  display: flex;
}

.product-details .product-details .product-badge-container .rating-group .stars i {
  color: #ffd700;
  font-size: 0.9rem;
  margin-right: 1px;
}

.product-details .product-details .product-badge-container .rating-group .review-text {
  font-size: 0.85rem;
  color: #666869;
}

/* Note: All colors, typography, and spacing are explicitly defined
   to avoid using CSS variables, as requested. */

/* Main Container and Layout */
.ec-seller-info-block {
    display: flex;
    align-items: center;
    padding: 12px 0; /* Vertical spacing around the block */
    max-width: 100%; /* Constrain the width for presentation */
    font-family: Arial, Helvetica, sans-serif; /* Common sans-serif font */
    border-bottom: 1px solid #E5E5E5; /* Light gray separator line at the bottom */
   border-top: 1px solid #E5E5E5; /* Light gray separator line at the bottom */ 
   margin-bottom: 10px;
}

/* Avatar Styling */
.ec-seller-avatar-container {
    margin-right: 12px; /* Space between avatar and text */
}

.ec-seller-avatar {
    /* eBay typically uses a neutral/gold/yellowish color for avatars */
    background-color: #F8B425; 
    color: #FFFFFF; /* White text for the initial */
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Perfect circle */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

/* Seller Name and Feedback Score */
.ec-seller-details {
    flex-grow: 1; /* Allows this section to take up the available space */
}

.ec-seller-username {
    font-size: 16px;
    color: #333333; /* Dark gray/near black for name */
    margin-bottom: 2px;
    font-weight: 600;
}

.ec-feedback-score {
    color: #555555; /* Slightly lighter gray for the score */
    font-size: 14px;
    font-weight: normal;
}

/* Links Section */
.ec-seller-links {
    font-size: 14px;
    color: #555555; /* Default text color for the line of links */
    font-weight: 600;
}

.ec-link-action {
    color: #333333; /* Link color - often dark gray/black on eBay */
    text-decoration: underline;
    /* Spacing between text and separators */
    margin: 0 4px;
    white-space: nowrap; /* Keep links on a single line */
}

.ec-link-action:hover {
    color: #0064D3; /* eBay blue on hover for better interaction */
}

/* Positive feedback link with distinct color (often green or dark text in a link style) */
.ec-positive-feedback {
    /* The image shows a dark link, which is common for all eBay links now,
       but sometimes they use green for the percentage value. Sticking to 
       the observed dark link color. */
    color: #333333; 
    font-weight: 600;
}

.ec-link-separator {
    color: #555555;
    /* Remove default margins applied to links */
    margin: 0;
}

/* Arrow Icon */
.ec-arrow-icon {
    /* A right chevron/arrow icon */
    font-size: 20px;
    color: #555555;
    margin-left: 10px;
    padding-right: 5px; /* Spacing from the edge */
    cursor: pointer;
}

.product-details .product-details .product-name {
  font-size:18px;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--heading-color);
}

@media (min-width: 768px) {
  .product-details .product-details .product-name {
    font-size: 18px;
  }
}

.product-details .product-details .pricing-section {
  margin-bottom: 0.9rem;
}

.product-details .product-details .pricing-section .price-display {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-details .product-details .pricing-section .price-display .sale-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ff5e00;
}

.product-details .product-details .pricing-section .price-display .regular-price {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: #767373;
}

.product-details .product-details .pricing-section .savings-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-details .product-details .pricing-section .savings-info .save-amount {
  color: #28a745;
  font-weight: 600;
  font-size: 0.875rem;
}

.product-details .product-details .pricing-section .savings-info .discount-percent {
   background-color: #fff3e6; /* soft orange background */
color: #ff5e00;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-details .product-details .product-description {
  margin-bottom: 0.9rem;
}

.product-details .product-details .product-description p {
    color: #2d2929;
  line-height: 1.6;
  font-size: 0.9rem;
}

.prodpg-header {
  display: flex;
  justify-content: space-between; /* pushes stock text to the right */
  align-items: center;
  padding: 0.5rem 1rem;
}

.prodpg-stock-wrapper {
  margin-left: auto;
}

.prodpg-stock {
  font-size: 13px;
  color: #0f766e;
  font-weight: 700;
}


.product-details .product-details .availability-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem;
  padding-bottom: 5px;
  background: none;
  border-radius: 0px;
  margin-bottom: 1rem;
 // border: 1px solid color-mix(in srgb, #28a745, transparent 80%);
 border-bottom: 1px solid #eee;
}

.product-details .product-details .availability-status .stock-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-details .product-details .availability-status .stock-indicator i {
  color: #28a745;
  font-size: 1.125rem;
}

.product-details .product-details .availability-status .stock-indicator .stock-text {
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-details .availability-status .quantity-left {
  font-size: 0.875rem;
  color: #80052a;
  font-weight: 600;
}

.product-details .product-details .variant-section {
  margin-bottom: 2rem;
}

.product-details .product-details .variant-section .color-selection .variant-label {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.product-details .product-details .variant-section .color-selection .color-grid {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip.active {
  border-color: var(--contrast-color);
  transform: scale(1.1);
  box-shadow: 0 0 0 3px var(--accent-color);
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip.active .selection-check {
  opacity: 1;
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip .selection-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contrast-color);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.product-details .product-details .variant-section .color-selection .selected-variant {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details .variant-section .color-selection .selected-variant span {
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-details .purchase-section {
  margin-bottom: 2rem;
}

.product-details .product-details .purchase-section .quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}


/* General Styling for the section */
.product-details .product-details  .ec-section-wrapper {
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 0; /* Adjust padding as needed for overall section */
    background-color: #FFFFFF; /* Assuming a white background for this content block */
}

/* Top Info Blocks (e.g., Free Returns, Watching Count) */
.product-details .product-details  .ec-info-block-item {
    display: flex;
    align-items: flex-start; /* Align icon and text to the top */
    margin-bottom: 12px; /* Spacing between info items */
    padding: 0 5px; /* Little horizontal padding */
}

.product-details .product-details .howmany{
    background-color: #eee;
    padding: 10px;
    border-radius: 10px;
    margin-top: -20px;
    margin-bottom: 30px;
}

.product-details .product-details .ec-info-text-bold {
    font-weight: bold;
    color: #333333; /* Darker color for bold text */
}

/* Icons (using a simple technique for common icons without image assets for vanilla) */
.product-details .product-details .ec-info-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Specific icon styles (simplified text-based or minimal SVG-like for vanilla) */
/* For a real eBay replica, you would use SVG or sprite images for icons */
.product-details .product-details .ec-icon-return::before {
    content: "↻"; /* Unicode return symbol */
    font-size: 20px;
    color: #555555;
    line-height: 1;
    display: block;
    text-align: center;
}

.product-details .product-details .ec-icon-lightning::before {
    content: "⚡"; /* Unicode lightning bolt */
    font-size: 18px;
    color: #555555;
    line-height: 1;
    display: block;
    text-align: center;
}

.product-details .product-details .ec-icon-shield::before {
    content: "🛡️"; /* Unicode shield emoji */
    font-size: 18px;
    color: #555555;
    line-height: 1;
    display: block;
    text-align: center;
}


/* Horizontal Divider */
.product-details .product-details .ec-divider-line {
    border: 0;
    height: 1px;
    background-color: #E5E5E5; /* Light gray line */
    margin: 15px 0; /* Spacing above and below the line */
}

/* Detail Rows (Shipping, Delivery, Returns) */
.product-details .product-details .ec-detail-row {
    display: flex;
    margin-bottom: 10px; /* Spacing between rows */
    padding: 0 5px; /* Little horizontal padding */
}

.product-details .product-details .ec-detail-label {
    width: 80px; /* Fixed width for labels to align content */
    flex-shrink: 0; /* Prevent label from shrinking */
    color: #555555; /* Gray for labels */
    font-weight: normal; /* Labels are not bold */
}

.product-details .product-details .ec-detail-content {
    flex-grow: 1; /* Content takes up remaining space */
    color: #333333; /* Darker text for content */
}

.product-details .product-details .ec-link-color {
    color: #0064D3; /* eBay blue for links */
    text-decoration: none;
}

.product-details .product-details .ec-link-color:hover {
    text-decoration: underline;
}

.product-details .product-details .ec-sub-text {
    font-size: 12px;
    color: #555555;
    margin-top: 2px;
}

/* Payments Row */
.product-details .product-details .ec-payments-row {
    align-items: center; /* Align label and payment logos vertically */
    margin-bottom: 15px; /* More space below payments */
}

.product-details .product-details .ec-payment-methods {
    display: flex;
    gap: 8px; /* Space between payment logos */
    flex-wrap: wrap; /* Allow payment logos to wrap on smaller screens */
}

.product-details .product-details .ec-payment-logo {
    height: 18px; /* Fixed height for payment logos as seen on eBay */
    width: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align with text baseline if any */
}

/* Shop with Confidence Section */
.product-details .product-details .ec-confidence-section {
    padding: 0 5px; /* Little horizontal padding */
}

.product-details .product-details .ec-confidence-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 12px;
}

.product-details .product-details .ec-guarantee-block {
    display: flex;
    align-items: flex-start;
}

.product-details .product-details .ec-guarantee-text {
    flex-grow: 1;
}

.product-details .product-details .ec-guarantee-heading {
    font-weight: bold;
    color: #333333;
    margin-bottom: 2px;
}

.product-details .product-details .purchase-section .quantity-control .control-label {
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

/* Wrapper */
.product-details .purchase-section .quantity-control .quantity-selector {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  overflow: hidden;
  width: fit-content;
}

/* Buttons */
.product-details .purchase-section .quantity-control .quantity-selector .quantity-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-details .purchase-section .quantity-control .quantity-selector .quantity-btn:hover {
  background: #f4f4f4;
}

/* Input (center number) */
.product-details .purchase-section .quantity-control .quantity-selector .quantity-input {
  width: 50px;
  height: 36px;
  text-align: center;
  border: none;
  background: none;
  color: #111;
  font-weight: 600;
  font-size: 1rem;
}

/* Focus effect */
.product-details .purchase-section .quantity-control .quantity-selector .quantity-input:focus {
  outline: none;
}

/* 🔥 Remove default browser arrows */
.product-details .purchase-section .quantity-control .quantity-selector input[type="number"]::-webkit-inner-spin-button,
.product-details .purchase-section .quantity-control .quantity-selector input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-details .purchase-section .quantity-control .quantity-selector input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}


.product-details .product-details .purchase-section .action-buttons {
  display: flex;
  gap: 0.75rem;
    grid-template-columns: repeat(2, 1fr); /* Two equal-width buttons */
}

@media (max-width: 576px) {
  .product-details .product-details .purchase-section .action-buttons {
    flex-direction: column;
  
  }
  
 
}

.product-details .product-details .purchase-section .action-buttons .btn {
  display: flex;
  align-items: center;
 
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 0rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-details .product-details .purchase-section .action-buttons .btn.primary-action {
  flex: 2;
  background: #ff5e00;
  font-size: 18px;
  color: var(--contrast-color);
}

.product-details .product-details .purchase-section .action-buttons .btn.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .product-details .purchase-section .action-buttons .btn.secondary-action {
  flex: 2;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 18px;
  border-color: var(--accent-color);
  
}

.product-details .product-details .purchase-section .action-buttons .btn.secondary-action:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .product-details .purchase-section .action-buttons .btn.icon-action {
  width: 50px;
  padding: 0.875rem;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.product-details .product-details .purchase-section .action-buttons .btn.icon-action:hover {
  background: #dc3545;
  color: var(--contrast-color);
  border-color: #dc3545;
  transform: translateY(-2px);
}

.product-details .product-details .purchase-section .action-buttons .btn.icon-action i {
  font-size: 1.125rem;
}

.product-details .product-details .benefits-list {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-details .benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-details .product-details .benefits-list .benefit-item:last-child {
  margin-bottom: 0;
}

.product-details .product-details .benefits-list .benefit-item i {
  color: var(--accent-color);
  font-size: 1.125rem;
  flex-shrink: 0;
}

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

.product-details .info-tabs-container {
  margin-top: 0rem;
}

.product-details .info-tabs-container .tabs-navigation {
  display: flex;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-details .info-tabs-container .tabs-navigation .nav-link {
  flex: 1;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.product-details .info-tabs-container .tabs-navigation .nav-link.active {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .info-tabs-container .tab-content .tab-pane {
  padding: 2rem 0;
}

.product-details .info-tabs-container .overview-content .content-section h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-details .info-tabs-container .overview-content .content-section h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

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

.product-details .info-tabs-container .overview-content .highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.product-details .info-tabs-container .overview-content .package-contents {
  padding: 2rem;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), #f8f9fa 50%));
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .info-tabs-container .overview-content .package-contents h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .overview-content .package-contents .contents-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details .info-tabs-container .overview-content .package-contents .contents-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .info-tabs-container .overview-content .package-contents .contents-list li i {
  color: #28a745;
  font-size: 1rem;
}

.product-details .info-tabs-container .technical-content .tech-group {
  margin-bottom: 2rem;
}

.product-details .info-tabs-container .technical-content .tech-group h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row {
  display: flex;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row:last-child {
  border-bottom: none;
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row .spec-name {
  flex: 1;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row .spec-value {
  flex: 1;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: right;
}

.product-details .info-tabs-container .reviews-content .reviews-header {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .product-details .info-tabs-container .reviews-content .reviews-header {
    flex-direction: column;
    gap: 2rem;
  }
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview {
  flex: 1;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score {
  text-align: center;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .score-display {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .score-stars {
  margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .score-stars i {
  color: #ffd700;
  font-size: 1.5rem;
  margin: 0 1px;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .total-reviews {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution {
  margin-top: 2rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .stars-label {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .progress-container {
  flex: 1;
  height: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 4px;
  overflow: hidden;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .progress-container .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .count-label {
  width: 30px;
  text-align: right;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta {
  flex: 1;
  text-align: center;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta .review-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta .review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details {
  flex: 1;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .customer-name {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .review-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .review-meta .review-stars i {
  color: #ffd700;
  font-size: 0.875rem;
  margin-right: 1px;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .review-meta .review-date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-headline {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-text p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-actions {
  display: flex;
  gap: 1rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-actions .action-btn {
  background: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-actions .action-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .load-more-section {
  text-align: center;
  margin-top: 2rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .load-more-section .load-more-reviews {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .load-more-section .load-more-reviews:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

.product-details .drift-zoom-pane.drift-opening {
  animation: driftFadeIn 200ms ease-out;
}

.product-details .drift-zoom-pane.drift-closing {
  animation: driftFadeOut 200ms ease-in;
}

@keyframes driftFadeIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

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

@keyframes driftFadeOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Category Header Section
--------------------------------------------------------------*/
.category-header {
  padding-bottom: 0;
}

.category-header .filter-container {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.category-header .filter-container .filter-item {
  margin-bottom: 0.75rem;
}

.category-header .filter-container .filter-item .form-label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  letter-spacing: 0.01em;
}

.category-header .filter-container .filter-item.search-form .input-group {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.category-header .filter-container .filter-item.search-form .input-group .form-control {
  border-right: none;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  height: 44px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
}

.category-header .filter-container .filter-item.search-form .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.category-header .filter-container .filter-item.search-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 0.9rem;
}

.category-header .filter-container .filter-item.search-form .input-group .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.category-header .filter-container .filter-item.search-form .input-group .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 15%);
}

.category-header .filter-container .filter-item.search-form .input-group .search-btn i {
  font-size: 1rem;
}

.category-header .filter-container .filter-item .form-select {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.95rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 0.625rem 2.25rem 0.625rem 1rem;
  height: 46px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233690e7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.category-header .filter-container .filter-item .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.category-header .filter-container .filter-item .form-select.form-select-sm {
  height: 38px;
  font-size: 0.85rem;
  padding: 0.4rem 2rem 0.4rem 0.75rem;
}

.category-header .filter-container .filter-item .view-options {
  display: flex;
  gap: 0.5rem;
}

.category-header .filter-container .filter-item .view-options .view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.category-header .filter-container .filter-item .view-options .view-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.category-header .filter-container .filter-item .view-options .view-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 2px 8px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.category-header .filter-container .filter-item .view-options .view-btn i {
  font-size: 1.1rem;
}

.category-header .filter-container .filter-item .items-per-page {
  min-width: 110px;
}

.category-header .filter-container .active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-header .filter-container .active-filters .active-filter-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--heading-color);
  letter-spacing: 0.01em;
}

.category-header .filter-container .active-filters .filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
}

.category-header .filter-container .active-filters .filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.875rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  font-weight: 500;
}

.category-header .filter-container .active-filters .filter-tag .filter-remove {
  background: none;
  border: none;
  color: var(--accent-color);
  margin-left: 0.35rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.category-header .filter-container .active-filters .filter-tag .filter-remove:hover {
  color: color-mix(in srgb, var(--accent-color), var(--heading-color) 30%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.1);
}

.category-header .filter-container .active-filters .clear-all-btn {
  background: none;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  border-radius: 50px;
}

.category-header .filter-container .active-filters .clear-all-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: color-mix(in srgb, var(--accent-color), var(--heading-color) 15%);
  border-color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .category-header .filter-container {
    padding: 1rem;
  }

  .category-header .filter-container .active-filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-header .filter-container .active-filters .filter-tags {
    width: 100%;
  }

  .category-header .filter-container .active-filters .clear-all-btn {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Category Product List Section
--------------------------------------------------------------*/
/* Container for the product list section */
.category-product-list {
  padding-top: 10px;
  padding-bottom: 60px;
}

/* Individual product card styling */
.category-product-list .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on the entire product card */
.category-product-list .product-card:hover {
  transform: translateY(-4px);
}

/* Overlay visibility on hover */
.category-product-list .product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

/* Image zoom/swap effects on card hover */
.category-product-list .product-card:hover .hover-image {
  transform: scale(1);
  opacity: 1;
}

.category-product-list .product-card:hover .main-image {
  /* Reduced scale on main image hover to make the swap less jarring, 
     but kept to show a transformation is happening. */
  transform: scale(0.9); 
  opacity: 0;
}

/* --- IMAGE POSITIONING (Amazon Look) --- */

.category-product-list .product-image {
  width: 100%;
  height: 220px;
  min-height: 220px; /* 👈 guarantees visible space on mobile */
  overflow: hidden;
  background-color: #e9ecef;
  border-bottom: 1px solid #e9ecef;
  display: block; /* ensure block context */
}

.category-product-list .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* avoid inline image gaps */
}



/* Initial state for the main and hover images */
.category-product-list .product-image .main-image {
  transform: scale(1);
  opacity: 1;
}

.category-product-list .product-image .hover-image {
  /* Set initial scale to match the hover-out state of main-image 
     for a smoother visual transition */
  transform: scale(0.9); 
  opacity: 0;
  position: absolute; /* Place the hover image directly on top of the main image */
  top: 0;
  left: 0;
}
/* --- END IMAGE POSITIONING --- */


/* Product overlay */
.category-product-list .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Using a placeholder variable for background color mix */
  background: color-mix(in srgb, var(--background-color, #000), transparent 75%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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


 .add-to-cart {
      display: block;
      width: 100%;
      padding: 12px;
      background: #2563eb;
      color: #fff;
      text-align: center;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      transition: background 0.3s ease;
    }
    .add-to-cart:hover {
      background: #1e40af;
    }

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

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

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

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

.category-product-list .product-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.10rem 0.50rem;
  border-radius: 6px;
  font-size: 0.60rem;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}

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

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

/* ===============================
   PRODUCT DETAILS (Refined Professional Styling)
=================================*/

.category-product-list .product-details {
  background: var(--surface-color);
  height: 140px;                     /* consistent card height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;    /* keeps title on top, price+rating at bottom */
  padding: 10px 12px 8px;            /* balanced inner padding */
  overflow: hidden;
  border-top: 1px solid #f3f4f6;     /* subtle top divider for modern separation */
}

/* ---------- TITLE ---------- */
.category-product-list .product-title {
  /* Typography: Scalable, readable base */
  font-size: clamp(0.835rem, 2.2vw, 0.9rem); /* Responsive: 14px base, scales down/up */
  line-height: 1.4;
  font-weight: 400;
  font-family: inherit; /* Ensure consistency */
  color: var(--heading-color, #1a1a1a); /* Fallback for unset var */
  
  /* Layout & Truncation: Cross-browser 2-line clamp with fallback */
  margin-bottom: calc(-1 * 2.8em); /* Precise negative margin: ~2 lines (1.4em * 2) */
  max-height: calc(2 * 1.4em); /* Fallback height clamp for non-Webkit browsers */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  
  /* Enhanced text flow */
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  
  /* Interactions: Smooth hover for professionalism */
  transition: color 0.2s ease, transform 0.2s ease;
}

.category-product-list .product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.category-product-list .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0px; /* minimal gap from title */
  padding-top: 43px;
}

/* ---------- PRICE ---------- */
.category-product-list .product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-weight: 700;
  font-size: 17px;
  color: #ff5e00;
  line-height: 1.2;
  white-space: nowrap;
}

.category-product-list .product-price .original-price {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 400;
}

/* ---------- RATING (Tight under price) ---------- */
.category-product-list .product-rating {
  display: inline-flex;            /* keeps it inline if placed after price */
  align-items: center;
  gap: 3px;                        /* small gap between star and number */
  color: #444;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;                  /* compact vertical alignment */
             /* subtle spacing from price only */
  margin-bottom: 20px;                /* prevents unwanted gaps below */
}

.category-product-list .product-rating i {
  color: #f6b100;
  font-size: 12px;
  margin-top: -1px;      /* 👈 fine-tunes vertical alignment */
}

.category-product-list .product-rating span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
  margin-top: -1px;      /* 👈 visually aligns text with star */
}


/* ---------- ANIMATION ---------- */
@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}




/*--------------------------------------------------------------
# Category Pagination Section
--------------------------------------------------------------*/
.category-pagination {
  padding-top: 0;
}

.category-pagination nav {
  position: relative;
}

.category-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-pagination li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.category-pagination li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.category-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-pagination li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.category-pagination li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.category-pagination li a i {
  font-size: 14px;
}

.category-pagination li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .category-pagination ul {
    gap: 4px;
  }

  .category-pagination li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Cart Section
--------------------------------------------------------------*/
.cart{
    margin-bottom: 20px;
}

.cart .cart-items {
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
   border-radius: 20px;
}

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

.cart .cart-items .cart-header h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.cart .cart-items .cart-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: background-color 0.3s ease;
 
}

.cart .cart-items .cart-item:last-child {
  border-bottom: none;
}

.cart .cart-items .cart-item:hover {
  background-color: color-mix(in srgb, var(--background-color), transparent 70%);
}

.cart .cart-items .cart-item .product-info .product-image {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  border-radius: 0.375rem;
  overflow: hidden;
  margin-right: 1rem;
  border: none;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart .cart-items .cart-item .product-info .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

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

.cart .cart-items .cart-item .product-info .product-details .product-title {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 12px;
  color: var(--heading-color);
}

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

.cart .cart-items .cart-item .product-info .product-details .product-meta span {
  display: inline-block;
}

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

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

.cart .cart-items .cart-item .product-info .product-details .remove-item i {
  font-size: 0.875rem;
}

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

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

.cart .cart-items .cart-item .quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 0.375rem;
  overflow: hidden;
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn {
  background: none;
  border: none;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: background-color 0.3s ease;
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* Hide number input arrows for all browsers */
.cart .cart-items .cart-item .quantity-selector .quantity-input::-webkit-inner-spin-button,
.cart .cart-items .cart-item .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart .cart-items .cart-item .quantity-selector .quantity-input {
  -moz-appearance: textfield; /* For Firefox */
  appearance: textfield;
  width: 2.5rem;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  color: #222;
  font-weight: 600;
  padding: 0.25rem 0;
  background-color: #fff;
}


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

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

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

@media (max-width: 767.98px) {
  /* Enhanced Cart Item Container */
  .cart .cart-items .cart-item {
    /* Spacing & Structure */
    padding: 1rem; /* Slightly more vertical padding */
    padding-top: 5px;
    margin-bottom: 5px; /* Increased margin for better separation */
    border-radius: 0px; /* More pronounced rounded corners */
    /* Appearance */
    background:none; /* Explicit white background */
    /* Border & Shadow - Modern Clean Look */
    border-bottom: 1px solid #eee; /* Remove simple border */
    box-shadow: none; /* Soft, modern shadow */
    transition: box-shadow 0.3s ease; /* Smooth hover transition (if needed) */
    
    /* Ensure Flexbox if children are side-by-side */
    display: flex; 
    flex-direction: column; /* Stack content vertically on mobile */
    gap: 10px; /* Space between internal elements (like image, details, price) */
  }
  
  /* Focus on Typography */
  .cart .cart-items .cart-item .price-tag,
  .cart .cart-items .cart-item .item-total {
    font-size: 1rem; /* Clearer, slightly larger text */
    font-weight: 700; /* Bold for important figures */
    color: #333333; /* Darker color for emphasis */
    text-align: right; /* Align prices to the right for a structured look */
    width: 100%; /* Ensure they span full width if needed */
  }

  /* Optional: Style for the item name/description (assuming structure) */
  .cart .cart-items .cart-item h5 {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
  }
  
  /* Optional: Style for removing an item (assuming a class exists) */
  .cart .cart-items .cart-item .remove-button {
    /* Style the removal button for easy tapping on mobile */
    padding: 8px 12px;
    font-size: 0.9em;
  }
}

.cart .cart-items .cart-actions {
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: none;
}

.cart .cart-items .cart-actions .coupon-form .input-group {
  max-width: 24rem;
}

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

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

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

.cart .cart-items .cart-actions .coupon-form .input-group .btn {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  font-size: 0.875rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 10%);
  color: var(--contrast-color);
}

.cart .cart-items .cart-actions .coupon-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: var(--accent-color);
}

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

.cart .cart-summary {
    background-color: #fff;
  border-radius: 0px;
  box-shadow: none;
  border-left: none;
  padding: 1.5rem;
  position: sticky;
   border-radius: 20px;
  top: 6.5rem;
}

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

.cart .cart-summary .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border:none;
  border-radius: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading-color, #222);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cart .cart-summary .summary-item:last-child {
  border-bottom: none;
}

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

.cart .cart-summary .summary-item .summary-label {
  color: #000;
  font-size: 17px;
}

.cart .cart-summary .summary-item .summary-value {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 18px;
}

.cart .cart-summary .summary-item .shipping-options {
  width: 100%;
  margin-top: 0.5rem;
}

.cart .cart-summary .summary-item .shipping-options .form-check {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cart .cart-summary .lazadareturn{
    font-size: 13px;
    margin-top: -15px;
    text-align: center;
    color: #282e34;
    font-weight: 600;
}

.cart .cart-summary .lazadareturn a{
    color: #034c90
}

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

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0.5rem;
  float: none;
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-label {
  font-size: 0.875rem;
  color: var(--default-color);
  padding-left: 0;
}

.cart .cart-summary .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.cart .cart-summary .checkout-button {
  margin-bottom: 1rem;
  margin-top: 5px;
}

.cart .cart-summary .checkout-button .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

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

.cart .cart-summary .continue-shopping .btn-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.cart .cart-summary .payment-methods .payment-icons img {
  width: 36px;
  height: auto;
  margin-right: 8px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
  transition: transform 0.25s ease, filter 0.25s ease;
  vertical-align: middle;
  opacity: 0.9;
}

.cart .cart-summary .payment-methods .payment-icons img:hover {
  transform: scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}


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

.cart .cart-summary .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

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

.cart .btn-outline-accent:hover,
.cart .btn-outline-accent:focus,
.cart .btn-outline-accent:active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.cart .btn-outline-heading:hover,
.cart .btn-outline-heading:focus,
.cart .btn-outline-heading:active {
  color: var(--contrast-color);
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}

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

.cart .btn-outline-remove:hover,
.cart .btn-outline-remove:focus,
.cart .btn-outline-remove:active {
  color: var(--contrast-color);
  background-color: #dc3545;
  border-color: #dc3545;
}

.cart .btn-accent {
  color: #fff;
  background-color:#ff5e00;
  border-color: none;
}

.cart .btn-accent:hover,
.cart .btn-accent:focus,
.cart .btn-accent:active {
  color: var(--contrast-color);
  background-color: #cc4700;
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@media (max-width: 991.98px) {
  .cart .cart-summary {
    position: static;
  }
}


#cart-count.bump {
  animation: bump 0.4s ease;
}

@keyframes bump {
  0% { transform: scale(1); }
  20% { transform: scale(1.3); }
  50% { transform: scale(0.9); }
  100% { transform: scale(1); }
}
/* Toast container */
#cart-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

/* Individual toast */
.cart-toast {
  display: flex;
  align-items: center;
  background-color: #232f3e; /* Amazon dark blue */
  color: #fff;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Show animation */
.cart-toast.show {
  opacity: 1;
  transform: translateX(0);
}

/* Optional close button */
.cart-toast .close-toast {
  margin-left: 15px;
  cursor: pointer;
  font-weight: bold;
}


/*--------------------------------------------------------------
# Checkout Section
--------------------------------------------------------------*/
.checkout {
  padding: 10px 0;
}

.checkout .checkout-container {
  margin-bottom: 2rem;
}

.checkout .checkout-container .checkout-form {
  position: relative;
}

.checkout .checkout-section {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.checkout .checkout-section:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.checkout .checkout-section .section-header {
  padding: 20px 24px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .checkout-section .section-header .section-number {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background:#fff3e6;
  color: #ff5e00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.0rem;
  flex-shrink: 0;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checkout .checkout-section .section-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
}

.checkout .checkout-section .section-content {
  padding: 24px;
}

.checkout .checkout-section .section-content .form-group {
  margin-bottom: 20px;
}

.checkout .checkout-section .section-content .form-group:last-child {
  margin-bottom: 0;
}

.checkout .checkout-section .section-content .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.checkout .checkout-section .section-content .form-group .form-control,
.checkout .checkout-section .section-content .form-group .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  height: auto;
  background-color: var(--surface-color);
  transition: all 0.25s ease;
}

.checkout .checkout-section .section-content .form-group .form-control:hover,
.checkout .checkout-section .section-content .form-group .form-select:hover {
    border-color:  #15c2f0;
}

.checkout .checkout-section .section-content .form-group .form-control:focus,
.checkout .checkout-section .section-content .form-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow:none;
  outline: none;
}

.checkout .checkout-section .section-content .form-group .form-control::placeholder,
.checkout .checkout-section .section-content .form-group .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 0.9rem;
}

.checkout .checkout-section .section-content .form-group .form-control.is-invalid,
.checkout .checkout-section .section-content .form-group .form-select.is-invalid {
  border-color: #dc3545;
  background-image: none;
}

.checkout .checkout-section .section-content .form-group .form-control.is-invalid:focus,
.checkout .checkout-section .section-content .form-group .form-select.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

.checkout .checkout-section .section-content .form-group .form-select {
  background-position: right 16px center;
  padding-right: 40px;
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper {
  position: relative;
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper .card-icons {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper .card-icons i {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout .checkout-section .section-content .form-group .card-number-wrapper input {
  padding-right: 80px;
}

.checkout .checkout-section .section-content .form-group .cvv-wrapper {
  position: relative;
}

.checkout .checkout-section .section-content .form-group .cvv-wrapper .cvv-hint {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
  transition: color 0.2s ease;
}

.checkout .checkout-section .section-content .form-group .cvv-wrapper .cvv-hint:hover {
  color: var(--accent-color);
}

.checkout .checkout-section .section-content .form-check {
  margin-bottom: 12px;
  padding-left: 1.8rem;
}

.checkout .checkout-section .section-content .form-check:last-child {
  margin-bottom: 0;
}
/* Modern Checkbox Style */
.checkout .checkout-section .section-content .form-check .form-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-left: -1.8rem;
  margin-top: 0.2rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
}

.checkout .checkout-section .section-content .form-check .form-check-input:hover {
  border-color: #999;
  background-color: #f1f1f1;
}

.checkout .checkout-section .section-content .form-check .form-check-input:checked {
  border-color: #007bff;
  background-color: #007bff;
}

.checkout .checkout-section .section-content .form-check .form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
}


.checkout .checkout-section .section-content .form-check .form-check-input:focus {
  outline: none;
  box-shadow:none;
}


.checkout .checkout-section .section-content .form-check .form-check-label {
  font-size: 0.9rem;
  cursor: pointer;
}

.checkout .checkout-section .section-content .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.checkout .checkout-section .section-content .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.checkout .checkout-section .section-content .form-check.terms-check {
  margin-top: 10px;
  margin-bottom: 20px;
}

.checkout .checkout-section .section-content .form-check.terms-check .form-check-label {
  font-size: 0.85rem;
}

.checkout .checkout-section .section-content .payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout .checkout-section .section-content .payment-options .payment-option {
  flex: 1;
  min-width: 120px;
  position: relative;
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio]:checked+label {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio]:checked+label .payment-icon {
  color: var(--accent-color);
}

.checkout .checkout-section .section-content .payment-options .payment-option input[type=radio]:focus+label {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout .checkout-section .section-content .payment-options .payment-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  height: 100%;
}

.checkout .checkout-section .section-content .payment-options .payment-option label:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.checkout .checkout-section .section-content .payment-options .payment-option label .payment-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.25s ease;
}

.checkout .checkout-section .section-content .payment-options .payment-option label .payment-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.checkout .checkout-section .section-content .payment-options .payment-option.active label {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.checkout .checkout-section .section-content .payment-options .payment-option.active label .payment-icon {
  color: var(--accent-color);
}

@media (max-width: 575.98px) {
  .checkout .checkout-section .section-content .payment-options .payment-option {
    min-width: 100%;
  }

  .checkout .checkout-section .section-content .payment-options .payment-option label {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }

  .checkout .checkout-section .section-content .payment-options .payment-option label .payment-icon {
    margin-bottom: 0;
  }
}

.checkout .checkout-section .section-content .payment-details {
  padding-top: 8px;
}

.checkout .checkout-section .section-content .payment-details.d-none {
  display: none;
}

.checkout .checkout-section .section-content .payment-details .payment-info {
  padding: 16px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.checkout .checkout-section .section-content .success-message {
  padding: 16px;
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 12px;
  color: #28a745;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.checkout .checkout-section .section-content .success-message.d-none {
  display: none;
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  background-color: #ff5e00;
  border: none;
  box-shadow: 0 4px 12px rgba(54, 144, 231, 0.2);
  transition: all 0.3s ease;
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn:hover {
  background-color: #e65100;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(54, 144, 231, 0.25);
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(54, 144, 231, 0.2);
}

.checkout .checkout-section .section-content .place-order-container .place-order-btn .btn-price {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.checkout .order-summary {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.checkout .order-summary .order-summary-header {
  padding: 20px 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout .order-summary .order-summary-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.checkout .order-summary .order-summary-header .item-count {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  padding: 4px 10px;
  border-radius: 20px;
}

.checkout .order-summary .order-summary-content {
  padding: 24px;
}

.checkout .order-summary .order-summary-content .order-items {
  margin-bottom: 24px;
}

.checkout .order-summary .order-summary-content .order-items {
  max-height: calc(2 *  var(--order-item-height, 100px)); /* show only 2 items */
  overflow-y: auto; /* enable vertical scroll */
  scroll-behavior: smooth; /* smooth scrolling */
  padding-right: 8px; /* optional: for scrollbar space */
  padding-top: 10px;
}

/* Optional: style each order item */
.checkout .order-summary .order-summary-content .order-items .order-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* Optional: hide scrollbar on some browsers */
.checkout .order-summary .order-summary-content .order-items::-webkit-scrollbar {
  width: 6px;
}

.checkout .order-summary .order-summary-content .order-items::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 3px;
}


.checkout .order-summary .order-summary-content .order-items .order-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-image {
   width: 5rem;
  height: 5rem;
  min-width: 5rem;
  border-radius: 0.375rem;
  overflow: hidden;
  margin-right: 1rem;
  border: none;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details {
  flex: 1;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details h4 {
  font-size: 13px;;
  margin-bottom: 4px;
  font-weight: 500;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-variant {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .quantity {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .price {
  color: var(--heading-color);
}

.checkout .order-summary .order-summary-content .promo-code {
  margin-bottom: 24px;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-right: none;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
  outline: none;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 0.9rem;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: none;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 0 16px;
  font-weight: 500;
  color: var(--accent-color);
  background-color: var(--surface-color);
  transition: all 0.25s ease;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn:focus {
  box-shadow: none;
}

.checkout .order-summary .order-summary-content .order-totals {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.checkout .order-summary .order-summary-content .order-totals>div {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.checkout .order-summary .order-summary-content .order-totals>div:last-child {
  margin-bottom: 0;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.checkout .order-summary .order-summary-content .secure-checkout {
  text-align: center;
}

.checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header i {
  color: #28a745;
  font-size: 1.1rem;
}

.checkout .order-summary .order-summary-content .secure-checkout .payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.checkout .order-summary .order-summary-content .secure-checkout .payment-icons i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991.98px) {
  .checkout .order-summary {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

.checkout .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkout .modal-content .modal-header {
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .modal-content .modal-header .modal-title {
  font-weight: 600;
}

.checkout .modal-content .modal-footer {
  border-top-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767.98px) {
  .checkout .checkout-section .section-header h3 {
    font-size: 1.1rem;
  }

  .checkout .order-summary .order-summary-header h3 {
    font-size: 1.1rem;
  }
}

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


/* Container Styles */
.checkout .wallet-payment-box {
    /* Layout */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between main sections */

    /* Appearance */
    border: none; /* Light border */
    border-radius: 12px; /* Rounded corners */
    padding: 20px;
  
    background-color: #ffffff; /* Clean white background */
    box-shadow: none; /* Subtle lift effect */
    max-width: 100%; /* Constrain width for better appearance */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern, readable font */
}

/* Wallet Information Section (Icon + Text) */
.checkout .wallet-info {
    display: flex;
    align-items: center;
    gap: 15px; /* Spacing between icon and text */
}

.checkout .wallet-icon {
    width: 100px; /* Size of the icon */
    height: 100px;
    /* Optional: Add a slight filter or color change if the SVG allows for styling */
}

.checkout .wallet-info h4 {
    margin: 0;
    font-size: 1.1em;
    color: #333333; /* Darker text for heading */
    font-weight: 600; /* Semi-bold */
}

.checkout .wallet-info p {
    margin: 0;
    font-size: 0.9em;
    color: #6a6a6a; /* Muted text for description */
    line-height: 1.4;
}

/* Separator Line (Optional but good for visual separation) */
.checkout .wallet-balance {
    display: flex;
    justify-content: space-between; /* Pushes text to the edges */
    align-items: center;
    padding-top: 10px;
    border-top: 1px dashed #e0e0e0; /* Subtle dashed separator */
}

.checkout .wallet-balance span {
    font-size: 16px;
    color: #555555;
}

.checkout #wallet-balance {
    font-size: 1.0em;
    color: #007bff; /* Primary/Accent color for the balance */
    font-weight: 700; /* Bold */
}

/* Note/Disclaimer at the bottom */
.checkout .wallet-note {
    font-size: 0.8em;
    color: #999999; /* Lightest text for non-critical info */
    padding-top: 5px;
    border-top: 1px solid #f0f0f0; /* Very light solid separator */
}



/*--------------------------------------------------------------
# Order Confirmation Section
--------------------------------------------------------------*/
.order-confirmation {
  position: relative;
  /* ===== Sidebar Styles ===== */
  /* ===== Main Content Styles ===== */
}

.order-confirmation .sidebar {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 60%));
  color: var(--contrast-color);
  border-radius: 16px 0 0 16px;
  /* Success Animation */
  /* Order ID */
  /* Stepper */
  /* Price Summary */
  /* Delivery Info */
  /* Customer Service */
}

.order-confirmation .sidebar .sidebar-content {
  padding: 2.5rem 1.5rem;
  position: sticky;
  top: 100px;
}

.order-confirmation .sidebar .sidebar-content h4,
.order-confirmation .sidebar .sidebar-content h5 {
  color: var(--contrast-color);
}

@media (max-width: 991.98px) {
  .order-confirmation .sidebar .sidebar-content {
    position: relative;
    top: 0;
    border-radius: 16px 16px 0 0;
  }
}

.order-confirmation .sidebar .success-animation {
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.order-confirmation .sidebar .success-animation::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  animation: pulse 2s infinite;
}

.order-confirmation .sidebar .success-animation i {
  font-size: 3rem;
  color: white;
  position: relative;
  z-index: 2;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

.order-confirmation .sidebar .order-id {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.order-confirmation .sidebar .order-id h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.order-confirmation .sidebar .order-id .order-date {
  opacity: 0.8;
  font-size: 0.95rem;
}

.order-confirmation .sidebar .order-progress {
  margin-bottom: 2rem;
}

.order-confirmation .sidebar .order-progress .stepper-container {
  display: flex;
  flex-direction: column;
}

.order-confirmation .sidebar .order-progress .stepper-item {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 1.5rem;
}

.order-confirmation .sidebar .order-progress .stepper-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 14px;
  width: 2px;
  height: calc(100% - 10px);
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.order-confirmation .sidebar .order-progress .stepper-item .stepper-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-right: 0.75rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.order-confirmation .sidebar .order-progress .stepper-item .stepper-text {
  font-weight: 500;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.order-confirmation .sidebar .order-progress .stepper-item.completed .stepper-icon,
.order-confirmation .sidebar .order-progress .stepper-item.current .stepper-icon {
  background-color: white;
  color: var(--accent-color);
}

.order-confirmation .sidebar .order-progress .stepper-item.completed .stepper-text,
.order-confirmation .sidebar .order-progress .stepper-item.current .stepper-text {
  opacity: 1;
}

.order-confirmation .sidebar .order-progress .stepper-item.current .stepper-icon {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.order-confirmation .sidebar .price-summary {
  margin-bottom: 2rem;
}

.order-confirmation .sidebar .price-summary h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.order-confirmation .sidebar .price-summary .summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-confirmation .sidebar .price-summary .summary-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.order-confirmation .sidebar .price-summary .summary-list li.total {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 1.1rem;
}

.order-confirmation .sidebar .delivery-info {
  margin-bottom: 2rem;
}

.order-confirmation .sidebar .delivery-info h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.order-confirmation .sidebar .delivery-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.order-confirmation .sidebar .delivery-info p i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.order-confirmation .sidebar .customer-service h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.order-confirmation .sidebar .customer-service .help-link {
  display: flex;
  align-items: center;
  color: var(--contrast-color);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.order-confirmation .sidebar .customer-service .help-link i {
  margin-right: 0.5rem;
}

.order-confirmation .sidebar .customer-service .help-link:hover {
  opacity: 0.8;
}

@media (max-width: 991.98px) {
  .order-confirmation .sidebar {
    border-radius: 16px 16px 0 0;
  }
}

.order-confirmation .main-content {
  background-color: var(--surface-color);
  border-radius: 0 16px 16px 0;
  padding: 3rem 2.5rem;
  /* Thank You Message */
  /* Details Cards */
  /* Action Area */
  /* Recommended Products */
}

@media (max-width: 991.98px) {
  .order-confirmation .main-content {
    border-radius: 0 0 16px 16px;
    padding: 2rem 1.5rem;
  }
}

.order-confirmation .main-content .thank-you-message {
  margin-bottom: 2.5rem;
}

.order-confirmation .main-content .thank-you-message h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.order-confirmation .main-content .thank-you-message p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
}

.order-confirmation .main-content .details-card {
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  overflow: hidden;
}

.order-confirmation .main-content .details-card .card-header {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
}

.order-confirmation .main-content .details-card .card-header:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.order-confirmation .main-content .details-card .card-header h3 {
  font-size: 1.15rem;
  margin: 0;
  display: flex;
  align-items: center;
}

.order-confirmation .main-content .details-card .card-header h3 i {
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.order-confirmation .main-content .details-card .card-header .toggle-icon {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: transform 0.2s ease;
}

.order-confirmation .main-content .details-card .card-header.collapsed .toggle-icon {
  transform: rotate(180deg);
}

.order-confirmation .main-content .details-card .card-body {
  padding: 1.5rem;
  /* Payment Styles */
  /* Order Items */
}

.order-confirmation .main-content .details-card .card-body label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.order-confirmation .main-content .details-card .card-body address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 0;
}

.order-confirmation .main-content .details-card .card-body .contact-info p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.order-confirmation .main-content .details-card .card-body .contact-info p i {
  width: 20px;
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.order-confirmation .main-content .details-card .card-body .payment-method {
  display: flex;
  align-items: center;
}

.order-confirmation .main-content .details-card .card-body .payment-method .payment-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.order-confirmation .main-content .details-card .card-body .payment-method .payment-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.order-confirmation .main-content .details-card .card-body .payment-method .payment-details .card-type {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.order-confirmation .main-content .details-card .card-body .payment-method .payment-details .card-number {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.order-confirmation .main-content .details-card .card-body .billing-address h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.order-confirmation .main-content .details-card .card-body .billing-address p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.order-confirmation .main-content .details-card .card-body .item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.order-confirmation .main-content .details-card .card-body .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.order-confirmation .main-content .details-card .card-body .item .item-image {
  flex: 0 0 70px;
  margin-right: 1rem;
}

.order-confirmation .main-content .details-card .card-body .item .item-image img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.order-confirmation .main-content .details-card .card-body .item .item-details {
  flex: 1;
}

.order-confirmation .main-content .details-card .card-body .item .item-details h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.order-confirmation .main-content .details-card .card-body .item .item-details .item-meta {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
}

.order-confirmation .main-content .details-card .card-body .item .item-details .item-meta span {
  display: inline-block;
  margin-right: 1rem;
}

.order-confirmation .main-content .details-card .card-body .item .item-details .item-price {
  font-size: 0.95rem;
}

.order-confirmation .main-content .details-card .card-body .item .item-details .item-price .quantity {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.order-confirmation .main-content .details-card .card-body .item .item-details .item-price .price {
  font-weight: 600;
}

.order-confirmation .main-content .action-area {
  margin-bottom: 3rem;
}

.order-confirmation .main-content .action-area .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.order-confirmation .main-content .action-area .btn.btn-back {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  justify-content: flex-start;
}

.order-confirmation .main-content .action-area .btn.btn-back i {
  margin-right: 0.75rem;
}

.order-confirmation .main-content .action-area .btn.btn-back:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: translateY(-2px);
}

.order-confirmation .main-content .action-area .btn.btn-account {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  justify-content: space-between;
}

.order-confirmation .main-content .action-area .btn.btn-account i {
  margin-left: 0.75rem;
}

.order-confirmation .main-content .action-area .btn.btn-account:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.order-confirmation .main-content .recommended h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.order-confirmation .main-content .recommended h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.order-confirmation .main-content .recommended .product-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 2rem;
}

.order-confirmation .main-content .recommended .product-card:hover {
  transform: translateY(-5px);
}

.order-confirmation .main-content .recommended .product-card .product-image {
  height: 150px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.order-confirmation .main-content .recommended .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.order-confirmation .main-content .recommended .product-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding: 0 0.75rem;
}

.order-confirmation .main-content .recommended .product-card .product-price {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.order-confirmation .main-content .recommended .product-card .btn-add-cart {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.order-confirmation .main-content .recommended .product-card .btn-add-cart i {
  margin-right: 0.5rem;
}

.order-confirmation .main-content .recommended .product-card .btn-add-cart:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 767.98px) {
  .order-confirmation .main-content {
    padding: 2rem 1.5rem;
  }

  .order-confirmation .main-content .thank-you-message h1 {
    font-size: 1.8rem;
  }

  .order-confirmation .main-content .thank-you-message p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Search Results Header Section
--------------------------------------------------------------*/
.search-results-header .results-count h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.search-results-header .results-count p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.search-results-header .results-count .results-number,
.search-results-header .results-count .search-term {
  font-weight: 600;
  color: var(--accent-color);
}

.search-results-header .search-form {
  position: relative;
}

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

.search-results-header .search-form .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 12px 20px;
  border-radius: 50px 0 0 50px;
  border-right: none;
  height: auto;
}

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

.search-results-header .search-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.search-results-header .search-form .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0 25px;
  border-radius: 0 50px 50px 0;
  transition: all 0.3s ease;
}

.search-results-header .search-form .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.search-results-header .search-filters .filter-label {
  font-weight: 600;
  margin-right: 10px;
  color: var(--heading-color);
}

.search-results-header .search-filters .tags-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-results-header .search-filters .filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .filter-tag i {
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .filter-tag:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.search-results-header .search-filters .filter-tag:hover i {
  transform: scale(1.1);
}

.search-results-header .search-filters .sort-options label {
  color: var(--heading-color);
  font-weight: 500;
}

.search-results-header .search-filters .sort-options .form-select {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .sort-options .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .search-results-header .filter-tags {
    margin-bottom: 15px;
  }

  .search-results-header .sort-options {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .search-results-header .results-count h2 {
    font-size: 1.5rem;
  }

  .search-results-header .results-count p {
    font-size: 1rem;
  }

  .search-results-header .filter-label {
    display: block;
    margin-bottom: 8px;
  }

  .search-results-header .tags-wrapper {
    margin-top: 5px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Account Section
--------------------------------------------------------------*/
.account .mobile-menu .mobile-menu-toggle {
  width: 100%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.account .container{
    padding-left: 0px !important;
    padding-right: 0px!important;
}


/* Override g-0 or g-4 to add a small custom gutter */
section.account .container .row.g-0,
section.account .container .row.g-4 {
  --bs-gutter-x: 0.275rem !important; /* Sets a 6px horizontal gutter */
  --bs-gutter-y: 0.275rem !important; /* Sets a 6px vertical gutter (optional) */
  margin-left: 0 !important; /* Remove default negative margins */
  margin-right: 0 !important;
}

/* ✅ Make banner 100% within container */
section.account .store-status-banner-container {
  width: 100%;
  margin-left: -5px !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ✅ Optional: remove container padding on this specific section only */
section.account .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Adjust column padding to match the new gutter */
@media (min-width: 992px) {
  section.account .container .row.g-0 > .col-lg-3,
  section.account .container .row.g-0 > .col-lg-9,
  section.account .container .row.g-4 > .col-lg-3,
  section.account .container .row.g-4 > .col-lg-9 {
    padding-left: 0.1875rem !important; /* Half of 6px (3px) for padding */
    padding-right: 0.1875rem !important;
    margin: 0 !important; /* Remove any unexpected margins */
  }
}

/* Ensure no extra padding or margins in child elements */
.account .profile-menu,
.account .content-area {
  padding: 0 !important;
  margin: 0 !important;
}

.account .mobile-menu .mobile-menu-toggle i {
  font-size: 20px;
}

.account .mobile-menu .mobile-menu-toggle:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.account .profile-menu {
  background-color: var(--surface-color);
  border-radius: 0px;
  padding: 0px;
  height: 100%;
   margin-left: -5px;
}

.account .profile-menu .user-info {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .user-info .user-avatar {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
}

.account .profile-menu .user-info .user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--surface-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.account .profile-menu .user-info .user-avatar .status-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--surface-color);
}

.account .profile-menu .user-info .user-avatar .status-badge i {
  color: var(--contrast-color);
  font-size: 14px;
}

.account .profile-menu .user-info h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.account .profile-menu .user-info .user-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 13px;
}

.account .profile-menu .user-info .user-status i {
  font-size: 14px;
}

.account .profile-menu .menu-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 40px;
  border-radius: 0px;
  color: var(--default-color);
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-nav .nav-link i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-nav .nav-link span {
  flex: 1;
}

.account .profile-menu .menu-nav .nav-link .badge {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex: 0;
}

.account .profile-menu .menu-nav .nav-link .badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account .profile-menu .menu-nav .nav-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-nav .nav-link:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-nav .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
}

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

.account .profile-menu .menu-nav .nav-link.active .badge {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer {
  margin-top: 32px;
  padding-top: 24px;
 
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .menu-footer a {
  display: flex;
  align-items: center;
  padding: 12px 40px;
  color: var(--default-color);
  border-radius: 12px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a.logout-link {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link i {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link:hover {
  background-color: rgba(239, 68, 68, 0.08);
}

.account .content-area {
  background:none;
  border-radius: 24px;
  padding: 24px;
  padding-top: 0px;
  height: 100%;
  box-shadow: none;
}

.account .content-area .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 16px;
}

.account .content-area .section-header h2 {
  margin: 0;
  padding-top: 20px;
  padding-left: 5px;
  font-size: 18px;
  font-weight: 600;
  color:#000
}

.account .content-area .section-header h2 small{
    font-size: 13px;
    font-weight: 500;
    padding-top: 5px;
    line-height: 5px;
}


.account .content-area .section-header .header-actions {
   display: flex;
  justify-content: flex-end; /* align right */
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-right: 5px;
}

.account .content-area .section-header .header-actions .search-box {
  position: relative;
}

.account .content-area .section-header .header-actions .search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
}

.account .content-area .section-header .header-actions .search-box input {
  width: 240px;
  height: 44px;
  padding: 0 16px 0 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.account .content-area .section-header .header-actions .search-box input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.account .content-area .section-header .header-actions .filter-btn {
  height: 44px;
  padding: 0 20px;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.account .content-area .section-header .header-actions .filter-btn i {
  font-size: 16px;
}

.account .content-area .section-header .header-actions .filter-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .content-area .orders-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
      grid-template-columns:repeat(2, 1fr);
}

.account .content-area .orders-grid .order-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .content-area .orders-grid .order-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .content-area .orders-grid .order-card .order-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.account .content-area .orders-grid .order-card .order-header .order-id .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-right: 6px;
}

.account .content-area .orders-grid .order-card .order-header .order-id .value {
  font-weight: 500;
  font-family: var(--heading-font);
}

.account .content-area .orders-grid .order-card .order-header .order-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .content-area .orders-grid .order-card .tracking-info,
.account .content-area .orders-grid .order-card .order-details {
  margin-top: 20px;
  background-color: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.account .content-area .orders-grid .order-card .tracking-info.collapse:not(.show),
.account .content-area .orders-grid .order-card .order-details.collapse:not(.show) {
  display: none;
}

.account .content-area .orders-grid .order-card .tracking-info.collapsing,
.account .content-area .orders-grid .order-card .order-details.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline {
  position: relative;
  padding: 24px 24px 24px 56px;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline:before {
  content: "";
  position: absolute;
  left: 39px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background-color: #e5e7eb;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item {
  position: relative;
  padding-bottom: 24px;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-icon {
  position: absolute;
  left: -32px;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-icon i {
  font-size: 14px;
  color: #9ca3af;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content {
  padding-left: 16px;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content h5 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content p {
  margin: 0 0 4px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content .timeline-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content .shipping-info {
  margin-top: 8px;
  padding: 8px 12px;
  background-color: #ffffff;
  border-radius: 8px;
  font-size: 13px;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item .timeline-content .shipping-info .tracking-number {
  font-family: var(--heading-font);
  font-weight: 500;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item.completed .timeline-icon {
  background-color: #f0fdf4;
  border-color: #22c55e;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item.completed .timeline-icon i {
  color: #22c55e;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item.active .timeline-icon {
  background-color: #fff7ed;
  border-color: #f97316;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item.active .timeline-icon i {
  color: #f97316;
}

.account .content-area .orders-grid .order-card .tracking-info .tracking-timeline .timeline-item.active .timeline-content h5 {
  color: #f97316;
}

.account .content-area .orders-grid .order-card .order-details .details-content {
  padding: 24px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section h5 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .info-grid .info-item .label {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 4px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .info-grid .info-item .value {
  font-size: 14px;
  font-weight: 500;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 12px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item:last-child {
  margin-bottom: 0;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item .item-info {
  flex: 1;
  min-width: 0;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item .item-info h6 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item .item-info .item-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item .item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown .price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown .price-row:not(.total) {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown .price-row.total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 600;
  color: var(--accent-color);
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .address-info {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .address-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.account .content-area .orders-grid .order-card .order-details .details-content .detail-section .address-info p.contact {
  margin-top: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .content-area .orders-grid .order-card .order-content {
  margin-bottom: 20px;
}

.account .content-area .orders-grid .order-card .order-content .product-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.account .content-area .orders-grid .order-card .order-content .product-grid::-webkit-scrollbar {
  display: none;
}

.account .content-area .orders-grid .order-card .order-content .product-grid img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.account .content-area .orders-grid .order-card .order-content .product-grid .more-items {
  min-width: 64px;
  height: 64px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row:last-child {
  margin-bottom: 0;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status {
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.processing {
  background-color: #fff7ed;
  color: #f97316;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.shipped {
  background-color: #ecfeff;
  color: #06b6d4;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.delivered {
  background-color: #f0fdf4;
  color: #22c55e;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.cancelled {
  background-color: #fef2f2;
  color: #ef4444;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .price {
  font-weight: 600;
  color: var(--heading-color);
}

.account .content-area .orders-grid .order-card .order-footer {
  display: flex;
  gap: 12px;
}

.account .content-area .orders-grid .order-card .order-footer button {
  flex: 1;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-track {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-track:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .content-area .orders-grid .order-card .order-footer button.btn-details {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-details:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .content-area .orders-grid .order-card .order-footer button.btn-review {
  background-color: #f0fdf4;
  color: #22c55e;
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-review:hover {
  background-color: #dcfce7;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-reorder {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-reorder:hover {
  background-color: #fee2e2;
}

.account .content-area .pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.account .content-area .pagination-wrapper button {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
  background-color: transparent;
  color: var(--default-color);
}

.account .content-area .pagination-wrapper button:hover:not(:disabled) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .content-area .pagination-wrapper button.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account .content-area .pagination-wrapper button:disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  cursor: not-allowed;
}

.account .content-area .pagination-wrapper button i {
  font-size: 18px;
}

.account .content-area .pagination-wrapper .page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .content-area .pagination-wrapper .page-numbers span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991.98px) {
  .account .profile-menu {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .account .content-area {
    padding: 0px;
    
  }

  .account .content-area .section-header .header-actions {
    width: 100%;
  }

  .account .content-area .section-header .header-actions .search-box {
    flex: 1;
  }

  .account .content-area .section-header .header-actions .search-box input {
    width: 100%;
  }
}

.account .wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .account .wishlist-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .account .wishlist-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}


.account .wishlist-grid .wishlist-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.account .wishlist-grid .wishlist-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .wishlist-grid .wishlist-card:hover .wishlist-image img {
  transform: scale(1.05);
}

.account .wishlist-grid .wishlist-card:hover .wishlist-image .btn-remove {
  opacity: 1;
  transform: translateY(0);
}

.account .wishlist-grid .wishlist-card .wishlist-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.account .wishlist-grid .wishlist-card .wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.account .wishlist-grid .wishlist-card .wishlist-image .btn-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.account .wishlist-grid .wishlist-card .wishlist-image .btn-remove:hover {
  background-color: #ef4444;
  color: #ffffff;
}

.account .wishlist-grid .wishlist-card .wishlist-image .sale-badge,
.account .wishlist-grid .wishlist-card .wishlist-image .out-of-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.account .wishlist-grid .wishlist-card .wishlist-image .sale-badge {
  background-color: #fef2f2;
  color: #ef4444;
}

.account .wishlist-grid .wishlist-card .wishlist-image .out-of-stock-badge {
  background-color: #f3f4f6;
  color: #6b7280;
}

.account .wishlist-grid .wishlist-card .wishlist-content {
  padding: 20px;
}

.account .wishlist-grid .wishlist-card .wishlist-content h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta {
  margin-bottom: 16px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .rating i {
  color: #f59e0b;
  font-size: 14px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .rating span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .price .current {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .price .original {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart,
.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

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

.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify:hover {
  background-color: #e5e7eb;
}

.account .payment-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.account .payment-cards-grid .payment-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .payment-cards-grid .payment-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .payment-cards-grid .payment-card.default {
  border-color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account .payment-cards-grid .payment-card .card-header i {
  font-size: 24px;
  color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header .card-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .payment-cards-grid .payment-card .card-header .card-badges span {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.account .payment-cards-grid .payment-card .card-header .card-badges .default-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header .card-badges .card-type {
  background-color: #f3f4f6;
  color: #6b7280;
}

.account .payment-cards-grid .payment-card .card-body {
  margin-bottom: 16px;
}

.account .payment-cards-grid .payment-card .card-body .card-number {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.account .payment-cards-grid .payment-card .card-body .card-info {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .payment-cards-grid .payment-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account .payment-cards-grid .payment-card .card-actions button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.account .payment-cards-grid .payment-card .card-actions button i {
  font-size: 14px;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-remove {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-remove:hover {
  background-color: #fee2e2;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-make-default {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-make-default:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .reviews-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.account .reviews-grid .review-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .reviews-grid .review-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .reviews-grid .review-card .review-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.account .reviews-grid .review-card .review-header .product-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.account .reviews-grid .review-card .review-header .review-meta {
  flex: 1;
}

.account .reviews-grid .review-card .review-header .review-meta h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.account .reviews-grid .review-card .review-header .review-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.account .reviews-grid .review-card .review-header .review-meta .rating i {
  color: #f59e0b;
  font-size: 14px;
}

.account .reviews-grid .review-card .review-header .review-meta .rating span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .reviews-grid .review-card .review-header .review-meta .review-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .reviews-grid .review-card .review-content {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .reviews-grid .review-card .review-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.account .reviews-grid .review-card .review-footer {
  display: flex;
  gap: 12px;
}

.account .reviews-grid .review-card .review-footer button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .reviews-grid .review-card .review-footer button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .reviews-grid .review-card .review-footer button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .reviews-grid .review-card .review-footer button.btn-delete {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .reviews-grid .review-card .review-footer button.btn-delete:hover {
  background-color: #fee2e2;
}

.account .addresses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.account .addresses-grid .address-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .addresses-grid .address-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .addresses-grid .address-card.default {
  border-color: var(--accent-color);
}

.account .addresses-grid .address-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account .addresses-grid .address-card .card-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.account .addresses-grid .address-card .card-header .default-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .addresses-grid .address-card .card-body {
  margin-bottom: 16px;
}

.account .addresses-grid .address-card .card-body .address-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
}

.account .addresses-grid .address-card .card-body .contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 4px;
}

.account .addresses-grid .address-card .card-body .contact-info div:last-child {
  margin-bottom: 0;
}

.account .addresses-grid .address-card .card-body .contact-info div i {
  font-size: 14px;
}

.account .addresses-grid .address-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account .addresses-grid .address-card .card-actions button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.account .addresses-grid .address-card .card-actions button i {
  font-size: 14px;
}

.account .addresses-grid .address-card .card-actions button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .addresses-grid .address-card .card-actions button.btn-remove {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-remove:hover {
  background-color: #fee2e2;
}

.account .addresses-grid .address-card .card-actions button.btn-make-default {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-make-default:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .settings-content .settings-section {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  margin-top: 10px;
}

.account .settings-content .settings-section:last-child {
  margin-bottom: 0;
}

.account .settings-content .settings-section h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  color:#000;
}

.account .settings-content .settings-section.danger-zone {
  border-color: #fee2e2;
}

.account .settings-content .settings-section.danger-zone h3 {
  color: #ef4444;
}

.account .settings-content .settings-section.danger-zone .danger-zone-content p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account .settings-content .settings-section.danger-zone .danger-zone-content .btn-danger {
  height: 40px;
  padding: 0 20px;
  background-color: #ef4444;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .settings-content .settings-section.danger-zone .danger-zone-content .btn-danger:hover {
  background-color: #dc2626;
}

.account .settings-content .settings-form .form-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.account .settings-content .settings-form .form-control {
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.account .settings-content .settings-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.account .settings-content .settings-form .form-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.account .settings-content .settings-form .form-buttons .btn-save {
  height: 40px;
  padding: 0 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.account .settings-content .preferences-list .preference-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .settings-content .preferences-list .preference-item:first-child {
  padding-top: 0;
}

.account .settings-content .preferences-list .preference-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.account .settings-content .preferences-list .preference-item .preference-info {
  margin-right: 16px;
}

.account .settings-content .preferences-list .preference-item .preference-info h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
}

.account .settings-content .preferences-list .preference-item .preference-info p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .settings-content .preferences-list .preference-item .form-check {
  margin: 0;
  min-height: auto;
}

/* Toggle base */
.account .settings-content .preferences-list .preference-item .form-check .form-check-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 3rem;
  height: 1.5rem;
  margin: 0;
  background-color: #ccc;
  border: 2px solid #bbb;
  border-radius: 1.5rem;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Knob */
.account .settings-content .preferences-list .preference-item .form-check .form-check-input::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

/* Checked state */
.account .settings-content .preferences-list .preference-item .form-check .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

/* Move knob to right */
.account .settings-content .preferences-list .preference-item .form-check .form-check-input:checked::before {
  transform: translateX(1.45rem);
}

/* Focus state */
.account .settings-content .preferences-list .preference-item .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  border-color: #0d6efd;
}




@media (max-width: 575.98px) {
  .account .orders-grid .order-card .order-header {
    flex-direction: column;
    gap: 8px;
  }

  .account .section-header .header-actions {
    width: 100%;
    justify-content: stretch;
  }

  .account .section-header .header-actions .search-box,
  .account .section-header .header-actions .dropdown,
  .account .section-header .header-actions button {
    width: 100%;
  }

  .account .payment-cards-grid,
  .account .addresses-grid {
    grid-template-columns: 1fr;
  }

  .account .review-card .review-header {
    flex-direction: column;
    text-align: center;
  }

  .account .review-card .review-header .product-image {
    margin: 0 auto;
  }

  .account .review-card .review-header .rating {
    justify-content: center;
  }
}




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

/* ✅ Force full-width + reset everything on mobile */
@media screen and (max-width: 768px) {
  .login,
  .login .auth-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    left: 0;
    right: 0;
    position: relative;
  }
  
}


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

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

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

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

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

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

.login .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.login .form-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  margin-top: 10px;
}

.login .form-header p {
    color: #3a3f41;
  font-size: 16px;
  margin: 0;
  margin-top: 20px;
  font-weight: 600;
}

.login .input-group {
  position: relative;
  margin-bottom: 20px;
}

.login .input-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  transition: color 0.3s;
  pointer-events: none;
}

.login .input-group .form-control {
  padding: 16px 16px 16px 50px;
  border: none;
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 12px !important;
}

.login .input-group .form-control:focus {
    border: 1px solid #378bba;
  box-shadow: none;
  outline: none;
}




.login .input-group .form-control:focus~.input-icon {
  color: var(--accent-color);
}

.login .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.login .input-group .password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  z-index: 3;
  transition: color 0.3s;
}

.login .input-group .password-toggle:hover {
  color: var(--accent-color);
}

.login .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .login .name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.login .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.login .form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login .form-options .remember-me input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.login .form-options .remember-me input[type=checkbox]:checked {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.login .form-options .remember-me input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login .form-options .remember-me label {
  font-size: 14px;
  color: var(--default-color);
  cursor: pointer;
}

.login .form-options .forgot-password {
  font-size: 14px;
  color: #9f9e9e;
  text-decoration: none;
  font-weight: 500;
  margin-top: -5px;
  transition: color 0.3s;
  margin-left: auto; /* pushes it to the right */
}

.login .form-options .forgot-password:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.login .terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.login .terms-check input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background: var(--background-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 2px;
  flex-shrink: 0;
}

.login .terms-check input[type=checkbox]:checked {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.login .terms-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login .terms-check label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.4;
  cursor: pointer;
}

.login .terms-check label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.login .terms-check label a:hover {
  text-decoration: underline;
}

.login .auth-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login .auth-btn.primary-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.login .auth-btn.primary-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-1px);
}

.login .auth-btn.primary-btn:active {
  transform: translateY(0);
}

.login .auth-btn.social-btn {
  background: var(--background-color);
  color: var(--default-color);
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.login .auth-btn.social-btn:hover {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.login .auth-btn.social-btn i {
  font-size: 18px;
}

.login .auth-btn i {
  font-size: 16px;
}

.login .divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
}

.login .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.login .divider span {
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login .switch-form {
  text-align: center;
  margin-top: 25px;
}

.login .switch-form span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

.login .switch-form .switch-btn {
  background: none;
  border: none;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-left: 5px;
  transition: color 0.3s;
}

.login .switch-form .switch-btn:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/

.register .registration-form-wrapper {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 40px 0;
  overflow: hidden;
  width: 100%;
  box-shadow: none;
}

 .register .error-message {
  font-size: 0.75rem;
  color: #d32f2f;
  margin-top: 4px;
  font-weight: 600;
  display: block;
}

.register .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.register .email-getting p{
    color:#000;
    font-size: 14px;
}

.register .email-getting a{
    float: right;
    color: #08639f;
    text-decoration:  underline;
}


.register .decorative-elements .circle {
  position: absolute;
  border-radius: 50%;
}

.register .decorative-elements .circle.circle-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.register .decorative-elements .circle.circle-2 {
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 97%));
}

.register .decorative-elements .circle.circle-3 {
  top: 40%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 70%), color-mix(in srgb, var(--accent-color), transparent 90%));
}

.register .decorative-elements .square {
  position: absolute;
  transform: rotate(45deg);
}

.register .decorative-elements .square.square-1 {
  top: 20%;
  left: 5%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.register .decorative-elements .square.square-2 {
  bottom: 15%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 85%), color-mix(in srgb, var(--heading-color), transparent 95%));
}

.register .form-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.register .form-header h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register .form-header p {
  color: #3a3f41;
  font-size: 16px;
  margin: 0;
  margin-top: 20px;
  font-weight: 600;
}

.register form {
  position: relative;
  z-index: 1;
}

.register form .form-floating {
  margin-bottom: 1rem;
}

.register form .form-floating .form-control,
.register form .form-floating .form-select {
  height: 60px;
  padding: 1rem 1rem 0.5rem;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  color: var(--default-color);
}

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

.register form .form-floating .form-control:focus~label,
.register form .form-floating .form-select:focus~label {
  color: var(--accent-color);
}

.register form .form-floating .form-control:focus~label:after,
.register form .form-floating .form-select:focus~label:after {
  background: transparent;
}

.register form .form-floating .form-control::placeholder,
.register form .form-floating .form-select::placeholder {
  color: transparent;
}

.register form .form-floating .form-control:not(:placeholder-shown)~label,
.register form .form-floating .form-select:not(:placeholder-shown)~label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register form .form-floating .form-control:not(:placeholder-shown)~label:after,
.register form .form-floating .form-select:not(:placeholder-shown)~label:after {
  background: transparent;
}

.register form .form-floating label {
  padding: 1rem 1rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.register form .form-floating label:after {
  background: transparent;
}

.register form .form-check {
  padding-left: 1.8rem;
  margin-top: 1rem;
}

.register form .form-check .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: -1.8rem;
  margin-top: 0.15rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

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

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

.register form .form-check .form-check-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.register form .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

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

.register .btn-register {
  position: relative;
  height: 56px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  color: var(--contrast-color);
  border: none;
  overflow: hidden;
  transition: all 0.3s;
}

.register .btn-register::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s;
}

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

.register .btn-register:hover::before {
  left: 100%;
}

.register .btn-register:active {
  transform: translateY(0);
}

.register .login-link {
  margin-top: 1.5rem;
}

.register .login-link p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.register .login-link p a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}

.register .login-link p a:hover {
  text-decoration: underline;
}

.register .social-login {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.register .social-login .divider {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.register .social-login .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.register .social-login .divider span {
  position: relative;
  background-color: var(--surface-color);
  padding: 0 1rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .social-login .social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.register .social-login .social-buttons .btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  border-radius: 12px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.register .social-login .social-buttons .btn-social i {
  font-size: 1.2rem;
}

.register .social-login .social-buttons .btn-social i.bi-google {
  color: #DB4437;
}

.register .social-login .social-buttons .btn-social i.bi-facebook {
  color: #4267B2;
}

.register .social-login .social-buttons .btn-social i.bi-apple {
  color: #000000;
}

.register .social-login .social-buttons .btn-social:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.register .social-login .social-buttons .btn-social:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  /* Force the whole section to be full width on mobile */
  .register {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: #f5f7fa; /* optional */
    background-size: cover;
   height: 100vh;
    background-position: center;
  }
  
 


  /* Remove container restrictions inside */
  .register .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Wrapper stays full-width but adds inner padding */
  .register .registration-form-wrapper {
    width: 100% !important;
    margin: 0 !important;
    padding: 1rem !important;  /* <-- adds spacing inside */
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}


/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  margin-bottom: 1rem;
}

.about-2 .section-badge i {
  font-size: 1rem;
}

.about-2 .about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.about-2 .about-description,
.about-2 .section-text {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  line-height: 1.6;
}

.about-2 .features-boxes .feature-box {
  height: 100%;
  position: relative;
}

.about-2 .features-boxes .feature-box .icon-box {
  width: 60px;
  height: 60px;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.about-2 .features-boxes .feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-2 .features-boxes .feature-box h3 a {
  color: var(--heading-color);
}

.about-2 .features-boxes .feature-box p {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

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

.about-2 .features-boxes .feature-box:hover h3 a {
  color: var(--accent-color);
}

.about-2 .video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-2 .video-box img {
  width: 100%;
  border-radius: 20px;
}

.about-2 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

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

.contact-2 .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-2 .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact-2 .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-2 .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

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

.contact-2 .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact-2 .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-2 .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact-2 .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-2 .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact-2 .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-2 .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact-2 .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact-2 .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .loading,
.contact-2 .contact-form-wrapper .error-message,
.contact-2 .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact-2 .form-container-overlap {
    margin-top: -120px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 30px;
  }
}

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

  .contact-2 .form-container-overlap {
    margin-top: -100px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 25px;
  }

  .contact-2 .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact-2 .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact-2 .form-container-overlap {
    margin-top: -80px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 20px;
  }

  .contact-2 .btn-submit {
    width: 100%;
  }

  .contact-2 .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Support Section
--------------------------------------------------------------*/
.support .support-header {
  text-align: center;
  margin-bottom: 60px;
}

.support .support-header .header-content {
  max-width: 700px;
  margin: 0 auto;
}

.support .support-header .header-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.support .support-header .header-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
  border-radius: 2px;
}

.support .support-header .header-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

.support .quick-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .support .quick-support {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .support .quick-support {
    grid-template-columns: 1fr;
  }
}

.support .quick-support .action-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.support .quick-support .action-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  opacity: 0;
  transition: opacity 0.3s;
}

.support .quick-support .action-item:hover::before {
  opacity: 1;
}

.support .quick-support .action-item .action-content {
  background-color: var(--surface-color);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%;
  transition: transform 0.3s;
}

.support .quick-support .action-item .action-content:hover {
  transform: translateY(-5px);
}

.support .quick-support .action-item .action-content i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.support .quick-support .action-item .action-content h4 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.support .quick-support .action-item .action-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.support .quick-support .action-item .action-content .action-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.support .quick-support .action-item .action-content .action-button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.support .help-categories {
  margin-bottom: 70px;
}

.support .help-categories h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.support .help-categories .category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .support .help-categories .category-cards {
    grid-template-columns: 1fr;
  }
}

.support .help-categories .category-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.3s;
}

.support .help-categories .category-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support .help-categories .category-card:hover .arrow {
  transform: translateX(5px);
  opacity: 1;
}

.support .help-categories .category-card .icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support .help-categories .category-card .icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.support .help-categories .category-card h5 {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.support .help-categories .category-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support .help-categories .category-card ul li {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.support .help-categories .category-card ul li:last-child {
  margin-bottom: 0;
}

.support .help-categories .category-card .arrow {
  color: var(--accent-color);
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s;
}

.support .self-help .content-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.support .self-help .content-box .subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.support .self-help .content-box .resource-links {
  display: grid;
  gap: 20px;
}

.support .self-help .content-box .resource-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.support .self-help .content-box .resource-link:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.support .self-help .content-box .resource-link:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.support .self-help .content-box .resource-link i {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s;
}

.support .self-help .content-box .resource-link .link-content h6 {
  margin: 0 0 5px;
  color: var(--heading-color);
  font-size: 1.1rem;
}

.support .self-help .content-box .resource-link .link-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.support .self-help .faq-section {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

@media (max-width: 991px) {
  .support .self-help .faq-section {
    margin-top: 40px;
  }
}

.support .self-help .faq-section h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.support .self-help .faq-section .faq-list .faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 15px;
}

.support .self-help .faq-section .faq-list .faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.support .self-help .faq-section .faq-list .faq-item h3 {
  margin: 0;
  padding: 15px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--heading-color);
  transition: all 0.3s;
}

.support .self-help .faq-section .faq-list .faq-item h3 i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.support .self-help .faq-section .faq-list .faq-item .faq-answer {
  display: none;
  padding: 0 0 15px;
}

.support .self-help .faq-section .faq-list .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.support .self-help .faq-section .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.support .self-help .faq-section .faq-list .faq-item.faq-active h3 i {
  transform: rotate(45deg);
}

.support .self-help .faq-section .faq-list .faq-item.faq-active .faq-answer {
  display: block;
}

@media (max-width: 767px) {
  .support .support-header .header-content h2 {
    font-size: 2rem;
  }

  .support .category-card {
    grid-template-columns: auto 1fr !important;
  }

  .support .category-card .arrow {
    display: none;
  }

  .support .self-help .resource-link {
    padding: 15px;
  }

  .support .self-help .resource-link i {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .support .self-help .faq-section {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

.faq .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.faq .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-header {
  text-align: center;
  margin-bottom: 70px;
  padding: 60px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .update-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--surface-color);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.privacy .privacy-header .header-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy .privacy-header .header-content p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
}

.privacy .privacy-header .header-content .privacy-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .privacy .privacy-header .header-content .privacy-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.privacy .privacy-header .header-content .privacy-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
}

.privacy .privacy-header .header-content .privacy-badges .badge-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.privacy .privacy-header .header-content .privacy-badges .badge-item span {
  font-weight: 500;
}

.privacy .info-section {
  margin-bottom: 70px;
}

.privacy .info-section .section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .privacy .info-section .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .privacy .info-section .section-grid {
    grid-template-columns: 1fr;
  }
}

.privacy .info-section .info-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.privacy .info-section .info-card:hover {
  transform: translateY(-10px);
}

.privacy .info-section .info-card:hover .card-header i {
  transform: scale(1.1);
}

.privacy .info-section .info-card .card-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .info-section .info-card .card-header i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s;
}

.privacy .info-section .info-card .card-header h3 {
  font-size: 1.4rem;
  margin: 0;
}

.privacy .info-section .info-card .card-content {
  padding: 30px;
}

.privacy .info-section .info-card .card-content .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy .info-section .info-card .card-content .info-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.privacy .info-section .info-card .card-content .info-list li:last-child {
  margin-bottom: 0;
}

.privacy .info-section .info-card .card-content .info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.privacy .security-section {
  margin-bottom: 70px;
  text-align: center;
}

.privacy .security-section .section-header {
  margin-bottom: 40px;
}

.privacy .security-section .section-header h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.privacy .security-section .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

.privacy .security-section .measures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .privacy .security-section .measures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .privacy .security-section .measures-grid {
    grid-template-columns: 1fr;
  }
}

.privacy .security-section .measure-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s;
}

.privacy .security-section .measure-item:hover {
  transform: translateY(-5px);
}

.privacy .security-section .measure-item:hover i {
  color: var(--accent-color);
}

.privacy .security-section .measure-item i {
  font-size: 2rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  margin-bottom: 20px;
  transition: color 0.3s;
}

.privacy .security-section .measure-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.privacy .security-section .measure-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.privacy .rights-section {
  margin-bottom: 70px;
}

.privacy .rights-section .rights-content {
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
}

.privacy .rights-section .rights-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.privacy .rights-section .rights-content>p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
}

.privacy .rights-section .rights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .privacy .rights-section .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .privacy .rights-section .rights-grid {
    grid-template-columns: 1fr;
  }
}

.privacy .rights-section .right-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.privacy .rights-section .right-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.privacy .rights-section .right-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.privacy .additional-info {
  margin-bottom: 70px;
}

.privacy .additional-info .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .privacy .additional-info .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .privacy .additional-info .info-grid {
    grid-template-columns: 1fr;
  }
}

.privacy .additional-info .info-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
}

.privacy .additional-info .info-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.privacy .additional-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.privacy .privacy-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .privacy .privacy-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.privacy .privacy-contact .contact-box .contact-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.privacy .privacy-contact .contact-box .contact-content {
  flex: 1;
}

.privacy .privacy-contact .contact-box .contact-content h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-box .contact-content .contact-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.privacy .privacy-contact .contact-box .contact-content .contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Retun Policy Section
--------------------------------------------------------------*/
.retun-policy .return-hero {
  margin-bottom: 70px;
  text-align: center;
  position: relative;
}

.retun-policy .return-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.retun-policy .return-hero .hero-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.retun-policy .return-hero .hero-content p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.retun-policy .return-hero .return-period-box {
  margin-top: 40px;
}

.retun-policy .return-hero .return-period-box .box-content {
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  display: inline-flex;
  align-items: baseline;
  padding: 20px 40px;
  border-radius: 50px;
  gap: 10px;
}

.retun-policy .return-hero .return-period-box .box-content .days {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.retun-policy .return-hero .return-period-box .box-content .text {
  font-size: 1.4rem;
  color: var(--heading-color);
  font-weight: 500;
}

.retun-policy .policy-overview {
  margin-bottom: 70px;
}

.retun-policy .policy-overview .feature-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.retun-policy .policy-overview .feature-card:hover {
  transform: translateY(-10px);
}

.retun-policy .policy-overview .feature-card:hover .card-content::before {
  opacity: 1;
}

.retun-policy .policy-overview .feature-card:hover .card-content .learn-more i {
  transform: translateX(5px);
}

.retun-policy .policy-overview .feature-card .card-content {
  padding: 40px;
  position: relative;
  z-index: 1;
}

.retun-policy .policy-overview .feature-card .card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.retun-policy .policy-overview .feature-card .card-content i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.retun-policy .policy-overview .feature-card .card-content h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.retun-policy .policy-overview .feature-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.retun-policy .policy-overview .feature-card .card-content .learn-more {
  color: var(--accent-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.retun-policy .policy-overview .feature-card .card-content .learn-more i {
  font-size: 1.2rem;
  margin: 0;
  transition: transform 0.3s;
}

.retun-policy .return-requirements {
  margin-bottom: 70px;
}

.retun-policy .return-requirements .requirements-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.retun-policy .return-requirements .requirements-content .subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.retun-policy .return-requirements .checks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.retun-policy .return-requirements .checks-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.retun-policy .return-requirements .checks-list li:last-child {
  margin-bottom: 0;
}

.retun-policy .return-requirements .checks-list li i {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.retun-policy .return-requirements .checks-list li .requirement-text h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.retun-policy .return-requirements .checks-list li .requirement-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.retun-policy .return-requirements .exceptions-box {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

.retun-policy .return-requirements .exceptions-box .box-header {
  text-align: center;
  margin-bottom: 30px;
}

.retun-policy .return-requirements .exceptions-box .box-header i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.retun-policy .return-requirements .exceptions-box .box-header h4 {
  font-size: 1.5rem;
  margin: 0;
}

.retun-policy .return-requirements .exceptions-box .exceptions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item {
  text-align: center;
  padding: 20px;
  background-color: var(--background-color);
  border-radius: 15px;
  transition: all 0.3s;
}

.retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item:hover {
  transform: scale(1.05);
}

.retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: block;
}

.retun-policy .return-requirements .exceptions-box .exceptions-grid .exception-item span {
  font-weight: 500;
}

.retun-policy .return-steps {
  margin-bottom: 70px;
  text-align: center;
}

.retun-policy .return-steps h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.retun-policy .return-steps .steps-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.retun-policy .return-steps .steps-timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
}

@media (max-width: 991px) {
  .retun-policy .return-steps .steps-timeline {
    flex-direction: column;
    gap: 30px;
  }

  .retun-policy .return-steps .steps-timeline::before {
    display: none;
  }
}

.retun-policy .return-steps .step-item {
  flex: 1;
  position: relative;
  padding: 0 15px;
}

.retun-policy .return-steps .step-item .step-number {
  width: 50px;
  height: 50px;
  background-color: var(--surface-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
  position: relative;
  z-index: 1;
}

.retun-policy .return-steps .step-item .step-content h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.retun-policy .return-steps .step-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.retun-policy .return-steps .step-item.active .step-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.retun-policy .return-faqs {
  margin-bottom: 70px;
}

.retun-policy .return-faqs .faq-header h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.retun-policy .return-faqs .faq-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.retun-policy .return-faqs .faq-header .contact-support {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.retun-policy .return-faqs .faq-header .contact-support:hover {
  transform: translateX(5px);
}

.retun-policy .return-faqs .faq-header .contact-support i {
  font-size: 1.5rem;
}

.retun-policy .return-faqs .faq-list .faq-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 15px;
}

.retun-policy .return-faqs .faq-list .faq-item h3 {
  margin: 0;
  padding: 20px 25px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--heading-color);
}

.retun-policy .return-faqs .faq-list .faq-item h3 i {
  color: var(--accent-color);
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.retun-policy .return-faqs .faq-list .faq-item .faq-answer {
  display: none;
  padding: 0 25px 20px;
}

.retun-policy .return-faqs .faq-list .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.retun-policy .return-faqs .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.retun-policy .return-faqs .faq-list .faq-item.faq-active h3 i {
  transform: rotate(45deg);
}

.retun-policy .return-faqs .faq-list .faq-item.faq-active .faq-answer {
  display: block;
}

.retun-policy .return-cta {
  text-align: center;
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.retun-policy .return-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
}

.retun-policy .return-cta h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.retun-policy .return-cta p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.retun-policy .return-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.retun-policy .return-cta .cta-buttons a {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.retun-policy .return-cta .cta-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.retun-policy .return-cta .cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.retun-policy .return-cta .cta-buttons .btn-secondary {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.retun-policy .return-cta .cta-buttons .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-3px);
}

@media (max-width: 576px) {
  .retun-policy .return-cta {
    padding: 40px 20px;
  }

  .retun-policy .return-cta .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .retun-policy .return-hero .hero-content h2 {
    font-size: 2.5rem;
  }

  .retun-policy .return-hero .return-period-box .box-content {
    padding: 15px 30px;
  }

  .retun-policy .return-hero .return-period-box .box-content .days {
    font-size: 2.5rem;
  }

  .retun-policy .return-hero .return-period-box .box-content .text {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Paymnt Methods Section
--------------------------------------------------------------*/
.paymnt-methods .payment-header {
  margin-bottom: 60px;
}

.paymnt-methods .payment-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.paymnt-methods .payment-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
}

.paymnt-methods .payment-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

.paymnt-methods .payment-options {
  margin-bottom: 70px;
}

.paymnt-methods .payment-options .payment-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s;
}

.paymnt-methods .payment-options .payment-card:hover {
  transform: translateY(-10px);
}

.paymnt-methods .payment-options .payment-card:hover .icon-box {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.paymnt-methods .payment-options .payment-card:hover .icon-box i {
  color: var(--contrast-color);
}

.paymnt-methods .payment-options .payment-card .card-content {
  padding: 40px 30px;
  text-align: center;
}

.paymnt-methods .payment-options .payment-card .icon-box {
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s;
}

.paymnt-methods .payment-options .payment-card .icon-box i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.paymnt-methods .payment-options .payment-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.paymnt-methods .payment-options .payment-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.paymnt-methods .payment-options .payment-card .accepted-cards {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.paymnt-methods .payment-options .payment-card .accepted-cards .card-icon {
  padding: 8px 15px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.paymnt-methods .security-features {
  margin-bottom: 70px;
}

.paymnt-methods .security-features .security-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.paymnt-methods .security-features .security-content .subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.paymnt-methods .security-features .security-content .security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paymnt-methods .security-features .security-content .security-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.paymnt-methods .security-features .security-content .security-list li:last-child {
  margin-bottom: 0;
}

.paymnt-methods .security-features .security-content .security-list li i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.paymnt-methods .security-features .security-content .security-list li .feature-text h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.paymnt-methods .security-features .security-content .security-list li .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.paymnt-methods .security-features .process-steps {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

@media (max-width: 991px) {
  .paymnt-methods .security-features .process-steps {
    margin-top: 40px;
  }
}

.paymnt-methods .security-features .process-steps h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.paymnt-methods .security-features .process-steps .steps-list {
  display: grid;
  gap: 25px;
}

.paymnt-methods .security-features .process-steps .steps-list .step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.paymnt-methods .security-features .process-steps .steps-list .step .step-number {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.paymnt-methods .security-features .process-steps .steps-list .step .step-content h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.paymnt-methods .security-features .process-steps .steps-list .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.paymnt-methods .payment-faqs {
  margin-bottom: 70px;
}

.paymnt-methods .payment-faqs h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.paymnt-methods .payment-faqs .faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item h3 {
  margin: 0;
  padding: 20px 25px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item h3 i {
  transition: transform 0.3s;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item .faq-answer {
  display: none;
  padding: 0 25px 20px;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active h3 i {
  transform: rotate(180deg);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active .faq-answer {
  display: block;
}

.paymnt-methods .payment-support .support-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.paymnt-methods .payment-support .support-content i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.paymnt-methods .payment-support .support-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.paymnt-methods .payment-support .support-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.paymnt-methods .payment-support .support-content .support-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .paymnt-methods .payment-support .support-content .support-actions {
    flex-direction: column;
  }
}

.paymnt-methods .payment-support .support-content .support-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.paymnt-methods .payment-support .support-content .support-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.paymnt-methods .payment-support .support-content .support-actions .btn-primary i {
  font-size: 1.2rem;
  margin: 0;
}

.paymnt-methods .payment-support .support-content .support-actions .divider {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

@media (max-width: 576px) {
  .paymnt-methods .payment-support .support-content .support-actions .divider {
    display: none;
  }
}

.paymnt-methods .payment-support .support-content .support-actions .contact-email {
  color: var(--heading-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.paymnt-methods .payment-support .support-content .support-actions .contact-email:hover {
  color: var(--accent-color);
}

.paymnt-methods .payment-support .support-content .support-actions .contact-email i {
  font-size: 1.2rem;
  margin: 0;
}

/*--------------------------------------------------------------
# Shipping Info Section
--------------------------------------------------------------*/
.shipping-info .content-block {
  padding: 60px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.shipping-info .content-block:first-child {
  padding-top: 0;
}

.shipping-info .content-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.shipping-info .content-block .section-heading {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.shipping-info .content-block .section-heading i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.shipping-info .content-block .section-heading h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.shipping-info .content-block .section-heading p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.shipping-info .delivery-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
}

.shipping-info .delivery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.shipping-info .delivery-card .card-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.shipping-info .delivery-card .card-icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.shipping-info .delivery-card h4 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.shipping-info .delivery-card p {
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.shipping-info .delivery-card .delivery-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
}

.shipping-info .delivery-card .delivery-time i {
  font-size: 1.1rem;
}

.shipping-info .shipping-rates {
  display: grid;
  gap: 20px;
}

.shipping-info .shipping-rates .rate-item {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
}

.shipping-info .shipping-rates .rate-item:hover {
  transform: translateY(-5px);
}

.shipping-info .shipping-rates .rate-item.highlight {
  border: 2px solid var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.shipping-info .shipping-rates .rate-item .rate-type {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.shipping-info .shipping-rates .rate-item .rate-cost {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.shipping-info .shipping-rates .rate-item .rate-info {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.shipping-info .international-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.shipping-info .international-info .info-item {
  text-align: center;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: transform 0.3s;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
}

.shipping-info .international-info .info-item:hover {
  transform: translateY(-5px);
}

.shipping-info .international-info .info-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.shipping-info .international-info .info-item h5 {
  margin-bottom: 10px;
}

.shipping-info .international-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.shipping-info .faq-list .faq-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.03);
}

.shipping-info .faq-list .faq-item h3 {
  margin: 0;
  padding: 20px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
  transition: color 0.3s;
}

.shipping-info .faq-list .faq-item h3 i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.shipping-info .faq-list .faq-item h3 i.faq-toggle {
  margin-left: auto;
  transition: transform 0.3s;
}

.shipping-info .faq-list .faq-item .faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.shipping-info .faq-list .faq-item .faq-answer p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.shipping-info .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.shipping-info .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(180deg);
}

.shipping-info .faq-list .faq-item.faq-active .faq-answer {
  display: block;
}

@media (max-width: 767px) {
  .shipping-info .delivery-card {
    padding: 20px;
  }

  .shipping-info .delivery-card .card-icon {
    width: 50px;
    height: 50px;
  }

  .shipping-info .delivery-card .card-icon i {
    font-size: 1.5rem;
  }

  .shipping-info .international-info {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;

  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.product-categories-widget .category-tree {
  margin-top: 1rem;
}

.product-categories-widget .category-tree .category-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 0;
}

.product-categories-widget .category-tree .category-item:last-child {
  border-bottom: none;
}

.product-categories-widget .category-tree .category-item .category-header {
  cursor: pointer;
  transition: all 0.3s;
}

.product-categories-widget .category-tree .category-item .category-header:hover .category-link {
  color: var(--accent-color);
}

.product-categories-widget .category-tree .category-item .category-header:hover .category-toggle {
  color: var(--accent-color);
}

.product-categories-widget .category-tree .category-item .category-link {
  color: var(--default-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .category-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .category-toggle .bi-chevron-up {
  display: none;
}

.product-categories-widget .category-tree .category-item .category-header:not(.collapsed) .category-toggle .bi-chevron-down {
  display: none;
}

.product-categories-widget .category-tree .category-item .category-header:not(.collapsed) .category-toggle .bi-chevron-up {
  display: inline;
}

.product-categories-widget .category-tree .category-item .subcategory-list li {
  padding: 0.5rem 0;
}

.product-categories-widget .category-tree .category-item .subcategory-list li:first-child {
  padding-top: 0.75rem;
}

.product-categories-widget .category-tree .category-item .subcategory-list li:last-child {
  padding-bottom: 0;
}

.product-categories-widget .category-tree .category-item .subcategory-list .subcategory-link {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .subcategory-list .subcategory-link:hover {
  color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .product-categories-widget .category-tree .category-item {
    padding: 0.625rem 0;
  }

  .product-categories-widget .category-tree .category-item .subcategory-list li {
    padding: 0.4rem 0;
  }
}

.pricing-range-widget .price-range-container .current-range {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

.pricing-range-widget .price-range-container .range-slider {
  position: relative;
  height: 1.5rem;
  margin: 1.5rem 0;
}

.pricing-range-widget .price-range-container .range-slider .slider-track {
  position: absolute;
  width: 100%;
  height: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 0.25rem;
}

.pricing-range-widget .price-range-container .range-slider .slider-progress {
  position: absolute;
  height: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent-color);
  border-radius: 0.25rem;
}

.pricing-range-widget .price-range-container .range-slider input[type=range] {
  position: absolute;
  width: 100%;
  height: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.pricing-range-widget .price-range-container .range-slider input[type=range]::-webkit-slider-thumb {
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease;
}

.pricing-range-widget .price-range-container .range-slider input[type=range]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pricing-range-widget .price-range-container .range-slider input[type=range]::-moz-range-thumb {
  height: 1.25rem;
  width: 1.25rem;
  border: none;
  border-radius: 50%;
  background-color: var(--accent-color);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease;
}

.pricing-range-widget .price-range-container .range-slider input[type=range]::-moz-range-thumb:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.pricing-range-widget .price-range-container .range-slider input[type=range]:focus {
  outline: none;
}

.pricing-range-widget .price-range-container .range-slider input[type=range]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.pricing-range-widget .price-range-container .range-slider input[type=range]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.pricing-range-widget .price-range-container .range-slider .min-range {
  z-index: 1;
}

.pricing-range-widget .price-range-container .range-slider .max-range {
  z-index: 2;
}

.pricing-range-widget .price-range-container .price-inputs .input-group-text {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.pricing-range-widget .price-range-container .price-inputs .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.pricing-range-widget .price-range-container .price-inputs .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.pricing-range-widget .price-range-container .price-inputs .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing-range-widget .price-range-container .filter-actions .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
  font-size: 16px;
  padding: 10px 20px;
}

.pricing-range-widget .price-range-container .filter-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.pricing-range-widget .price-range-container .filter-actions .btn-primary:focus {
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.brand-filter-widget .brand-filter-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.brand-filter-widget .brand-search {
  position: relative;
  margin-bottom: 5px;
}

.brand-filter-widget .brand-search input {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 10px 35px 10px 15px;
}

.brand-filter-widget .brand-search input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.brand-filter-widget .brand-search input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.brand-filter-widget .brand-search .bi-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.brand-filter-widget .brand-list {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 5px;
  /* Custom scrollbar */
}

.brand-filter-widget .brand-list::-webkit-scrollbar {
  width: 5px;
}

.brand-filter-widget .brand-list::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 10px;
}

.brand-filter-widget .brand-list::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 10px;
}

.brand-filter-widget .brand-list::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--default-color), transparent 60%);
}

.brand-filter-widget .brand-item {
  margin-bottom: 10px;
}

.brand-filter-widget .brand-item:last-child {
  margin-bottom: 0;
}

.brand-filter-widget .brand-item .form-check {
  display: flex;
  align-items: center;
  margin: 0;
}

.brand-filter-widget .brand-item .form-check-input {
  margin-top: 0;
  margin-right: 10px;
  cursor: pointer;
}

.brand-filter-widget .brand-item .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: none;
}

.brand-filter-widget .brand-item .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.brand-filter-widget .brand-item .form-check-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  color: var(--default-color);
}

.brand-filter-widget .brand-item .brand-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: auto;
}

.brand-filter-widget .brand-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.brand-filter-widget .brand-actions .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.brand-filter-widget .brand-actions .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.brand-filter-widget .brand-actions .btn-link {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.brand-filter-widget .brand-actions .btn-link:hover {
  color: var(--default-color);
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .brand-filter-widget .brand-list {
    max-height: 200px;
  }
}

.color-filter-widget .color-filter-content .color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.color-filter-widget .color-filter-content .color-options .color-option {
  margin: 0;
  padding: 0;
  position: relative;
  flex: 0 0 auto;
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch {
  transform: scale(1.15);
  border: 2px solid var(--accent-color);
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.9;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch[style*="background-color: #ffffff"]::after {
  background-color: var(--accent-color);
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch[style*="background-color: #f1c40f"]::after,
.color-filter-widget .color-filter-content .color-options .color-option .form-check-input:checked~.form-check-label .color-swatch[style*="background-color: #2ecc71"]::after {
  background-color: rgba(0, 0, 0, 0.5);
}

.color-filter-widget .color-filter-content .color-options .color-option .form-check-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.color-filter-widget .color-filter-content .color-options .color-option .color-swatch {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.2s ease;
}

.color-filter-widget .color-filter-content .color-options .color-option .color-swatch:hover {
  transform: scale(1.1);
  border-color: var(--accent-color);
}

.color-filter-widget .color-filter-content .color-options .color-option .color-swatch[style*="background-color: #ffffff"] {
  border: 1px solid #e0e0e0;
}

.color-filter-widget .color-filter-content .filter-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.color-filter-widget .color-filter-content .filter-actions .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.color-filter-widget .color-filter-content .filter-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.color-filter-widget .color-filter-content .filter-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.color-filter-widget .color-filter-content .filter-actions .btn.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 70%);
}

.color-filter-widget .color-filter-content .filter-actions .btn.btn-outline-secondary {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.color-filter-widget .color-filter-content .filter-actions .btn.btn-outline-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
}

@media (max-width: 575.98px) {
  .color-filter-widget .color-filter-content .color-options {
    justify-content: center;
  }
}

 
        .grid-layout {
            display: grid;
            gap: 18px;
            margin-top: 10px;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 120px;
        }
        /* ---------- Card common ---------- */
        .tile {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(11, 17, 32, 0.00);
            color: #fff;
            display: flex;
            align-items: stretch;
            min-height: 80px;
        }
        /* Dimmer for text contrast - increased for better visibility */
        .tile:after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.25); /* Increased opacity for better contrast */
            z-index: 1;
        }
        /* background layer */
        .tile__bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform-origin: center;
            z-index: 0;
        }
        /* content sits above bg */
        .tile__content {
            position: relative;
            z-index: 2;
            padding: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
        }
        .label {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); /* Stronger shadow for readability */
        }
        .label a { color: inherit; opacity: 1; }
        h2, h3 {
            margin: 0;
            line-height: 1.05;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.01em;
            text-shadow: 0 0px 0px rgba(0, 0, 0, 0.0); /* Enhanced shadow for visibility */
        }
        .subtitle {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .tile .action {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 8px rgba(11, 17, 32, 0.06);
            font-weight: 700;
            font-size: 0.95rem;
            color: #07102a;
            text-decoration: none;
            align-self: flex-start;
        }
        .subtle-link { font-size: 0.9rem; color: #fff; font-weight: 600; text-decoration: underline; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); }
        /* small play button style used on hero */
        .video-btn {
            width: 44px; height: 44px; border-radius: 999px; background: rgba(255, 255, 255, 0.95);
            display: inline-grid; place-items: center; box-shadow: 0 4px 10px rgba(7, 16, 42, 0.12);
            text-decoration: none; font-weight: 800;
            color: #07102a;
        }
        /* ---------- Individual tile placements (desktop) ---------- */
        .feature { grid-column: 1 / span 8; grid-row: 1 / span 2; }
        .phone { grid-column: 9 / span 4; grid-row: 1 / span 1; }
        .travel { grid-column: 9 / span 4; grid-row: 2 / span 1; }
        .cleaning { grid-column: 1 / span 4; grid-row: 3 / span 2; }
        .baby { grid-column: 5 / span 4; grid-row: 3 / span 2; }
        .market { grid-column: 9 / span 4; grid-row: 3 / span 2; }
        /* ---------- Type adjustments for feature tile ---------- */
        .feature h1 { font-size: 2.2rem; color: #fff; margin: 0; line-height: 1.02; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9); }
        .feature .label { color: #fff; font-weight: 700; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); }
        .feature .tile__content { padding: 26px; justify-content: flex-start; gap: 10px; }
        /* ---------- Responsive Breakpoints ---------- */
        @media (max-width: 1199px) {
            .grid-layout { grid-template-columns: repeat(8, 1fr); grid-auto-rows: 110px; gap: 14px; }
            .feature { grid-column: 1 / span 8; grid-row: 1 / span 2; }
            .phone { grid-column: 1 / span 4; grid-row: 3 / span 1; }
            .travel { grid-column: 5 / span 4; grid-row: 3 / span 1; }
            .cleaning { grid-column: 1 / span 4; grid-row: 4 / span 2; }
            .baby { grid-column: 5 / span 4; grid-row: 4 / span 2; }
            .market { grid-column: 1 / span 8; grid-row: 6 / span 1; }
            .tile h2 { font-size: 1.15rem; }
            .feature h1 { font-size: 1.8rem; }
            .tile__content { padding: 16px; }
        }
        @media (max-width: 899px) {
            .grid-layout {
                grid-template-columns: repeat(6, 1fr);
                grid-auto-rows: 140px;
                gap: 14px;
            }
            .feature { grid-column: 1 / span 6; grid-row: 1 / span 2; }
            .phone { grid-column: 1 / span 3; grid-row: 3 / span 1; }
            .travel { grid-column: 4 / span 3; grid-row: 3 / span 1; }
            .cleaning { grid-column: 1 / span 3; grid-row: 4 / span 2; }
            .baby { grid-column: 4 / span 3; grid-row: 4 / span 2; }
            .market { grid-column: 1 / span 6; grid-row: 6 / span 1; }
            .tile h2 { font-size: 1.15rem; }
            .feature h1 { font-size: 1.8rem; }
            .tile__content { padding: 16px; }
        }
        @media (max-width: 599px) {
            .grid-layout {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
                gap: 12px;
            }
            .tile { min-height: 120px; }
            .feature { border-radius: 12px; min-height: 200px; }
            .feature h1 { font-size: 1.5rem; line-height: 1.2; }
            .tile h2 { font-size: 1.1rem; }
            .label, .subtitle { font-size: 0.9rem; }
            .tile .action { font-size: 0.9rem; padding: 7px 12px; }
            .tile__content { padding: 14px; }
        }
        /* small polish */
        .tile small { display: block; margin-bottom: 8px; color: rgba(255, 255, 255, 0.6); font-weight: 700; }
        .tile h2 { font-size: 1.05rem; }
        .tile .sub { font-size: 0.92rem; color: #fff; font-weight: 600; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7); }
        /* Carousel styling */
        .slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .slider__track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        .slider__item {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 26px;
        }
        .slider__content {
            flex: 1;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .slider__nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 2;
        }
        .slider__dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
        }
        .slider__dot.active {
            background: rgba(255, 255, 255, 1);
        }
        
        /* ===== FEATURE CAROUSEL: ensure write-up is pure white & visible ===== */
/* Scope only to the feature tile (your carousel) */
.grid-layout .feature {
  position: relative; /* create stacking context for children */
}

/* Remove the global tile dimmer for the feature tile only
   so we can control the overlay specifically for the carousel */
.grid-layout .feature::after {
  display: none !important;
}

/* Ensure each slide can host its own overlay */
.grid-layout .feature .slider__item {
  position: relative;   /* required for ::before overlay to work */
  overflow: hidden;
}

/* Strong, dark gradient overlay for the slide (behind text) */
.grid-layout .feature .slider__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
              rgba(0,0,0,0.0) 0%,
              rgba(0,0,0,0.0) 0%,
              rgba(0,0,0,0.0) 0%);
}

/* Put the content above the overlay */
.grid-layout .feature .slider__content {
  position: relative;
  z-index: 2;
}

/* Force all carousel text to pure white and add a strong shadow for readability */
.grid-layout .feature .slider__content .label,
.grid-layout .feature .slider__content h1,
.grid-layout .feature .slider__content p,
.grid-layout .feature .slider__content .subtle-link {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9) !important;
}

/* Buttons inside carousel: keep original visible styles but ensure contrast */
.grid-layout .feature .slider__content .action {
  background: #ffffff !important;
  color: #07102a !important;
  z-index: 3;
}
.grid-layout .feature .slider__content .video-btn {
  z-index: 3;
}

/* Dots contrast */
.grid-layout .feature .slider__dot {
  background: rgba(255,255,255,0.6) !important;
}
.grid-layout .feature .slider__dot.active {
  background: #ffffff !important;
  transform: scale(1.05) !important;
}

/* Mobile tweak — keep the same visibility and spacing on smaller screens */
@media (max-width: 599px) {
  .grid-layout .feature .slider__item::before {
    background: linear-gradient(180deg,
                rgba(0,0,0,0.6) 0%,
                rgba(0,0,0,0.72) 30%,
                rgba(0,0,0,0.48) 30%);
  }
  .grid-layout .feature .slider__content h1 { font-size: 1.5rem; }
  .grid-layout .feature .slider__content p  { font-size: 0.95rem; }
}

        
        
       .flash-sales {
  margin-top: 10px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 0px;
  position: relative;
  overflow: hidden;
}

.flash-sales-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.sales-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
 margin-top: 15px;
}


.sales-category-header h1 {
  color: #000;
  font-size: 20px;
  margin: 0;
}


.flash-sales-header h1 {
  color: #000;
  font-size: 20px;
  margin: 0;
}

.flash-sales-header h2 {
  color: #ca0f0f;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
}

.flash-sales-header span {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.slider-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slider-container::-webkit-scrollbar {
  display: none;
}

/* Card Styling */
.card {
    /* Fixed Dimensions for Grid Consistency */
    min-width: 190px;
    max-width: 190px;
    
    /* Base Appearance */
    background: #ffffff;
    border-radius: 0px; /* Slightly more rounded corners */
    margin-right: 15px;
    overflow: hidden; 
    
    /* Initial subtle elevation for depth */
    box-shadow: none; 
    border: none; /* Thin, light border for definition */

    /* Smooth Transitions for Hover */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Interaction & Accessibility */
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Premium Hover Effect */
.card:hover {
    /* Lifts the card and casts a deeper shadow */
    transform: translateY(-4px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
    border-color: transparent; /* Border disappears into shadow */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    /* Optional: Scale the image slightly on hover for an enhanced effect */
    transition: transform 0.3s ease-out; 
}

.card:hover img {
    transform: scale(1.03); /* Subtle zoom effect on image on hover */
}

.card-content {
    /* Adjusted padding for cleaner spacing */
    padding: 12px 10px;
}



.card h4 {
    /* Product Name Styling (Darker, more professional) */
   font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #0f172a;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* change this to 1 / 2 / 3 lines as needed */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* required for multi-line clamp */
    transition: color 0.2s ease;
    cursor: default;
}

.card .price-group {
    display: flex;
    flex-direction: column;
    padding: 5px 0 0 0; /* Clean up padding around prices */
}

.card .price {
    /* Prominent, bold active price */
    color: #ff5e00; /* A professional blue often used for active prices */
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 2px;
}

.card .old-price {
    /* Subtle strike-through price */
    text-decoration: line-through;
    font-size: 16px;
    color: #a0a0a0; /* Lighter color for secondary info */
    display: block;
    font-weight: 600;
    margin-top: 0;
}


/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  transition: all 0.3s ease;
}

.arrow:hover {
  background: #f5f5f5;
}

.arrow-left {
  left: 5px;
  display: none;
}

.arrow-right {
  right: 5px;
}

    
    
     .grid-section {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 350px);
      gap: 1.5rem;
      padding: 1rem;
      max-width: 100%;
      margin: 0 auto;
    }

    .grid-item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      display: flex;
      align-items: flex-end;
      padding: 2rem;
    }

    .grid-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      z-index: 1;
    }

    .grid-content {
      position: relative;
      z-index: 2;
      color: #ffffff;
      
    }

    .grid-item h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .grid-item p {
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    .grid-item button,
    .grid-item a {
      display: inline-flex;
      align-items: center;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 25px;
      background: #ff6f00;
      color: #ffffff;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .grid-item button:hover,
    .grid-item a:hover {
      background: #e65c00;
      transform: translateY(-2px);
    }

    /* Card placements */
    .grid-large {
     grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  background-image: url('../../assets/img/ecom18.jpg');

  /* override the base .grid-item flex alignment */
  display: flex;
  align-items: flex-start;   /* push content to the top */
  justify-content: flex-start;
  padding-top: 2rem;         /* spacing from top edge */
    }
    
    .grid-large .grid-content {
  margin-top: 0;             /* reset if it had bottom spacing */
}

    .grid-top {
      background-image: url('../../assets/img/ecom14.jpg');
    }

    .grid-right {
      background-image: url('../../assets/img/ecom14.jpg');
    }

    .grid-bottom-left {
      background-image: url('../../assets/img/ecom14.jpg');
    }

    .grid-bottom-right {
      background-image: url('../../assets/img/ecom14.jpg');
    }

    /* Tablet view */
    @media (max-width: 1024px) {
      .grid-section {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1rem;
        padding: 1.5rem;
      }

      .grid-large {
        grid-column: 1 / span 2;
        min-height: 400px;
      }

      .grid-item {
        min-height: 250px;
      }

      .grid-item h2 {
        font-size: 1.5rem;
      }

      .grid-item p {
        font-size: 0.9rem;
      }
    }

    /* Mobile view */
    @media (max-width: 768px) {
      .grid-section {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 0.75rem;
        padding: 1rem;
      }

      .grid-large {
        grid-column: 1 / span 2;
        min-height: 300px;
      }

      .grid-item {
        min-height: 180px;
        padding: 1.5rem;
      }

      .grid-item h2 {
        font-size: 1.1rem;
      }

      .grid-item p {
        font-size: 0.8rem;
      }

      .grid-item button,
      .grid-item a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
      }
    }
    
    
      .filter-sidebar {
            width: 300px;
            background-color: #fff;
            border-right: 1px solid #ddd;
            padding: 15px;
            border-radius: 0px;
            transition: bottom 0.3s ease;
        }

        @media (max-width: 768px) {
            .filter-sidebar {
                position: fixed;
                bottom: -100%;
                left: 0;
                width: 100%;
                height: 80vh;
                overflow-y: auto;
                z-index: 1000;
                border-radius: 0;
                border: none;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                padding: 0;
            }

            .filter-sidebar.active {
                bottom: 0;
            }

            .filter-header {
                position: sticky;
                top: 0;
                background-color: #fff;
                padding: 10px 15px;
                border-bottom: 1px solid #ddd;
                display: flex;
                justify-content: space-between;
                align-items: center;
                z-index: 1001;
            }

            .filter-header h3 {
                font-size: 16px;
                font-weight: 700;
                margin: 0;
                color: #0f1111;
            }

            .close-button {
                background-color: #ff4444;
                color: #fff;
                border: none;
                padding: 5px 10px;
                border-radius: 50%;
                font-size: 14px;
                cursor: pointer;
                z-index: 1002;
            }

            .filter-button {
    display: block;
    position: relative; /* ✅ not fixed anymore */
    float: right;       /* ✅ keeps it on the right side */
    background-color: #e8eef2;
    color:  #3b6075;
    border: none;
    padding: 10px 35px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin: 0px 0 -0px 0; /* top & bottom spacing */
    cursor: pointer;
}

        }

        @media (min-width: 769px) {
            .filter-button, .close-button {
                display: none;
            }
        }

        .filter-content {
            padding: 15px;
        }

        .filter-section {
            margin-bottom: 20px;
        }

        .filter-section h3 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #0f1111;
        }

        .filter-option {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .filter-option input[type="checkbox"] {
            margin-right: 8px;
            accent-color: #1475cb;
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        .filter-option label {
            font-size: 13px;
            cursor: pointer;
            color: #0f1111;
        }

        .see-more {
            font-size: 12px;
            color: #1475cb;
            text-decoration: none;
            margin-top: 5px;
            display: block;
        }

        /* Price Slider Styles */
        .price-range {
            margin-top: 10px;
        }

        .price-range .slider-container {
            position: relative;
            height: 5px;
            background: #ddd;
            border-radius: 5px;
            margin: 20px 0;
        }

        .price-range .slider-container .slider {
            position: absolute;
            height: 5px;
            background: #1475cb;
            border-radius: 5px;
        }

        .price-range .thumb {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #fff;
            border: 2px solid #1475cb;
            border-radius: 50%;
            cursor: grab;
            top: -8px;
        }

        .price-range .thumb.min {
            left: 10%;
        }

        .price-range .thumb.max {
            right: 60%;
        }

        .price-range .price-display {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: #0f1111;
        }

        .price-option {
            font-size: 13px;
            color: #0f1111;
            margin: 5px 0;
            cursor: pointer;
        }

        .price-option:hover {
            text-decoration: underline;
        }

        .rating-section {
            margin-top: 10px;
        }

        .rating-section .stars {
            color: #ff9900;
            font-size: 14px;
        }

        .rating-section .and-up {
            font-size: 12px;
            color: #0f1111;
        }
        
      .logo-container {
  width: 100%;
  text-align: center;   /* centers inline children */
}

.logo-link img {
  width: 40%;
  max-width: 180px;     /* limit so it doesn't get huge on desktop */
  height: auto;
  display: inline-block;
}


/* Hide all submenus by default */
.mobile-megamenu li ul {
    display: none;
    padding-left: 15px; /* optional */
}

/* Show submenu when active */
.mobile-megamenu li.active > ul.dropdown-active {
    display: block;
}

.auth-form-content{
    margin-top: -20px;
}

#loginForm .error-message {
  display: block;
  font-size: 0.85rem;
  color: #b71c1c;
  font-weight: 600;
  text-align: left;
  margin-bottom: 4px;
  min-height: 20px; /* keeps space consistent even if empty */
}

#loginForm input.is-invalid {
  border-color: #b71c1c !important;
  box-shadow: 0 0 0 2px rgba(183,28,28,0.15);
}



.overlay-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Less dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* Overview Cards */
    .overview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 5px;
      margin-bottom: 24px;
      margin-top: 10px;
    }

    .overview-card {
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      border: 1px solid #e5e7eb;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .overview-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .card-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 12px;
    }

    .card-icon.orders { background-color: #e6f3ff; color: #0066cc; }
    .card-icon.wallet { background-color: #e6fffa; color: #00a991; }
    .card-icon.wishlist { background-color: #fefcbf; color: #b7791f; }
    .card-icon.notifications { background-color: #fff7e6; color: #ff6200; }

    .overview-card h3 {
      font-size: 14px;
      font-weight: 500;
      color: #6b7280;
      margin-bottom: 8px;
    }

    .overview-card .metric {
      font-size: 28px;
      font-weight: 700;
      color: #111827;
    }

    .overview-card .subtext {
      font-size: 14px;
      color: #6b7280;
    }

    .card-action {
      margin-top: 12px;
      display: inline-block;
      padding: 8px 16px;
      background-color: #ff9900;
      color: #ffffff;
      text-decoration: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      transition: background-color 0.2s;
    }

    .card-action:hover {
      background-color: #e68a00;
    }

    /* Recent Orders */
    .orders-section {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      margin-bottom: 24px;
    }

    
    
    /* Card Styling */
.dashboard-card {
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    overflow: hidden;
    position: relative;
    margin-top: 0px;
    margin-bottom: 10px;
    height: 350px; /* ✅ Fixed height for desktop */
}

/* 🧩 Responsive: Remove fixed height on mobile */
@media (max-width: 768px) {
    .dashboard-card {
        height: auto; /* ✅ Allow natural height on mobile */
    }
}

        .balance-card {
            background-color: #4a5491;
            color: #fff;
        }
        .card-header {
            padding: 1.5rem;
            padding-bottom: 0;
        }
        .card-header > * + * {
            margin-top: 0.5rem;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-title-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
       .dashboard-card .card-title {
            font-size: 0.9em;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
        }
        .header-content a {
            color: #93c5fd;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        .header-content a:hover {
            color: #fff;
        }
        .metric-value-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding-bottom: 0.75rem;
             margin-top: 5px;
        }
        .metric-value {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }
        
          .metric-value-customer {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .metric-value-text {
            color: #fff;
        }
        
        
           .wallet-week-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 10px;
        }

        .wallet-week-value {
            font-size: 0.9em;
            font-weight: 600;
            margin: 0;
        }

        .wallet-week-info {
            text-align: right;
        }

        .wallet-week-compare {
            font-size: 0.8em;
            opacity: 0.8;
        }
        
        .wallet-percentage {
            font-size: 0.9em;
            font-weight: 600;
            color: #1dd1a1;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-bottom: 3px;
        }

        .wallet-arrow {
            font-size: 0.8em;
            margin-right: 2px;
        }
        .sub-text {
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            margin-top: -5px;
            color: rgba(255, 255, 255, 0.8);
        }
        .change-pill {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 0.85rem;
            color: #4ade80; /* Positive change color */
        }
        .change-arrow {
            font-size: 0.9em;
            margin-right: 2px;
        }
        .vs-text {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
        }
        /* Chart Container */
       .chart-container {
    width: 100%;
    height: 100px; /* Reduced height for compactness */
    margin-top: auto;
    position: relative;
    cursor: crosshair;
    padding-left: 1rem;
    padding-right: 1rem;
}
canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

        
        /* Footer and Buttons */
      .dashboard-card .action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal-width buttons */
    gap: 1rem;
    padding: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
        .action-buttons button {
            flex-grow: 1;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 0.25rem;
            cursor: pointer;
            border: none;
            transition: background-color 0.2s, transform 0.1s;
        }
        .action-buttons .primary-btn {
            background-color: #ff5e00;
            color: #fff;
        }
        .action-buttons .primary-btn:hover {
           background-color: #e65100;
        }
        .action-buttons .secondary-btn {
            background-color: #fff;
            color: #1f2937;
        }
        .action-buttons .secondary-btn:hover {
            background-color: #f3f4f6;
        }
        .action-buttons button:active {
            transform: scale(0.98);
        }
        /* Tooltip Styles */
        #chartTooltip {
            position: absolute;
            background-color: #333;
            color: #fff;
            padding: 6px 10px;
            border-radius: 4px;
            font-size: 0.75em;
            pointer-events: none;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: opacity 0.1s ease-in-out;
            z-index: 20;
        }
        #tooltipValue {
            display: block;
            font-weight: 700;
        }
        #tooltipDate {
            font-size: 0.75rem;
            color: #9ca3af;
        }

        .customer-chart-tooltip {
        position: fixed; /* Changed to fixed to match vendor tooltip behavior */
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 6px 10px;
        border-radius: 4px;
        font-size: 12px;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.2s;
        z-index: 1000; /* Ensure it appears above other elements */
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }
    #customerTooltipValue {
        font-weight: bold;
    }
    #customerTooltipDate {
        color: rgba(255, 255, 255, 0.7);
        font-size: 11px;
    }
    .tooltip-separator {
        color: rgba(255, 255, 255, 0.5);
    }
        /* --- CARD WRAPPER --- */
.tp-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 0px;
    padding-top: 10px;
    margin-top: 0px;
    margin-bottom: 10px
}

/* --- CARD HEADER & DROPDOWN STYLES --- */
.tp-top-products {
    flex: 2; 
}

.tp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;              /* fixed height */
    border-bottom: 1px solid #eee;
    padding: 0px 10px;           /* horizontal padding only */
    margin-bottom: 20px;
    position: relative;
    box-sizing: border-box;    /* ensures padding fits inside height */
}

.tp-card-header h2 {
    font-size: 1.09em;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 0;          /* keeps text vertically balanced */
}


/* DROPDOWN */
.tp-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.tp-dropdown-selected {
    font-size: 0.9em;
    color: #888;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 0;
}

.tp-dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #666;
    margin-left: 5px;
    transition: transform 0.2s;
}

.tp-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    min-width: 100px;
    overflow: hidden;
    margin-top: 5px;
    list-style: none;
    padding: 0;
}

.tp-dropdown-menu.active {
    display: block;
}

.tp-dropdown-menu li {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.9em;
    color: #333;
}

.tp-dropdown-menu li:hover {
    background-color: #f0f2f5;
}

.tp-dropdown-menu li.selected {
    font-weight: 600;
    color: #007bff; 
}

/* --- PRODUCT LIST --- */

.tp-product-list {
  max-height: 320px; /* Adjust height based on your design (enough for ~5 items) */
  overflow-y: auto;
  padding-right: 5px; /* space for scrollbar */
}

.tp-product-list::-webkit-scrollbar {
  width: 6px;
}

.tp-product-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.tp-product-list::-webkit-scrollbar-thumb:hover {
  background: #999;
}



.tp-product-list .tp-product-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px;
    padding-top: 0px;
    border-bottom: 1px solid #eee;
}

.tp-product-list .tp-product-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.tp-product-item img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    margin-right: 15px;
    object-fit: cover;
    background-color: #f5f5f5; 
}

.tp-product-details {
    flex-grow: 1;
}

.tp-product-name {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.tp-product-price-small {
    font-size: 16px;
    color: #ff5e00;
}

.tp-product-sales {
    text-align: right;
}

.tp-product-price-large {
    font-weight: bold;
    color: #0c9460;
    font-size: 1.0em;
    display: none; 
}

.tp-product-sales [data-period="Weekly"] {
    display: block;
}

.tp-product-sold {
    font-size: 0.8em;
    color: #888;
}

/* --- STORE STATISTICS --- */
.tp-store-statistics {
    flex: 1; 
    width: 100%
}

.tp-stats-list {
    display: flex;
    flex-direction: column;
}

.tp-stat-item {
    display: flex; 
    align-items: center;
    justify-content: space-between; 
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.tp-stat-item:last-child {
    border-bottom: none;
}

.tp-stat-content {
    margin-right: 15px; 
}

.tp-stat-label {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 5px;
}

.tp-stat-value {
    font-size: 1.0em;
    font-weight: 700;
    color: #333;
}

/* Icon Styles */
.tp-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.tp-icon-placeholder {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Icon Background Colors */
.tp-bg-blue { background-color: #e0f2f7; } 
.tp-bg-green { background-color: #e7f7e0; }
.tp-bg-pink { background-color: #f7e0e7; }
.tp-bg-purple { background-color: #efe0f7; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
 

    .tp-dashboard-container {
        flex-direction: column;
        gap: 15px;
    }

    .tp-top-products {
        flex: auto;
    }

    .tp-store-statistics {
        flex: auto;
        max-width: 100%;
    }
}


 /* Order Items (card layout for all screens) */
 
 .order-alert {
  background-color: #fff7ed;
  color: #92400e;
  border: 1px solid #fbbf24;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 13px;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-alert p {
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.topup-link {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}
.topup-link:hover {
  text-decoration: none;
}

 
 
    .order-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: calc(5 * 63px); /* adjust 70px based on your .order-item height */
  overflow-y: auto;           /* enable scrolling for this section */
  scrollbar-width: thin;      /* for Firefox */
  scrollbar-color: #ccc transparent; /* scrollbar color */
}

/* Optional: prettier scrollbar for Chrome, Edge, Safari */
.order-list::-webkit-scrollbar {
  width: 6px;
}
.order-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.order-list::-webkit-scrollbar-track {
  background: transparent;
}

.order-item {
  background: none;
  padding: 10px 20px;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name amount"
    "date status";
  align-items: center;
  border-bottom: 1px solid #eee;
}

    
     .order-item:first-child {
         margin-top: -10px;
     }
    .order-customer {
      grid-area: name;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: -20px;
    }
    
    .order-id {
        font-weight: 600; /* Make the ID bold */
        color: #333; /* Darker text for emphasis */
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* A clear, modern font */
        letter-spacing: 0.5px;
        font-size: 0.9em;
        padding-right: 20px;
        padding-top: 5px;
    }


    .order-date {
      grid-area: date;
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin: 0;
    }
    .order-amount {
      grid-area: amount;
      font-weight: 700;
      font-size: 0.9rem;
      margin: 0;
      text-align: right;
    }

    /* Status Labels */
    .status-label {
      grid-area: status;
      justify-self: end;
      padding: 5px 12px;
      border-radius: 9999px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: capitalize;
    }
    
    .status-x {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}
    .status-delivered {
     background-color: #E6F7E6;
  color: #1E7D32
    }
    .status-pending {
        background-color: #FFF4E5;
  color: #B36B00;
    }
    
    .status-processing {
  background-color: #E6F0FF;
  color: #1E5DBA;
} 
    .status-canceled {
      background-color: #FDEAEA;
  color: #C62828;
    }
    
    /* On Hold */
.status-hold {
  background-color: #FFF7CC;
  color: #9C8500;
}

/* Shipped */
.status-shipped {
  background-color: #E9F5FF;
  color: #0077B6;
}

/* Refunded */
.status-refunded {
  background-color: #F3E5F5;
  color: #7B1FA2;
}
    
    
    
    .apply-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 10vh; /* full height of screen */
  background: none; /* light background, optional */
}

.apply-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #4F46E5; /* modern purple */
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.apply-btn:hover {
  background: #4338CA;
  transform: translateY(-2px);
  color:#fff;
}

.apply-btn:active {
  background: #3730A3;
  transform: translateY(0);
}



.ws-product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1rem;
            margin-top: 1.0rem;
        }
        
        
        .ws-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 1.0rem;
}

@media (max-width: 991.98px) {
    .ws-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .ws-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

        /* --- Product Card Design (Namespaced: ws-product-card) --- */
        .ws-product-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid #f1f1f1;
             cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .ws-product-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-3px);
        }

        /* Image Placeholder (Namespaced: ws-product-image) */
       /* Styling for the Parent Container (the fixed boundary) */
.ws-product-image {
    width: 100%;
    height: 220px; /* This sets the *fixed* visible area */
    background-color: #e9ecef; /* Placeholder color, visible if image fails to load */
    /* REMOVE all flex, font, and object-fit properties from here */
    border-bottom: 1px solid #e9ecef;
    overflow: hidden; /* Crucial for hiding parts of the image that exceed the 220px height */
}

/* 🌟 NEW RULE: Styling the Image element itself 🌟 */
.ws-product-image img {
    width: 100%; /* Force the image to fill the parent's width */
    height: 100%; /* Force the image to fill the parent's height (220px) */
    
    /* This tells the browser how to fit the image into the container: */
    object-fit: cover; 
    /* The 'cover' value scales the image to fill the container, cropping parts if necessary, ensuring no empty space. */

    /* Optional: Center the image contents */
    object-position: center; 
}

        .ws-product-info {
            padding: 1.0rem;
            padding-bottom: 0px;
            flex-grow: 1;
        }

        .ws-product-title {
            font-size:14px;
            font-weight: 500;
            margin-bottom: 0.4rem;
            color: #212529;
        }

        .ws-product-category {
            font-size: 0.7rem;
            color: #6c757d;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ws-product-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ff5e00; /* Dark Teal */
            margin-top: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .ws-product-price small {
            font-size: 0.66em;
            font-weight: 500;
            color: #6c757d;
            display: block;
            margin-top: 3px;
        }

        /* --- Acquisition Button (Namespaced: ws-action-button-single) --- */
        .ws-action-button-single {
            width: 100%;
            padding: 1rem 0.2rem;
            background-color: #0056b3; /* Primary Blue */
            color: #ffffff;
            border: none;
            border-radius: 0 0 8px 8px;
            font-weight: 700;
            font-size: 11px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.2s, box-shadow 0.1s;
        }
        .ws-action-button-single:hover {
            background-color: #004080;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .ws-action-button-single.synced {
            background-color: #e9ecef;
            color: #6c757d;
            cursor: default;
        }
        .ws-action-button-single.synced:hover {
            background-color: #e9ecef;
        }
        
        .ws-icon {
            margin-right: 0.1rem;
            vertical-align: middle;
            font-size: 1.1rem;
        } 
        
        
        
        
        
         /* 1. Main Component Container */
        .ws-category-menu {
            padding: 0.1rem 0;
            background:#ffffff;
            margin-left: 15px;
            margin-right: 15px;
            border-radius: 15px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); 
            border-bottom: 1px solid #e0e0e0;
        }

        /* 2. Horizontal Navigation Container */
        .ws-category-nav {
            /* Core for horizontal, non-wrapping, scrollable layout */
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap; 
            overflow-x: auto; 
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
            
            margin: 0 1.5rem;
            padding: 0.5rem 0;
            
            /* Hide default scrollbar on some browsers for a cleaner look */
            scrollbar-width: none; /* Firefox */
        }
        .ws-category-nav::-webkit-scrollbar {
            display: none; /* Chrome/Safari/Opera */
        }

        /* 3. Individual Category Item */
        .ws-category-item {
            flex-shrink: 0; 
            display: flex;
            align-items: center;
            padding: 0.6rem 1.4rem;
            margin-right: 0.75rem;
            
            font-size: 0.75rem;
            font-weight: 500;
            color: #495057;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            
            border: 1px solid transparent;
            border-radius: 4px;
            transition: all 0.2s ease-in-out;
            white-space: nowrap;
        }

        /* Hover State */
        .ws-category-item:hover {
            background-color: #f1f3f5;
            color: #0056b3; 
        }

        /* Active State */
        .ws-category-item.active {
            background-color: #0056b3; /* Deep, professional blue */
            color: #fff;
            font-weight: 600;
            border-color: #0056b3;
            box-shadow: 0 2px 8px rgba(0, 86, 179, 0.3);
        }
        .ws-category-item.active:hover {
            background-color: #004080; 
            color: #fff;
        }

        /* Icon Styling */
        .ws-category-item i {
            font-size: 1.1rem;
            margin-right: 0.5rem;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .ws-category-nav {
                margin: 0 1rem;
            }
            .ws-category-item {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
        } 
        
        
        
         /* --- Layout Containers --- */
        .ws-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 1rem;
        }
        @media (min-width: 768px) {
            .ws-container {
                padding: 2rem;
            }
        }

        /* --- Global Button Style (Primary) --- */
        .ws-button-primary {
            background-color: #0056b3; /* Replaced --primary-blue */
            color: #ffffff;
            padding: 0.75rem 1.25rem;
            font-weight: 600;
             font-size: 0.75rem;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
            white-space: nowrap;
        }
        .ws-button-primary:hover {
            background-color: #004080; /* Replaced --primary-dark */
            color:  #adb6d0;
            transform: translateY(-1px);
        }
        .ws-button-primary:focus {
            outline: 3px solid rgba(0, 86, 179, 0.5); /* Replaced --focus-ring */
        }

        /* --- Card Styling --- */
        .ws-card {
            background-color: #ffffff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); 
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #f0f0f0; 
        }
        
        /* --- Header Bar --- */
        .ws-header-bar {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
        }
        @media (min-width: 768px) {
            .ws-header-bar {
                flex-direction: row;
                align-items: center;
            }
        }

        .ws-header-bar h1 {
            font-size: 2.25rem;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 0.25rem;
        }
        .ws-header-bar p {
            color: #868e96;
            font-size: 1.125rem;
        }

        /* User ID Display (Stylized Placeholder) */
        .ws-user-info {
            margin-top: 1rem;
            text-align: right;
            background-color: #f8f9fa;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
        }
        @media (min-width: 768px) {
            .ws-user-info {
                margin-top: 0;
            }
        }
        
        /* --- Search & Filter Bar (New Addition) --- */
        .ws-controls-bar {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            border-bottom: 1px solid #e9ecef; /* Replaced --border-light */
        }
        @media (min-width: 1024px) {
            .ws-controls-bar {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }
        
        .ws-search-filter-group {
            display: flex;
            gap: 0.5rem;
            flex-direction: column;
        }
        @media (min-width: 768px) {
             .ws-search-filter-group {
                flex-direction: row;
                align-items: center;
            }
        }

        .ws-search-input {
            flex-grow: 1;
            padding: 0.75rem 1rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 0.75rem;
            min-width: 250px;
            transition: border-color 0.2s;
        }
        .ws-search-input:focus {
            border-color: #0056b3; /* Replaced --primary-blue */
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.5); /* Replaced --focus-ring */
        }

        .ws-filter-dropdown {
            padding: 0.75rem 1rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            background-color: #ffffff;
            cursor: pointer;
            font-size: 0.75rem;
            appearance: none; /* Remove default arrow */
            background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M7 10l5 5 5-5H7z" fill="%23495057"/></svg>');
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
        }
        
        /* --- Bulk Actions Bar (New Addition) --- */
        .ws-bulk-actions {
            background-color: #0056b3; /* Replaced --primary-blue */
            color: #ffffff;
            padding: 1rem 1.5rem;
            display: none; /* Hidden by default */
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #004080; /* Replaced --primary-dark */
            box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
        }
        
        /* Class to simulate showing the bulk bar when items are selected */
        .ws-card.ws-bulk-active .ws-bulk-actions {
            display: flex;
        }

        .ws-bulk-actions p {
            font-weight: 600;
            margin: 0;
        }

        .ws-btn-bulk {
            background-color: #ffffff;
            color: #0056b3; /* Replaced --primary-blue (though often overridden by inline style for clarity) */
            padding: 0.5rem 1rem;
            font-weight: 700;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s;
            margin-left: 1rem;
        }
        .ws-btn-bulk:hover {
            background-color: #f1f3f5;
        }

        /* --- Table Styling --- */
        .ws-table-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .ws-table {
            width: 100%;
            min-width: 1100px; 
            border-collapse: collapse;
        }
        
        .ws-table thead {
            background-color: #f8f9fa;
        }
        .ws-table th {
            padding: 1rem;
            text-align: left;
            font-size: 0.8rem;
            font-weight: 600;
            color: #6c757d; /* Replaced --gray-text */
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 2px solid #e9ecef; /* Replaced --border-light */
            white-space: nowrap;
        }
        
        .ws-table td {
            padding: 1rem;
            border-bottom: 1px solid #e9ecef; /* Replaced --border-light */
            vertical-align: top; /* Changed to top for better alignment with inventory detail */
            background-color: #ffffff;
        }
        .ws-table tbody tr:hover {
            background-color: #fcfcfc;
            transition: background-color 0.15s ease;
        }

        /* Checkbox Column */
        .ws-checkbox-cell {
            width: 50px;
            text-align: center;
        }

        /* --- Product Cell Details --- */
        .ws-product-cell {
            display: flex;
            align-items: center;
        }
        .ws-product-img {
            width: 56px;
            height: 56px;
            background-color: #e9ecef; /* Replaced --gray-bg */
            border-radius: 6px;
            margin-right: 1rem;
            flex-shrink: 0;
            margin-top: -10px;
            overflow: hidden;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        }
        .ws-product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
        }
        .ws-product-name {
            font-weight: 600;
            color: #343a40;
            font-size: 14px;
        }
        .ws-product-sku {
            font-size: 0.875rem;
            color: #6c757d; /* Replaced --gray-text */
            margin-top: -10px
        }

        /* --- Price Input Field and Update Button --- */
        .ws-price-input-group {
            display: flex;
            align-items: center;
            border: 1px solid #ced4da;
            border-radius: 6px;
            overflow: hidden;
            width: 180px; /* Increased size for better touch target */
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        .ws-price-input {
            width: 60%;
            padding: 0.5rem 0.75rem;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            color: #495057;
            background-color: #fdfdfd;
        }
        
        .ws-btn-update {
            width: 40%;
            padding: 0.7rem;
            background-color: #f1f3f5;
            color: #0056b3; /* Replaced --primary-blue */
            font-weight: 600;
            font-size: 0.85rem;
            border: none;
            cursor: pointer;
            transition: background-color 0.15s ease;
            text-transform: uppercase;
        }
        .ws-btn-update:hover:not(:disabled) {
            background-color: #e9ecef;
        }

        /* --- Inventory Status Tags & Detail --- */
        .ws-inventory-tag {
            display: inline-block;
            padding: 0.35rem 0.9rem;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 50px;
            text-align: center;
            letter-spacing: 0.5px;
            margin-bottom: 0.25rem;
        }
        .ws-inventory-tag.high {
            background-color: #e6ffed;
            color: #008060;
        }
        .ws-inventory-tag.low {
            background-color: #fff3cd;
            color: #856404;
        }
        .ws-inventory-tag.out {
            background-color: #f8d7da;
            color: #721c24; /* Replaced --warning-text */
        }

        .ws-inventory-detail {
            font-size: 0.75rem;
            color: #6c757d; /* Replaced --gray-text */
            line-height: 1.2;
        }


        /* --- Distribution Status Buttons --- */
        .ws-btn {
            padding: 0.5rem 1.0rem;
            font-size: 0.70rem;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
            width: 100%; 
            letter-spacing: 0.5px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        /* 1. Action State (Ready) */
        .ws-btn-action {
            background-color: #0056b3; /* Replaced --primary-blue */
            color: #ffffff;
        }

        /* 2. Synced State (Success & Disabled) */
        .ws-btn-synced {
            background-color: #d4edda; /* Replaced --success-light */
            color: #155724; /* Replaced --success-dark */
            cursor: default;
            box-shadow: none;
            border: 1px solid #c3e6cb;
        }

        /* 3. Out of Stock/Error State (Disabled) */
        .ws-btn-error {
            background-color: #f8f9fa; 
            color: #721c24; /* Replaced --warning-text */
            border: 1px solid #e9ecef;
            cursor: not-allowed;
            box-shadow: none;
        }

        .ws-synced-time {
            font-size: 0.875rem;
            color: #adb5bd;
        }
        
        
        
       /* Synced products */
.ws-action-button-single.synced {
    background-color: #28a745 !important; /* Green for synced */
    color: #fff !important;
    cursor: not-allowed;
    pointer-events: none; /* prevents clicking */
    opacity: 0.8;
}

        
        
        .vendor-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0rem;
}

/* ===== HEADER ===== */
.vendor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}

.vendor-info h1 {
  font-size: 1.6rem;
  color: #222;
}

.vendor-info p {
  color: #666;
  font-size: 0.9rem;
}

.wallet-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #444;
}

.wallet-status strong {
  font-size: 1.1rem;
  color: #111;
}

.btn-topup {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}
.btn-topup:hover {
  background: #1d4ed8;
}

/* ===== STATS & FILTER ===== */
.orders-overview {
  background: none;
  padding: 1.2rem;
  border-radius: 12px;
  margin-bottom: 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: none;
}

.stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-box {
  background: #f8fafc;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  text-align: center;
  min-width: 110px;
}

.stat-label {
  font-size: 0.8rem;
  color: #555;
  display: block;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 600;
}

.stat-value.pending {
  color: #f59e0b;
}
.stat-value.processing {
  color: #3b82f6;
}
.stat-value.completed {
  color: #16a34a;
}

.filter select {
  padding: 0.4rem 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
  background: #fff;
}

/* ===== ORDERS ===== */
.orders-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;
}

/* ===== ORDER CARD ===== */
.order-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}
.order-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.status {
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #fff;
  text-transform: capitalize;
}
.status.pending { background: #f59e0b; }
.status.processing { background: #3b82f6; }
.status.completed { background: #16a34a; }

.order-body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: #444;
}

.order-body p {
  font-size: 0.9rem;
}

.order-footer {
  border-top: 1px solid #eee;
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.balance-warning {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #b91c1c;
  font-size: 0.9rem;
}
.balance-warning .icon {
  font-size: 1rem;
}

.btn-topup-action {
  background: #ef4444;
  color: #fff;
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}
.btn-topup-action:hover {
  background: #dc2626;
}

.btn-view,
.btn-complete {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-view {
  background: #e5e7eb;
  color: #111;
}
.btn-complete {
  background: #10b981;
  color: #fff;
}
.btn-view:hover {
  background: #d1d5db;
}
.btn-complete:hover {
  background: #059669;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .orders-overview {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .vendor-header {
    flex-direction: column;
    gap: 0.8rem;
  }
}






.settings-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0rem;
}

/* ===== HEADER ===== */
.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.settings-header h1 {
  font-size: 1.6rem;
  color: #111;
}

.settings-header p {
  color: #666;
  font-size: 0.9rem;
}

.btn-save {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-save:hover {
  background: #1d4ed8;
}

/* ===== SECTIONS ===== */
.settings-section {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.settings-section h2 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 1rem;
}

/* ===== FORM GRID ===== */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fafafa;
  transition: border-color 0.3s ease, background 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2563eb;
  background: #fff;
  outline: none;
}

/* ===== UPLOAD BOX ===== */
.upload-box {
  border: 2px dashed #ccc;
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
  color: #666;
  cursor: pointer;
  background: #fafafa;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.upload-box:hover {
  border-color: #2563eb;
  background: #f0f7ff;
}

/* ===== CHECKBOXES ===== */
input[type="checkbox"] {
  accent-color: #2563eb;
  margin-right: 0.4rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .settings-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}




  .wallet-container {
    max-width: 100%;
    margin: auto;
    background: #4a5491;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 2rem;
    display: grid;
    margin-top: 5px;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    margin-bottom: 10px;
  }

  /* Left section */
  .wallet-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .wallet-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .wallet-header span {
   font-size: 0.9em;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
  }

  .wallet-balance {
     font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
    color: #fff;
  }

  .wallet-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .wallet-actions button {
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    transition: 0.2s ease;
  }

  .deposit-btn {
   background-color: #3b82f6;
            color: #fff;
  }
  .deposit-btn:hover {
   background-color: #2563eb;
  }
  
 

  .withdraw-btn {
    background: #f3f4f6;
    color: #111827;
  }
  .withdraw-btn:hover {
    background: #e5e7eb;
  }

  /* Transaction summary */
  .transaction-summary {
    margin-top: 2rem;
  }

  .transaction-summary h3 {
   font-size: 0.9em;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
  }

  .summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .summary-item {
      background: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
  }

  .summary-item span {
    font-size: 0.85rem;
    color: #eee;
  }

  .summary-item h4 {
    margin: 0.3rem 0 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
  }

  /* Right section */
  .wallet-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #2C2F45;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
  }

  .wallet-chart h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #eee;
  }

.chart-wrapper {
  width: 100%;
  max-width: 220px;       /* tighter width to make it look smaller */
  aspect-ratio: 1 / 1;    /* keeps it square but responsive */
  position: relative;
}

  /* Responsive */
  @media (max-width: 850px) {
    .wallet-container {
      grid-template-columns: 1fr;
      padding: 1.5rem;
    }

    .wallet-chart {
      margin-top: 2rem;
    }

    .wallet-balance {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
   

    .wallet-actions {
      flex-direction: column;
      gap: 0.5rem;
    }

    .summary-grid {
      grid-template-columns: 1fr;
    }

    .chart-wrapper {
      max-width: 220px;
    }
  } 
  
  
  
  
  /* Header */
    .storeins-header{display:flex;flex-direction:column;gap:10px;margin-bottom:14px}
    .storeins-title-row{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
    .storeins-h1{font-size:20px;font-weight:700;margin:0;color:#0b2545}
    .storeins-sub{font-size:13px;color:#6b7280}

    /* Controls */
    .storeins-controls{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
    .storeins-date{display:flex;gap:8px;align-items:center}
    .storeins-input, .storeins-select, .storeins-btn {padding:8px 10px;border-radius:8px;border:1px solid #e6eef8;background:#fff;font-size:14px}
    .storeins-btn{cursor:pointer;background:#2563eb;color:#fff;border:none;font-weight:700;box-shadow:0 8px 18px rgba(37,99,235,0.12)}
    .storeins-quick{display:flex;gap:6px}
    .storeins-quick button{padding:6px 10px;border-radius:8px;border:1px solid #eef6ff;background:#fff;cursor:pointer}
    .storeins-quick button.active{background:#0b2545;color:#fff;border-color:transparent}

    /* KPI cards */
    .storeins-kpis{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:12px;margin-top:12px}
    .storeins-kpi{background:#fff;border-radius:10px;padding:12px;box-shadow:0 6px 18px rgba(15,23,32,0.04);text-align:left}
    .storeins-kpi small{display:block;color:#6b7280;font-size:13px}
    .storeins-kpi strong{display:block;font-size:20px;margin-top:6px;color:#0b2545}

    /* Layout grid for charts and lists */
    .storeins-main{display:block;grid-template-columns:0fr;gap:12px;margin-top:14px}
    .storeins-card{background:#fff;border-radius:12px;padding:14px;box-shadow:0 8px 20px rgba(15,23,32,0.04)}
    .storeins-card h3{margin:0 0 10px;font-size:16px;color:#0b2545}

    /* Charts grid */
    .storeins-charts-grid{display:grid;grid-template-columns:1fr;gap:12px}
    .storeins-chart-wrap{position:relative;height:260px} /* default height; Chart.js inside will be responsive */

    /* Top products (bar) list */
    .storeins-top-products{display:flex;flex-direction:column;gap:8px}
    .storeins-product-row{display:flex;justify-content:space-between;align-items:center;gap:8px;padding:8px;border-radius:8px;background:#fbfdff;border:1px solid #eef6ff}
    .storeins-product-info{display:flex;gap:10px;align-items:center}
    .storeins-product-thumb{width:48px;height:48px;border-radius:8px;background:#f1f5f9;display:flex;align-items:center;justify-content:center;font-weight:700;color:#2563eb}
    .storeins-product-name{font-weight:700;color:#0b2545}
    .storeins-product-meta{font-size:13px;color:#6b7280}

    /* traffic legend */
    .storeins-legend{display:flex;gap:10px;flex-wrap:wrap}
    .storeins-legend-item{display:flex;gap:8px;align-items:center;font-size:13px;color:#475569}
    .storeins-swatch{width:12px;height:12px;border-radius:3px}

    /* Export area */
    .storeins-export{display:flex;gap:8px;align-items:center;margin-top:10px}

    /* Responsive: two-column charts on >=960px */
    @media (min-width:960px){
      .storeins-main{grid-template-columns: 1fr 360px}
      .storeins-charts-grid{grid-template-columns: 1fr}
      .storeins-chart-wrap{height:320px}
    }

    /* Small screen tweaks */
    @media (max-width:420px){
      .storeins-chart-wrap{height:220px}
      .storeins-kpi strong{font-size:18px}
    }
    
    
   /* ===== Slide-Out Panel ===== */
#slide-out-panel {
  position: fixed;
  top: 0;
  right: -420px; /* Hidden initially */
  width: 400px;
  height: 100vh;
  background: #fff;
  color: #333;
  box-shadow: -4px 0 15px rgba(0,0,0,0.2);
  padding: 10px 0px;
  transition: right 0.4s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

#slide-out-panel.active {
  right: 0;
}

.panel-title {
  font-size: 22px;
  font-weight: 600;
  color: #1e1e1e;
  margin-top: 0px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

/* ===== Overlay ===== */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: none;
  z-index: 999;
  transition: opacity 0.3s ease;
}

#overlay.active {
  display: block;
  opacity: 1;
}

/* ===== Close Button ===== */
#close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f44336;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

#close-btn:hover {
  background: #d32f2f;
}

/* ===== Panel Content ===== */
.panel-content {
  margin-top: 20px;
  overflow-y: auto;
  flex-grow: 1;
  scrollbar-width: thin;
  scrollbar-color: #bbb #f1f1f1;
}

.panel-content::-webkit-scrollbar {
  width: 6px;
}
.panel-content::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 3px;
}

/* ===== Trigger Button (for testing/demo) 
.open-btn {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  background: #4a5491;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease;
}
.open-btn:hover {
  background: #3a4275;
}
===== */
/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
  #slide-out-panel {
    width: 90%;
    right: -100%;
    border-radius: 12px 0 0 12px;
  }
  .panel-title {
    font-size: 20px;
  }
  #close-btn {
    top: 10px;
    left: 10px;
  }
}
        
        
        
        
     .merchant-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
}
.merchant-modal-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}
.merchant-modal-content {
    position: relative;
    max-width: 720px;
    margin: 50px auto;
    background: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    overflow-y: auto;
    max-height: 90%;
}


.merchant-modal-close {
    position: absolute;
    top: 0px; right: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    color: #ff0101
}



 /* Container styles */
        .store-app-page {
            background:none;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .store-app-container {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: none;
            width: 100%;
            max-width: 700px;
            padding: 40px;
            padding-top: 0px;
        }

        /* Header/Logo Section */
        .store-app-header {
            display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: 15px;
        }

        .store-app-logo-placeholder {
            width: 100px;
            height: 100px;
            background-color: #e0e0e0;
            color: #777;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 28px;
            margin-right: 15px;
            cursor: pointer;
            overflow: hidden;
            position: relative;
            border: 2px dashed #ccc;
        }
        
        .store-app-logo-placeholder:hover {
            border-color: #007bff;
        }

        #store-app-logo-preview {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10;
        }

        .store-app-title {
            color: #333;
            font-weight: 600;
            font-size: 1.3em;
            text-align: center;
        }

        /* Form Sections and Inputs */
        .store-app-section {
            margin-bottom: 30px;
        }

        .store-app-section h3 {
            color: #233756;
            font-size: 1.0em;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
            margin-bottom: 15px;
        }

        .store-app-input-group {
            margin-bottom: 20px;
        }

        .store-app-input-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
            font-size: 0.95em;
        }

        .store-app-container input[type="text"],
        .store-app-container input[type="email"],
        .store-app-container select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 0.8em;
            transition: border-color 0.3s, box-shadow 0.3s;
            background-color: #f9f9f9;
        }

        .store-app-container input[type="text"]:focus,
        .store-app-container select:focus {
            border-color: #007bff;
            box-shadow:none;
            outline: none;
            background-color: #fff;
        }
        
        .store-app-input-group label{
            font-size: 14px;
            font-weight: 600;
            color: #233756
        }
        
        .store-app-container select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23333" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
            background-repeat: no-repeat;
            background-position: right 15px center;
            padding-right: 40px;
        }

        /* Identity Verification Specific Layout (Grid for Inputs and Uploads) */
        .store-app-verification-section {
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .store-app-verification-grid {
            display: block;
            gap: 30px;
        }

        .store-app-id-inputs {
            flex: 1;
        }

        .store-app-id-uploads {
            flex: 1.5;
        }

        .store-app-upload-label {
            color: #555;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.95em;
        }

        .store-app-upload-area {
            display: flex;
            gap: 15px;
            justify-content: space-between;
        }

        .store-app-upload-box {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10px;
            border: 2px dashed #007bff80;
            border-radius: 10px;
            background-color: #eaf6ff;
            color: #007bff;
            cursor: pointer;
            transition: background-color 0.3s, border-color 0.3s;
            font-size: 0.9em;
            position: relative;
            min-height: 156px;
            overflow: hidden;
        }

        .store-app-upload-box:hover {
            background-color: #d8edff;
            border-color: #007bff;
        }

        .store-app-upload-box .store-app-placeholder-img {
            max-width: 100%;
            max-height: 100%;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.7;
            z-index: 5;
            object-fit: contain;
            padding: 10px;
        }
        
        .store-app-upload-box span {
            z-index: 10;
            position: relative;
            margin-top: auto;
            margin-bottom: -10px;
            font-size: 12px;
            color:#000
        }

        .store-app-upload-box input[type="file"] {
            display: none;
        }

        .store-app-image-preview {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
            z-index: 15;
            padding: 5px;
            background-color: rgba(255, 255, 255, 0.8);
        }

        /* Submit Button */
        .store-app-submit-button {
            width: 100%;
            padding: 15px;
            background-color: #ff5e00;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.1s;
            margin-top: 20px;
        }

        .store-app-submit-button:hover {
            background-color: #e65100;
        }

        .store-app-submit-button:active {
            transform: scale(0.99);
        }

        /* Responsive adjustments */
        @media (max-width: 650px) {
            .store-app-container {
                padding: 20px;
                
            }
            
            .merchant-modal-content {
                height: 100%;
            }
            
            .store-app-verification-grid {
                flex-direction: column;
                gap: 20px;
            }

            .store-app-upload-area {
                flex-direction: column;
                gap: 10px;
            }

            .store-app-upload-box {
                padding: 15px;
            }
        }
        
        
      .store-status-banner-container {
  margin-bottom: 5px;
}

.store-status-banner {
  text-align: center;
  padding: 15px 16px;
  border-radius: 0px;
  font-weight: 500;
  font-size: 15px;
}

.store-status-banner.pending {
  background-color: #fff8e1;
  color: #b8860b;
  border: none;
}

.store-status-banner.active {
  background-color: #e6f7ee;
  color: #1d8348;
  border: 1px solid #a2e1b9;
}



 /* ---------------- BANNER CONTAINER ---------------- */
.banner-container {
  display: flex;
  max-width: 100%;
  width: 100%;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* ---------------- CAROUSEL ---------------- */
.carousel-banner {
    flex: 3;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px; /* Base height for larger screens */
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    /* Default: Fills the box completely (might crop) */
    object-fit: cover; 
    object-position: center; 
    display: block;
}

/* Mobile Adjustments (iPhone sizes) */
@media (max-width: 768px) {
    .carousel-banner {
        height: 240px; /* Adjust banner height for medium screens */
    }

    /* Force the image to show in full, introducing white space (contain) */
    .carousel-slide img {
        object-fit: **contain**; 
    }
}

@media (max-width: 480px) {
    .carousel-banner {
        height: 150px; /* Adjust banner height for small screens */
    }
}


/* ---------------- DOTS ---------------- */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background-color: rgba(0,0,0,0.3);
  padding: 6px 10px;
  border-radius: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #ff5e00;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-dots .dot.active {
  width: 24px;
  background: #ff5e00;
  border-radius: 6px;
}

  /* ---------------- SIDEBAR ---------------- */
  .right-sidebar {
    flex: 1;
    background: #fce7f2;
    padding: 20px;
    color: #0f146d;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .sidebar-header {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1em;
  }

  .rating {
    color: orange;
    font-size: 1.2em;
  }

  .feature-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .feature-box {
    background: white;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .qr-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
  }

  .qr-placeholder {
    width: 80px;
    height: 80px;
    background: #333;
    color: white;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }

  .store-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .store-link {
    background: #333;
    color: white;
    font-size: 0.8em;
    padding: 6px 8px;
    border-radius: 4px;
  }

  /* ---------------- FEATURED ITEMS SECTION ---------------- */
  .featured-section {
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .featured-items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .feature-card {
    flex: 1;
    background: white;
    border-radius: 6px;
    padding: 40px;
    padding-left: 20px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  }

  .card-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
  }

  .card-subtitle {
    color: #777;
    font-size:15px;
  }

  .card-icon {
    position: absolute;
    bottom: 25px;
    right: 35px;
    font-size: 2em;
  }

  .card-icon img{
      width: 120px;
      height: 120px;
  }
  
@media (max-width: 768px) {
  .container:has(> .banner-container) {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}




  /* ---------------- MOBILE ---------------- */
  @media (max-width: 768px) {
    .banner-container {
      flex-direction: column;
      border-radius: 0;
      margin: 0;
      margin-top: 0px;
    }

    .carousel-slide {
      aspect-ratio: 16/8;
    }

    .right-sidebar {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 10px;
      display: none;
    }

    .feature-list {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    .featured-items {
      overflow-x: auto;
      display: flex;
      gap: 15px;
      padding: 15px;
      scroll-snap-type: x mandatory;
    }

    .feature-card {
      flex: 0 0 80%;
      scroll-snap-align: start;
      min-width: 250px;
    }

    .featured-items::-webkit-scrollbar {
      display: none;
    }
  }
  
  
 .category-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  max-width: 100%;
  border-left: 1px solid #eee; /* only side borders */
}

.category-item {
   border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
  background-color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 15px 5px;
}

.category-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 8px;
  transition: transform 0.2s ease;
}

.category-item p {
  font-size: 13px;
  color: #333;
  line-height: 1.3;
  margin: 0;
}

/* Hover effect */
.category-item:hover {
  background-color: #f8f8f8;
  transform: translateY(-3px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.category-item:hover img {
  transform: scale(1.05);
}

/* Responsive (2 columns on mobile) */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
  }

  .category-item img {
    width: 50px;
    height: 50px;
  }

  .category-item p {
    font-size: 12px;
  }
}


/* 🔹 Syncing horizontal loader */
.sync-progress {
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.sync-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #4a90e2, #00c851);
  animation: syncLoading 1.5s linear forwards;
  border-radius: 2px;
}

@keyframes syncLoading {
  0% { width: 0%; }
  100% { width: 100%; }
}





 .deposit-container {
      background: none;
      border-radius: 16px;
      box-shadow: none;
      width: 100%;
      max-width: 100%;
     padding: 24px 20px;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .deposit-container p{
        text-align: left
    }

    .deposit-header {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
  }

    .step {
      display: none;
      animation: fadeIn 0.5s ease;
    }

    .step.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .crypto-option, .network-option {
      background: #f0f3f8;
      border: 2px solid transparent;
      border-radius: 10px;
      padding: 12px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .crypto-option:hover, .network-option:hover {
      border-color: #4a6cf7;
      background: #eef2ff;
    }

    .crypto-option img, .network-option img {
      width: 35px;
      height: 35px;
      border-radius: 50%;
    }

   .deposit-container .wallet-info {
      text-align: left;
      background: none;
      border-radius: 0px;
      padding: 15px;
      border: none;
    }

    .deposit-container .wallet-info small{
        text-align: center;
        font-size: 11px;
        padding-top: 5px;
    }
    
    .wallet-info p {
      margin: 6px 0;
      font-size: 15px;
    }

    .wallet-address {
      background: #f1f4f8;
      padding: 10px;
      border-radius: 0px;
      word-break: break-all;
      font-family: monospace;
      color: #2b2e4a;
    }

    .qr-code {
      margin-top: 15px;
      text-align: center;
    }

    .qr-code img {
      width: 150px;
      height: 150px;
    }

    .next-btn, .back-btn {
      background: #4a6cf7;
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 10px 20px;
      margin-top: 20px;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .back-btn {
      background: #c5c9d3;
      color: #2b2e4a;
      margin-right: 10px;
    }

    .next-btn:hover {
      background: #3a58d8;
    }

    .back-btn:hover {
      background: #b4b8c2;
    }

    .step-indicator {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 15px;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: #cfd4e3;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .dot.active {
      background: #4a6cf7;
      width: 25px;
      border-radius: 6px;
    }
    
 
    
    /* Deposit Form Styling */
#depositForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.8rem;
  background: none;
  padding: 1.5rem;
  border-radius: 0rem;
  box-shadow: none;
}

.deposit-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  margin-bottom: 0.5rem;
}

.deposit-description {
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

#depositForm label {
  font-weight: 600;
  color: #334155;
  text-align: left;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

#depositForm input[type="number"],
#depositForm input[type="text"],
#depositForm input[type="file"] {
  padding: 0.7rem 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.6rem;
  font-size: 0.95rem;
  color: #1e293b;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

#depositForm input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.15);
}


.upload-box {
  border: 2px dashed #cbd5e1;
  border-radius: 0.6rem;
  padding: 1.5rem;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.upload-box:hover {
  border-color: #3b82f6;
  background: #f1f5f9;
}

.upload-icon {
  font-size: 2rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.upload-box p {
  font-size: 0.9rem;
  color: #475569;
}

.receipt-preview {
  width: 100%;
  max-width: 220px;
  max-height: 220px;
  object-fit: contain;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none !important;
}


.primary-btn {
  background-color: #2563eb;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.9rem;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.primary-btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

.primary-btn:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  #depositForm {
    padding: 1rem;
    border-radius: 0.8rem;
  }
  .deposit-title {
    font-size: 1.2rem;
  }
}


  .withdrawal-box {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    background: #fff;
    border: none;
    border-radius: 14px;
    box-shadow: none;
    padding: 24px 20px;
  }

  .withdrawal-header {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
  }

  .withdrawal-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #1e293b;
  }

  .withdrawal-form select,
  .withdrawal-form input {
    width: 100%;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border 0.25s ease, box-shadow 0.25s ease;
    color: #111827;
  }

  .withdrawal-form select:focus,
  .withdrawal-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
  }

  .withdrawal-form .inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .withdrawal-form .inline span {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .chain-badge {
    border: 1px solid #2563eb;
    color: #2563eb;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
  }

  .withdrawal-form .field {
    margin-bottom: 16px;
  }

  .withdrawal-form small {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: #6b7280;
  }

  .balance {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 4px;
  }

  .btn-submit {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
  }

  .btn-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
  }

  .note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 14px;
    line-height: 1.4;
  }
  
  
  
 /* Mobile Footer - only visible on mobile */
.mobile-footer-unique {
  display: none; /* hide by default */
}

@media (max-width: 768px) {
  .mobile-footer-unique {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: #000; /* default text color */
    box-shadow:none;
    border-top: 1px solid #e0e0e0;
    z-index: 9999;
    font-family: 'Arial', sans-serif;
  }

  .footer-nav-unique {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px 0;
  }

  .footer-item-unique {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000; /* icon and label color */
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
  }

  /* Ensure label text is black */
 .footer-item-unique .label {
  color: #000;       /* text color black */
  text-shadow: none; /* remove any text shadow */
  font-weight: 600;
  font-size: 12px;
}


/* Mobile Footer Icons */
.footer-item-unique .icon {
    font-size: 24px;        /* slightly larger for better visibility */
    margin-bottom: 0px;     /* space between icon and label */
    display: flex;          /* ensures proper alignment */
    justify-content: center;
    align-items: center;
    color: inherit;         /* inherit color from parent (.footer-item-unique) */
    transition: color 0.3s; /* smooth color change on hover */
}

.footer-item-unique:hover .icon,
.footer-item-unique.active .icon {
    color: #ff6f61; /* highlight color on hover/active */
}


  .footer-item-unique:hover,
  .footer-item-unique.active {
    color: #ff6f61; /* highlight color for both icon and label */
  }
}


.footer-partners {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background: #fff;
  padding: 40px 60px;
  border-top: 1px solid #e0e0e0;
  font-family: "Segoe UI", Arial, sans-serif;
}

.partner-section {
  flex: 1;
  text-align: left;
  gap: 30px;
 
}

.partner-section h3 {
  font-size: 16px;
  color: #333;
  text-align: left;
  margin-bottom: 17px;
  font-weight: 600;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
   float: left
}

.partner-logos img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease;
  filter: brightness(0.98);
}

.partner-logos img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

.partner-logos.verified img {
  height: 60px;
}



.ecom-footer {
  background: #F5F5F5;
  color: #333;
  padding: 60px 0%;
  font-family: 'Segoe UI', Roboto, sans-serif;
  border-top: 1px solid #eaeaea;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr;
  gap: 80px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.footer-column p {
  font-size: 13px;
  color: #555;

  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-column ul li a{
    font-size: 11px;
}

.footer-column ul li strong {
  display: block;
  color: #222;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-column.about p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
    .footer-partners{
        display: none;
    }
    .ecom-footer{
        display: none;
    }
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  .footer-column p,
  .footer-column ul li {
    font-size: 13px;
  }
}


top-bar {
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
  text-align: right;
}

.top-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: right;
  align-items: right;
  gap: 45px;
  font-size: 13px;
}

.top-menu li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.top-menu li a:hover {
  color: #000;
}

.top-menu .feedback {
  color: #ff00cc; /* pink like in image */
  font-weight: bold;
}

.price-filter {
  margin-top: 20px;
  background: #fff;
  padding: 0px 0px;
  border-radius: 0px;
  box-shadow: none;
}

.price-filter h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.range-container {
  position: relative;
  height: 6px;
  background: #f1f1f1;
  border-radius: 6px;
  margin: 15px 0 10px;
}

.slider-track {
  position: absolute;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff7a00 0%, #ffae42 100%);
  top: 0;
  z-index: 1;
}

.range-container input[type="range"] {
  position: absolute;
  width: 100%;
  height: 6px;
  top: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
}

.range-container input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #ff7a00;
  box-shadow: 0 3px 8px rgba(255, 122, 0, 0.4);
  cursor: pointer;
  -webkit-appearance: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.range-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.6);
}

.price-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

.price-values span {
  background: none;
  color: #ff7a00;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 600;
}

/* ===============================
   CATEGORY HEADER (Professional Lazada-Style)
=================================*/

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- LEFT SIDE ---------- */
.category-info h2 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 2px 0;
}

.category-info p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}



/* ===============================
   RESPONSIVE: Mobile View Adjustments
=================================*/
@media (max-width: 768px) {
  .category-header {
    flex-direction: column;      /* stack vertically */
    align-items: flex-start;     /* align items to the left */
    gap: 10px;                   /* spacing between sections */
  }

  .category-info {
    width: 100%; 
    text-align: center;/* slightly smaller for mobile *//* ensures full-width content */
  }
  
 .category-header .sort-section label {
  font-size: 12px;
  color: #111827;
  font-weight: 600;
}

  .category-info h2 {
    width: 100%;                 /* make h2 span full width */
    font-size: 17px; 
    
  }

  .category-controls {
    width: 100%;                 /* make controls take full width below */
    justify-content: space-between;
  }

  .sort-section select {
    width: 100%;                 /* dropdown spans full width on small screens */
  }
}



/* ---------- RIGHT SIDE (Sort + View) ---------- */
.category-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Sort dropdown */
.sort-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-section label {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
}

.sort-section select {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #111827;
  padding: 6px 10px;
  background: #fff;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.sort-section select:hover {
  border-color: #9ca3af;
}

/* View icons */
.view-section {
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-section span {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
}

.view-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.view-btn.active {
  background: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
}


.empty-orders {
  text-align: center;
  padding: 32px 20px;
  color: #555;
}

.empty-orders img {
  width: 220px;
  max-width: 100%;
  margin: 0 auto 20px auto;
  display: block;
}

.empty-orders h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.empty-orders p {
  font-size: 15px;
  color: #777;
}



 /* Transaction Table */
        .transaction-section {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 0px;
            padding-top: 0px;
        }
        
        /* Limit transaction table height and enable scrolling after ~3 rows */
.transaction-section .transaction-table-wrapper {
    max-height: 350px; /* adjust based on row height */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent; /* light gray scrollbar */
}

/* Scrollbar styling for WebKit browsers (Chrome, Edge, Safari) */
.transaction-section .transaction-table-wrapper::-webkit-scrollbar {
    width: 6px;
}

.transaction-section .transaction-table-wrapper::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 4px;
}

.transaction-section .transaction-table-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
}


        .transaction-section h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #374151;
            margin-top: 0;
            margin-bottom: 20px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 10px;
        }

        .transaction-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            font-size: 0.95rem;
        }

        .transaction-table th, .transaction-table td {
            padding: 15px 10px;
            text-align: left;
            font-size: 14px;
        }

        .transaction-table th {
            background-color: #f9fafb;
            color: #4b5563;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 2px solid #e5e7eb;
        }

        .transaction-table td {
            border-bottom: 1px solid #e5e7eb;
        }
        
        .transaction-table tr:last-child td {
            border-bottom: none;
        }

        .transaction-table tr:hover {
            background-color: #f3f4f6;
        }

        /* Status Badges */
        .status-badge {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: capitalize;
        }

        .status-completed {
            background-color: #d1fae5; /* Light Green */
            color: #065f46; /* Dark Green */
        }

        .status-pending {
            background-color: #fef3c7; /* Light Yellow */
            color: #b45309; /* Dark Yellow */
        }

        .status-failed {
            background-color: #fee2e2; /* Light Red */
            color: #991b1b; /* Dark Red */
        }

        .amount-credit {
            color: #059669; /* Success Green */
            font-weight: 700;
        }

        .amount-debit {
            color: #ef4444; /* Danger Red */
            font-weight: 700;
        }
        
        .type-label {
            color: #374151;
            font-weight: 500;
        }
        
        .date-text {
            color: #9ca3af;
        }

        /* Utility classes */
        .flex-center {
            display: flex;
            align-items: center;
        }

        
        
         .countdown {
  color: green;
  font-size: 12px;
}
.countdown.warning {
  color: orange;
}
.countdown.danger {
  color: red;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.order-header .left {
  flex: 1;
}

.order-header .right {
  text-align: right;
}

.order-cancel-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #f87171;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  animation: fadeInOut 4s ease-in-out forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-10px); }
  15% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-10px); }
}


.status.canceled.danger {
  background-color: red;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
}
.status.processing {
  background-color: #007bff; /* Blue for processing */
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
}


/* ====== ORDER STATUS BADGES ====== */
.status-label {
  display: inline-block;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: capitalize;
  color: #fff;
  margin-top: 4px;
}

/* Different colors per status */
.status-pending {
  background: #f0ad4e; /* Amber */
}

.status-processing {
  background: #5bc0de; /* Light blue */
}

.status-completed {
  background: #28a745; /* Green */
}

.status-canceled,
.status-cancelled {
  background: #dc3545; /* Red */
}

.status-failed {
  background: #6c757d; /* Gray */
}

/* ====== ORDER NOTIFICATION ====== */
.order-notify {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffe4e6;
  color: #b71c1c;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  margin-top: 8px;
  animation: fadeInLeft 0.5s ease;
}

.order-notify i {
  color: #d32f2f;
}

/* Animate alert entry */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ====== ALERT BOX (Insufficient Funds) ====== */
.order-alert {
  background: #fff3cd;
  color: #856404;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.order-alert a.topup-link {
  color: #007bff;
  text-decoration: underline;
}

/* ====== EMPTY STATE ====== */
.empty-orders {
  text-align: center;
  color: #666;
}

.empty-orders img {
  width: 180px;
  opacity: 0.8;
  margin-bottom: 10px;
}



/* === STATUS BADGES === */
.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
}
.status-pending { background: #f0ad4e; }
.status-processing { background: #5bc0de; }
.status-completed { background: #28a745; }
.status-canceled { background: #dc3545; }
.status-failed { background: #6c757d; }

/* Countdown colors */
.countdown.warning { color: #f0ad4e; font-weight: 600; }
.countdown.danger { color: #dc3545; font-weight: 700; }

.order-notification {
  position: fixed;
  bottom: 20px; /* You can change to top: 20px; for top-left */
  left: 20px;
  background-color: #1e293b; /* dark blue-gray */
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  max-width: 320px;
  animation: slideIn 0.5s ease, fadeOut 0.5s ease 6.5s forwards;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.order-notification h4 {
  margin: 0;
  font-size: 16px;
  color: #facc15; /* amber tone */
}

.order-notification p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.order-notification .close-note {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  margin-top: 5px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.order-notification .close-note:hover {
  opacity: 1;
}

/* Slide-in + fade-out animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}


.store-header {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.store-logo-container {
  text-align: center;
  position: relative;
}

.store-logo-label {
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.store-logo-label img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #ddd;
  object-fit: cover;
  transition: 0.3s;
}

.store-logo-label img:hover {
  border-color: #007bff;
}

.upload-text {
  display: block;
  font-size: 0.85rem;
  color: #007bff;
  margin-top: 0.5rem;
}






    .title{font-size:20px;font-weight:600}
    .subtitle{color:var(--muted);font-size:14px}

    /* grid: default 2 cols mobile, 4 cols desktop */
    .products-grid{
      display:grid;
      gap:var(--gap);
      grid-template-columns:repeat(2, 1fr);
    }

    @media(min-width:900px){
      .products-grid{grid-template-columns:repeat(5,1fr);
                     margin-bottom: 70px;
      }
      
    }

    .card-j{
      background:var(--card);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      transition:transform var(--transition), box-shadow var(--transition);
      border:1px solid rgba(15,23,42,0.03);
    }
    .card-j:hover{transform:translateY(-6px);box-shadow:0 12px 30px rgba(15,23,42,0.12)}

    .image-wrap{
      position:relative;
      width:100%;
      padding-top:76%; /* aspect ratio */
      overflow:hidden;
      background:linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
    }
    .image-wrap img{
      position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;
      transition:transform var(--transition);
    }
    .card-j:hover .image-wrap img{transform:scale(1.05)}

    .card-body{
      padding:14px 14px 16px;
      display:flex;flex-direction:column;gap:10px;
    }

  /* CSS-only: graceful multi-line clamp with ellipsis */
.prod-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #0f172a;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* change this to 1 / 2 / 3 lines as needed */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* required for multi-line clamp */
    transition: color 0.2s ease;
    cursor: default;
}

/* show full title on hover via native tooltip */
.prod-title:hover {
    color: #111827;
}

    .prod-meta{display:flex;justify-content:space-between;align-items:center;gap:8px}

    .price{font-weight:600;font-size:17px; color: #ff5e00}
    .old-price{color:var(--muted);text-decoration:line-through;font-size:16px; font-weight: 600}

    .rating{display:flex;align-items:center;gap:6px;color:var(--muted);font-size:13px}
    .rating .stars{color:#f59e0b}

    .actions{
      display:flex;align-items:center;gap:8px;margin-top:6px;
    }
    /*.btn-x{
      flex:1;
      display:inline-flex;align-items:center;justify-content:center;
      padding:9px 12px;border-radius:10px;border:0;cursor:pointer;font-weight:600;
      transition:all var(--transition);
    }
    .btn-add{background:linear-gradient(180deg,var(--accent),var(--accent-600));color:#fff;box-shadow:0 6px 18px rgba(37,99,235,0.12)}
    .btn-add:hover{transform:translateY(-2px)}

    .btn-wishlist{
      width:44px;height:44px;flex:0 0 44px;border-radius:10px;background:#fff;border:1px solid rgba(15,23,42,0.06);
      display:inline-flex;align-items:center;justify-content:center;color:var(--muted)
    }
    .btn-wishlist:hover{background:#f8fafc;color:var(--accent)}*/

    .badge{
      display:inline-flex;padding:6px 8px;border-radius:999px;font-weight:700;font-size:12px;align-items:center;gap:8px
    }
    .badge-sale{background:linear-gradient(90deg,#fee2e2,#fecaca);color:#b91c1c}
    .badge-new{background:#eef2ff;color:#3730a3}

    /* small helpers */
    .muted{color:var(--muted);font-size:13px}
    .flex{display:flex;align-items:center}
    .space-between{display:flex;justify-content:space-between;align-items:center}

    /* accessibility focus */
    .btn:focus,.btn-wishlist:focus{outline:3px solid rgba(37,99,235,0.18);outline-offset:2px}

    /* responsive tweaks */
    @media(max-width:420px){
     .products-grid{
                     margin-bottom: 40px;
      }
      .card-body{padding:12px}
    }
    
    .btn-loadmore {
  display: inline-block;
  padding: 12px 100px;
  border: 1.5px solid #ff5e00; /* thin turquoise/teal border */
  background: transparent;
  margin-bottom: 40px;
  color: #ff5e00;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-loadmore:hover {
  background: #ff5e00;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 162, 184, 0.25);
}


/* Loader */
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e5e5;
  border-top: 4px solid #0d6efd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Hide .sponsore on mobile (screen width 767px and below) */
@media (max-width: 767px) {
  .sponsore {
    display: none !important;
  }
}







/* Container */
.seller-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  gap: 15px;
  flex-wrap: wrap;
}

/* Left Section */
.seller-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
}

.seller-logo {
  width: 55px;
  height: 55px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #eee;
}

.seller-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.seller-name {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

/* Badges */
.seller-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}

.badge.blue {
  background: #e0f2fe;
  color: #0284c7;
}

.badge.orange {
  background: #fef3e2;
  color: #c2410c;
}

/* Buttons */
.seller-right {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-outline {
  border: 1.5px solid #e5e7eb;
  background: transparent;
  color: #1e293b;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-outline i {
  color: #e11d48; /* pinkish accent */
  font-size: 14px;
}

.btn-outline:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .seller-info {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 15px;
    margin-top: 10px;
  }

  .seller-right {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }

  .btn-outline {
    flex: 1;
    justify-content: center;
  }

  .seller-logo {
    width: 45px;
    height: 45px;
  }

  .seller-name {
    font-size: 15px;
  }

  .badge {
    font-size: 11.5px;
  }
}



/* ====== UNIQUE SELLER INFO MODAL ====== */
.ec-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: ec-fadeIn 0.3s ease-in-out;
}

.ec-modal {
  background: #fff;
  width: 90%;
  max-width: 750px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  animation: ec-slideUp 0.35s ease;
}

.ec-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(90deg, #FF2B85, #FF2B85);
  color: #fff;
}

.ec-modal-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.ec-modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s;
}
.ec-modal-close:hover {
  transform: scale(1.2);
}

.ec-modal-body {
  padding: 20px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Fade and slide animations */
@keyframes ec-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ec-slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/* --- Seller Profile Card --- */
        .seller-profile-card {
            width: 100%;
            max-width: none; /* Increased for better content spacing */
            padding: 0px;
            border: none;
            border-radius: 0px;
            background-color: #ffffff;
            box-shadow: none;
            transition:none;
        }

        .seller-profile-card:hover {
            transform: none;
            box-shadow: none;
        }

        .seller-profile-card h2 {
            font-size: 1.75rem;
            color: #1a1a1a;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        /* --- Header and Profile Image --- */
        .seller-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .profile-image-container {
            margin-right: 16px;
            position: relative;
        }

        .profile-image {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e8ecef;
            transition: border-color 0.3s ease;
        }

        .profile-image-container:hover .profile-image {
            border-color: #007bff;
        }

        /* --- Seller Info and Verified Badge --- */
        .seller-info-x {
            flex: 1;
            border-radius: 0;
        }

        .username-verified {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 8px;
        }

        .username {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            background-color: #ddefd0;
            color: #315f0f;
            font-size: 0.875rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 16px;
            box-shadow: none;
            transition: background-color 0.3s ease;
        }

        .verified-badge:hover {
            background-color: none;
        }

        .checkmark {
            font-size: 1rem;
            margin-right: 6px;
            font-weight: bold;
        }

        .feedback-sales {
            font-size: 14px;
            color: #4a4a4a;
            margin: 0;
            margin-top: -5px;
        }

        .feedback-sales strong {
            font-weight: 700;
            color: #1a1a1a;
        }

        /* --- Joined Date --- */
        .join-date {
            font-size: 0.75rem;
            color: #6b7280;
            display: flex;
            align-items: center;
            margin-bottom: 24px;
            padding: 0px 0;
        }

        .join-date .icon {
            font-size: 1.2rem;
            margin-right: 8px;
            color: #6b7280;
        }

        /* --- Action Buttons --- */
        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .btn-x {
            width: 100%;
            padding: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        
        .btn-primary-x {
            background: linear-gradient(90deg, #007bff, #00aaff);
            color: #ffffff;
            border: none;
            box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
        }

        /* Primary Button
        .btn-primary-x:hover {
            background: linear-gradient(90deg, #0056b3, #0088cc);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
        }
 */
        /* Secondary Buttons */
        .btn-secondary-x {
            background-color: #ffffff;
            color: #007bff;
            border: 2px solid #007bff;
            transition: all 0.3s ease;
        }

        .btn-secondary-x:hover {
            background-color: #f0f7ff;
            border-color: #0056b3;
            color: #0056b3;
        }

        .btn-save-x .icon {
            margin-right: 8px;
            font-size: 1.2rem;
            vertical-align: middle;
        }

        /* --- Responsive Design --- */
        @media (max-width: 480px) {
            .seller-profile-card {
                padding: 20px;
            }

            .seller-profile-card h2 {
                font-size: 1.5rem;
            }

            .username {
                font-size: 1.25rem;
            }

            .profile-image {
                width: 56px;
                height: 56px;
            }

            .btn-x {
                padding: 10px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 360px) {
            .username-verified {
                flex-direction: column;
                align-items: flex-start;
            }

            .verified-badge {
                width: fit-content;
            }
        }
        
        
        /* Container layout */
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto; /* Two wide buttons + one icon */
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: none;
}

/* Shared button base */
.product-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 0.75rem 1rem;
  transition: all 0.25s ease;
  box-shadow: none;
}

/* Primary button (Add to Cart) */
.product-actions .primary-action {
  background: linear-gradient(135deg, #ff5e00, #ff5e00);
  color: #fff;
}
.product-actions .primary-action:hover {
  background: linear-gradient(135deg, #b33c00, #b33c00);
  transform: translateY(-2px);
}

/* Secondary button (Buy Now) */
.product-actions .secondary-action {
  background: #fff;
  color: #ff5e00;
  border: 1.5px solid #ff5e00;
}
.product-actions .secondary-action:hover {
  background: #fff0f7;
  transform:none;
}

/* Icon-only button (Wishlist) */
.product-actions .icon-action {
  background: #fff;
  color: #e63946;
  font-size: 1.2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.product-actions .icon-action:hover {
  background: #ffe9ec;
  transform: scale(1.05);
}

/* Optional responsive stacking for mobile */
@media (max-width: 480px) {
  .product-actions {
    grid-template-columns: 1fr 1fr ;
    gap: 0.5rem;
    padding: 0.75rem;
    padding-left: 0px;
  }

  .product-actions .btn {
    font-size: 0.85rem;
    padding: 0.65rem;
  }
}


.save-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.save-btn:hover {
  background: linear-gradient(135deg, #0056b3, #003f7f);
  transform: translateY(-1px);
}
.save-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Optional toastr customization */
#toast-container > .toast-success {
  background-color: #28a745;
}
#toast-container > .toast-error {
  background-color: #dc3545;
}

/* Light background for inputs marked invalid */
.input-invalid {
  background-color: #fff6d8; /* light yellow tint */
  border-color: #f1c232;     /* slightly stronger border */
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Section Wrapper */
.email-pref-section {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-top: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.email-pref-section:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Title */
.email-pref-section h3 {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #f2f2f2;
  padding-bottom: 8px;
}

/* Preference List */
.email-pref-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Individual Item */
.email-pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.25s ease;
}

.email-pref-item:last-child {
  border-bottom: none;
}

.email-pref-item:hover {
  background-color: rgba(13, 110, 253, 0.03);
}

/* Info Section */
.email-pref-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 4px;
}

.email-pref-info p {
  font-size: 13px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* Toggle Label */
.email-pref-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Custom Toggle Switch */
.email-pref-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 3rem;
  height: 1.5rem;
  background-color: #ccc;
  border: 2px solid #bbb;
  border-radius: 1.5rem;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Remove browser checkmark */
.email-pref-input::-ms-check,
.email-pref-input::-webkit-check-mark,
.email-pref-input::after {
  display: none !important;
  content: none !important;
}

/* Knob */
.email-pref-input::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

/* Checked State */
.email-pref-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.email-pref-input:checked::before {
  transform: translateX(1.45rem);
}

/* Focus Glow */
.email-pref-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  border-color: #0d6efd;
}



/* 🔹 Unique Form Loader Overlay */
.form-loader-overlay {
  position: fixed; /* changed from absolute */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 999999; /* make sure it appears above everything */
  backdrop-filter: blur(4px);
}

/* 🔹 Elegant Spinning Loader */
.form-loader {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(0, 123, 255, 0.2);
  border-top: 5px solid #007bff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.btn-add-new {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  margin-right: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
.btn-add-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 123, 255, 0.4);
}


/* --- Modal Base --- */
.wallet-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 15px;
}

/* --- Modal Content --- */
.wallet-modal-content {
  background: #ffffff;
  border-radius: 14px;
  width: 100%;
  max-width: 460px;
  padding: 25px 30px 35px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: relative;
  animation: popupFade 0.3s ease;
}

/* --- Close Button --- */
.wallet-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  transition: 0.2s;
}
.wallet-modal-close:hover {
  color: #000;
}

/* --- Modal Title --- */
.wallet-modal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

/* --- Form Styles --- */
.wallet-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.wallet-form select,
.wallet-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 18px;
  transition: all 0.25s ease;
  background-color: #f9f9f9;
}

.wallet-form select:focus,
.wallet-form input:focus {
  border-color: #007bff;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

/* --- Submit Button --- */
.wallet-submit-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid transparent; /* matches your design */
  border-radius: 8px;
  background: linear-gradient(135deg, #ff5e00, #ff5e00);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.wallet-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* CORRECT: Override the full 'background' property */
button.wallet-submit-btn:disabled,
button.wallet-submit-btn.is-disabled,
button.wallet-submit-btn[disabled] {
  background: #ccc !important;           /* NOT background-color */
  color: #666 !important;
  border: 1px solid #bbb !important;     /* since you removed border */
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  transform: none !important;
}



/* --- Animation --- */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .wallet-modal-content {
    padding: 20px;
    border-radius: 10px;
  }
} 

.swal2-container {
  z-index: 99999 !important;
}


/* Simple Modern Dropdown Styles */
.modern-status-dropdown select {
  width: 220px;
  padding: 6px 15px;
  border-radius: 25px;
  border: 2px solid #ccc;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  appearance: none; /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path fill='%23333' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
}

.modern-status-dropdown select:hover {
  border-color: #0d6efd;
}

.modern-status-dropdown select:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 6px rgba(13, 110, 253, 0.3);
}


/* Normal wallet grid (cards) */
#wallet-grid, .wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  align-items: start; /* important so cards align to top */
  padding: 20px;
  box-sizing: border-box;
}

/* When the grid is empty (we toggle this class via JS) */
.wallet-grid--empty {
  display: flex !important;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 40px;
}


#wallet-grid, .wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  align-items: start; /* important so cards align to top */
  padding: 20px;
  box-sizing: border-box;
}

/* When the grid is empty (we toggle this class via JS) */
.wallet-grid--empty {
  display: flex !important;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 40px;
}

/* Empty state styling */
.user-wallet {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: none;
  padding: 30px;
  border-radius: 12px;
  box-shadow: none;
  max-width: 520px;
  width: 100%;
}

.user-wallet img {
  width: 220px; /* bigger image */
  max-width: 60%;
  height: auto;
  margin-bottom: 22px;
  opacity: 0.98;
}

.user-wallet h3 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.user-wallet p {
  font-size: 13px;
  color: #6b7280;
  max-width: 420px;
  line-height: 1.5;
}

/* Small-screen adjustments (optional) */
@media (max-width: 600px) {
  .user-wallet img { width: 160px; max-width: 70%; }
  .user-wallet { padding: 24px; }
}



.user-transaction-empty {
  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal center */
  justify-content: center;  /* vertical center */
  text-align: center;
  padding: 40px 0;
  min-height: 300px;        /* adjust as needed */
}

.user-transaction-empty img {
  width: 160px;             /* or smaller/larger as you prefer */
  max-width: 100%;
  margin-bottom: 15px;
  opacity: 0.9;
}

.user-transaction-empty h3 {
  margin: 8px 0;
  font-size: 1.1rem;
  color: #222;
}

.user-transaction-empty p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.countdown-container {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.countdown-container .label {
  margin-right: 10px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  text-shadow: none;
}

.countdown {
  display: flex;
  align-items: center;
}

.time-box {
  background-color: #d32f2f; /* Red */
  color: #fff;
  padding: 2px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  min-width: 40px;
  text-align: center;
}

.colon {
  margin: 0 5px;
  font-weight: bold;
  color: #333;
  font-size: 18px;
}



   .atlas-main-portal {
            max-width: 1300px;
            margin: 0 auto;
        }

        .portal-header-zone {
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #ddd;
        }

        .portal-header-zone h1 {
            font-size: 2em;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        /* ----------------------- */
        /* --- 1. Filter Tab Styles --- */
        /* ----------------------- */
        .status-filter-group {
            display: flex;
            /* Enable horizontal scroll on mobile */
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 15px;
            margin-bottom: 20px;
            border-bottom: 2px solid #e0e0e0;
        }

        /* Hide the actual radio button */
        .status-filter-group input[type="radio"] {
            display: none;
        }

        .status-filter-group label {
            padding: 10px 20px;
            margin-right: 10px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap; /* Prevent tabs from wrapping */
            background-color: #ecf0f1;
            color: #555;
            transition: background-color 0.2s, color 0.2s;
            border: 1px solid transparent;
        }

        /* Active tab style */
        .status-filter-group input[type="radio"]:checked + label {
            background-color: #3498db; /* Primary blue */
            color: white;
            border-color: #2980b9;
        }

        .status-filter-group label:hover {
            background-color: #dce0e5;
        }

        /* ----------------------- */
        /* --- 2. Tab Content Area --- */
        /* ----------------------- */
        .atlas-content-panel {
            display: none; /* Hide all content by default */
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            overflow-x: auto;
        }

        /* Show the content matching the checked radio button's value */
        #filter-due:checked ~ .content-display-wrapper #panel-due,
        #filter-process:checked ~ .content-display-wrapper #panel-process,
        #filter-shipped:checked ~ .content-display-wrapper #panel-shipped,
        #filter-done:checked ~ .content-display-wrapper #panel-done,
        #filter-issue:checked ~ .content-display-wrapper #panel-issue {
            display: block;
        }


        /* --- Order Data Table Styles --- */
        .order-data-grid {
            width: 100%;
            min-width: 700px; /* Ensure table is readable on larger screens/desktop */
            border-collapse: collapse;
        }

        .order-data-grid th, .order-data-grid td {
            padding: 15px;
            text-align: left;
            font-size: 1.0em;
            border-bottom: 1px solid #eee;
        }

        .order-data-grid th {
            background-color: #f0f3f7;
            font-weight: 600;
            color: #555;
            text-transform: uppercase;
            font-size: 0.9em;
        }
        
         .order-data-grid tr {
             font-size: 0.9em
         }

        .order-data-grid tbody tr:hover {
            background-color: #f9f9ff;
        }

        /* --- Status Indicators --- */
        .status-tag {
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.8em;
            text-transform: uppercase;
            white-space: nowrap;
            display: inline-block;
        }

        /* Specific Status Colors */
        .tag-pending-payment { background-color: #fdeded; color: #e74c3c; } /* Pending Payment (Red) */
        .tag-in-process { background-color: #fcf8e3; color: #f39c12; } /* Waiting for Delivery/Processing (Yellow) */
        .tag-out-delivery { background-color: #d9edf7; color: #3498db; } /* Waiting for Receipt/Shipped (Blue) */
        .tag-finalized { background-color: #dff0d8; color: #2ecc71; } /* Completed (Green) */
        .tag-after-sales { background-color: #f2e1f9; color: #9b59b6; } /* Refund/After Sales (Purple) */
        
        /* --- Interactive Action Buttons --- */
        .action-column {
            white-space: nowrap;
        }

        .action-button {
            padding: 8px 12px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.85em;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.2s;
            margin-left: 5px;
        }

        .primary-action-btn {
            background-color: #2ecc71;
            color: white;
        }

        .primary-action-btn:hover:not(:disabled) {
            background-color: #27ae60;
        }

        .primary-action-btn:disabled {
            background-color: #bdc3c7;
            cursor: not-allowed;
        }

        .secondary-action-btn {
            background-color: #eef1f5;
            color: #34495e;
            border: 1px solid #dcdcdc;
        }

        .secondary-action-btn:hover {
            background-color: #dce0e5;
        }
        
        /* ----------------------- */
        /* --- 3. Detail View (Modal) Styles --- */
        /* ----------------------- */

        /* General Modal Styles */
        .detail-view-modal {
            position: fixed; top: 0px; left: 0; width: 100%; height: 100%; z-index: 1000;
            visibility: hidden; opacity: 0; transition: opacity 0.3s, visibility 0.3s;
        }

        .detail-view-modal:target {
            visibility: visible; opacity: 1;
        }

        .modal-background-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            /* Allow the overlay itself to scroll vertically if the content is too tall */
            overflow-y: auto;
            padding: 20px 0; /* Add vertical padding for mobile content */
        }

        .modal-main-content {
            background: white;
            padding: 30px;
            padding-top: 80px;
            border-radius: 10px;
            width: 90%;
            max-width: 800px;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(-50px);
            transition: transform 0.3s ease-out;
            /* Set max height on content for better mobile scrolling */
            max-height: calc(100vh - 40px);
            overflow-y: auto;
        }

        /* Existing Modal Inner Styles */
        .modal-close-icon { position: absolute; top: 35px; right: 20px; padding-top: 20px; font-size: 2em; text-decoration: none; color: #aaa; line-height: 1; transition: color 0.2s; }
        .modal-close-icon:hover { color: #333; }
        .modal-title-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
        .modal-title-bar h2 { margin: 0; font-size: 1.2em; color: #2c3e50; }
        .modal-info-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 20px; }
        .info-col h3 { font-size: 0.9em; color: #34495e; margin-top: 0; margin-bottom: 15px; }
        .info-col p{ font-size: 0.9em}
        info-col address{ font-size: 0.9em}
        .order-item-list { list-style: none; padding: 0; margin-bottom: 20px; }
        .order-item-list li { padding: 8px 0; border-bottom: 1px dotted #f0f0f0; display: flex; justify-content: space-between; font-size: 0.95em; }
        .order-financial-summary { padding-top: 15px; border-top: 1px solid #eee; text-align: right; }
        .order-financial-summary p { margin: 5px 0; font-size: 0.9em }
        .order-financial-summary .final-total { font-weight: bold; font-size: 1.1em; color: #27ae60; }
        .margin-top-small { margin-top: 15px; }
       .modal-action-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: right;
    
    /* 👇 Key changes for "in twos" layout: */
    display: flex; /* 1. Use Flexbox to align children horizontally */
    justify-content: flex-end; /* 2. Push content to the right (as per original text-align: right) */
    gap: 10px; /* 3. Add space between the buttons */
}
        .full-span { width: 100%; }
        .modal-action-footer .secondary-action-btn { margin-top: 10px; width: 100%; text-align: center; }

        /* --- Mobile Responsiveness (Table) --- */
        @media (max-width: 768px) {
            .order-data-grid { min-width: 100%; } /* Allow table to shrink with screen */
            .order-data-grid thead { display: none; }
            .order-data-grid tr {
                display: block;
                margin-bottom: 15px;
                border: 1px solid #ddd;
                border-radius: 8px;
                padding: 10px;
            }
            .order-data-grid td {
                display: block;
                text-align: right;
                padding: 8px 15px;
                border-bottom: none;
                position: relative;
            }
            .order-data-grid td:before {
                content: attr(data-label);
                position: absolute;
                left: 15px;
                font-weight: bold;
                color: #555;
                font-size: 0.9em;
            }

            .action-column {
                text-align: left;
                padding-top: 15px;
                border-top: 1px solid #eee;
                display: flex;
                justify-content: space-between;
            }
            
            .action-button {
                flex-grow: 1;
                margin: 0 5px;
            }

            /* Modal Mobile Adjustments */
            .modal-info-layout {
                /* Stacks the two columns vertically on mobile */
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .info-col h3 {
                margin-top: 10px;
            }
            .modal-title-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            .modal-title-bar .status-tag {
                margin-top: 10px;
            }
        }
        
  .detail-view-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.detail-view-modal:target {
    display: flex !important;
}
.modal-close-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
}       
        
          /* --- Product Card Structure --- */
        .product-listing-v2-card {
            background-color: #fff;
            border-radius: 0px;
            box-shadow: none;
            margin-bottom: 15px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            max-width: 600px; /* Container width */
            width: 100%;
            box-sizing: border-box;
        }

        .product-listing-v2-card-top {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .product-listing-v2-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            margin-right: 15px;
            border: 1px solid #eee;
        }

        .product-listing-v2-details {
            flex-grow: 1;
        }

        .product-listing-v2-name {
            font-size: 0.9em;
            font-weight: 500;
            color: #333;
            margin: 0 0 5px 0;
        }

        .product-listing-v2-original-price {
            font-size: 1.0em;
            color: #333;
            margin: 0;
        }

        .product-listing-v2-card-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-listing-v2-actual-payment {
            display: flex;
            align-items: baseline;
            font-size: 0.9em;
        }

        .product-listing-v2-payment-label {
            font-size: 0.9em;
            color: #555;
            margin-right: 5px;
        }

        .product-listing-v2-payment-value {
            font-size: 1.1em;
            font-weight: bold;
            color: #ff5e00; /* Red color for actual payment */
        }

        .product-listing-v2-shipping-btn {
            background-color: #3498db; /* Blue color for button */
            color: #fff;
            border: none;
            border-radius: 20px; /* Pill shape */
            padding: 8px 18px;
            font-size: 0.85em;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
            transition: background-color 0.2s ease;
        }

        .product-listing-v2-shipping-btn:hover {
            background-color: #2980b9;
        }
        
        
        .product-listing-v2-scroll {
  max-height: 300px;       /* adjust height as needed */
  overflow-y: auto;
  padding-right: 8px;       /* prevent scrollbar overlap */
}

/* Optional — nicer scrollbar style */
.product-listing-v2-scroll::-webkit-scrollbar {
  width: 6px;
}
.product-listing-v2-scroll::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}
.product-listing-v2-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}




/* OVERLAY */
.ws-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* MODAL BOX (REDUCED SIZE) */
.ws-modal-box {
    width: 90%;
    max-width: 750px; /* was 900 – reduced to avoid oversize */
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    position: relative;
    animation: wsFadeIn .25s ease-out;
}

@keyframes wsFadeIn {
    from { opacity: 0; transform: scale(.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* CLOSE BUTTON */
.ws-modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 32px;
    cursor: pointer;
    font-weight: bold;
    color: #ff5722;
}

/* GRID */
.ws-modal-content {
    display: flex;
    flex-direction: column;   /* stack items */
    gap: 20px;
}

/* LEFT SIDE IMAGE COLUMN */
.ws-modal-images {
    width: 100%;
    max-width: 480px;        /* bigger image area */
    margin: 0 auto;         /* center everything */
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* MAIN IMAGE AREA */
.ws-modal-image-wrapper {
    width: 100%;
    max-width: 480px;
    height: 420px;          /* BIG display area */
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.ws-modal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;     /* logo / product stays sharp */
    border-radius: 12px;
    cursor: zoom-in;
    transition: transform .25s ease;
}


/* ZOOM EFFECT */
.ws-modal-image-wrapper img:hover {
    transform: scale(1.2);
}

/* ARROWS */
.ws-modal-arrow {
    position: absolute;
    top: 45%;
    color: white;
    font-size: 26px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.ws-modal-prev { left: 10px; }
.ws-modal-next { right: 10px; }

/* THUMBNAILS */
.ws-modal-thumbs {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ws-modal-thumbs img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
}
.ws-modal-thumbs img:hover {
    border-color: #ff5722;
}

/* RIGHT SIDE INFO PANEL - PROFESSIONAL LOOK */
.ws-modal-info {
    flex: 1;
    min-width: 280px;
    padding: 20px 24px 24px 24px;     /* Reduced top padding dramatically */
    background: #ffffff;
    border-radius: 12px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow-y: auto;
}

/* Title */
.ws-modal-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

/* Price + Profit Row */
.ws-price-profit-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.ws-price-box, .ws-profit-box {
    flex: 1;
    min-width: 130px;
    background: #f8f9fa;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}
.ws-label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}
.ws-value {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
}
.ws-profit {
    color: #28a745 !important;
}

/* Specs Grid */
.ws-specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.ws-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e9ecef;
}
.ws-spec:last-child { border-bottom: none; }
.ws-spec-label {
    font-size: 14px;
    color: #555;
}
.ws-spec-value {
    font-weight: 600;
    font-size: 15px;
}
.ws-in-stock { color: #28a745; }
.ws-quality { color: #007bff; }

/* Description */
.ws-description-section {
    margin-top: 8px;
}
.ws-description-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}
.ws-modal-description {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: #444;
}

/* Sync Button */
#wsModalSyncButton {
    margin-top: auto;                 /* Pushes button to bottom */
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    margin-top: 20px;
}
/* SYNC BUTTON */
.ws-modal-sync-btn {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: #ff5722;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.ws-modal-sync-btn:hover {
    background: #e64a19;
}
.ws-modal-sync-btn.disabled {
    background: gray;
    cursor: not-allowed;
}

/* MOBILE FIX */
@media (max-width: 600px) {
    .ws-modal-content {
        flex-direction: column;
    }
    .ws-modal-images,
    .ws-modal-info {
        max-width: 100%;
        flex: 100%;
    }
    .ws-modal-image-wrapper img {
        height: 220px;
    }
}

/* OVERLAY FIX — allow scrolling */
.ws-modal-overlay {
    overflow-y: auto !important;
    align-items: flex-start !important; /* remove center blocking */
    padding: 20px 0; /* space for top + bottom on mobile */
}

/* MODAL HEIGHT FIX */
.ws-modal-box {
    max-height: 90vh;     /* Make modal never exceed screen */
    overflow-y: auto;     /* Modal scrolls internally */
}

/* MOBILE SPECIAL FIX */
@media (max-width: 600px) {
    .ws-modal-overlay {
        padding: 10px 0 !important;  /* make modal scrollable */
    }
    .ws-modal-box {
        width: 95%;
        max-height: 92vh;   /* mobile-friendly */
        overflow-y: auto;
    }
}
 