@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Noto Kufi Arabic",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Noto Kufi Arabic",  sans-serif;
  --nav-font: "Noto Kufi Arabic",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e0925; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #8c0d4f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #f5f9fc; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f3f9ff; /* 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: #f8f4f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #232931;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #397deb;
  --surface-color: #38424f;
  --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);
  font-size: 1rem;
}

/* Added by razan*/
.me-2
 {
    margin-left: .5rem !important;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .top-bar {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  font-size: 14px;
}

.header .top-bar .top-bar-item {
  color: var(--default-color);
}

.header .top-bar .top-bar-item a {
  color: var(--accent-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.header .top-bar .top-bar-item a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.header .top-bar .top-bar-item .selected-icon {
  color: var(--accent-color);
  opacity: 1;
  width: 16px;
}

.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);
}

.header .main-header .logo h1 span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .header .main-header .logo h1 {
    font-size: 24px;
  }
}

.header .main-header .desktop-search-form {
  min-width: 440px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .header .main-header .desktop-search-form {
    display: none;
  }
}

.header .main-header .header-actions {
  gap: 16px;
}

.header .main-header .header-actions .header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--default-color);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}


.header .main-header .header-actions .header-action-btn .bi {
  font-size: 24px;
}

/* edited by razan */
.header .main-header .header-actions .header-action-btn i {
  font-size: 24px;
  margin-left: 6px;
}

.header .main-header .header-actions .header-action-btn i.bi-person {
  font-size: 26px;
}

.header .main-header .header-actions .header-action-btn .action-text {
  font-weight: 500;
  font-size: 14px;
}

.header .main-header .header-actions .header-action-btn:hover {
  color: var(--accent-color);
}

.header .main-header .header-actions .header-action-btn .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .main-header .account-dropdown .dropdown-menu {
  background-color: var(--surface-color);
  min-width: 280px;
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header {
  padding: 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header h6 {
  margin: 0 0 0.25rem;
  color: var(--heading-color);
  font-size: 16px;
  text-align: right;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: right;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body {
  padding: 1rem 0;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item {
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.2s ease;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.2s ease;
  font-size: 16px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover i {
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer {
  padding: 1.25rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn {
  font-size: 14px;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.header .main-header .cart-dropdown .cart-dropdown-menu {
  background-color: var(--surface-color);
  min-width: 320px;
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  right: auto;
  left: -74px;
}

@media (max-width: 576px) {
  .header .main-header .cart-dropdown .cart-dropdown-menu {
    min-width: 280px;
  }
 
.search-results-header .results-count h2 {
  font-size: 15px;
}

.search-results-header .results-count p {
  font-size: 14px;
}
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-header {
  padding: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: right;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-header h6 {
  margin: 0;
  color: var(--heading-color);
  font-size: 16px;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body {
  max-height: 320px;
  overflow-y: auto;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-items {
  padding:15px;
  text-align: right;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item:last-child {
  border-bottom: none;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-image {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content {
  flex: 1;
  text-align: right;
  margin-right: 10px;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content .cart-item-title {
  font-size: 14px;
  margin: 0 0 4px;
  color: var(--heading-color);
  font-weight: 500;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content .cart-item-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-remove {
  background: none;
  border: none;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  padding: 0;
  margin-left: 8px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-remove:hover {
  color: #dc3545;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer {
  padding: 1rem;
  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 .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #000;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-total .cart-total-price {
  font-size: 16px;
  color: #000;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions {
  display: flex;
  gap: 8px;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn {
  flex: 1;
  font-size: 14px;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn-outline-primary {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.header .search-form {
  margin: 0;
}

.header .search-form .input-group {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.header .search-form .input-group:focus-within {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

/*edited by razan*/
.header .search-form .input-group .form-control {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: none;
  padding: 9px 20px;
  font-size: 15px;
  background-color: transparent;
  color: var(--default-color);
  border-radius: 8px 0 0 8px;
}

.header .search-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 15px;
}

.header .search-form .input-group .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.header .search-form .input-group .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 25px;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  border-radius: 0 8px 8px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header .search-form .input-group .search-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: width 0.3s ease;
  z-index: -1;
}

.header .search-form .input-group .search-btn:hover::before {
  width: 100%;
}

.header .search-form .input-group .search-btn i {
  font-size: 18px;
  position: relative;
}

.header .header-nav {
  background-color: var(--background-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 10px 0;
}

.header .announcement-bar {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.header .announcement-bar .announcement-slider {
  height: 24px;
  overflow: hidden;
}

.header .announcement-bar .announcement-slider .swiper-wrapper {
  height: auto !important;
}

.header .announcement-bar .announcement-slider .swiper-slide {
  text-align: center;
  height: 24px;
  line-height: 24px;
}

.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;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  /* edited by razan */
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-right: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  /* edited by razan color */
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  /* edited by razan */
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-right: 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 .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }



  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Products Mega Menu 1 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-1 {
    position: static;
    /*  Hide Desktop Mega Menu 1 in Desktop */
    /* Bootstrap Tabs Navigation */
    /* Tab Content */
  }

  .navmenu .products-megamenu-1 .mobile-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-1 .desktop-megamenu,
  .navmenu .products-megamenu-1 .active,
  .navmenu .products-megamenu-1 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .products-megamenu-1 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs {
    margin-bottom: 15px;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 10px 20px;
    color: var(--nav-dropdown-color);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
    border-color: transparent;
  }

  .navmenu .products-megamenu-1 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Grid */
    /* Product Grid */
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .tab-content {
    display: none;
  }

  .navmenu .products-megamenu-1 .megamenu-content .tab-content.active {
    display: block;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column {
    background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4 {
    color: var(--heading-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column h4:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li {
    margin-bottom: 10px;
    background-color: none !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start !important;
    width: 100%;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li:last-child {
    margin-bottom: 0;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a {
    color: var(--nav-dropdown-color);
    font-size: 14px;
    transition: 0.3s;
    padding: 0 0 0 20px;
    display: block;
    position: relative;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:before {
    content: "\f285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--accent-color);
    opacity: 0.7;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column ul li a:hover:before {
    opacity: 1;
  }

  .navmenu .products-megamenu-1 .megamenu-content .category-grid .category-column .active {
    background-color: none;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 10px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card {
    background-color: var(--surface-color);
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image {
    height: 160px;
    position: relative;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new,
  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 1;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-new {
    background-color: #28a745;
    color: white;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-image .badge-sale {
    background-color: #dc3545;
    color: white;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info {
    padding: 15px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info h5 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .price .original-price {
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-right: 5px;
    font-weight: normal;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view {
    display: inline-block;
    padding: 5px 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .megamenu-content .product-grid .product-card .product-info .btn-view:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
}

/* Products Mega Menu 1 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-1 {
    /* Hide Desktop Mega Menu 1 in Mobile */
  }

  .navmenu .products-megamenu-1 .desktop-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .products-megamenu-1 .mobile-megamenu li ul {
    padding: 0;
  }

  .navmenu .products-megamenu-1 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/* Products Mega Menu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu-2 {
    position: static;
    /* Hide Mobile Mega Menu in Desktop */
    /* Tabs Navigation */
    /* Tab Content */
  }

  .navmenu .products-megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-2 .desktop-megamenu,
  .navmenu .products-megamenu-2 .active,
  .navmenu .products-megamenu-2 .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .products-megamenu-2 .desktop-megamenu {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs {
    padding: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-item {
    margin: 0;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    color: var(--nav-dropdown-color);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    background-color: transparent;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.5px;
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .products-megamenu-2 .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .products-megamenu-2 .megamenu-content {
    flex: 1;
    overflow-y: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Layout */
    /* Categories Section */
    /* Featured Section */
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-2 .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .tab-pane {
    padding: 25px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .category-layout {
    display: flex;
    gap: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section {
    flex: 1;
    /* Category Headers */
    /* Category Links */
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 15px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-headers h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a {
    color: var(--nav-dropdown-color);
    font-size: 14px;
    transition: 0.3s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
  }

  .navmenu .products-megamenu-2 .megamenu-content .categories-section .category-links .link-row a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section {
    width: 300px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image {
    position: relative;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content h3 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    width: fit-content;
  }

  .navmenu .products-megamenu-2 .megamenu-content .featured-section .featured-image .featured-content .btn-shop:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
  }
}

/* Products Mega Menu 2 - Mobile */
@media (max-width: 1199px) {
  .navmenu .products-megamenu-2 {
    /* Hide Desktop Mega Menu in Mobile */
  }

  .navmenu .products-megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li a {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .products-megamenu-2 .mobile-megamenu li ul {
    padding: 0;
  }

  .navmenu .products-megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-main {
  padding: 70px 0 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.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: 15px;
  font-weight: 500;
  margin-bottom: 19px;
  position: relative;
  padding-bottom: 12px;
}

/* edited by razan */
.footer .footer-main .footer-widget h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  right: 0;
}

/*edited by razan*/
@media (max-width: 767.98px) {
  .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 h4:after {
    right:40%;
    transform: translateX(-50%);
  }
}

.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;
}
/*edited by razan*/
.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-left: 12px;
  margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.footer .footer-main .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*edited by razan*/
.footer .footer-main .footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

/*edited by razan*/
.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-left: 8px;
}

.footer .footer-main .app-buttons .app-btn span {
  font-size: 13px;
  font-weight: 500;
}

.footer .footer-main .app-buttons .app-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-main .social-links {
  margin-top: 25px;
}

.footer .footer-main .social-links h5 {
  margin-bottom: 15px;
}

.footer .footer-main .social-links .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-main .social-links .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-main .social-links .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-bottom {
  padding: 25px 0;
}

.footer .footer-bottom .payment-methods .payment-icons {
  display: flex;
  gap: 12px;
}

.footer .footer-bottom .payment-methods .payment-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-bottom .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.footer .footer-bottom .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-bottom .copyright p strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .footer .footer-main {
    padding: 60px 0 30px;
  }

  .footer .footer-widget h4 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-main {
    padding: 50px 0 20px;
  }

  .footer .footer-main .footer-widget {
    text-align: center;
  }

  .footer .footer-main .footer-widget h4:after {
    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: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  position: relative;
}

.page-title h1 {
    font-size: 15px;
    font-weight: 600;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-right: 10px;
    color: #8c0d4f;
    font-weight: 600;
    font-size: 13px;
}
.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*  Edited by razan 
change min-height:85vh to max-height:70vh
*/
.hero {
  max-height: 55vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #f6ebf0;
}

/* Added by razan */
@media (max-width: 767.98px) {
  .hero {
    max-height: 135vh;
        }
  }

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  z-index: 0;
  transform: rotate(-5deg);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  padding-right: 2rem;
}

.hero .hero-content .season-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Edited by razan - change font size */
.hero .hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-content .hero-cta {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero .hero-content .hero-cta .btn-primary {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .hero-cta .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero .hero-content .hero-cta .btn-primary:hover::before {
  width: 100%;
}

.hero .hero-content .hero-cta .link-with-arrow {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-cta .link-with-arrow i {
  transition: transform 0.3s ease;
}

.hero .hero-content .hero-cta .link-with-arrow:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .hero-content .hero-cta .link-with-arrow:hover i {
  transform: translateX(5px);
}

.hero .hero-content .hero-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero .hero-content .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero .hero-content .hero-features .feature-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-features .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero .hero-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Edited by razan - change max width to 420px */
.hero .hero-image-wrapper .hero-image {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 420px;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.1));
  animation: float 6s ease-in-out infinite;
}

.hero .hero-image-wrapper .hero-image .main-product {
  border-radius: 10px;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.hero .hero-image-wrapper .hero-image .main-product:hover {
  transform: scale(1.02);
}

/* Edited by razan - change top:30px to top:60px */
.hero .hero-image-wrapper .hero-image .floating-badge {
  position: absolute;
  top: 60px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: pulse 2s infinite ease-in-out;
}

/* Added by razan */
@media (max-width: 767.98px) {
/*  .hero .hero-image-wrapper .hero-image .floating-badge {*/
/*display: none;*/
/*        }*/
  }

.hero .hero-image-wrapper .hero-image .floating-badge .discount {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.hero .hero-image-wrapper .hero-image .floating-badge .discount-text {
  font-size: 0.8rem;
  font-weight: 500;
}



.hero .hero-image-wrapper .decorative-element {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  z-index: 1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1199.98px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero {
    max-height: 145vh;
    padding: 5rem 0;
  }

  .hero::before {
    width: 100%;
    height: 50%;
    top: 0;
    right: -20%;
  }

  .hero .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content h1 br {
    display: none;
  }

  .hero .hero-content p {
    max-width: 100%;
  }

  .hero .hero-content .hero-cta {
    justify-content: center;
  }

  .hero .hero-content .hero-features {
    justify-content: center;
  }

  .hero .hero-image-wrapper .hero-image {
    margin: 0 auto;
  }

  .hero .hero-image-wrapper .decorative-element {
    right: 50%;
    transform: translateX(140px);
    width: 150px;
    height: 150px;
  }
}

/* Small devices Edited by razan
change font-size and margin */
@media (max-width: 767.98px) {
  .hero .hero-content h1 {
    font-size: 1.2rem;
    /* margin-top: 9rem; */
        }
 

  .hero .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero .hero-image-wrapper .floating-badge {
    top: 10px;
    right: -20px;
    height: 80px;
    width: 80px;
    padding: 0.5rem;
  }

  .hero .hero-image-wrapper .floating-badge .discount {
    font-size: 1.2rem;
  }

  .hero .hero-image-wrapper .floating-badge .discount-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 4rem 0;
  }

  .hero .hero-content .season-tag {
    font-size: 0.8rem;
  }

  .hero .hero-content .hero-features {
    /*flex-direction: column;*/
    align-items: center;
    gap: 1rem;
  }
}

/*--------------------------------------------------------------
# Category Cards Section
--------------------------------------------------------------*/
.category-cards .category-slider {
  position: relative;
  padding: 1rem 0;
}

.category-cards .category-slider .container {
  position: relative;
}

.category-cards .category-slider .swiper-wrapper {
  height: auto !important;
}

.category-cards .category-slider .swiper-button-next,
.category-cards .category-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  color: var(--heading-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-cards .category-slider .swiper-button-next::after,
.category-cards .category-slider .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
}

.category-cards .category-slider .swiper-button-next:hover,
.category-cards .category-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*edited by razan*/
/* .category-cards .category-slider .swiper-button-prev {
  left: 0;
} */

/*edited by razan*/
/* .category-cards .category-slider .swiper-button-next {
  right: 0;
} */

.category-cards .category-card {
  /* background-color: color-mix(in srgb, var(--default-color), transparent 95%); */
  border-radius: 0.5rem;
  padding: 1rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-cards .category-card:hover {
  transform: translateY(-5px);
}

.category-cards .category-card:hover .category-title {
  color: var(--accent-color);
}

.category-cards .category-card:hover .category-image img {
  filter: brightness(1.08);
  transform: rotate(4deg) scale(1.06);
}

.category-cards .category-card .category-image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.category-cards .category-card .category-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.category-cards .category-card .category-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  transition: 0.3s;
}

.category-cards .category-card .category-count {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .category-cards .category-slider .swiper-button-prev {
    right: -15px;
  }

  .category-cards .category-slider .swiper-button-next {
    left: -15px;
  }

  .category-cards .category-card {
    padding: 0.75rem;
  }

  .category-cards .category-card .category-image {
    height: 100px;
    margin-bottom: 0.75rem;
  }

  .category-cards .category-card .category-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .category-cards .category-card .category-count {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {

  .category-cards .category-slider .swiper-button-prev,
  .category-cards .category-slider .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .category-cards .category-slider .swiper-button-prev::after,
  .category-cards .category-slider .swiper-button-next::after {
    font-size: 0.85rem;
  }

  .category-cards .category-card .category-image {
    height: 90px;
  }
}

/* edited by razan 3/6/2025 */

@media (max-width: 575.98px) {



  .category-cards .category-card {
    padding: 0.5rem;
  }
/* end */

  .category-cards .category-card .category-image {
    height: 80px;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Product List 3 Section
--------------------------------------------------------------*/
.product-list-3 .product-card {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-list-3 .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-list-3 .product-card:hover .default-image {
  opacity: 0;
}

.product-list-3 .product-card:hover .hover-image {
  opacity: 1;
}

.product-list-3 .product-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background-color: #f8f9fa;
}

.product-list-3 .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-list-3 .product-image .default-image {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.product-list-3 .product-image .hover-image {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-list-3 .product-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.product-list-3 .product-tags .badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 500;
  border-radius: 4px;
  margin-right: 5px;
}

.product-list-3 .product-tags .bg-accent {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-list-3 .product-tags .bg-sale {
  background-color: #ff6b6b;
  color: var(--contrast-color);
}

.product-list-3 .product-tags .bg-sold-out {
  background-color: #6c757d;
  color: var(--contrast-color);
}

.product-list-3 .product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-list-3 .product-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.product-list-3 .product-actions button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-list-3 .product-actions button i {
  font-size: 1rem;
}

.product-list-3 .product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-list-3 .product-info {
  padding: 1.25rem;
}

.product-list-3 .product-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  height: 2.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.product-list-3 .product-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-list-3 .product-title a:hover {
  color: var(--accent-color);
}

.product-list-3 .product-price {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-list-3 .product-price .current-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
}

.product-list-3 .product-price .original-price {
  font-size: 0.875rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-list-3 .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #ffc107;
  font-size: 0.875rem;
}

.product-list-3 .product-rating i {
  margin-right: 2px;
}

.product-list-3 .product-rating .rating-count {
  margin-right: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
}

.product-list-3 .btn-add-to-cart {
  width: 100%;
  padding: 0.6rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.product-list-3 .btn-add-to-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

/* Added by razan */
/*.product-list .btn-add-to-cart {*/
/*  width: 85%;*/
/*  padding: 0.6rem;*/
/*  background-color: var(--accent-color);*/
/*  color: var(--contrast-color);*/
/*  border: none;*/
/*  border-radius: 4px;*/
/*  font-size: 0.875rem;*/
/*  font-weight: 500;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  transition: background-color 0.3s ease;*/
/*}*/
.product-list .btn-add-to-cart {
    width: 100%;
    padding: 0.6rem;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
/*.product-list.btn-add-to-cart:hover {*/
/*  background-color: color-mix(in srgb, var(--accent-color), #000 10%);*/
/*}*/

.product-list-3 .btn-add-to-cart i {
  font-size: 1rem;
}

.product-list-3 .btn-add-to-cart.btn-disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

.product-list-3 .btn-add-to-cart.btn-disabled:hover {
  background-color: #e9ecef;
}

@media (max-width: 991.98px) {
  .product-list-3 .product-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .product-list-3 .product-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .product-list-3 .product-actions {
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Product List 4 Section
--------------------------------------------------------------*/
.product-list-4 .product-filters ul {
  gap: 10px;
}

.product-list-4 .product-filters ul li {
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--default-color);
  cursor: pointer;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.product-list-4 .product-filters ul li:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.product-list-4 .product-filters ul li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.product-list-4 .product-container {
  position: relative;
  min-height: 400px;
}

.product-list-4 .product-item {
  margin-bottom: 30px;
}

.product-list-4 .product-card {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.product-list-4 .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-list-4 .product-card:hover .main-img {
  opacity: 0;
}

.product-list-4 .product-card:hover .hover-img {
  opacity: 1;
}

.product-list-4 .product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.product-list-4 .product-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

.product-list-4 .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product-list-4 .main-img {
  opacity: 1;
  z-index: 1;
}

.product-list-4 .hover-img {
  opacity: 0;
  z-index: 2;
}

.product-list-4 .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 30px;
}

.product-list-4 .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.product-list-4 .product-info {
  padding: 20px;
}

.product-list-4 .product-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.product-list-4 .product-title a {
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.product-list-4 .product-title a:hover {
  color: var(--accent-color);
}

.product-list-4 .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.product-list-4 .current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.product-list-4 .old-price {
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.product-fixed-icons {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-fixed-icons button {
width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--surface-color) !important;
    border: none;
    color: #8c0d4f !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    cursor: pointer;
    text-decoration: none;
}

.product-fixed-icons button i {
  font-size: 18px;
  color: var(--default-color);


}

.product-fixed-icons button:hover i {
  background-color: var(--accent-color) !important;
  color: var(--contrast-color) !important;
width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    cursor: pointer;
    text-decoration: none;
}



/* Added by razan */
.product-list .product-info .product-price .old-price {
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.product-list .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.product-list .product-info .product-price .current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.old-price {
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
  margin-left: 10px;
}

.product-list-4 .product-info .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 14px;
  color: #FFB800;
  justify-content: center;
}

.product-list-4 .product-info .product-rating span {
  margin-left: 5px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-list-4 .view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.product-list-4 .view-all-btn i {
  transition: transform 0.3s ease;
}

.product-list-4 .view-all-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.product-list-4 .view-all-btn:hover i {
  transform: translateX(5px);
}

/*------------------- Added by Razan -------------------*/
.product-list .view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.product-list .view-all-btn i {
  transition: transform 0.3s ease;
}

.product-list .view-all-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.product-list .view-all-btn:hover i {
  transform: translateX(5px);
}
/*.product-list .product-container .product-item {*/
/*  margin-bottom: 30px;*/
/*}*/


.product-list-3 .view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.product-list-3 .view-all-btn i {
  transition: transform 0.3s ease;
}

.product-list-3 .view-all-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.product-list-3 .view-all-btn:hover i {
  transform: translateX(5px);
}
.product-list-3 .product-container .product-item {
  margin-bottom: 30px;
}

/*------------------- End Added by Razan -------------------*/

@media (max-width: 991.98px) {
  .product-list-4 .product-container .product-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .product-list-4 .product-filters ul {
    justify-content: center;
  }

  .product-list-4 .product-filters ul li {
    padding: 6px 15px;
    font-size: 11px;
  }

  .product-list-4 .product-info {
    padding: 15px;
  }

  .product-list-4 .product-info .product-title {
    font-size: 15px;
  }

  .product-list-4 .product-info .product-price .current-price {
    font-size: 16px;
  }

  .product-list-4 .product-info .product-price .old-price {
    font-size: 11px !important;
  }
}

@media (max-width: 575.98px) {
  .product-list-4 .product-container .row {
    /*margin-left: -10px;*/
    /*margin-right: -10px;*/
  }

  .product-list-4 .product-container .product-item {
    /*padding-left: 10px;*/
    /*padding-right: 10px;*/
    margin-bottom: 15px;

  }
}

/*--------------------------------------------------------------
# Product List Section
--------------------------------------------------------------*/
.product-list .product-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-list .product-card:hover {
  transform: translateY(-4px);
}

.product-list .product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.product-list .product-card:hover .hover-image {
  transform: scale(1);
  opacity: 1;
}

.product-list .product-card:hover .main-image {
  transform: scale(1.1);
  opacity: 0;
}

.product-list .product-image {
  position: relative;
  padding-top: 85%;
  background: color-mix(in srgb, var(--surface-color), transparent 97%);
  overflow: hidden;
}

.product-list .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 226px;
  height: 226px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product-list .product-image .main-image {
  transform: scale(1);
  opacity: 1;
}

.product-list .product-image .hover-image {
  transform: scale(1.1);
  opacity: 0;
}

.product-list .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 226px;
  height: 226px;
  background: color-mix(in srgb, var(--background-color), transparent 75%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.product-list .product-actions {
  position: absolute;
  left: 1rem;
  top: 25%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-list .product-actions .action-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--surface-color) !important;
  border: none;
  color: var(--accent-color) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateX(20px);
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.product-list .product-actions .action-btn:nth-child(2) {
  animation-delay: 0.1s;
}

.product-list .product-actions .action-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.product-list .product-actions .action-btn i {
  font-size: 1.25rem;
}


/* Start: Custom Actions Always Visible */
.product-list .custom-actions {
  position: absolute;
  top: 10px;
  left: 10px; /* Change to right: 10px if you prefer on the right for RTL */
  display: flex;
  flex-direction: column;
  z-index: 2;
  opacity: 1; /* Always visible */
  transform: translateX(0); /* No shift */
  color: #fff !important;
}

/* Style for buttons and links inside custom actions */
.product-list .custom-actions button,
.product-list .custom-actions a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-color) !important;
  border: none;
  color: #8c0d4f !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  cursor: pointer;
  text-decoration: none; /* Remove underline on <a> */
}

/* Hover effects */
.product-list .custom-actions button:hover,
.product-list .custom-actions a:hover {
  background-color: var(--accent-color) !important;
  color: var(--contrast-color) !important;
}

/* Icon size inside buttons/links */
.product-list .custom-actions button i,
.product-list .custom-actions a i {
  font-size: 1rem;
}

/* Remove the hover-only visibility effect */
.product-list .product-card:hover .custom-actions {
  opacity: 1;
  transform: translateX(0);
}
/* End: Custom Actions Always Visible */


/* all categories */
.product-overlay .product-icons {
position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    opacity: 1;
    transform: translateX(0);
    color: #fff !important;
}


.product-overlay .product-icons button {
width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--surface-color) !important;
    border: none;
    color: #8c0d4f !important;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.product-overlay .product-icons button:hover {
  background-color: var(--accent-color, #dc3545) !important;
  color: var(--contrast-color, #fff) !important;
}

.product-overlay .product-icons button i {
  font-size: 1rem;
  pointer-events: none;
}



/*------------------- End Added by Razan -------------------*/
.product-list .product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 1;
}

.product-list .product-badge.new {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.product-list .product-badge.sale {
  background: #ffa007;
  color: var(--contrast-color);
}

.product-list .product-details {
  padding: 1.5rem;
  background: var(--surface-color);
}

.product-list .product-category {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
}



.product-list .product-title {
  font-size: 15px;
  /*margin-bottom: 1rem;*/
}

.product-list .product-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-list .product-title a:hover {
  color: var(--accent-color);
}

.product-list .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-list .product-price {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--accent-color);
  display: inline;
  /* gap: 0.5rem; */
  align-items: center;
}

.product-list .product-price .original-price {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
  font-weight: normal;
}

.product-list .product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--heading-color);
  font-weight: 500;
  margin: 3px;
  font-size: 15px;
}

/*edited by razan*/
.product-list .product-rating i {
  color: #ffc107;
  margin-left: 0.25rem;
}

.product-list .product-rating span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  font-weight: normal;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .product-list .product-image {
    /*padding-top: 100% !important;*/
  }

  .product-list .product-details {
    padding: 0.25rem;
  }

  

  .product-list .product-price {
    font-size: 1rem;
  }

  .product-list .product-actions .action-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .product-list .product-actions .action-btn i {
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------------------
# Promo Cards Section
--------------------------------------------------------------*/
.promo-cards {
  --defaault-color: #555;
  --heading-color: #333;
}

.promo-cards .promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  background-size: cover;
  transition: transform 0.3s ease;
}

.promo-cards .promo-card:hover {
  transform: translateY(-5px);
}

.promo-cards .promo-card.men-card {
  background-color: #e6f4fa;
  background-image: url("/static/assets/img/backpink-04.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

}
.promo-cards .promo-card.women-card {
  background-color: #faf5e6 !important;
  background-image: url("/static/assets/img/backpink-05.jpg") !important;
}

.promo-cards .promo-card .product-image {
  margin: 0;
  padding: 15px;swiper-button-prev
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-cards .promo-card .product-image img {
  max-height: 185px;
  object-fit: contain;
}

.promo-cards .promo-card .promo-content {
  padding: 20px 15px 20px 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.promo-cards .promo-card .discount-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-color);
  letter-spacing: 0.5px;
}

.promo-cards .promo-card .product-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .promo-cards .promo-card .product-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .promo-cards .promo-card .product-title {
    font-size: 1.25rem;
  }
}

.promo-cards .promo-card .shop-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.promo-cards .promo-card .shop-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .promo-cards .promo-card .row {
    flex-direction: column;
  }

  .promo-cards .promo-card .col-5,
  .promo-cards .promo-card .col-7 {
    width: 100%;
  }

  .promo-cards .promo-card .product-image {
    padding: 15px 15px 0;
  }

  .promo-cards .promo-card .promo-content {
    padding: 15px 20px 20px;
    text-align: center;
  }

  .promo-cards .promo-card .promo-content .shop-btn {
    align-self: center;
  }
}

/*--------------------------------------------------------------
# Product List 2 Section
--------------------------------------------------------------*/
.product-list-2 .products-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}



.product-list-2 .products-carousel-wrapper .swiper-button-next,
.product-list-2 .products-carousel-wrapper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-list-2 .products-carousel-wrapper .swiper-button-next::after,
.product-list-2 .products-carousel-wrapper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: var(--default-color);
}

.product-list-2 .products-carousel-wrapper .swiper-button-next:hover,
.product-list-2 .products-carousel-wrapper .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

.product-list-2 .products-carousel-wrapper .swiper-button-next:hover::after,
.product-list-2 .products-carousel-wrapper .swiper-button-prev:hover::after {
  color: var(--contrast-color);
}

.product-list-2 .product-item {
  transition: transform 0.3s ease;
  height: auto;
}

.product-list-2 .product-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}



.product-list-2 .product-card:hover .product-image .quick-actions {
  opacity: 1;
  transform: translateY(0);
}


.product-list-2 .product-image {
    height: 200px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; 
    padding: 10px;
    overflow: hidden;
}

.product-list-2 .product-image img {
    width: auto;
    height: 100%;
    object-fit: contain; 
    transition: transform 0.5s ease;
}

.product-list-2 .product-image .discount-badge,
.product-list-2 .product-image .status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  z-index: 2;
}

.product-list-2 .product-image .discount-badge {
  background-color: #FF5252;
  color: white;
}

.product-list-2 .product-image .status-badge.new {
  background-color: #4CAF50;
  color: white;
}

.product-list-2 .product-image .status-badge.hot {
  background-color: #FF9800;
  color: white;
}


.product-list-2 .product-image .quick-actions .quick-action-btn.add-to-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.product-list-2 .product-info {
  padding: 20px;
}

.product-list-2 .product-info .product-category {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-list-2 .product-info .product-title {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}

.product-list-2 .product-info .product-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.product-list-2 .product-info .product-title a:hover {
  color: var(--accent-color);
}

.product-list-2 .product-info .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #FFB800;
}

/* edited by razan */
.product-list-2 .product-info .product-rating .rating-count {
  margin-right: 5px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-list-2 .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}



/* .product-list-2 .product-info .product-price .old-price {
  font-size: 14px !important;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
} */

.product-list-2 .shop-all-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.product-list-2 .shop-all-btn:hover {
  color: white;
  background-color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .product-list-2 .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .product-list-2 .product-image {
    height: 240px;
  }
}

@media (max-width: 767.98px) {
  .product-list-2 .categories {
    width: 100%;
    justify-content: space-between;
  }

  .product-list-2 .categories .category-btn {
    font-size: 0.9rem;
  }

  .product-list-2 .product-image {
    height: 220px;
  }

  .product-list-2 .product-image .quick-actions .quick-action-btn {
    width: 36px;
    height: 36px;
  }

  .product-list-2 .product-image .quick-actions .quick-action-btn.add-to-cart {
    padding: 0 15px;
  }

 
  .product-list-2 .product-info .product-title {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {

  .product-list-2 .shop-all-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .product-gallery {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-details .product-gallery {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.product-details .product-gallery .thumbnails-vertical {
  order: 2;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .product-details .product-gallery .thumbnails-vertical {
    order: 1;
    width: 80px;
    margin-top: 0;
  }
}

.product-details .product-gallery .thumbnails-vertical .thumbnails-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.product-details .product-gallery .thumbnails-vertical .thumbnail-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.product-details .product-gallery .thumbnails-vertical .thumbnail-item:hover {
  opacity: 0.9;
}

.product-details .product-gallery .thumbnails-vertical .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
}

.product-details .product-gallery .thumbnails-vertical .thumbnail-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.product-details .product-gallery .main-image-wrapper {
  order: 1;
  position: relative;
}

@media (min-width: 768px) {
  .product-details .product-gallery .main-image-wrapper {
    order: 2;
    flex: 1;
  }
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--surface-color);
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container a {
  display: block;
  position: relative;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container a:hover .zoom-overlay {
  opacity: 1;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .main-image {
width: 290px; 
    height: auto;
    object-fit: contain;
    cursor: crosshair;
    display: block;
    margin: 0 auto;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane.drift-opening {
  animation: drift-fadeZoomIn 180ms ease-out;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane.drift-closing {
  animation: drift-fadeZoomOut 210ms ease-in;
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane-loader {
  display: none;
}

@keyframes drift-fadeZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drift-fadeZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .zoom-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-details .product-gallery .main-image-wrapper .image-zoom-container .zoom-overlay i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.product-details .product-gallery .main-image-wrapper .image-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
  pointer-events: none;
}

.product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn:hover {
  background-color: var(--accent-color);
}

.product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn:hover i {
  color: var(--contrast-color);
}

.product-details .product-info-wrapper {
  height: 100%;
  padding: 0 0.5rem;
}

@media (min-width: 992px) {
  .product-details .product-info-wrapper {
    padding: 0 1rem;
    position: sticky;
    top: 100px;
  }
}

.product-details .product-info-wrapper .product-meta {
  margin-bottom: 1.5rem;
}

.product-details .product-info-wrapper .product-meta .product-category {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.product-details .product-info-wrapper .product-meta .product-share {
  position: relative;
}

.product-details .product-info-wrapper .product-meta .product-share .share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .product-meta .product-share .share-btn i {
  color: var(--accent-color);
  font-size: 1rem;
}

.product-details .product-info-wrapper .product-meta .product-share .share-btn:hover {
  background-color: var(--accent-color);
}

.product-details .product-info-wrapper .product-meta .product-share .share-btn:hover i {
  color: var(--contrast-color);
}

.product-details .product-info-wrapper .product-meta .product-share .share-btn:hover+.share-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  display: flex;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown a i {
  color: var(--default-color);
  font-size: 0.875rem;
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown a:hover {
  background-color: var(--accent-color);
}

.product-details .product-info-wrapper .product-meta .product-share .share-dropdown a:hover i {
  color: var(--contrast-color);
}

.product-details .product-info-wrapper .product-meta .product-title {
  font-size: 17px !important;
  font-weight: 700;
  margin: 0.75rem 0;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .product-details .product-info-wrapper .product-meta .product-title {
    font-size: 2.25rem;
  }
}

.product-details .product-info-wrapper .product-meta .product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-details .product-info-wrapper .product-meta .product-rating .stars {
  display: flex;
  align-items: center;
}

.product-details .product-info-wrapper .product-meta .product-rating .stars i {
  color: #FFD700;
  font-size: 1rem;
  margin-right: 2px;
}

/*edited by razan*/
.product-details .product-info-wrapper .product-meta .product-rating .stars .rating-value {
  margin-right: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-info-wrapper .product-meta .product-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: none;
}

.product-details .product-info-wrapper .product-meta .product-rating .rating-count:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.product-details .product-info-wrapper .product-price-container {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.product-details .product-info-wrapper .product-price-container .price-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.product-details .product-info-wrapper .product-price-container .price-wrapper .current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

/* edited by razan */
/* .product-details .product-info-wrapper .product-price-container .price-wrapper .original-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
} */

.product-details .product-info-wrapper .product-price-container .discount-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}



.product-details .product-info-wrapper .product-price-container .stock-info {
  display: flex;
  align-items: center;
}

/* edited by razan */
.product-details .product-info-wrapper .product-price-container .stock-info i {
  color: #10b981;
  margin-left: 0.5rem;
}

.product-details .product-info-wrapper .product-price-container .stock-info span {
  font-weight: 300;
}

/* edited by razan */
.product-details .product-info-wrapper .product-price-container .stock-info .stock-count {
  margin-right: 0.5rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: normal;
}

.product-details .product-info-wrapper .product-short-description {
  margin-bottom: 2rem;
}

.product-details .product-info-wrapper .product-short-description p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 13px;
}




.product-details .product-info-wrapper .product-options .option-group .option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details .product-info-wrapper .product-options .option-group .option-header .option-title {
  font-weight: 600;
  margin: 0;
}

.product-details .product-info-wrapper .product-options .option-group .option-header .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-info-wrapper .product-options .option-group .color-options {
  display: flex;
  gap: 1rem;
}

.product-details .product-info-wrapper .product-options .option-group .color-options .color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .product-options .option-group .color-options .color-option:hover {
  transform: scale(1.1);
}

.product-details .product-info-wrapper .product-options .option-group .color-options .color-option.active {
  border-color: var(--accent-color);
}

.product-details .product-info-wrapper .product-options .option-group .color-options .color-option.active i {
  opacity: 1;
}

.product-details .product-info-wrapper .product-options .option-group .color-options .color-option i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contrast-color);
  font-size: 0.875rem;
  opacity: 0;
}

.product-details .product-info-wrapper .product-options .option-group .size-options {
  display: flex;
  gap: 0.75rem;
}

.product-details .product-info-wrapper .product-options .option-group .size-options .size-option {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
  font-weight: 500;
}

.product-details .product-info-wrapper .product-options .option-group .size-options .size-option:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.product-details .product-info-wrapper .product-options .option-group .size-options .size-option.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector {
  display: flex;
  align-items: center;
  max-width: 180px;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

/* edited by razan */
.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn.decrease {
  border-radius: 0 8px 8px 0;
}

/*edited by razan */
.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn.increase {
  border-radius: 8px 0 0 8px;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input {
  width: 60px;
  height: 45px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input::-webkit-inner-spin-button,
.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}



/*edited by razan */
.product-details .product-info-wrapper .product-actions .btn i {
  margin-right: 0.5rem;
}

.product-details .product-info-wrapper .product-actions .add-to-cart-btn {
  flex: 1;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-details .product-info-wrapper .product-actions .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-info-wrapper .product-actions .buy-now-btn {
  flex: 1;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.product-details .product-info-wrapper .product-actions .buy-now-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-info-wrapper .product-actions .wishlist-btn {
  width: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details .product-info-wrapper .product-actions .wishlist-btn i {
  margin-right: 0;
  font-size: 1.25rem;
}

.product-details .product-info-wrapper .product-actions .wishlist-btn:hover {
  color: #fff;
  border-color: #e53935;
  background-color: #e53935;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

@media (max-width: 575px) {
  .product-details .product-info-wrapper .product-actions {
    flex-direction: column;
  }

  .product-details .product-info-wrapper .product-actions .wishlist-btn {
    width: 100%;
  }
}

.product-details .product-info-wrapper .delivery-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .product-details .product-info-wrapper .delivery-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-details .product-info-wrapper .delivery-options .delivery-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-details .product-info-wrapper .delivery-options .delivery-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-details .product-info-wrapper .delivery-options .delivery-option i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.product-details .product-info-wrapper .delivery-options .delivery-option h6 {
  margin: 0 0 0.25rem;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-info-wrapper .delivery-options .delivery-option p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .sticky-add-to-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--surface-color);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.product-details .sticky-add-to-cart.visible {
  transform: translateY(0);
}

.product-details .sticky-add-to-cart .sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .product-details .sticky-add-to-cart .sticky-content {
    flex-direction: column;
    gap: 1rem;
  }
}

.product-details .sticky-add-to-cart .sticky-content .product-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-details .sticky-add-to-cart .sticky-content .product-preview .product-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.product-details .sticky-add-to-cart .sticky-content .product-preview .product-info .product-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--heading-color);
}

.product-details .sticky-add-to-cart .sticky-content .product-preview .product-info .product-price {
  font-weight: 700;
  color: var(--accent-color);
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector {
  display: flex;
  align-items: center;
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn.decrease {
  border-radius: 8px 0 0 8px;
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn.increase {
  border-radius: 0 8px 8px 0;
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input {
  width: 50px;
  height: 36px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input::-webkit-inner-spin-button,
.product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  border-radius: 8px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .add-to-cart-btn i {
  margin-right: 0.5rem;
}

.product-details .sticky-add-to-cart .sticky-content .sticky-actions .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-details-accordion {
  margin-top: -2rem;
}

.product-details .product-details-accordion .accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 1rem;
}

.product-details .product-details-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.product-details .product-details-accordion .accordion-item .accordion-header .accordion-button {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--heading-color);
  box-shadow: none;
}



.product-details .product-details-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.product-details .product-details-accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233690e7'%3e%3cpath 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'/%3e%3c/svg%3e");
}

.product-details .product-details-accordion .accordion-item .accordion-collapse {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*edited by razan*/
.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list li i {
  color: var(--accent-color);
  margin-left: 0.75rem;
  font-size: 1.125rem;
  margin-top: 0.125rem;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row {
  display: flex;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row:last-child {
  border-bottom: none;
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row .specs-label {
  width: 40%;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row .specs-value {
  width: 60%;
  padding: 0.75rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .product-details-accordion .product-reviews .reviews-summary {
  margin-bottom: 2.5rem;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating {
    margin-bottom: 0;
  }
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-stars {
  margin: 0.75rem 0;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 1.5rem;
  margin-right: 2px;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown {
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar:last-child {
  margin-bottom: 0;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label {
  width: 60px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress {
  flex: 1;
  height: 8px;
  margin: 0 0.75rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress .progress-bar {
  background-color: #FFD700;
  border-radius: 4px;
}

.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-count {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: right;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: var(--surface-color);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .review-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-left: 2px;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.product-details .product-details-accordion .product-reviews .review-form-container {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-details .product-details-accordion .product-reviews .review-form-container h4 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

.product-details .product-details-accordion .product-reviews .review-form-container h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.product-details .product-details-accordion .product-reviews .review-form-container .form-label  {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.product-details .product-details-accordion .product-reviews .review-form-container .form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}


.product-details .product-details-accordion .product-reviews .review-form-container .review-card .form-control:focus  {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%) !important;
}

.product-details .product-details-accordion .product-reviews .review-form-container .form-text {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.product-details .product-details-accordion .product-reviews .review-form-container .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.product-details .product-details-accordion .product-reviews .review-form-container .star-rating input[type=radio] {
  display: none;
}

.product-details .product-details-accordion .product-reviews .review-form-container .star-rating label {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0 0.25rem;
}

.product-details .product-details-accordion .product-reviews .review-form-container .star-rating label i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.2s ease;
}

.product-details .product-details-accordion .product-reviews .review-form-container .star-rating input[type=radio]:checked~label i,
.product-details .product-details-accordion .product-reviews .review-form-container .star-rating label:hover i,
.product-details .product-details-accordion .product-reviews .review-form-container .star-rating label:hover~label i {
  color: #FFD700;
}

.product-details .product-details-accordion .product-reviews .review-form-container .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-details .product-details-accordion .product-reviews .review-form-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

/*--------------------------------------------------------------
# Category Header Section
--------------------------------------------------------------*/
.category-header {
  max-width: 900px;
  margin: 0 auto;
}

.category-header .confirmation-header {
  margin-bottom: 2.5rem;
}

.category-header .confirmation-header .success-icon i {
  font-size: 4rem;
  color: #4BB543;
}

.category-header .confirmation-header h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.category-header .confirmation-header .lead {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.category-header .confirmation-header .order-number {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-header .confirmation-header .order-number strong {
  color: var(--default-color);
  letter-spacing: 0.5px;
}

.category-header .order-details {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-header .order-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-header .order-details address {
  font-style: normal;
  line-height: 1.6;
}

.category-header .order-details .shipping-method {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.9rem;
}

.category-header .order-details .payment-info .payment-method {
  display: flex;
  align-items: center;
}

.category-header .order-details .payment-info .billing-address {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .category-header .order-details {
    padding: 1.5rem;
  }
}

.category-header .order-summary {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-header .order-summary h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.category-header .order-summary .order-items .item-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.category-header .order-summary .order-items .item-row:last-child {
  border-bottom: none;
}

.category-header .order-summary .order-items .item-row .item-image {
  flex: 0 0 80px;
  margin-right: 1rem;
}

.category-header .order-summary .order-items .item-row .item-image img {
  border-radius: 8px;
  object-fit: contain;
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.category-header .order-summary .order-items .item-row .item-details {
  flex: 1;
}

.category-header .order-summary .order-items .item-row .item-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.category-header .order-summary .order-items .item-row .item-details p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.category-header .order-summary .order-items .item-row .item-details .quantity-price {
  font-size: 0.95rem;
}

.category-header .order-summary .order-items .item-row .item-details .quantity-price .price {
  font-weight: 600;
}

.category-header .order-summary .order-totals {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 1rem;
  font-size: 0.95rem;
}

.category-header .order-summary .order-totals .total-row {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.category-header .next-steps {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-header .next-steps h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.category-header .next-steps p {
  margin-bottom: 1.5rem;
}

.category-header .next-steps .tracking-info {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.category-header .next-steps .tracking-info i {
  color: var(--accent-color);
}

.category-header .next-steps .action-buttons .btn {
  padding: 0.65rem 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.category-header .next-steps .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.category-header .next-steps .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.category-header .next-steps .action-buttons .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.category-header .next-steps .action-buttons .btn.btn-outline-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.category-header .help-contact {
  font-size: 0.95rem;
}

.category-header .help-contact a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.category-header .help-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {

  .category-header .order-details,
  .category-header .order-summary,
  .category-header .next-steps {
    padding: 1.25rem;
  }

  .category-header .order-items .item-row .item-image {
    flex: 0 0 70px;
  }

  .category-header .order-items .item-row .item-image img {
    width: 70px;
    height: 70px;
  }

  .category-header .order-items .item-row .item-details h5 {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Category Product List Section
--------------------------------------------------------------*/
.category-product-list {
  padding: 0 0 40px 0;
}

.category-product-list .product-box {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-product-list .product-box:hover {
  transform: translateY(-8px);
}

.category-product-list .product-box:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.category-product-list .product-box:hover .main-img {
  transform: scale(1.08);
}

.category-product-list .product-thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}

.category-product-list .main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-product-list .product-label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35em 0.8em;
  border-radius: 30px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-product-list .product-label.product-label-sale {
  background-color: #e53e3e;
}

.category-product-list .product-label.product-label-sold {
  background-color: #718096;
}

.category-product-list .product-label.product-label-hot {
  background-color: #dd6b20;
}

.category-product-list .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.category-product-list .product-quick-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.category-product-list .quick-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.category-product-list .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.category-product-list .add-to-cart-container {
  width: 100%;
}

.category-product-list .add-to-cart-btn {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-product-list .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.category-product-list .add-to-cart-btn.disabled {
  background-color: #a0aec0;
  cursor: not-allowed;
}

.category-product-list .add-to-cart-btn.disabled:hover {
  background-color: #a0aec0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-product-list .product-content {
  padding: 1.5rem;
}

.category-product-list .product-details {
  margin-bottom: 1rem;
}

.category-product-list .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  height: 2.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: var(--heading-color);
}

.category-product-list .product-title a {
  color: inherit;
}

.category-product-list .product-title a:hover {
  color: var(--accent-color);
}

.category-product-list .product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-product-list .product-price span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.category-product-list .product-price .original {
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-product-list .product-price .sale {
  color: #e53e3e;
}

.category-product-list .product-rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.category-product-list .rating-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.category-product-list .rating-stars i {
  margin-right: 1px;
}

.category-product-list .rating-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
}

.category-product-list .product-color-options {
  display: flex;
  gap: 0.5rem;
}

.category-product-list .color-option {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.category-product-list .color-option:hover {
  transform: scale(1.1);
}

.category-product-list .color-option.active:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .category-product-list .product-title {
    font-size: 0.95rem;
    height: 2.6rem;
  }

  .category-product-list .product-content {
    padding: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .category-product-list .product-box {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .category-product-list .product-overlay {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .category-product-list .add-to-cart-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# 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;
  }
  .current-price .sar-icon {
    width: 14px !important;
    height: 14px !important;
}
}

/*--------------------------------------------------------------
# Cart Section
--------------------------------------------------------------*/
.cart .cart-items {
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.cart .cart-items .cart-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.cart .cart-items .cart-header h5 {
  font-size: 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-left: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart .cart-items .cart-item .product-info .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .cart .cart-items .cart-item .product-info .product-image {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
  }
}

.cart .cart-items .cart-item .product-info .product-details {
  /* flex: 1; */
  /* width:50%; */
}

/*added by thekra 14/6*/

.cart .cart-items .cart-item .product-info{
    display:flex;
}








.cart .cart-items .cart-item .product-info .product-details .product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  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.75rem;
  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 .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 .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}


.cart .cart-items .cart-item .quantity-selector .quantity-input: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: 0.75rem;
}

@media (min-width: 768px) {
    .text-md-end {
        text-align: left !important;
    }
}

@media (max-width: 767.98px) {
 

  .cart .cart-items .cart-item .price-tag,
  .cart .cart-items .cart-item .item-total {
    font-size: 0.75rem;
  }
}

.cart .cart-items .cart-actions {
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-items .cart-actions .coupon-form .input-group {
  max-width: 24rem;
}

/*edited by razan*/
.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: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 1.5rem;
  position: sticky;
  top: 6.5rem;
}

.cart .cart-summary .summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.cart .cart-summary .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.cart .cart-summary .summary-item.discount {
  color: #28a745;
}

.cart .cart-summary .summary-item .summary-label {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.cart .cart-summary .summary-item .summary-value {
  font-weight: 600;
  color: var(--heading-color);
}

.cart .cart-summary .summary-item .shipping-options {
  width: 100%;
  margin-top: 0.5rem;
}

.cart .cart-summary .summary-item .shipping-options .form-check {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cart .cart-summary .summary-item .shipping-options .form-check:last-child {
  margin-bottom: 0;
}
/*edited by razan*/
.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input {
  margin-top: 0;
  margin-right: 0;
  margin-left: 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%);
}


/*edited by razan*/
.cart .cart-summary .summary-item .shipping-options .form-check .form-check-label {
  font-size: 0.875rem;
  color: var(--default-color);
  padding-right: 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 .checkout-button {
  margin-bottom: 1rem;
}

.cart .cart-summary .checkout-button .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cart .cart-summary .checkout-button .btn i {
  transition: transform 0.3s ease;
}

.cart .cart-summary .checkout-button .btn:hover i {
  transform: translateX(0.25rem);
}

.cart .cart-summary .continue-shopping {
  margin-bottom: 1.5rem;
}

.cart .cart-summary .continue-shopping .btn-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 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 i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.cart .cart-summary .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.cart .btn-outline-accent {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: transparent;
}

.cart .btn-outline-accent:hover,
.cart .btn-outline-accent:focus,
.cart .btn-outline-accent:active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart .btn-outline-heading {
  color: var(--heading-color);
  border-color: var(--heading-color);
  background-color: transparent;
}

.cart .btn-outline-heading:hover,
.cart .btn-outline-heading:focus,
.cart .btn-outline-heading:active {
  color: var(--contrast-color);
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}

.cart .btn-outline-remove {
  color: #dc3545;
  border-color: #dc3545;
  background-color: transparent;
}

.cart .btn-outline-remove:hover,
.cart .btn-outline-remove:focus,
.cart .btn-outline-remove:active {
  color: var(--contrast-color);
  background-color: #dc3545;
  border-color: #dc3545;
}

.cart .btn-accent {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.cart .btn-accent:hover,
.cart .btn-accent:focus,
.cart .btn-accent:active {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@media (max-width: 991.98px) {
  .cart .cart-summary {
    position: static;
  }
}

/*--------------------------------------------------------------
# Checkout Section
--------------------------------------------------------------*/
.checkout {
  padding: 60px 0;
}

.checkout .checkout-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.checkout .checkout-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.checkout .checkout-steps .step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  color: var(--default-color);
}

.checkout .checkout-steps .step .step-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

.checkout .checkout-steps .step.active .step-number {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(54, 144, 231, 0.3);
}

.checkout .checkout-steps .step.active .step-title {
  color: var(--heading-color);
  font-weight: 600;
}

.checkout .checkout-steps .step.completed .step-number {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.checkout .checkout-steps .step.completed .step-number::after {
  content: "\f26b";
  font-family: "bootstrap-icons";
  font-size: 1.2rem;
}

.checkout .checkout-steps .step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, color-mix(in srgb, var(--default-color), transparent 80%) 50%, color-mix(in srgb, var(--default-color), transparent 80%) 50%);
  margin: 0 10px;
  position: relative;
  top: -20px;
  z-index: 1;
  transition: background 0.3s ease;
}

.checkout .checkout-steps .step-connector.active {
  background: linear-gradient(to right, var(--accent-color) 50%, color-mix(in srgb, var(--default-color), transparent 80%) 50%);
}

.checkout .checkout-steps .step-connector.completed {
  background: var(--accent-color);
}

@media (max-width: 767.98px) {
  .checkout .checkout-steps .step .step-title {
    font-size: 0.8rem;
  }

  .checkout .checkout-steps .step .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .checkout .checkout-steps .step-title {
    display: none;
  }

  .checkout .checkout-steps .step-connector {
    top: 0;
  }
}

.checkout .checkout-forms {
  position: relative;
  min-height: 400px;
}

.checkout .checkout-forms .checkout-form {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.checkout .checkout-forms .checkout-form.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.5s ease forwards;
}

.checkout .checkout-forms .checkout-form .form-header {
  margin-bottom: 1.5rem;
}


.checkout .checkout-forms .checkout-form .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.checkout .checkout-forms .checkout-form label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.checkout .checkout-forms .checkout-form .form-control,
.checkout .checkout-forms .checkout-form .form-select {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 10px;
  padding: 12px 18px;
  height: auto;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.checkout .checkout-forms .checkout-form .form-control:hover,
.checkout .checkout-forms .checkout-form .form-select:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}



.checkout .checkout-forms .checkout-form .form-control::placeholder,
.checkout .checkout-forms .checkout-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.checkout .checkout-forms .checkout-form .form-control.is-invalid,
.checkout .checkout-forms .checkout-form .form-select.is-invalid {
  border-color: #dc3545;
  background-image: none;
  padding-right: 18px;
}

.checkout .checkout-forms .checkout-form .form-control.is-invalid:focus,
.checkout .checkout-forms .checkout-form .form-select.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.checkout .checkout-forms .checkout-form .form-control.is-valid,
.checkout .checkout-forms .checkout-form .form-select.is-valid {
  border-color: #28a745;
  background-image: none;
  padding-right: 18px;
}

.checkout .checkout-forms .checkout-form .form-control.is-valid:focus,
.checkout .checkout-forms .checkout-form .form-select.is-valid:focus {
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.checkout .checkout-forms .checkout-form .form-select {
  background-position: right 18px center;
  padding-right: 48px;
}

.checkout .checkout-forms .checkout-form .form-check {
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
}

.checkout .checkout-forms .checkout-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%);
  background-color: var(--surface-color);
  transition: all 0.2s ease;
}

.checkout .checkout-forms .checkout-form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkout .checkout-forms .checkout-form .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(54, 144, 231, 0.15);
}

.checkout .checkout-forms .checkout-form .form-check .form-check-input:hover:not(:checked) {
  border-color: var(--accent-color);
}

.checkout .checkout-forms .checkout-form .form-check .form-check-label {
  font-size: 0.95rem;
  cursor: pointer;
}

.checkout .checkout-forms .checkout-form .success-message {
  padding: 15px;
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 10px;
  color: #28a745;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
}

.checkout .checkout-forms .checkout-form .success-message.d-none {
  display: none;
}

.checkout .checkout-forms .checkout-form .btn {
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.checkout .checkout-forms .checkout-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.checkout .checkout-forms .checkout-form .btn:hover::before {
  transform: translateX(0);
}

.checkout .checkout-forms .checkout-form .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 10px rgba(54, 144, 231, 0.2);
}

.checkout .checkout-forms .checkout-form .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(54, 144, 231, 0.25);
}

.checkout .checkout-forms .checkout-form .btn.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(54, 144, 231, 0.2);
}

.checkout .checkout-forms .checkout-form .btn.btn-outline-secondary {
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 70%);
  background-color: transparent;
}

.checkout .checkout-forms .checkout-form .btn.btn-outline-secondary:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--heading-color), transparent 50%);
  transform: translateY(-2px);
}

.checkout .checkout-forms .checkout-form .btn.btn-outline-secondary:active {
  transform: translateY(0);
}

.checkout .checkout-forms .checkout-form .btn.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.checkout .checkout-forms .checkout-form .btn.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(40, 167, 69, 0.25);
}

.checkout .checkout-forms .checkout-form .btn.btn-success:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(40, 167, 69, 0.2);
}

.checkout .payment-methods .payment-method {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.checkout .payment-methods .payment-method.active {
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(54, 144, 231, 0.1);
}

.checkout .payment-methods .payment-method .payment-method-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  cursor: pointer;
}

.checkout .payment-methods .payment-method .payment-method-header .form-check {
  margin: 0;
}

.checkout .payment-methods .payment-method .payment-method-header .form-check .form-check-input {
  margin-top: 0.15rem;
}

.checkout .payment-methods .payment-method .payment-method-header .form-check .form-check-label {
  font-weight: 500;
  margin-left: 0.5rem;
}

.checkout .payment-methods .payment-method .payment-method-header .payment-icons {
  display: flex;
  gap: 10px;
}

.checkout .payment-methods .payment-method .payment-method-header .payment-icons i {
  font-size: 1.2rem;
  color: var(--heading-color);
}

.checkout .payment-methods .payment-method .payment-method-body {
  padding: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .payment-methods .payment-method .payment-method-body.d-none {
  display: none;
}

.checkout .review-sections .review-section {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 10px;
  overflow: hidden;
}

.checkout .review-sections .review-section .review-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
}

.checkout .review-sections .review-section .review-section-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout .review-sections .review-section .review-section-header .btn-edit {
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout .review-sections .review-section .review-section-header .btn-edit:hover {
  color: color-mix(in srgb, var(--accent-color), #000 10%);
  text-decoration: underline;
}

.checkout .review-sections .review-section .review-section-content {
  padding: 15px;
}

.checkout .review-sections .review-section .review-section-content p {
  margin-bottom: 0.5rem;
}

.checkout .review-sections .review-section .review-section-content p:last-child {
  margin-bottom: 0;
}

.checkout .order-summary {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
}

.checkout .order-summary .order-summary-header {
  padding: 20px;
  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 .btn-toggle-summary {
  background: none;
  border: none;
  color: var(--heading-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.checkout .order-summary .order-summary-header .btn-toggle-summary.collapsed {
  transform: rotate(180deg);
}

.checkout .order-summary .order-summary-content {
  padding: 20px;
}

.checkout .order-summary .order-summary-content .order-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.checkout .order-summary .order-summary-content .order-items::-webkit-scrollbar {
  width: 5px;
}

.checkout .order-summary .order-summary-content .order-items::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 10px;
}

.checkout .order-summary .order-summary-content .order-items::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 10px;
}

.checkout .order-summary .order-summary-content .order-items .order-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .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: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details {
  flex: 1;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.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: 5px;
}

.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 .order-totals {
  padding: 15px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 15px;
}

.checkout .order-summary .order-summary-content .order-totals>div {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.checkout .order-summary .order-summary-content .order-totals>div:last-child {
  margin-bottom: 0;
  margin-top: 15px;
  padding-top: 10px;
  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 .promo-code .input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  z-index: 0;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: none;
  color: var(--accent-color);
  font-weight: 600;
  padding: 0 20px;
}

.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:disabled {
  background-color: #f8f9fa;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  color: #6c757d;
  opacity: 0.8;
}

.checkout .order-summary .order-summary-content .secure-checkout {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.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;
}

.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: 15px;
  margin-top: 10px;
}

.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: 10px;
  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);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(54, 144, 231, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(54, 144, 231, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(54, 144, 231, 0);
  }
}

@media (max-width: 767.98px) {
  .checkout .checkout-form .form-header h3 {
    font-size: 1.3rem;
  }

  .checkout .order-summary .order-summary-header h3 {
    font-size: 1.2rem;
  }
}

.checkout .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# Order Confirmation Section
--------------------------------------------------------------*/
.order-confirmation {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
  /* ===== Confetti Animation ===== */
  /* ===== Celebration Header ===== */
  /* ===== Order Info Card ===== */
  /* ===== Progress Tracker ===== */
  /* ===== Order Summary ===== */
  /* ===== Info Columns ===== */
  /* ===== What's Next Section ===== */
  /* ===== Action Buttons ===== */
  /* ===== Customer Support ===== */
}

.order-confirmation .confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.order-confirmation .confetti-container .confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  opacity: 0.8;
  border-radius: 0;
  animation: confetti-fall 4s ease-in-out infinite;
}

.order-confirmation .confetti-container .confetti:nth-child(1) {
  left: 10%;
  background-color: var(--accent-color);
  animation-delay: 0s;
  animation-duration: 3.2s;
}

.order-confirmation .confetti-container .confetti:nth-child(2) {
  left: 20%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  animation-delay: 0.2s;
  animation-duration: 3.6s;
}

.order-confirmation .confetti-container .confetti:nth-child(3) {
  left: 30%;
  background-color: var(--accent-color);
  animation-delay: 0.4s;
  animation-duration: 4s;
}

.order-confirmation .confetti-container .confetti:nth-child(4) {
  left: 40%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  animation-delay: 0.6s;
  animation-duration: 3.4s;
}

.order-confirmation .confetti-container .confetti:nth-child(5) {
  left: 50%;
  background-color: var(--accent-color);
  animation-delay: 0.8s;
  animation-duration: 3.8s;
}

.order-confirmation .confetti-container .confetti:nth-child(6) {
  left: 60%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  animation-delay: 1s;
  animation-duration: 4.2s;
}

.order-confirmation .confetti-container .confetti:nth-child(7) {
  left: 70%;
  background-color: var(--accent-color);
  animation-delay: 1.2s;
  animation-duration: 3.5s;
}

.order-confirmation .confetti-container .confetti:nth-child(8) {
  left: 80%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  animation-delay: 1.4s;
  animation-duration: 3.7s;
}

.order-confirmation .confetti-container .confetti:nth-child(9) {
  left: 90%;
  background-color: var(--accent-color);
  animation-delay: 1.6s;
  animation-duration: 4.1s;
}

.order-confirmation .confetti-container .confetti:nth-child(10) {
  left: 15%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  animation-delay: 1.8s;
  animation-duration: 3.9s;
}

.order-confirmation .confetti-container .confetti:nth-child(11) {
  left: 35%;
  background-color: var(--accent-color);
  animation-delay: 2s;
  animation-duration: 4.3s;
}

.order-confirmation .confetti-container .confetti:nth-child(12) {
  left: 65%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  animation-delay: 2.2s;
  animation-duration: 3.3s;
}

.order-confirmation .confetti-container .confetti:nth-child(3n) {
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.order-confirmation .confetti-container .confetti:nth-child(3n+1) {
  transform: rotate(45deg);
}

.order-confirmation .confetti-container .confetti:nth-child(3n+2) {
  width: 5px;
  height: 15px;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: translateY(600px) rotate(360deg);
    opacity: 0;
  }
}

.order-confirmation .celebration-header {
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
}

.order-confirmation .celebration-header .celebration-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-confirmation .celebration-header .celebration-icon i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}

.order-confirmation .celebration-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.order-confirmation .celebration-header p.lead {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .order-confirmation .celebration-header h1 {
    font-size: 2rem;
  }

 
}

.order-confirmation .order-info-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.order-confirmation .order-info-card>div {
  flex: 1;
  padding: 0.75rem;
  min-width: 150px;
}

@media (max-width: 575.98px) {
  .order-confirmation .order-info-card>div {
    flex: 0 0 100%;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .order-confirmation .order-info-card>div:last-child {
    border-bottom: none;
  }
}

.order-confirmation .order-info-card>div .label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.order-confirmation .order-info-card>div .value {
  font-size: 1.05rem;
  font-weight: 500;
}

.order-confirmation .progress-tracker {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.order-confirmation .progress-tracker h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.order-confirmation .progress-tracker .progress-container .progress-bar {
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.order-confirmation .progress-tracker .progress-container .progress-bar .progress-fill {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  border-radius: 10px;
  transition: width 1s ease;
}

.order-confirmation .progress-tracker .progress-container .progress-labels {
  display: flex;
  justify-content: space-between;
}

.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label {
  flex: 0 0 auto;
  text-align: center;
  max-width: 25%;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label.active {
  opacity: 1;
}

.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label.active .label-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label.active span {
  font-weight: 600;
  color: var(--default-color);
}

.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label .label-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  transition: all 0.3s ease;
}

.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label .label-icon i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.order-confirmation .progress-tracker .progress-container .progress-labels .progress-label span {
  font-size: 0.9rem;
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 767.98px) {
  .order-confirmation .progress-tracker .progress-container .progress-labels {
    flex-wrap: wrap;
  }

  .order-confirmation .progress-tracker .progress-container .progress-labels .progress-label {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .order-confirmation .progress-tracker .progress-container .progress-labels .progress-label {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.order-confirmation .order-summary {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.order-confirmation .order-summary h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.order-confirmation .order-summary .summary-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  /* Product Grid */
  /* Price Breakdown */
}

@media (max-width: 767.98px) {
  .order-confirmation .order-summary .summary-grid {
    grid-template-columns: 1fr;
  }
}

.order-confirmation .order-summary .summary-grid .product-grid .product-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.order-confirmation .order-summary .summary-grid .product-grid .product-card:hover {
  transform: translateY(-3px);
}

.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-image {
  position: relative;
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  margin-right: 1.25rem;
}

.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-image .quantity {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-info {
  flex: 1;
}

.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-info .variant {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.5rem;
}

.order-confirmation .order-summary .summary-grid .product-grid .product-card .product-info .price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-color);
}

.order-confirmation .order-summary .summary-grid .price-breakdown {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .order-summary .summary-grid .price-breakdown .breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.order-confirmation .order-summary .summary-grid .price-breakdown .breakdown-row:last-of-type {
  margin-bottom: 0;
}

.order-confirmation .order-summary .summary-grid .price-breakdown .breakdown-row.total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  font-size: 1.2rem;
  font-weight: 700;
}

.order-confirmation .info-columns {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.order-confirmation .info-columns .info-box {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
}

.order-confirmation .info-columns .info-box .info-icon {
  flex: 0 0 50px;
  height: 50px;
  border-radius: 12px;
  margin-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-confirmation .info-columns .info-box .info-icon i {
  font-size: 1.5rem;
}

.order-confirmation .info-columns .info-box.shipping-info .info-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.order-confirmation .info-columns .info-box.payment-info .info-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.order-confirmation .info-columns .info-box .info-content {
  flex: 1;
}

.order-confirmation .info-columns .info-box .info-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.order-confirmation .info-columns .info-box .info-content address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.order-confirmation .info-columns .info-box .info-content .delivery-estimate {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  font-size: 0.9rem;
}

.order-confirmation .info-columns .info-box .info-content .delivery-estimate i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.order-confirmation .info-columns .info-box .info-content .payment-method .card-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.order-confirmation .info-columns .info-box .info-content .payment-method .card-info i {
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.order-confirmation .info-columns .info-box .info-content .payment-method .billing-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.order-confirmation .info-columns .info-box .info-content .payment-method .billing-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.order-confirmation .whats-next {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.order-confirmation .whats-next h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.order-confirmation .whats-next .next-steps {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .whats-next .next-steps .step {
  display: flex;
  margin-bottom: 1.5rem;
}

.order-confirmation .whats-next .next-steps .step:last-child {
  margin-bottom: 0;
}

.order-confirmation .whats-next .next-steps .step .step-number {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
}

.order-confirmation .whats-next .next-steps .step .step-content {
  flex: 1;
}

.order-confirmation .whats-next .next-steps .step .step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.order-confirmation .whats-next .next-steps .step .step-content p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.order-confirmation .action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.order-confirmation .action-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.order-confirmation .action-buttons .btn i {
  margin-left: 0.5rem;
}

.order-confirmation .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.order-confirmation .action-buttons .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.order-confirmation .action-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.order-confirmation .action-buttons .btn.btn-outline:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

@media (max-width: 575.98px) {
  .order-confirmation .action-buttons .btn {
    flex: 1;
  }
}

@media (max-width: 575.98px) {
  .order-confirmation .action-buttons {
    flex-direction: column;
  }
}

.order-confirmation .customer-support {
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.order-confirmation .customer-support a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.order-confirmation .customer-support a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Search Results Header Section
--------------------------------------------------------------*/
.search-results-header .results-count h2 {
  font-size: 17px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.search-results-header .results-count p {
  font-size: 15px;
  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: 8px;
  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: 8px 0 0 8px;
  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 8px 8px 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: 6px;
  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;
}

.search-results-header .advanced-filters .toggle-filters {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 0.9rem;
  padding: 8px 15px;
  transition: all 0.3s ease;
}

.search-results-header .advanced-filters .toggle-filters:hover {
  background-color: color-mix(in srgb, var(--surface-color), #000 5%);
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.search-results-header .advanced-filters .toggle-filters i {
  font-size: 0.85rem;
}

.search-results-header .advanced-filters .card {
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background-color: var(--surface-color);
}

.search-results-header .advanced-filters .form-label {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.search-results-header .advanced-filters .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;
  border-radius: 6px;
}

.search-results-header .advanced-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.search-results-header .advanced-filters .reset-btn {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 0.85rem;
  padding: 6px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.search-results-header .advanced-filters .reset-btn:hover {
  background-color: color-mix(in srgb, var(--surface-color), #000 5%);
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.search-results-header .advanced-filters .apply-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 0.85rem;
  padding: 6px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.search-results-header .advanced-filters .apply-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@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-results-header .advanced-filters .row>div {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# 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 .mobile-menu .mobile-menu-toggle i {
  font-size: 20px;
}

.account .mobile-menu .mobile-menu-toggle:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.account .profile-menu {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.account .profile-menu .user-info {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .user-info .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 16px;
  border-radius: 12px;
  color: var(--default-color);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-nav .nav-link i {
  font-size: 20px;
  margin-left: 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: 400;
}

.account .profile-menu .menu-nav .nav-link.active i {
  color: var(--contrast-color);
}

.account .profile-menu .menu-nav .nav-link.active .badge {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .menu-footer a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--default-color);
  border-radius: 12px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a i {
  font-size: 20px;
  margin-left: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a.logout-link {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link i {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link:hover {
  background-color: rgba(239, 68, 68, 0.08);
}

.account .content-area {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.account .content-area .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.account .content-area .section-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.account .content-area .section-header .header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.account .content-area .section-header .header-actions .search-box {
  position: relative;
}

.account .content-area .section-header .header-actions .search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
}

.account .content-area .section-header .header-actions .search-box input {
  width: 240px;
  height: 44px;
  padding: 0 16px 0 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 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;
}

.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;  edit by serra 20/6 */

}

.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%);
}

/* edit by serra 20/6 */
.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status {
  padding: 10px 8px;
  border-radius:12px;
  font-weight: 500;
  font-size: 13px;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.pending  {
  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.completed  {
  background-color: #f0fdf4;
  color: #22c55e;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.failed {
  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) {
   /* edit by serra 20/6 */
  #profileMenuOffcanvas {
    width: 280px !important;
  }
  .account .profile-menu {
    /* margin-bottom: 24px; */
    padding: 0px 16px;

  }
}

@media (max-width: 767.98px) {
   /* added by serra 18/6 */
  /* .account .content-area {
    padding: 20px;
  }

  .account .content-area .section-header .header-actions {
    width: 100%;
  } */
 /* added by serra 18/6 */
      .account .content-area .section-header .header-actions .filter-btn {
    height: 36px;
    padding: 0 12px;
    gap: 4px;
    font-size: 12px;
    border-radius: 8px;
  }
 .account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item {
    gap: 8px;
    padding: 8px;
    margin-bottom: 8px;
  }
   .account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown {
    padding: 8px;
  }
  .account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown .price-row {
    padding: 4px 0;
    font-size: 11px;
  }
   .account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item img {
    width: 48px;
    height: 48px;
  }
   .account .profile-menu .menu-footer {
    margin-top: 0;
    padding-top: 0;
    font-size: 14px; 
  }
    .account .content-area .orders-grid .order-card .order-footer button {
    height: 32px;
    font-size: 12px;
    border-radius: 6px;
  }

  .account .content-area .orders-grid .order-card .order-content .order-info .info-row {
    font-size: 12px;
    margin-bottom: 4px;
  }



  .account .content-area .section-header .header-actions {
    /* width: 100%; */
  }
  /* end edit */
  .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(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.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;
  left: 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;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}
.start-0 {
    left: 0 !important;
}

.sale-badge{
  background: #8c0d4f !important;
  color:#ffffff !important;
}

.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: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);
}

/* edit by serra 20/6 */
.account .reviews-grid .review-card .review-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.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;
}

.account .settings-content .settings-section:last-child {
  margin-bottom: 0;
}

.account .settings-content .settings-section h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
}

.account .settings-content .settings-section.danger-zone {
  border-color: #fee2e2;
}

.account .settings-content .settings-section.danger-zone h3 {
  color: #ef4444;
}

.account .settings-content .settings-section.danger-zone .danger-zone-content p {
  margin: 0 0 16px;
  font-size: 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: 16px;
  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;
}

.account .settings-content .preferences-list .preference-item .form-check .form-check-input {
  width: 3rem;
  height: 1.5rem;
  margin: 0;
}

.account .settings-content .preferences-list .preference-item .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.account .settings-content .preferences-list .preference-item .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 575.98px) {
 /* added by serra 20/6 */
  .account .orders-grid .order-card .order-header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
  }
  .account .content-area .orders-grid .order-card .order-header .order-id .label {
    font-size: 11px;
  }
    .account .content-area .orders-grid .order-card .order-header .order-id .value {
    font-size: 13px;
  }

  .account .content-area .orders-grid .order-card .order-header .order-date {
    font-size: 11px;
  }
   .account .content-area .orders-grid .order-card .order-details .details-content {
    padding: 12px;
  }
    .account .content-area .orders-grid .order-card .order-details .details-content .detail-section h5 {
    font-size: 14px;
    margin-bottom: 10px;
  }
   .account .content-area .orders-grid .order-card .order-details .details-content .detail-section .price-breakdown .price-row {
    padding: 6px 0;
    font-size: 12px;
  }
    .account .content-area .orders-grid .order-card .order-details .details-content .detail-section {
        margin-bottom: 12px;
        padding-bottom: 2px;
  }

  .account .section-header .header-actions {
    /* width: 100%; */
    justify-content: stretch;
  }
  /* end edit */

  .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 .registration-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.login .image-column {
  position: relative;
  min-height: 600px;
  padding: 0;
}

.login .image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.login .image-column .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.login .image-column .overlay .content {
  color: var(--contrast-color);
}

.login .image-column .overlay .content h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.login .image-column .overlay .content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.login .register-form {
  padding: 3rem;
}

.login .register-form h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.login .register-form .social-register .btn-outline {
  padding: 0.8rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--heading-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.login .register-form .social-register .btn-outline:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.login .register-form .social-register .btn-outline i {
  font-size: 1.1rem;
}

.login .register-form .social-register .divider {
  text-align: center;
  position: relative;
  margin: 2rem 0;
}

.login .register-form .social-register .divider::before,
.login .register-form .social-register .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 4rem);
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.login .register-form .social-register .divider::before {
  left: 0;
}

.login .register-form .social-register .divider::after {
  right: 0;
}

.login .register-form .social-register .divider span {
  background-color: var(--surface-color);
  padding: 0 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.login .register-form .form-floating>.form-control {
  padding: 1.25rem 1rem 0.25rem 0.75rem;
  height: calc(3.5rem + 2px);
  line-height: 1.25;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-color: transparent;
  color: var(--default-color);
}

.login .register-form .form-floating>.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.login .register-form .form-floating>.form-control:focus~label {
  color: var(--accent-color);
}

.login .register-form .form-floating>.form-control:focus~label:after {
  background: transparent;
}

.login .register-form .form-floating>.form-control:not(:placeholder-shown) {
  background-color: transparent;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.login .register-form .form-floating>.form-control:not(:placeholder-shown)~label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.login .register-form .form-floating>.form-control:not(:placeholder-shown)~label:after {
  background: transparent;
}

.login .register-form .form-floating>label {
  padding: 1rem 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.login .register-form .form-floating>label:after {
  background: transparent;
}

.login .register-form .toggle-password {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: color 0.3s ease;
  z-index: 5;
}

.login .register-form .toggle-password:hover {
  color: var(--heading-color);
}

.login .register-form .form-check .form-check-input {
  float: none;
  margin-left: 0;
  margin-right: 0.5rem;
  cursor: pointer;
}

.login .register-form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.login .register-form .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.login .register-form .form-check .form-check-label {
  font-size: 0.9rem;
}

.login .register-form .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.login .register-form .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.login .register-form .btn-primary {
  padding: 0.8rem;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

.login .register-form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.login .register-form .btn-primary:active {
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .login .register-form {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .login .register-form {
    padding: 1.5rem;
  }

  .login .register-form h2 {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register .registration-form-wrapper {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.register .registration-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
}

.register .registration-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.register .registration-form-wrapper .section-header h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.register .registration-form-wrapper .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
}

.register .registration-form-wrapper label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.register .registration-form-wrapper .form-control {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
}

.register .registration-form-wrapper .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.register .registration-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 0.9rem;
}

.register .registration-form-wrapper .password-input {
  position: relative;
}

.register .registration-form-wrapper .password-input .toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.register .registration-form-wrapper .password-input .toggle-password:hover {
  color: var(--heading-color);
}

.register .registration-form-wrapper .password-requirements {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: block;
}

.register .registration-form-wrapper .form-check .form-check-input {
  float: none;
  margin-left: 0;
  margin-right: 0.5rem;
  cursor: pointer;
}

.register .registration-form-wrapper .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register .registration-form-wrapper .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.register .registration-form-wrapper .form-check .form-check-label {
  color: var(--default-color);
  font-weight: normal;
  cursor: pointer;
}

.register .registration-form-wrapper .form-check .form-check-label a {
  text-decoration: underline;
}

.register .registration-form-wrapper .form-check .form-check-label a:hover {
  text-decoration: none;
}

.register .registration-form-wrapper .btn-primary {
    padding: 0.55rem 1rem;
    font-weight: 500;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transition: all 0.3s ease;
    font-size: 15px;
}

.register .registration-form-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-1px);
}

.register .registration-form-wrapper .btn-primary:active {
  transform: translateY(0);
}

.register .registration-form-wrapper .loading,
.register .registration-form-wrapper .error-message,
.register .registration-form-wrapper .sent-message {
  margin: 1rem 0;
}

@media (max-width: 767.98px) {
  .register .register-form {
    padding: 1.5rem;
  }

  .register .register-form .section-header h2 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .small-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-2 .about-title {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-2 .about-title {
    font-size: 1.6rem;
  }
}

.about-2 .about-description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .about-2 .description-wrapper {
    border-left: 1px solid var(--accent-color);
    padding-left: 30px;
  }
}

.about-2 .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-2 .content-card .card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 12px;
}

.about-2 .content-card .card-image img {
  transition: transform 0.5s ease;
}

.about-2 .content-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-2 .content-card .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-2 .content-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  flex: 1;
}

.about-2 .content-card .card-content .read-more {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-2 .content-card .card-content .read-more:hover {
  gap: 0.75rem;
}

.about-2 .content-card .card-content .read-more:hover i {
  transform: translateX(5px);
}

.about-2 .content-card .card-content .read-more i {
  transition: transform 0.3s ease;
}

.about-2 .content-card:hover .card-image img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# 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 .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  padding-top: 5px;
}

.contact-2 .info-item+.info-item {
  margin-top: 40px;
}

.contact-2 .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-left: 15px;
}

.contact-2 .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-2 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-2 .php-email-form {
  height: 100%;
}

.contact-2 .php-email-form input[type=text],
.contact-2 .php-email-form input[type=email],
.contact-2 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .php-email-form input[type=text]:focus,
.contact-2 .php-email-form input[type=email]:focus,
.contact-2 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-2 .php-email-form input[type=text]::placeholder,
.contact-2 .php-email-form input[type=email]::placeholder,
.contact-2 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-2 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact-2 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Support Section
--------------------------------------------------------------*/
.support .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.support .section-heading h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.support .section-heading p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.support .help-categories {
  margin-bottom: 60px;
}

.support .help-categories .category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 576px) {
    
    
  .support .help-categories .category-grid {
    grid-template-columns: 1fr;
  }
}

.support .category-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support .category-card:hover .icon {
  background-color: var(--accent-color);
}

.support .category-card:hover .icon i {
  color: var(--contrast-color);
}

.support .category-card .icon {
  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-bottom: 20px;
  transition: all 0.3s;
}

.support .category-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.support .category-card h4 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.support .category-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.support .help-topics {
  margin-bottom: 60px;
}

.support .help-topics .topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 767px) {
  .support .help-topics .topics-grid {
    grid-template-columns: 1fr;
  }
}

.support .help-topics .topic-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.support .help-topics .topic-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent-color);
  transition: height 0.3s;
}

.support .help-topics .topic-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support .help-topics .topic-item:hover::before {
  height: 100%;
}

.support .help-topics .topic-item:hover .learn-more i {
  transform: translateX(5px);
}

.support .help-topics .topic-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.support .help-topics .topic-item h5 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.support .help-topics .topic-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.support .help-topics .topic-item .learn-more {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.support .help-topics .topic-item .learn-more i {
  font-size: 1.1rem;
  margin: 0;
  transition: transform 0.3s;
}

.support .faq-section {
  margin-bottom: 60px;
}

.support .faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.support .faq-section .faq-list .faq-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.support .faq-section .faq-list .faq-item h3 {
  margin: 0;
  padding: 20px 25px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--heading-color);
  transition: all 0.3s;
}

.support .faq-section .faq-list .faq-item h3 i {
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.support .faq-section .faq-list .faq-item .faq-answer {
  display: none;
  padding: 25px 20px;
}

.support .faq-section .faq-list .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.support .faq-section .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.support .faq-section .faq-list .faq-item.faq-active h3 i {
  transform: rotate(180deg);
}

.support .faq-section .faq-list .faq-item.faq-active .faq-answer {
  display: block;
}

.support .support-sidebar {
  position: sticky;
  top: 100px;
}

.support .support-sidebar>div {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.support .support-sidebar>div:last-child {
  margin-bottom: 0;
}

.support .support-sidebar .contact-support {
  text-align: center;
}

.support .support-sidebar .contact-support .icon-box {
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.support .support-sidebar .contact-support .icon-box i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.support .support-sidebar .contact-support h4 {
  margin-bottom: 10px;
}

.support .support-sidebar .contact-support p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.support .support-sidebar .contact-support .support-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.support .support-sidebar .contact-support .support-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.support .support-sidebar .contact-support .support-actions a i {
  font-size: 1.2rem;
}

.support .support-sidebar .contact-support .support-actions .btn-chat {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.support .support-sidebar .contact-support .support-actions .btn-chat:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.support .support-sidebar .contact-support .support-actions .btn-email {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.support .support-sidebar .contact-support .support-actions .btn-email:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.support .support-sidebar .contact-support .support-actions .divider {
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
  margin: 5px 0;
}

.support .support-sidebar .contact-support .support-actions .phone-number {
  color: var(--heading-color);
  font-size: 1.1rem;
}

.support .support-sidebar .contact-support .support-actions .phone-number:hover {
  color: var(--accent-color);
}

.support .support-sidebar .support-resources h5 {
  margin-bottom: 20px;
}

.support .support-sidebar .support-resources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support .support-sidebar .support-resources ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.support .support-sidebar .support-resources ul li:last-child {
  margin-bottom: 0;
}

.support .support-sidebar .support-resources ul li i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.support .support-sidebar .support-resources ul li a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s;
}

.support .support-sidebar .support-resources ul li a:hover {
  color: var(--accent-color);
}

.support .support-sidebar .business-hours h5 {
  margin-bottom: 20px;
}

.support .support-sidebar .business-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support .support-sidebar .business-hours ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.support .support-sidebar .business-hours ul li:last-child {
  margin-bottom: 0;
}

.support .support-sidebar .business-hours ul li span:last-child {
  font-weight: 500;
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .support .support-sidebar {
    position: static;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px color-mix(in srgb, bl, transparent 92%);
  transition: all 0.3s ease;
}

.blog-hero .blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.05);
}

.blog-hero .blog-item:hover .blog-content {
  background: linear-gradient(0deg, color-mix(in srgb, black, transparent 15%) 0%, transparent 100%);
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-hero .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, color-mix(in srgb, black, transparent 25%) 0%, transparent 100%);
  transition: background 0.3s ease;
}

.blog-hero .main-feature {
  aspect-ratio: 21/9;
}

.blog-hero .main-feature .post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .blog-hero .main-feature .post-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-hero .main-feature .post-title {
    font-size: 1.5rem;
  }
}

.blog-hero .main-feature .post-excerpt {
  color: var(--contrast-color);
  font-size: 1.1rem;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-hero .main-feature .post-excerpt {
    display: none;
  }
}

.blog-hero .secondary-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .blog-hero .secondary-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.blog-hero .secondary-features .blog-item {
  aspect-ratio: 3/4;
}

.blog-hero .regular-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .blog-hero .regular-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .regular-posts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.blog-hero .regular-posts .blog-item {
  aspect-ratio: 16/9;
}

.blog-hero .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--contrast-color);
}

.blog-hero .post-meta .date,
.blog-hero .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .post-meta .date::before,
.blog-hero .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .post-meta .date::before {
  content: "\f282";
}

.blog-hero .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .post-title {
  margin: 0;
  font-family: var(--heading-font);
}

.blog-hero .post-title a {
  color: var(--contrast-color);
  text-decoration: none;
}

.blog-hero .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-hero .post-title:not(h2) {
  font-size: 1.25rem;
}

@media (max-width: 991px) {
  .blog-hero .post-title:not(h2) {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  margin-bottom: 30px;
}

.recent-posts .post-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.recent-posts .post-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
}

.recent-posts .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.recent-posts .post-img:hover img {
  transform: scale(1.1);
}

.recent-posts .post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  color: var(--contrast-color);
}

.recent-posts .post-category {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.recent-posts .title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.recent-posts .title a {
  color: var(--contrast-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.recent-posts .post-meta {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.recent-posts .post-meta span {
  display: inline-block;
}

@media (max-width: 768px) {
  .recent-posts .post-content {
    padding: 20px;
  }

  .recent-posts .title {
    font-size: 18px;
  }

  .recent-posts .post-meta {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .section-header {
  margin-bottom: 40px;
}

.blog-comments .section-header h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-comments .section-header h3 .comment-count {
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
  font-size: 24px;
  font-weight: 500;
}

.blog-comments .comments-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-comments .comment-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-card:hover {
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.blog-comments .comment-card.reply {
  margin-left: 48px;
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 3%);
}

@media (min-width: 768px) {
  .blog-comments .comment-card.reply {
    margin-left: 85px;
  }
}

.blog-comments .reply-thread {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-comments .comment-header {
  margin-bottom: 20px;
}

.blog-comments .comment-header .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-comments .comment-header .user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comments .comment-header .user-info .meta .name {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-comments .comment-header .user-info .meta .date i {
  font-size: 13px;
}

.blog-comments .comment-content p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 20px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .blog-comments .section-header {
    margin-bottom: 30px;
  }

  .blog-comments .section-header h3 {
    font-size: 28px;
  }

  .blog-comments .section-header h3 .comment-count {
    font-size: 20px;
  }

  .blog-comments .comment-card {
    padding: 20px;
  }

  .blog-comments .comment-card.reply {
    margin-left: 35px;
  }

  .blog-comments .comment-header .user-info img {
    width: 40px;
    height: 40px;
  }

  .blog-comments .comment-header .user-info .meta .name {
    font-size: 15px;
  }

  .blog-comments .comment-header .user-info .meta .date {
    font-size: 13px;
  }

  .blog-comments .comment-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.blog-comment-form form {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-comment-form .section-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.blog-comment-form .section-header h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-comment-form .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin: 0;
}

.blog-comment-form .form-group {
  margin-bottom: 20px;
}

.blog-comment-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 14px;
}

.blog-comment-form .form-group .form-control {
  height: 48px;
  padding: 10px 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.blog-comment-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comment-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .form-group .form-control:hover:not(:focus) {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .btn-submit {
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-comment-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comment-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 20px;
  }

  .blog-comment-form .section-header h3 {
    font-size: 24px;
  }

  .blog-comment-form .btn-submit {
    width: 100%;
    padding: 12px 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 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.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 {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.error-404 .error-content {
  padding: 2rem;
}

.error-404 .error-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
}

.error-404 .error-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 500px;
  margin-bottom: 2rem;
}

.error-404 .error-actions .btn {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.error-404 .error-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn.btn-solid {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn.btn-solid:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.error-404 .error-illustration {
  padding: 2rem;
  position: relative;
}

.error-404 .error-illustration .illustration-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration .planet {
  position: absolute;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  animation: float 6s infinite ease-in-out;
  z-index: 1;
}

.error-404 .error-illustration .astronaut {
  position: absolute;
  font-size: 4rem;
  color: var(--heading-color);
  animation: float 4s infinite ease-in-out;
  animation-delay: 1s;
  z-index: 2;
  transform: translateX(50px);
}

.error-404 .error-illustration .stars {
  position: absolute;
  width: 100%;
  height: 100%;
}

.error-404 .error-illustration .stars i {
  position: absolute;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
  animation: twinkle infinite ease-in-out;
}

.error-404 .error-illustration .stars i.star-1 {
  top: 20%;
  left: 20%;
  font-size: 1rem;
  animation-duration: 3s;
}

.error-404 .error-illustration .stars i.star-2 {
  top: 30%;
  right: 25%;
  font-size: 0.8rem;
  animation-duration: 4s;
}

.error-404 .error-illustration .stars i.star-3 {
  bottom: 40%;
  left: 30%;
  font-size: 1.2rem;
  animation-duration: 5s;
}

.error-404 .error-illustration .stars i.star-4 {
  top: 50%;
  right: 40%;
  font-size: 0.9rem;
  animation-duration: 3.5s;
}

.error-404 .error-illustration .stars i.star-5 {
  bottom: 30%;
  right: 30%;
  font-size: 1.1rem;
  animation-duration: 4.5s;
}

.error-404 .support-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.error-404 .support-text .support-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.error-404 .support-text .support-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 991.98px) {
  .error-404 .error-content {
    text-align: center !important;
    padding-bottom: 0;
  }

  .error-404 .error-text {
    margin: 0 auto 2rem;
  }

  .error-404 .error-illustration {
    padding-top: 3rem;
  }

  .error-404 .error-illustration .illustration-container {
    height: 300px;
  }

  .error-404 .error-illustration .planet {
    font-size: 6rem;
  }

  .error-404 .error-illustration .astronaut {
    font-size: 3rem;
  }
}

@media (max-width: 575.98px) {
  .error-404 .error-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .error-404 .error-actions .btn {
    width: 100%;
  }

  .error-404 .error-actions .ms-3 {
    margin-left: 0 !important;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.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;
  }
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*added by razan*/
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control, .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select, .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating)
 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/*added by razan*/
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-right: calc(-1 * var(--bs-border-width));
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/*added by razan*/
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(-1 * var(--bs-border-width));
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
/*added by razan*/
.dropdown-toggle::after {
    display: inline-block;
    margin-right: 4.255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

/* <-- custom  --> */
.header .search-form .input-group .form-control {
    border-radius: 0 8px 8px 0 !important;
}
.category-cards .category-card {
  /* background-color: color-mix(in srgb, var(--default-color), transparent 95%); */
  border-radius: 0.5rem;
  
}
.header .header-nav {
    place-self: center;
}

.product-list .product-badge.sale {
    background: #8c0d4f !important;
    
}
.product-list .product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.20rem 0.65rem;
    border-radius: 4px;
    font-size: 0.775rem;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 1;
}
.product-list .btn-add-to-cart {
    padding: 0.3rem;

}

.product-list .product-image {
    padding-top: 65%;
   
}
.product-list .product-image img {
    position-area: center;
}

.product-list .product-price {
    font-size: 17px;
}
section, .section {
    
    padding: 30px 0;
   
}

.section-title h2 {
    font-size: 19px;
    margin-bottom: -76px;
}

.header .main-header .logo img {
    max-height: 45px;
    width: 135px;
    
}
.hero .hero-content h1 {
    font-size: 20px;
  
}
.hero .hero-image-wrapper .hero-image .floating-badge .discount {
    font-size: 16px;
    
}
.hero .hero-content p {
    font-size: 15px;
    margin-bottom: 2.5rem;
    max-width: 90%;

}

.hero .hero-content .hero-cta .btn-primary {
   
    padding: 0.6rem 1rem;
    font-size: 14px;
   
}

.header .main-header .header-actions {
    gap: 0px;
}


/* .product-list-2 .product-image img {
    
    height: 90%;
    
} */
.product-list-2 .product-image {
  position: relative;
  overflow: hidden;
  height: 195px;
}
.product-list-2 .product-image .discount-badge {
  background-color: #8c0d4f;
  color: white;
}

/*--------------------------------------------------------------
# Login Section2
--------------------------------------------------------------*/
.login .login-register-wraper {
  /* background-color: var(--surface-color);
  border-radius: 24px; */
  padding: 1rem;
  /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08); */
}

.login .nav-tabs {
  border: none;
  margin-bottom: 2rem;
  gap: 0.75rem;
}

.login .nav-tabs .nav-item .nav-link {
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login .nav-tabs .nav-item .nav-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.login .nav-tabs .nav-item .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.login .nav-tabs .nav-item .nav-link i {
  font-size: 1.1rem;
  margin-left: 0.5rem;
}

.login .form-label {
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.login .form-control {
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 3.25rem;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color: var(--surface-color);
}

.login .form-control:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  background-color: var(--surface-color);
}

.login .form-check {
  margin-bottom: 1rem;
}

.login .form-check .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 6px;
  margin-right: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.login .form-check .form-check-input:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: var(--accent-color);
}

.login .form-check .form-check-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  cursor: pointer;
}

.login .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.login .form-check .form-check-label a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.login .form-check .form-check-label a:hover:after {
  transform: scaleX(1);
}

.login .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 25%));
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.login .btn-primary:active {
  transform: translateY(0);
}

.login .forgot-password {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

.login .forgot-password:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.login .forgot-password:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.login .forgot-password:hover:after {
  transform: scaleX(1);
}

@media (max-width: 576px) {
  .login {
    padding: 2rem;
    border-radius: 16px;
  }

  .login .nav-tabs {
    gap: 0.5rem;
  }

  .login .nav-tabs .nav-item .nav-link {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }

  .login .form-control {
    font-size: 16px;
  }
}
-----
.lead {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.5rem !important;
}

.btn-confirm-order{
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
}

.btn-save-address
{
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
}

.btn-save-chnages{
  padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: var(--accent-color);
    border: none;
    color: 
    var(--contrast-color);
}

.addTocart{
  width: 100%;
  padding: 0.6rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 4px;
  font-size: 0.870rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}


.addTocart:hover{
  color: var(--contrast-color);
}

/*added by thekra 17/6*/


.price-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.old-price .sar-icon {
    width: 12px;
    height: 12px;
}

.old-price span,
.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.current-price {
    font-weight: bold;
    color: #000;
}

.current-price .sar-icon {
    width: 16px;
    height: 16px;
}

/*KK*/
.btn-wishlist {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

.btn-wishlist i {
  color: #8c0d4f;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.btn-wishlist:hover i {
  color: #ffffff;
}

.product-list .product-actions {
    position: absolute;
    left: 1rem;
    top: 34%;
    transform: translateY(-50%);
    display: flex
;
    flex-direction: column;
    gap: 0.35rem;
}

.admin-interface.login #header {
    min-height: auto;
    padding: 10px 30px;
    line-height: 30px;
    align-items: center;
    justify-content: center;
}


.product-rating .stars i {
    color: #ffc107; /* Star color */
    margin-left: 0.25rem; /* Space between stars */
}

.product-rating .rating-value {
    margin-left: 0.25rem; /* Space between stars and numeric rating */
    font-weight: 500;
    color: #333;
}

.product-rating .rating-count {
    font-size: 0.875rem;
    color: #666;
    margin-left: 0.25rem;
}

/*RZN*/


.filter-buttons {
  display: flex;
  gap: 1rem; 
}

.btnFillter {
  flex: 1; 
  padding: 0.6rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btnFillter:hover {
  color: var(--contrast-color);
}

.review-edit-section {
  background-color: #f7f9fc;
  min-height: 100vh;
}

.review-edit-section {
  background: #f8f9fa;
  min-height: 100vh;
}

.review-card {
  max-width: 600px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-fields p {
  margin-bottom: 1.5rem;
}

.form-fields label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-fields input,
.form-fields textarea,
.form-fields select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ced4da;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-fields input:focus,
.form-fields textarea:focus,
.form-fields select:focus {
  border-color: #86b7fe;
  outline: none;
}

.form-fields textarea {
  min-height: 120px;
  resize: vertical;
}

.action-buttons .btn {
  min-width: 140px;
  font-size: 15px;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
}

.cancel-btn {
  background-color: #adb5bd;
  color: #fff;
  border: none;
}

.cancel-btn:hover {
  background-color: #868e96;
}

.save-btn {
  background-color: #198754;
  color: #fff;
  border: none;
}

.save-btn:hover {
  background-color: #157347;
}

.alert {
  font-size: 15px;
}
.product-fixed-icons button i {
    font-size: 18px;
    color: #8c0d4f;
}
.product-list-4 .product-image {
    position: relative;
    overflow: hidden;
    padding-top: 85%;
}


  @media (max-width: 767px) {
  .header .main-header .logo img {
    max-height: 35px; 
    width: 95px;      
  }
  
  .register .registration-form-wrapper .section-header h2 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.register .registration-form-wrapper .section-header p {
    font-size: 12px;
}
.register .registration-form-wrapper label {
   
    font-size: 0.7rem;
}
.register .registration-form-wrapper .btn-primary {
   
    font-size: 14px;
}
  .product-list .product-rating {
    margin: 0px;
}
 .product-list .product-rating {
    
    font-size: 12px !important;
     
 }
 .hero .hero-image-wrapper .hero-image .floating-badge {
  top: 11px;
  right: -45px;
  border-radius: 50%;
  height: 90px;
  width: 90px;
}
.hero .hero-image-wrapper .hero-image .floating-badge .discount {
    font-size: 13px;
}
.hero .hero-content .hero-cta {
    margin-bottom: 1.8rem;
   
}
    .hero .hero-content {
        margin-bottom: 1.8rem;
    }
.hero .hero-image-wrapper .hero-image .floating-badge .discount-text {
    font-size: 0.7rem;
    font-weight: 500;
}
    .hero .hero-image-wrapper .hero-image {
        margin: 0px 120px;
    }

   .footer .footer-main .footer-widget h4 {
    font-size: 15px;
    margin-bottom: 15px;
    padding-bottom: 12px;
}
.footer .footer-main .footer-contact .contact-item {
    margin-bottom: 7px;
    font-size: 13px;
}

.footer .footer-main .footer-widget {
    margin-bottom: 2px;
}
.footer .footer-main .footer-contact .contact-item i {
    font-size: 13px;
}
.footer .footer-main .footer-links li {
    margin-bottom: 8px;
  
}

.footer .footer-main .footer-links {

    font-size: 13px;
}
  
  .product-list .product-image img {
    
    width: 140px;
    height: 160px;
  }
  

  .product-list .product-image {
    padding-top: 80%;
}
  .product-list .btn-add-to-cart {
   
    font-size: 0.715rem
}
.product-list .product-badge {
    padding: 0.2rem 0.50rem;
    font-size: 0.600rem;
}

.hero .hero-content h1 {
    font-size: 16px;
}

.hero .hero-content p {
    font-size: 13px;
    max-width: 90%;
    justify-self: center !important;
}

.hero .hero-content .hero-features .feature-item span {
    font-size: 0.78rem;

}

.hero .hero-content .hero-cta .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 11px;
}

.hero .hero-content .hero-cta .link-with-arrow {
    font-size: 0.85rem;
}

.promo-cards .promo-card .shop-btn {
    padding: 7px 18px;
    font-size: 0.7rem;
    
}
.header .announcement-bar .announcement-slider .swiper-slide {
   
        font-size: 13px;
}
.promo-cards .promo-card .product-title {
        font-size: 0.85rem ! important; 
    }

.promo-cards .promo-card .product-image img {
    max-height: 125px !important;
}

.product-list .view-all-btn {
    padding: 9px 20px;
    font-size: 13px;
}
 .product-list .product-rating {
    
    font-size: 11px;
    gap: 0rem;
}
.product-list .product-price {
    font-size: 11px;
}
.product-list .product-rating span {
    font-size: 0.575rem
}
.product-list .product-category {
    font-size: 0.75rem;
}

}

/* added by razan 3/6/2025 */

/* Price with SAR icon */
.price-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


/*.old-price {*/
/*    text-decoration: line-through;*/
/*    color: #888;*/
/*    font-size: 16px;*/
/*    margin-inline-end: 8px;*/
/*}*/

.old-price {
    font-size: 14px;
    text-decoration: line-through;
    color: #888;
    margin-inline-end: 8px;
}
.current-price {
    font-weight: bold;
    font-size: 17px;
}

/* Custom grid spacing */
.small-gap {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.25rem;
}
.empty-cart {
  font-size: 80px;
  color: #55555569;
  margin-bottom: 25px;
}
.empty-cart-title {
  font-size: 16px; 
  font-weight: 600;
  /*color: #444;*/
  /*margin-bottom: 10px;*/
}

.empty-cart-text {
  font-size: 14px; 
  /*color: #777;*/
  /*margin-bottom: 20px;*/
}
.cart .btn-accent {
    font-size: 15px;
}


/* Responsive tweaks */
@media (max-width: 576px) {
    .small-gap {
        --bs-gutter-x: 0.25rem;
        --bs-gutter-y: 0.5rem;
    }

    .col-6 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .sar-icon {
        width: 13px;
        height: 13px;
    }

    .old-price{
            font-size: 11px !important;
    }
    .current-price {
            font-size: 14px !important;
    }

    .product-card {
        /*padding: 8px;*/
    }
    
    .product-list .btn-add-to-cart
 {
        font-size: 0.615rem;
    }
    
        .product-list .product-image img {
        width: 125px;
        height: 110px;
    }
    
    /* .header .main-header .cart-dropdown .cart-dropdown-menu {
        min-width: 280px;
        margin-right: -311px;
    }
     */
    .product-info {
    text-align: center;
  }

  .product-price {
    justify-content: center;
  }
  
.product-rating {
    text-align: center;
    align-items: center;
  }

  .stars {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .product-list-2 .product-info .product-rating {
  display: block;
  }
}


@media (max-width: 767px) {
    
    .product-list-2 .product-info .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 12px !important;
  color: #FFB800;
}
    
    
    .product-list .btn-add-to-cart
 {
        font-size: 10px;
        font-weight: 600;
    }
    
        .product-list .product-image img {
        width: 120px;
        height: 110px;
    }
    
        /* .header .main-header .cart-dropdown .cart-dropdown-menu {
        min-width: 280px;
        margin-right: -311px;
    } */
    
    .product-info {
    text-align: center;
  }

  .product-price {
    justify-content: center;
  }
  
.product-rating {
    text-align: center;
    align-items: center;
  }

  .stars {
    justify-content: center;
    flex-wrap: wrap;
  }
  
    .product-list-2 .product-info .product-rating {
  display: block;
  }
}

  

 /*added bu razan*/ 

.payment-methods {
  flex-wrap: wrap;
  gap: 10px;
}

.payment-icon-wrapper {
  background-color: white;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;                  

}

.payment-icon {
  max-height: 30px;
  max-width: 45px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .payment-methods {
  flex-wrap: wrap;
  gap: 10px;
}


.payment-icon-wrapper {
  background-color: white;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;                  

}

.payment-icon {
  max-height: 30px;
  max-width: 45px;
  object-fit: contain;
}

}

  .login-register-wraper {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
    text-align: center;
  }

  .login-register-wraper h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c2c2c;
  }

  .login-register-wraper p.subtext {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
  }

  .login-register-wraper .form-label {
    display: none;
  }

  .login-register-wraper input.form-control {
    height: 50px;
    font-size: 18px;
    text-align: center;
  }

  .login-register-wraper .btn {
    background: linear-gradient(to right, #800040, #99004d);
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
  }

  .nav-tabs {
    display: none;
  }
  .header .main-header .header-actions .header-action-btn .bi {
    font-size: 21px;
}
  
.footer .footer-bottom {
    padding: 10px 0;
}
.login-switch-links a {
  font-size: 14px; 
  font-weight: 500;
}

@media (max-width: 576px) {
  .payment-icon {
    max-height: 25px;
    max-width: 35px;
  }
  .payment-icon-wrapper {
  background-color: white;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;                  

}
.empty-cart {
    font-size: 50px;
    color: #55555569;
    margin-bottom: 25px;
}
.empty-cart-title {
  font-size: 15px; 
  font-weight: 600;
  /*color: #444;*/
  /*margin-bottom: 10px;*/
}

.empty-cart-text {
  font-size: 14px; 
  /*color: #777;*/
  /*margin-bottom: 20px;*/
}
.cart .btn-accent {
    font-size: 13px;
}

.login-switch-links a {
  font-size: 12px; 
  font-weight: 500;
}
.product-list-2 .product-info .product-rating {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;   
  margin-bottom: 12px;
  justify-content: center;

}

.product-list-2 .product-info .product-rating .stars {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;

}

.product-list-2 .product-info .product-rating .rating-count {
  white-space: nowrap;  
  font-size: 14px;
  margin-right: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);

}
.product-details .product-info-wrapper .product-meta .product-title {
    font-size: 13px !important;
    font-weight: 600;
    margin: 0px;
  
}

.product-details .product-info-wrapper .product-meta .product-rating .rating-count {
    font-size: 12px;

}
.product-details .product-info-wrapper .product-meta .product-rating {
    font-size: 12px;
}


.product-details .product-info-wrapper .product-actions .btn i {

    font-size: 22px;
}
section, .section {
    padding: 15px 0;
}

.product-details .product-details-accordion .product-reviews .review-form-container .btn-primary {
    
    padding: 0.45rem 1rem;
    font-weight: 600;
    font-size: 13px;
}

.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-title {
    font-size: 13px;
    font-weight: 600;
  
}
.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-content p {
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 12px;
}
.product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.product-details .product-details-accordion .product-reviews .review-form-container {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .accordion-button {
   
    font-size: 15px;
   
}
.cart .cart-items .cart-item .product-info .product-details {

    font-size: 10px;
    flex: none;

}
.cart .cart-items .cart-item .product-info .product-details .product-title {
    font-size: 14px;
}
.cart .cart-items .cart-actions .btn,.cart .cart-items .cart-actions .coupon-form .input-group .form-control {
    font-size: 12px !important;
}
.cart .cart-summary .summary-title {
    font-size: 16px;
 
}
.cart .cart-summary .summary-total .summary-label {
    font-size: 16px;
  
}
.cart .cart-summary .summary-total .summary-value {
    font-size: 18px;
}

}
/* added by razan 11/6 */

@media (max-width: 768px) {
  

 

  .thumbnail-item img {
      width: 100%;
      height: auto;
      border: 1px solid #ddd;
      border-radius: 4px;
  }

 
}


.price-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Makes it stack nicely on extra small screens */
  gap: 10px;
}

.prices {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.discounted-price {
  font-weight: bold;
  color: #5b003b;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.original-price img,
.discounted-price img {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.discount-badge-product{
  background-color: #8c0d4f;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
}


.option-group {
  display: flex;
  align-items: center;
  gap: 12px; 
  /* margin-bottom: 16px; */
}

.option-title {
  margin: 0;
  font-size: 16px;
  white-space: nowrap;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
}

.quantity-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: none;
  outline: none;
}

.product-details .product-info-wrapper .product-meta .product-rating {
    gap: 0px;
}
.product-list .product-filters ul {
  gap: 10px;
}
.product-list .product-filters ul li {
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--default-color);
  cursor: pointer;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.product-list .product-filters ul li:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.product-list .product-filters ul li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
/* Base styles (for all screens) */
.quantity-selector {
  display: flex;
  align-items: stretch;
  /* height: 45px;  */
  border-radius: 6px;
  overflow: hidden;
}

.quantity-selector .quantity-btn {
  width: 45px; /* Default width (for larger screens) */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border: none;
  cursor: pointer;
}

.quantity-selector .quantity-input {
  width: 50px; /* Default width (for larger screens) */
  border: none;
  text-align: center;
  font-size: 16px;
  height: 100%;
  outline: none;
}

.product-actions .add-to-cart-btn {
  height: 45px; /* Fixed height (same on all screens) */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 15px;
  border-radius: 8px;
}

/* Small screen adjustments */
@media (max-width: 575.98px) {
  .product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input,.product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn{

    height: 34px; /* Smaller height on mobile */
  }

 
  
  .quantity-selector .quantity-btn {
    width: 36px; /* Smaller buttons on mobile */
  }
  
  .quantity-selector .quantity-input {
    width: 40px; /* Smaller input on mobile */
    font-size: 14px; /* Slightly smaller font */
  }
}

/* Responsive layout adjustments */
.option-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 576px) {
  .option-group {
    flex-direction: row;
    align-items: center;
  }
  
  .option-title {
    margin-bottom: 0 !important;
    margin-right: 0.5rem;
  }
}
/* added by Thekra 13/6 */

@media (max-width: 567px) {

    .search-results-header .results-count h2 {
      font-size: 15px;
    }
    
    .search-results-header .results-count p {
      font-size: 14px;
    }
    .title h2 {
        font-size: 12px;
    }
    .product-details .product-info-wrapper .product-price-container .price-wrapper .prices .old-price .price-with-icon{
        font-size:10px;
    }
    .product-details .product-info-wrapper .product-price-container .price-wrapper .current-price .price-with-icon{
        font-size:12px;
    }
}

  /* ********** */
/* added by serra 17/6 */
@media (max-width: 768px) {
  .header .main-header .account-dropdown {
    position: static;
  }
  
  .header .main-header .account-dropdown .dropdown-menu {
    position: absolute !important;
    inset: unset !important;
    left: 50% !important;
    top:60% !important; 
    transform: translateX(-50%) !important; 
    width: 90%;
    max-width: 280px;
    margin: 0.75rem 0 0 0 !important; 
  }
}
/* edit by serra 18/6 */
/* .profile-menu {
    position: sticky;
    top: 20px;
   
    overflow-y: auto;
} */
  .nav-pills {
     padding-right:0px;
 
  }

.account .profile-menu {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 24px;
  /* height: 100%; */  
  width: -webkit-fill-available;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}


/* end edit */

/* edit in 20/6 by serra */
.wishlist-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}


.btn-accent {
  /* width: 100%; */
  padding: 0.6rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.btn-accent:hover {
  background-color: var( --heading-color); 
   color: var(--contrast-color);

}
/* end edit */
/* serra 21/6 */
 .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;
  max-width: 918px;
}
#review-form input[type="text"]:focus,
#review-form textarea:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%) !important;
}
.review-edit-section .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}
.text-accent{
  color: var(--accent-color);
}
/* Base star color */
.star-rating i {
  color: #ccc;
  transition: color 0.3s ease;
}

/* Hover effect */
.star-rating label:hover ~ label i,
.star-rating label:hover i {
  color: rgb(255, 215, 0);
}

/* Selected (checked) stars */
.star-rating input[type="radio"]:checked ~ label i {
  color: rgb(255, 215, 0);
}

/* Also highlight current star on hover (forward direction) */
.star-rating label:hover i,
.star-rating label:hover ~ label i {
  color: rgb(255, 215, 0);
}


.product-list-2 .product-image .quick-actions {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); remove bg */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
    direction: ltr;

}
.product-list-2 .product-image .quick-actions .quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
 /* background-color: #fce8f0; */
 background-color: transparent;
  /* color: var(--default-color); */
  color: var(--accent-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: -12px;
}
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

}

.product-list-2 .product-image .quick-actions .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-5px);
}
.product-details .product-details-accordion .product-reviews .review-form-container .form-control:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%) !important;
  outline: none;
}
.product-details .product-info-wrapper .product-meta .product-title {
    font-size: 15px ;
    font-weight: 600;
    margin: 0px;
  
}
.product-details .product-info-wrapper .product-options {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-details .product-info-wrapper .product-actions {
  display: flex;
  gap: 0.75rem;
 
}
.product-list-2 .products-carousel-wrapper .swiper-wrapper {
  height: auto !important;
}
/* .product-details .product-info-wrapper .product-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.44rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: -.5rem;
} */
.drift-zoom-pane {
  direction: ltr !important;
}

.product-list-2 .product-image .quick-actions .quick-action-btn.add-to-cart {
  /* width: auto; */
  padding: 0 20px;
  border-radius: 20px;
  background-color: var(--accent-color);
  color: white;
}

.original-price {
  gap: 2px;
}

.original-price img {
  width: 12px;  /* smaller icon */
  height: auto;
}

.discounted-price {
  gap: 4px;
}

.discounted-price img {
  width: 16px;  /* larger icon */
  height: auto;
}
/* 22/6 serra */
.product-details .product-details-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  gap:4px;
}
.description-text {
  max-height: 60px; /* ≈3 lines */
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}

.description-text.expanded {
  max-height: none;
}

.read-toggle {
  display: inline-block;
  margin-bottom: 16px;
  color: #000;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.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-input {
    width: 2.5rem;
    text-align: center;
    border: none;
    border-left: 1px solid
 color-mix(in srgb, var(--default-color), transparent 80%);
    border-right: 1px solid
 color-mix(in srgb, var(--default-color), transparent 80%);
    font-size: 0.875rem;
    color: var(--heading-color);
    font-weight: 600;
    padding: 0.25rem 0;
    background-color: var(--surface-color);
}
.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;
}
.currency-icon {
  vertical-align: middle;
  margin-right: 4px;
}

.currency-icon-small {
  width: 16px;
  height: 16px;
}

.currency-icon-large {
  width: 16px;
  height: 16px;
}
.current-price {
  font-size: 16px; /* أصغر */
  font-weight: 600;
}

.item-total span {
  font-size: 16px; /* أكبر */
  font-weight: 700;
}
.cart .cart-items .cart-item .price-tag .current-price {
  font-weight: 600;
  color: var(--heading-color);
  /* font-size: 0.75rem; */
}
 .mr-lg-minus {
    margin-right: -10px; 
  }

.cart .cart-summary .summary-total .summary-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
}
.checkout .checkout-forms .checkout-form .form-control:focus,
.checkout .checkout-forms .checkout-form .form-select:focus {
  border-color: var(--accent-color);
     box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
  outline: none;
}
.list-unstyled{
  padding-right: 0px !important;
}
  .review-section:hover {
    box-shadow: 0 0.15rem 0.5rem rgba(140, 13, 79, 0.1);
    transition: all 0.3s ease;
  }
  
  .order-confirm-btn:hover {
    background-color: #6e0a3f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(140, 13, 79, 0.2);
  }
  
  .order-confirm-btn:active {
    transform: translateY(0);
  }
  

  .review-label {
  /* min-width: 120px; */
  color: #6c757d;
 


}

.review-value {
  margin-right: 8px;
  color: #212529;
   font-weight: 600;
 
}

  .celebration-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
   .payment-failed-container {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
  }
  
  .failure-header .failure-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  
  .animated-icon {
    animation: pulse 1.5s infinite;
  }
  

  .info-icon {
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .info-icon:hover {
    animation: shake 0.5s;
  }
  
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-3px); }
    40%, 80% { transform: translateX(3px); }
  }
  
  .failure-header h1 {
   font-size: 1.5rem;
   font-weight: 800;
   color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .failure-header .lead {
    font-size: 1rem;
    margin-bottom: 16px;
        color: 
 color-mix(in srgb, var(--default-color), transparent 30%);
  }
  
  .reasons-list {
    list-style-type: none;
    padding-right: 1rem;
    margin-bottom: 0;
  }
  
  .reasons-list li {
    margin-bottom: 0.5rem;
    color: #721c24;
    font-size: 0.9rem;
  }
  
  .action-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
   
  }
  
  .action-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    flex: 1 1 auto;
    min-width: 120px;
    border-radius: 50px;
  }
  
  .customer-support {
    font-size: 0.9rem;
  }
  
  /* Modal styles optimized for mobile */
  .modal-content {
    border-radius: 8px;
    border: none;
  }
  
  .modal-header, .modal-footer {
    padding: 0.75rem 1rem;
  }
  
  .modal-body {
    padding: 0 1rem 1rem;
  }
  
  .modal-title {
    font-size: 1.1rem;
  }
  
  .modal-footer .btn {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
  }
  

.action-buttons .btn-retry {
  background-color: #dc3545;
  border: none;
  color: var(--contrast-color);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.action-buttons .btn-orders {
  background-color: transparent;
  border: 2px solid #dc3545;
  color: #dc3545;
}
.product-list-2 .product-info .product-price .current-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
}
.form-control:focus {
   border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%) !important;
}
.checkout .checkout-forms .checkout-form .form-header h3 {
  font-size: 22px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.checkout .order-summary .order-summary-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.sar-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.cart-icon {
  margin-right: 0.5rem; /* Same as Bootstrap's me-2 (8px) */
  font-size: 1rem;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.btn-add-to-cart:hover .cart-icon {
  transform: scale(1.2);
 
}
select:not(:-internal-list-box):not([multiple]) option:enabled:hover ,select:not(:-internal-list-box):not([multiple]) option:enabled:hover {
    background-color:var(--accent-color) !important;
    color:red !important;
}
/* end edit */
@media (max-width: 1199px) {
    .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
  
      color: #ffffff;
    background-color: #8c0d4f;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top:1px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }}
@media (max-width: 768px) {
   /* Small screen edit by serra 22/6 */
  .original-price img {
    width: 10px; 
  }

  .discounted-price img {
    width: 13px;
  }
  /* Small screen edit by serra 21/6 */
  .settings-content label.form-label {
      font-size: 12px  !important;
    }
  
      .btn-save-address {
        font-size: 13px !important;
        padding: 8px 16px !important;
        margin: 6px 12px !important;
        font-weight: 400;
        border-radius: 0.375rem;
    }
   .preference-item h4 {
    font-size: 15px !important;
  }

  .preference-item p {
    font-size: 13px !important;
  }
   .account .settings-content .preferences-list .preference-item .form-check .form-check-input {
    width: 2.2rem !important; /* ~35px */
    height: 1.1rem !important; /* ~18px */
  }
  .form-switch {
    padding-left: 0px !important;
}
 .account .settings-content .settings-section.danger-zone .danger-zone-content .btn-danger {
    height: 36px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }
  .account .settings-content .settings-section {
    padding: 16px !important;
    margin-bottom: 16px !important;
    border-radius: 12px !important;
  }
  /* end edit */
    /* Small screen edit by serra 20/6 */
  .account .reviews-grid .review-card .review-content{
   margin-bottom: 8px;
    padding-bottom: 8px;
  }
    .account .reviews-grid .review-card .review-footer a {
    height: 32px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
   
  }
   .account .reviews-grid .review-card .review-header {
    gap: 8px !important;
    margin-bottom: 12px !important;
  }
   .account .reviews-grid .review-card {
    padding: 12px !important;
    border-radius: 12px !important;
  }
    .wishlist-image img {
    max-width: 120px; 
    width: 100%;
    margin: 0 auto;
    display: block;
  }
   h1 { font-size: 20px; }
  h2 { font-size: 16px; }
  h3 { font-size: 14px !important; }
  h4 { font-size: 15px !important; }
  h5 { font-size: 14px; }
  h6 { font-size: 12px !important;}
   .text-muted {
    font-size: 12px;
  }
  /* 21/6 by serra */
  .fw-bold, .product-details .product-details-accordion .product-reviews .review-form-container .form-label  {
    font-size: 13px;
    font-weight: 400 !important;
  }
  .row {
    padding-left: 12px;
    padding-right: 12px;
  }
   .btn-accent {
    padding: 0.4rem;
    font-size: 0.75rem;
  }
  .account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item:last-child{
      margin-bottom: 12px !important;
  }
   .account .content-area .orders-grid .order-card .order-details .details-content .detail-section .order-items .item .item-info h6 {
    font-size: 12px !important;
    margin-bottom: 2px !important;
  }
   .account .profile-menu .user-info {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .account .profile-menu .user-info .user-avatar {
    width: 56px;
    height: 56px;
  }

  .account .profile-menu .user-info .user-avatar img {
    border-width: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .account .profile-menu .user-info .user-avatar .status-badge {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
    .account .profile-menu .user-info .user-avatar .status-badge i {
    font-size: 10px !important;
  }

/* Small screen edit by serra 20/6 */

   .account .reviews-grid .review-card .review-header .review-meta h4 {
    font-size: 14px  !important;
    margin-bottom: 6px  !important;
  }
    .account .profile-menu .user-info h4 {
    font-size: 15px; 
    margin-bottom: 6px;
  }
   .account .content-area .orders-grid .order-card .order-content .order-info .info-row .status {
    padding: 6px 6px !important;
    font-size: 11px !important;
    border-radius: 8px !important;
  }
   .account .content-area {
    padding: 12px  !important;
    border-radius: 12px;
  }
    .account .content-area .section-header h2 {
    font-size: 16px !important;
    font-weight: 500;
  }
    .account .profile-menu .menu-footer a {
    padding: 8px 12px;
    margin-bottom: 2px;
    border-radius: 8px;
    font-size: 13px; 
  }
   .account .profile-menu .user-info .user-status {
    padding: 4px 8px;
    font-size: 11px;
    gap: 4px;
    border-radius: 16px;
  }

  .account .profile-menu .user-info .user-status i {
    font-size: 12px;
  }
    .account .profile-menu .menu-nav .nav-link i {
    font-size: 16px;
    margin-left: 8px;
  }
   .account .profile-menu .menu-nav .nav-link {
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 5px !important;
  }
  .account .profile-menu .menu-nav .nav-link .badge {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 6px;
  }
  .form-control{
    font-size: 14px;
  }
  /* added 21/6 by serra */
.wishlist-section{
padding: 24px;
}
 .thumbnail-item {
      flex: 0 0 auto;
      width: 60px; 
  }
   .product-details .product-gallery .thumbnails-vertical .thumbnails-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

    .section-title {
        font-size: 16px !important;
        font-weight: 500;
    }
    .fs-4 {
    font-size: 20px !important;
    /*MARGIN: 7PX;*/
}
.badge{
  font-size: 12px !important;
  font-weight: 500 !important;
}
.review-card{
  padding: 12px !important;
}
 .product-details .product-info-wrapper .product-price-container .price-wrapper .original-price {
    font-size: 0.85rem;
  }
    .discounted-price {
    font-size: 14px;
  }
     .discount-badge-product {
        font-size: 11px;
        font-weight: 600;
    }
  .product-details .product-info-wrapper .product-short-description p{
     font-size: 12px;
     margin-top: 8px !important;
     margin-bottom: 8px !important;
    
  }
  .p-3{
    padding: 8px !important;
  }
  .product-details .product-info-wrapper .product-options .option-group .quantity-selector{
    /* max-width: 100px; */
  }
 


/* 22/6 serra */
 .product-details .product-info-wrapper .product-actions .btn {
        font-size: 13px;
        font-weight: 400;
        /* max-width: 180px; */
        
    }
  .product-details .product-info-wrapper .product-actions .btn i{
    font-size: 13px;
  }
  .section-title h2 {
    font-size: 14px;
    margin-bottom: -140px;
}
.product-details .product-details-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  
    font-size: 14px;
}
.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-number {
    font-size:24px;
    font-weight: 600;
    
}
.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-stars{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.rating-stars i.bi.bi-star-fill, .rating-stars i.bi.bi-star {
  font-size: 14px !important;
}
.star-rating i{
  font-size: 18px !important;
}
.product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-count{
  font-size: 12px;
}
.product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label{
  font-size: 12px;
}
.product-details .product-gallery .main-image-wrapper .image-zoom-container .main-image {
    width: 150px;
    height: 150px;
}
.product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn,.product-list-2 .products-carousel-wrapper .swiper-button-next, .product-list-2 .products-carousel-wrapper .swiper-button-prev{
  width: 35px;
    height: 35px;
}

.product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn i{
  font-size: 16px;
}
.thumbnails-wrapper {
      display: flex;
      flex-wrap: nowrap;         
      overflow-x: auto;        
      gap: 8px;
      /* padding-bottom: 10px; */
  }
  .form-text{
    font-size: 11px !important;
  }
  .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body{
    padding:16px;
  }
  .product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body h4 {
    color: var(--heading-color);
    font-size: 14px !important;
    font-weight: 600;
}
.product-details .product-details-accordion .product-reviews .reviews-summary{
  margin-bottom: 0px;
}
  .product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown {
    padding: 0 10px;
  }
 .product-details .product-details-accordion .product-reviews .review-form-container{
  padding: 20px;
 }
.product-list-2 .product-info .product-title a{
  font-size: 14px !important;
}
.product-list-2 .product-image img{
  width: 150px;
  height: 150px;
}
.product-list-2 .product-image {

  /* height: 120px; */
}
 .product-list-2 .product-info {
    padding: 8px;
  }
    .product-list-2 .product-image {
    height: 150px !important;
  }
   .product-details .product-info-wrapper .product-options .option-group .quantity-selector {
        max-width: 280px  !important;
    }
 .product-price-container {
    padding: 12px 16px !important;
    background-color: #fdf6fa;
    border-radius: 12px !important;
    margin-bottom: 15px !important;
  }
  .product-details .product-info-wrapper .product-price-container .price-wrapper{
        margin-bottom: 0px !important;
  }
  .product-list-2 .products-carousel-wrapper .swiper-button-next::after, .product-list-2 .products-carousel-wrapper .swiper-button-prev::after,.product-list-2 .products-carousel-wrapper .swiper-button-next::after, .product-list-2 .products-carousel-wrapper .swiper-button-prev::after{
     font-size: 14px;
      font-weight: 400;  
  }
.small-stock-text {
  font-size: 12px; 
  font-weight: 500;  
}
 .cart .cart-items .cart-item {
    padding: 8px;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
   .product-details .product-info-wrapper .product-actions .btn {
        font-size: 12px;
         padding: 6px 12px; 
        font-weight: 400;
        max-width: 190px;
        margin-top: 6px;
    }
     .header .main-header .cart-dropdown {
        position: static;
    }
    
    .header .main-header .cart-dropdown .cart-dropdown-menu {
        position: absolute;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 280px;
        top: 62%; 
        /* margin-top: 0.75rem;  */
    }
    .product-list .product-title {
    font-size: 14px !important;
     font-size: 1rem;
    margin-bottom: 0px;
    margin-top: .3rem !important;
}
 .hero .hero-image-wrapper .hero-image .floating-badge {
  top: 11px;
  right: -45px;
  border-radius: 50%;
  height: 90px;
  width: 90px;
}
  .cart-icon {
    margin-right: 0.25rem; 
    font-size: 0.8rem;    
  }
/* end edit */
}
@media (max-width: 375px) {
 
        .product-details .product-info-wrapper .product-options .option-group .quantity-selector {
        max-width: 260px  !important;
    }
}

@media (max-width: 320px) {
     .hero .hero-image-wrapper .hero-image .floating-badge {
  top: 11px;
  right: -65px;
  border-radius: 50%;
  height: 90px;
  width: 90px;
}
    .product-details .product-info-wrapper .product-actions .btn {
         font-size: 12px;
        padding: 6.75px 10px;
        font-weight: 400;
        max-width: 180px;
        /* margin-top:4px; */
    }
        .product-details .product-info-wrapper .product-options .option-group .quantity-selector {
        max-width: 150px    !important;
    }
    /* 22/6 serra */
     .read-toggle {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
}
@media (max-width: 576px) {
    .category-cards .category-slider .swiper-button-prev {
    right:1px;
  }

    .category-cards .category-slider .swiper-button-next {
    left: 1px;
  }
  .option-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .option-title {
    font-size: 0.9rem;
  }

  .quantity-selector {
    width: 100%;
    justify-content: flex-start;
  }
  .cart .cart-items .cart-item .quantity-selector{
    width: auto;

  }
  .product-details .product-info-wrapper .product-actions{
    margin-top: 22px;
  }

/* 23/6 serra */

  .cart .cart-items{
    padding:8px;
  }
  .cart .cart-items .cart-item .quantity-selector {
    border-radius: 0.25rem;
  }

  .cart .cart-items .cart-item .quantity-selector .quantity-btn {
    width: 1.3rem;
    height: 1.5rem;
    font-size: 0.75rem;
  }

  .cart .cart-items .cart-item .quantity-selector .quantity-input {
    width: 1.95rem;
    font-size: 0.75rem;
    padding: 0.2rem 0;
  }

  .currency-icon-small {
    width: 12px !important;
    height: 12px !important;
  }

  .currency-icon-large {
    width: 12px !important;
    height: 12px !important;
  }

  .current-price {
    font-size: 12px !important;
  }

  .item-total span {
    font-size: 12px !important;
  }
   .cart .cart-summary .summary-item .summary-label ,.cart .cart-summary .summary-item .summary-value{
    font-size: 13px; 
  }
  .cart .cart-summary .summary-total .summary-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}
.cart .cart-summary .summary-total .summary-value{
font-size: 15px;
}  
.cart .cart-summary .continue-shopping .btn-link{
  font-size: 15px;
}
.coupon-form{
width:244px;
justify-content: center;
padding-right: 5px;

}
.cart .cart-items
{
  margin-bottom: 8px;
}
.cart .cart-summary{
  margin-bottom: 16px;
}
/* 24/6 */
 .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-total {
    font-size: 14px; /* or smaller as needed */
    /* flex-direction: column; */
    gap: 4px;
    text-align: center;
  }
    .header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn {
    font-size: 12px;
    padding: 0.4rem 0.75rem;
  }
   .cart-item .row{
    padding-left: 0px;
    padding-right: 0px;
   }
   .mr-lg-minus {
        margin-right: -5px;
        margin-left: 3px;
}
  .checkout .checkout-forms .checkout-form label {
    font-size: 0.70rem !important;
  }
   .checkout .checkout-forms .checkout-form .form-control,
  .checkout .checkout-forms .checkout-form  {
    font-size: 13px;
    padding: 10px 14px;
  }
 .checkout .checkout-forms .checkout-form .form-select {
      padding:10px 40px;
    font-size: 13px;
  }
    .checkout .checkout-forms .checkout-form .form-header p {
    font-size: 0.8rem  !important;
  }
   .checkout .checkout-forms .checkout-form .btn {
    padding: 10px 18px;
    font-size: 0.8rem;
    font-weight: 500;
  }
    .checkout .order-summary .order-summary-content .order-totals > div {
    font-size: 0.8rem;
  }
   .checkout .order-summary .order-summary-content .order-totals > div:last-child {
    font-size: 0.86rem;
    margin-top: 10px !important;
    padding-top: 8px !important;
  }
   .checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .price {
    font-size: 14px;
  }
  .checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header{
font-size: 14px;
  }
  .invalid-feedback{
    font-size: 12px;
  }
   .review-label {
   font-size: 12px;
  font-weight: 400;
}

.review-value {
 font-size: 13px !important;
  font-weight:500 !important;
}
 .order-confirmation .celebration-header h1 {
    font-size: 20px !important;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .order-confirmation .action-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 11px;
  }
    .order-confirmation .celebration-header .celebration-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  .order-confirmation .celebration-header .celebration-icon i{
    font-size: 22px;
  }
  .order-confirmation .celebration-header{
    margin-bottom: 1rem;

  }
  .order-confirmation .customer-support{
    font-size: 12px;
  }
  .order-confirmation .action-buttons{
    flex-direction:row !important;
  }
 
.customer-support{
  font-size: 12px;
    
}
   .modal-dialog {
    max-width: 90% !important;
    margin: 1.75rem auto;
  }

  .modal-content {
    padding: 0.5rem;
  }

  .modal-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .reasons-list li {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .modal-footer .btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  .payment-failed-container {
    padding: 1rem 0;
  }
  .payment-failed-container,.order-confirmation {
    padding: 2.5rem 0;
  }
  .failure-header .failure-icon {
    font-size: 3rem;
    margin-bottom: 4px;

  }

  .failure-header h1 {
    font-size:20px;
    margin-bottom: 6px;
  }

  .failure-header .lead ,.order-confirmation .celebration-header p.lead{
    font-size: 13px;
  }

  .action-buttons {
    gap: 0.5rem;
    margin: 0.9rem 0;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
  }

  .action-buttons .btn {
    flex: 1 1 48%; 
    padding: 0.5rem 1rem;
        font-size: 11px;
    min-width: 100px;
    
  }
      .dropdown.cart-dropdown .dropdown-menu {
      left: auto !important;
      
      transform: translateX(0%) !important;
      width: 95vw;
      margin-top: 0.5rem;
    }
    
    .hero .container
    {
    position: relative;
    z-index: 1;
    }
    
    .header .header-nav {
    background-color: var(--background-color);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0 0;
}
}

/* end edit */