@charset "UTF-8";
/**
*
*	STYLE.SCSS
* 	Global imports for global styles
*
*/
/*----------  CONFIG  ----------*/
html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: esther, serif;
  font-size: 14px;
  font-weight: 400;
  color: #202020;
  background-color: #fff;
  transition: opacity ease 0.3s;
}
body.loading {
  opacity: 0.5;
}
body.loading, body.loading a {
  cursor: wait !important;
}

/**
 * 1. iOS fix.
 */
.unscrollable {
  position: relative; /* 1 */
  height: 100%; /* 1 */
  overflow: hidden;
}

.no-padding {
  padding: 0 !important;
}

.grid-columns {
  width: 20%;
  padding: 0 10px;
}

@media (max-width: 1749px) {
  .grid-columns {
    width: 20%;
  }
}
@media (max-width: 1300px) {
  .grid-columns {
    width: 25%;
  }
}
@media (max-width: 1100px) {
  .grid-columns {
    width: 33.3333333333%;
  }
}
@media (max-width: 600px) {
  .grid-columns {
    width: 50%;
  }
}
/**
*
*	STATIC
*	Styles for static pages
*
*/
@media screen and (max-width: 1400px) {
  .footer .footer-content {
    width: 100%;
  }
}
/*----------  STYLES  ----------*/
.static-submenu {
  background-image: url(/images/statics-submenu-background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.static-submenu .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2.5em 0;
}
.static-submenu .container li {
  display: block;
  padding: 0 1.65em;
  height: 15px;
  background: url(/images/border-static-menu.jpg) center right no-repeat;
}
.static-submenu .container li:last-child {
  border-right: 0;
  background: none !important;
}
.static-submenu .container li a {
  position: relative;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  font-size: 0.786em;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
}
.static-submenu .container li a:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5em;
  width: 0;
  height: 3px;
  background-color: #FFFFFF;
  transition: width 0.2s ease;
}
.static-submenu .container li a:hover:after, .static-submenu .container li a.active:after {
  width: 100%;
}
.static-submenu + .container {
  padding-top: 3em;
}

.static-main-heading {
  margin-top: 1em;
  margin-bottom: 3.55em;
}

.static-title {
  display: block;
  margin: auto;
  font-size: 2.45em;
  font-weight: 400;
  text-align: center;
}

.static-subtitle {
  display: block;
  margin: auto;
  text-align: center;
  margin-top: 1.3em;
  font-size: 0.86em;
  letter-spacing: 0.0885em;
  font-size: 1rem;
}

ul.breadcrumb {
  margin: 0;
  font-size: 1.2em;
  font-family: "esther";
}
ul.breadcrumb > li {
  float: left;
  vertical-align: top;
  margin-top: 5px;
}
@media screen and (min-width: 992px) {
  ul.breadcrumb > li {
    margin-top: 12px;
  }
}
ul.breadcrumb > li a {
  color: #676767;
  text-decoration: none;
}
ul.breadcrumb > li span {
  font-size: 0.86em;
  letter-spacing: 0.093em;
}
ul.breadcrumb > li:after {
  display: inline-block;
  vertical-align: middle;
  content: "\e610";
  font-family: "Nouvelle-collection-typo";
  font-weight: 900;
  color: black;
  margin-left: 0;
  margin-right: 0.2em;
  margin-top: -0.2em;
}
ul.breadcrumb > li:last-child:after {
  display: none;
}
ul.breadcrumb > li:last-child, ul.breadcrumb > li:last-child a {
  color: #202020;
  text-decoration: none;
}

.container ul.breadcrumb > li {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

/**
*
*	DROPDOWN LIST
*	Styles for listed dropdown (use JS)
*
*/
/*----------  STYLES  ----------*/
.dropdown-list {
  position: relative;
}
.dropdown-list .dropdown-label {
  display: block;
  position: relative;
  z-index: 10;
  padding: 0.8em 1em;
  cursor: pointer;
  border: 1px solid transparent;
  background-color: #FFFFFF;
}
.dropdown-list .dropdown-label:after {
  display: inline-block;
  vertical-align: middle;
  font-family: "Nouvelle-collection-typo";
  font-weight: 700;
  font-size: 1.2em;
  content: "\e612";
  margin-left: 0.3em;
  transition: transform 0.2s ease;
}
.dropdown-list .dropdown-items {
  display: none;
  position: absolute;
  z-index: 5;
  top: calc(100% - 1px);
  left: 0;
  width: 15em;
  background-color: #FFFFFF;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  box-shadow: 2px 2px 8px rgba(32, 32, 32, 0.05);
}
.dropdown-list .dropdown-items li {
  display: block;
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
  transition: all 0.2s ease;
}
.dropdown-list .dropdown-items li:last-child {
  border-bottom: none;
}
.dropdown-list .dropdown-items li a {
  display: block;
  padding: 1em;
}
.dropdown-list .dropdown-items li:hover {
  background-color: #FBFBFB;
}
.dropdown-list.dropdown-list-right .dropdown-items {
  left: auto;
  right: 0;
}

.dropdown-list.open .dropdown-label {
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-bottom: none;
  box-shadow: 2px 0px 8px rgba(32, 32, 32, 0.05);
}
.dropdown-list.open .dropdown-label:before {
  display: block;
  content: "";
  position: absolute;
  bottom: -0.5em;
  left: 0em;
  width: 100%;
  height: 1em;
  background-color: #FFFFFF;
}
.dropdown-list.open .dropdown-label:after {
  transform: rotate(-180deg);
}
.dropdown-list.open .dropdown-items {
  display: block;
}

/**
*
*	POPIN.SCSS
*	Popin dropdown styles definition
*
*/
/*----------  VARIABLES  ----------*/
/*----------  STYLES  ----------*/
.dropdown.dropdown-popin {
  display: block;
  position: relative;
  width: 180px;
  margin-right: 20px;
  margin-top: 20px;
}
.dropdown.dropdown-popin .dropdown-label {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 180px;
  min-width: 180px;
  z-index: 500;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 2px;
  width: 100%;
  padding: 1.5em;
  height: 1em;
  background-color: #FFFFFF;
}
.dropdown.dropdown-popin .dropdown-label:after {
  position: absolute;
  top: calc(50% - 0.45em);
  right: 0.5em;
  font-family: "Nouvelle-collection-typo";
  font-size: 1.5em;
  color: #676767;
  font-weight: 900;
  content: "\e612";
  transition: transform 0.2s ease;
}
.dropdown.dropdown-popin.open .dropdown-label:after {
  transform: rotate(-180deg);
}
.dropdown.dropdown-popin .dropdown-items {
  display: none;
  position: absolute;
  width: 180px;
  z-index: 600;
  top: calc(100% - 1px);
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 3px;
  background-color: #FFFFFF;
}
.dropdown.dropdown-popin .dropdown-items li {
  display: block;
  color: rgb(108.5, 108.5, 108.5);
  padding: 0.8em 0.9em;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.dropdown.dropdown-popin .dropdown-items li a {
  display: block;
}
.dropdown.dropdown-popin .dropdown-items li:first-child a {
  padding-top: 0.4em;
}
.dropdown.dropdown-popin .dropdown-items li:last-child a {
  padding-bottom: 0em;
}
.dropdown.dropdown-popin .dropdown-items li:hover {
  background-color: #FBFBFB;
}
.dropdown.dropdown-popin.open .dropdown-items {
  display: block;
}

.close-sidebar {
  display: none !important;
}

.nested-list {
  display: flex;
  flex-direction: column;
}
.nested-list > li.li--active {
  order: -1;
}
.nested-list ul {
  display: flex;
  flex-direction: column;
}
.nested-list ul:empty {
  display: none;
}
.nested-list ul li {
  order: 2;
}
.nested-list ul li.li--active {
  order: 1;
}
.nested-list li {
  display: block;
  margin-bottom: 0.7em;
}
.nested-list li a {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.4;
  color: #212529;
  text-decoration: none;
  font-size: 1rem !important;
}
@media screen and (min-width: 768px) {
  .nested-list li a {
    letter-spacing: 0.1em;
  }
}
.nested-list li a.active {
  font-weight: bold !important;
}
.nested-list li a.active:before {
  content: "\e611";
  line-height: 18px;
}
.nested-list li a.no-after {
  margin-left: 2em;
}
.nested-list li a.no-after:before {
  display: none;
}
.nested-list li a[disabled] {
  text-decoration: underline;
  text-underline-position: under;
  cursor: default;
  opacity: 0.8;
}
.nested-list li a:before {
  font-family: "Nouvelle-collection-typo";
  display: inline-block;
  content: "\e612";
  vertical-align: sub;
  height: 21px;
  margin-right: 0.4em;
  font-size: 1.1em;
  color: black;
  transform: rotate(-90deg);
}
.nested-list li a:hover {
  color: #ac9780;
}
.nested-list li ul {
  padding-left: 0.8em;
  margin-top: 0.7em;
}

.search {
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  z-index: 1001;
}
@media (min-width: 992px) {
  .search {
    top: 3px;
    left: 55%;
    right: 0;
  }
}
@media (min-width: 1400px) {
  .search {
    left: 45%;
    right: 0;
  }
}
.search .search__wrapper {
  margin: 0 auto;
}
.search .search__form {
  height: 50px;
  font-weight: 700;
}
.search .search__algolia-wrapper {
  position: static !important;
  float: left;
  width: calc(100% - 0px - 52px);
  height: 100%;
}
@media (min-width: 1200px) {
  .search .search__algolia-wrapper {
    width: calc(100% - 0px - 52px);
  }
}
.search .search__algolia-wrapper .search__input {
  width: 100%;
}
.search .search__input {
  float: left;
  width: calc(100% - 0px - 52px);
  height: 100%;
  padding: 0 2em;
  font-weight: inherit;
  background-color: #f0f0f0;
  z-index: 200;
}
@media (min-width: 1200px) {
  .search .search__input {
    width: calc(100% - 0px - 52px);
  }
}
.search .search__input::-webkit-input-placeholder {
  color: #202020;
}
.search .search__input:-moz-placeholder {
  color: #202020;
}
.search .search__input::-moz-placeholder {
  color: #202020;
}
.search .search__input:-ms-input-placeholder {
  color: #202020;
}
.search .search__gender {
  position: relative;
  float: left;
  width: 0px;
  height: 100%;
  line-height: 1;
  background-color: #FFFFFF;
  z-index: 200;
}
@media (min-width: 1200px) {
  .search .search__gender {
    width: 0px;
  }
}
.search .search__gender .search__gender-select {
  align-items: center;
  padding: 1em;
  padding-right: 3.5em;
  height: 100%;
  font-weight: inherit;
}
.search .search__gender .search__gender-caret {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5em;
  font-size: 1.5em;
  font-weight: inherit;
  pointer-events: none;
}
.search .search__submit {
  position: relative;
  width: 52px;
  height: 100%;
  background-color: #484848;
  cursor: pointer;
  z-index: 200;
}
.search .search__submit .search__submit-icon {
  color: #FFFFFF;
  font-size: 4em;
}
.search {
  /**
   * 1. `!important` used to override default Algolia styles.
   */
}
.search .search__results {
  margin-top: 2px;
  position: absolute !important; /* 1 */
  top: 100% !important; /* 1 */
  width: 100%;
  padding: 4em 1em 3em;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-top: 0;
  background: #FFFFFF;
  z-index: 100 !important; /* 1 */
  left: -20em !important;
}
@media (min-width: 1400px) {
  .search .search__results {
    left: -10em !important;
    right: -10em !important;
  }
}
.search .search__results .search__datasets {
  display: flex;
  justify-content: space-around;
  margin: 0;
  line-height: normal;
}
.search .search__results .search__datasets .search__dataset-title {
  font-size: 1.3em;
  text-transform: none;
}
.search .search__results .search__datasets .search__dataset-title::before {
  content: "";
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
  width: 26px;
  height: 2px;
  background-color: #202020;
}
.search .search__results .search__datasets .search__dataset-container {
  max-width: 50%;
}
.search .search__results .search__datasets .search__dataset-container:last-child {
  max-width: none;
}
.search .search__results .search__datasets .search__dataset {
  min-height: 2.5em;
  margin-top: 1.5em;
  padding-left: 42px;
  font-weight: normal;
  text-transform: none;
}
.search .search__results .search__datasets .search__dataset .search__suggestion {
  line-height: 2.5em;
}
.search .search__results .search__datasets .search__dataset .search__suggestion-link {
  white-space: nowrap !important;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search .search__results .search__datasets .search__dataset .search__suggestion-link:focus {
  color: #1c89e6;
}
.search .search__results .search__datasets .search__dataset-products {
  text-align: center;
}
.search .search__results .search__datasets .search__dataset-products .search__suggestions-list {
  display: flex !important;
  min-height: calc(100% - 2.5em);
  flex-wrap: wrap;
}
.search .search__results .search__datasets .search__dataset-products .search__suggestion {
  line-height: 1;
  flex: 1 0 33%;
  margin-bottom: 2em;
}
.search .search__results .search__datasets .search__dataset-products .search__suggestion .search__suggestion-image {
  display: block;
  max-height: 100px;
  margin: 0 auto;
}
.search .search__results .search__datasets .search__dataset-products .search__suggestion {
  /**
   * 1. Adds ellipsis when product title is too long.
   */
}
.search .search__results .search__datasets .search__dataset-products .search__suggestion .search__suggestion-brand,
.search .search__results .search__datasets .search__dataset-products .search__suggestion .search__suggestion-name {
  display: block;
  max-width: 100px;
  height: 1em;
  line-height: 1em;
  margin: 0.5em auto 0;
  overflow: hidden; /* 1 */
  text-overflow: ellipsis; /* 1 */
  white-space: nowrap; /* 1 */
  text-align: center;
}
.search .search__results .search__datasets .search__dataset-products .search__suggestion .search__suggestion-name {
  color: #CDCDCD;
}
.search .search__results .search__datasets {
  /**
   * 1. Fixes icons wrappers being larger than the icon itself, causing
   *    misalignement.
   */
}
.search .search__results .search__datasets .search__dataset-all-link-wrapper {
  position: relative; /* 1 */
  left: -6px; /* 1 */
  margin-top: 2em;
  padding-left: 42px;
}
.search .search__results .search__datasets .search__dataset-all-link-wrapper .search__dataset-all-link-icon {
  vertical-align: middle;
  font-size: 1.5em;
}
.search .search__results .search__datasets .search__dataset-all-link-wrapper .search__dataset-all-link {
  vertical-align: middle;
}
.search .search__results .search__datasets .search__dataset-all-link-wrapper .search__products-count {
  font-weight: normal;
}

#mobileSearch > .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

.search-mobile {
  padding: 12px 12px;
  background: #FFFFFF;
}
.search-mobile .input-group {
  width: 100%;
}
.search-mobile .search-mobile__input {
  height: 44px;
  font-size: 16px;
  border-right: 0;
}
.search-mobile .btn {
  height: 44px;
  padding: 0 16px;
  border: 1px solid #ced4da;
  border-left: 0;
  background: #FFFFFF;
}
.search-mobile .btn i {
  font-size: 18px;
}
.search-mobile .search__results {
  margin-top: 8px;
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: 0;
  background: #FFFFFF;
  border-top: 1px solid #e5e5e5;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.search-mobile .search__results.hidden {
  display: none;
}
.search-mobile .search__results .search__datasets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-mobile .search__results .search__dataset-container {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  list-style: none;
}
.search-mobile .search__results .search__dataset-container:last-child {
  border-bottom: 0;
}
.search-mobile .search__results .search__dataset-container.hidden {
  display: none;
}
.search-mobile .search__results .search__dataset-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #888;
}
.search-mobile .search__results .search__suggestions-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.search-mobile .search__results .search__suggestion {
  display: block;
  margin: 0;
  padding: 0;
}
.search-mobile .search__results .search__suggestion .search__suggestion-link {
  display: block;
  padding: 10px 8px;
  font-size: 14px;
  color: #222;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease;
}
.search-mobile .search__results .search__suggestion .search__suggestion-link:hover, .search-mobile .search__results .search__suggestion .search__suggestion-link:focus, .search-mobile .search__results .search__suggestion .search__suggestion-link:active {
  background: #f5f5f5;
  color: #000;
  text-decoration: none;
}
.search-mobile .search__results .search__no-results--brands,
.search-mobile .search__results .search__no-results--categories {
  display: block;
  padding: 8px;
  color: #999;
  font-size: 13px;
  font-style: italic;
}
.search-mobile .search__results .search__dataset-all-link-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed #eee;
}
.search-mobile .search__results .search__dataset-all-link-wrapper .search__dataset-all-link-icon {
  font-size: 12px;
  color: #666;
}
.search-mobile .search__results .search__dataset-all-link-wrapper .search__dataset-all-link {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}
.search-mobile .search__results .search__dataset-all-link-wrapper .search__dataset-all-link:hover {
  color: #000;
  text-decoration: underline;
}

.shop-products-grid {
  margin-right: -3px;
  margin-top: -3px;
  border: 0px solid #F6F6F6;
  border-bottom-width: 3px;
}
@media screen and (max-width: 767px) {
  .shop-products-grid {
    margin-right: 0;
    margin-top: 0;
  }
}

.product-thumb {
  border: 6px solid #faf8f6;
  border-left-width: 0;
  border-bottom-width: 0;
  background-color: #fff;
  border-radius: 0.9rem;
  position: relative;
  padding: 10px 10px;
}
@media screen and (max-width: 991px) {
  .product-thumb {
    height: 350px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.product-thumb .product-thumb-info,
.product-thumb .product-thumb-photo {
  display: block;
}
.product-thumb .grid-whitelist {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: #676767;
}
@media screen and (max-width: 767px) {
  .product-thumb .grid-whitelist {
    bottom: 22px;
  }
}
.product-thumb .product-thumb-info {
  text-align: center;
  padding-top: 0;
  font-family: ether, serif;
  color: #212529;
  text-decoration: none;
}
.product-thumb .product-thumb-photo {
  position: relative;
  overflow: hidden;
  line-height: 315px;
  text-align: center;
  height: 68%;
  max-height: 130%;
}
@media screen and (min-width: 992px) {
  .product-thumb .product-thumb-photo {
    height: 360px;
    line-height: 315px;
  }
}
.product-thumb .product-thumb-photo img {
  height: auto;
  max-width: 100%;
  margin: auto;
  vertical-align: middle;
  display: table-cell;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.product-thumb .product-thumb-brand,
.product-thumb .product-thumb-title {
  display: block;
  font-size: 1em;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-thumb .product-thumb-title {
  text-transform: capitalize;
}
.product-thumb .product-thumb-brand {
  margin-bottom: 0.6em;
  font-weight: bold;
  height: 18px;
}
.product-thumb .product-thumb-title {
  margin-bottom: 0.5em;
  color: #676767;
  max-height: 3em;
}
@media screen and (min-width: 768px) {
  .product-thumb .product-thumb-title {
    line-height: 1.2;
  }
}
.product-thumb .product-thumb-description {
  white-space: normal;
}
.product-thumb .product-thumb-price {
  display: block;
  position: relative;
}
.product-thumb .product-thumb-price > span {
  display: inline-block;
  font-size: 1em;
  text-align: center;
  white-space: nowrap;
}
.product-thumb .product-thumb-price > span:not(.price-promotion) {
  line-height: 1.65em;
}
.product-thumb .product-thumb-price > span.old, .product-thumb .product-thumb-price > span.reduction {
  white-space: nowrap;
}
.product-thumb .product-thumb-price > span.old {
  text-decoration: line-through;
  font-size: 0.9rem;
  padding: 0 19px 0 0;
  color: #3c3c3c;
}
@media screen and (max-width: 767px) {
  .product-thumb .product-thumb-price > span.old {
    padding-right: 8px;
  }
}
.product-thumb .product-thumb-price > span.reduction {
  color: #DB1212;
  font-weight: bold;
  font-size: 1.1em;
}
.product-thumb .product-thumb-price > span.price-promotion {
  line-height: 8px;
  border: 1px solid #DB1212;
  vertical-align: baseline;
  display: inline-block;
  border-radius: 2px;
  position: relative;
  padding: 0.3em;
  color: #DB1212;
  right: 0;
  margin-top: -4px;
  font-size: 0.845em;
}
@media screen and (max-width: 767px) {
  .product-thumb .product-thumb-price > span.price-promotion {
    margin-right: 1.3rem;
  }
}

#geoCountryModal .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
#geoCountryModal .modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 1.25rem 1.5rem;
}
#geoCountryModal .modal-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #202020;
}
#geoCountryModal .modal-body {
  padding: 1.5rem;
}

.geo-modal-subtitle {
  color: #676767;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.geo-country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 575px) {
  .geo-country-grid {
    grid-template-columns: 1fr;
  }
}

.geo-country-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
}
.geo-country-btn:hover {
  border-color: #202020;
  background: #fafafa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.geo-country-btn:active {
  transform: translateY(0);
}

.geo-country-flag {
  font-size: 1.75rem;
  line-height: 1;
}

.geo-country-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #202020;
}

.page-lookbooks-index .main-heading-banner,
.page-inspirations .main-heading-banner {
  justify-content: center;
  background-size: cover;
  text-align: center;
  height: 15.5em;
}
.page-lookbooks-index .main-heading-banner .content-propal,
.page-inspirations .main-heading-banner .content-propal {
  line-height: 2;
}
.page-lookbooks-index .main-heading-banner .content-propal .main-heading-title,
.page-inspirations .main-heading-banner .content-propal .main-heading-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 20px 0;
  margin-bottom: 0;
  font-weight: 700;
  color: #292929;
}
@media screen and (min-width: 768px) {
  .page-lookbooks-index .main-heading-banner .content-propal .main-heading-title,
  .page-inspirations .main-heading-banner .content-propal .main-heading-title {
    font-size: 2.6em;
  }
}
.page-lookbooks-index .main-heading-banner .content-propal .main-heading-content,
.page-inspirations .main-heading-banner .content-propal .main-heading-content {
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  border-bottom: none;
  align-items: center;
  display: flex;
  color: #000;
}
.page-lookbooks-index .main-heading-banner + .container,
.page-inspirations .main-heading-banner + .container {
  padding-top: 30px;
}
@media screen and (max-width: 991px) {
  .page-lookbooks-index .main-heading-banner,
  .page-inspirations .main-heading-banner {
    background: url(/images/banners/banner_home_smart.jpg) right bottom no-repeat;
  }
  .page-lookbooks-index .main-heading-banner:after,
  .page-inspirations .main-heading-banner:after {
    content: "";
    z-index: -1;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 500px) {
  .page-lookbooks-index .main-heading-banner,
  .page-inspirations .main-heading-banner {
    height: 350px;
  }
  .page-lookbooks-index .main-heading-banner .main-heading-content,
  .page-inspirations .main-heading-banner .main-heading-content {
    padding-top: 0;
  }
}
@media screen and (max-width: 360px) {
  .page-lookbooks-index .main-heading-banner,
  .page-inspirations .main-heading-banner {
    height: 250px;
  }
  .page-lookbooks-index .main-heading-banner .content-propal .main-heading-title,
  .page-inspirations .main-heading-banner .content-propal .main-heading-title {
    font-size: 1em;
  }
}
@media screen and (max-width: 1280px) {
  .page-lookbooks-index .full-bg-grey,
  .page-inspirations .full-bg-grey {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .page-lookbooks-index .main-heading-banner,
  .page-inspirations .main-heading-banner {
    height: 280px;
  }
  .page-lookbooks-index .item-2,
  .page-inspirations .item-2 {
    border-top: 3px solid #F6F6F6 !important;
    margin-top: 1.5rem !important;
    padding-top: 40px !important;
  }
}

/** POST **/
@media screen and (min-width: 768px) {
  .shop-products {
    display: flex;
  }
  .shop-products .aside-container {
    margin-right: 6px;
  }
}
.shop-products .shop-products-aside {
  position: relative;
  z-index: 500;
}
.shop-products .shop-products-aside .fixed {
  min-width: 290px;
  max-width: 290px;
  overflow: hidden;
  position: fixed;
  display: block;
  top: 80px;
}
.shop-products .shop-products-aside .aside-container {
  transition: transform 0s ease;
}
.shop-products .container-special-categories {
  padding: 0;
}
.shop-products .container-special-categories .filtres-top > div {
  padding: 30px 10px;
  border-bottom: 6px solid #F6F6F6;
}
.shop-products .container-special-categories .filtres-top > div .dropdown-popin {
  width: 16.66666666%;
}
.shop-products .container-special-categories .filtres-top > div .dropdown-popin .dropdown-items {
  width: calc(100% - 20px);
  left: 10px;
  overflow-x: hidden;
  left: 10px;
  max-height: 250px;
}
.shop-products .shop-products-grid {
  flex-wrap: wrap;
  display: flex;
}
.shop-products .shop-products-grid .product-thumb {
  display: inline-block;
  vertical-align: top;
  float: none;
}
.shop-products .shop-products-grid .product-thumb:hover {
  box-shadow: inset 0px 0px 13px 0px rgba(238, 233, 222, 0.32);
  border-radius: 10px;
}
.shop-products .shop-products-grid .product-thumb:hover img {
  transform: translate(-50%, -50%) scale(1.15) translateZ(50px);
}
.shop-products .shop-products-grid.shop-products-grid--page--1 > .product-thumb:nth-child(2),
.shop-products .shop-products-grid.shop-products-grid--page--1 .product-thumb:nth-child(3),
.shop-products .shop-products-grid.shop-products-grid--page--1 .product-thumb:nth-child(4),
.shop-products .shop-products-grid.shop-products-grid--page--1 .product-thumb:nth-child(5),
.shop-products .shop-products-grid.shop-products-grid--page--1 .product-thumb:nth-child(6) {
  position: relative;
}
.shop-products .shop-products-grid.shop-products-grid--page--1 > .bloc-must-have {
  padding-bottom: 24px;
  padding-top: 20px;
  display: inline-block;
  vertical-align: top;
  float: none;
}
.shop-products .shop-products-grid .row {
  padding: 30px 15px 2em 15px;
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
}
.shop-products .shop-products-grid .row:last-child {
  border-bottom: none;
}

.products-grid-empty {
  text-align: center;
  position: relative;
}
.products-grid-empty img {
  display: block;
  width: 100%;
  min-height: 200px;
}
.products-grid-empty h1 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: #202020;
  padding: 15px 30px;
  margin-bottom: 0;
}
.products-grid-empty p {
  text-align: center;
  max-width: 300px;
  font-weight: 700;
  line-height: 1.4;
  margin: auto;
}
.products-grid-empty .btn {
  margin-top: 2em;
  margin-bottom: 2em;
}
.products-grid-empty .btn-black {
  background-color: #202020;
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}
.products-grid-empty .btn-black:hover {
  background-color: #000;
  color: var(--contrast-color);
}
@media screen and (min-width: 768px) {
  .products-grid-empty h1 {
    font-size: 20px;
  }
  .products-grid-empty__content {
    position: absolute;
    top: 54%;
    right: 58%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.filters--section--close {
  padding: 15px 0;
  line-height: normal;
  display: block;
}

.shop-products-aside {
  overflow: hidden;
  padding: 0px;
}
.shop-products-aside .aside-section {
  margin-bottom: 15px;
  background-color: #fff;
  padding: 0px 20px 2em 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .shop-products-aside .aside-section {
    font-size: 0.86em;
  }
}
.shop-products-aside .aside-section .aside-section-label {
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  white-space: normal;
}
.shop-products-aside .aside-section .aside-section-label span, .shop-products-aside .aside-section .aside-section-label h1 {
  -webkit-font-smoothing: antialiased;
}
.shop-products-aside .aside-section.aside-section-ref-text h2 {
  font-size: 100%;
  margin: 0;
}
.shop-products-aside .aside-section.aside-section-ref-text h3 {
  font-size: 110%;
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.shop-products-aside .aside-section.aside-section-ref-text .aside-section-content {
  font-size: 12px;
  line-height: 1.5em;
}
.shop-products-aside .aside-section.filter--section {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 10px;
  border-radius: 10px;
  font-family: var(--nav-font);
}
.shop-products-aside .aside-section.filter--section > ul {
  padding-bottom: 1.5em;
  margin: 0;
  list-style: none;
}
.shop-products-aside .aside-section.filter--section > ul > li a {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  font-weight: 500;
}
.shop-products-aside .aside-section.filter--section > ul > li a:hover {
  color: #ac9780;
}
.shop-products-aside .aside-section.filter--section .filter--section--header {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .shop-products-aside .aside-section.filter--section .aside-section-label {
    text-transform: capitalize;
  }
  .shop-products-aside .aside-section.filter--section .filter--section--body {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .shop-products-aside .aside-section.filter--section .filters--section--close {
    cursor: text;
  }
  .shop-products-aside .aside-section.filter--section .filters--section--close:before {
    display: none;
  }
}
.shop-products-aside .aside-section.aside-summary-section .aside-section-label {
  text-transform: none;
  text-align: center;
  display: block;
}
.shop-products-aside .aside-section.aside-summary-section .btn {
  margin-top: 1.5em;
}
.shop-products-aside .aside-section-content.aside-search-list .search-list-input {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}
.shop-products-aside .aside-section-content.aside-search-list .search-list-input input {
  border: 1px solid #202020;
  border-radius: 2px;
  padding-right: 2em;
  line-height: 1.3;
  display: block;
  font-size: 1em;
  padding: 1em;
  width: 100%;
}
.shop-products-aside .aside-section-content.aside-search-list .search-list-input input::-webkit-input-placeholder {
  color: #676767;
}
.shop-products-aside .aside-section-content.aside-search-list .search-list-input input::-moz-placeholder {
  color: #676767;
}
.shop-products-aside .aside-section-content.aside-search-list .search-list-input input:-ms-input-placeholder {
  color: #676767;
}
.shop-products-aside .aside-section-content.aside-search-list .search-list-input input:-moz-placeholder {
  color: #676767;
}
.shop-products-aside .aside-section-content.aside-search-list .search-list-input:after {
  transform: translate3d(0, -50%, 0);
  font-family: "Nouvelle-collection-typo";
  position: absolute;
  content: "\e60e";
  display: block;
  font-size: 2em;
  top: 50%;
  right: 0;
}
.shop-products-aside .aside-section-content.aside-search-list .nested-list {
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 25em;
}
.shop-products-aside .range-slider.aside-section-content {
  width: calc(100% - 50px);
  margin-bottom: 3em;
  padding-bottom: 0;
  margin: 4em auto;
}

.mobile-ref-text {
  display: none;
}

@media screen and (max-width: 991px) {
  .shop-products-aside .aside-container.fixed {
    min-width: auto;
    max-width: auto;
    width: 23%;
  }
  .shop-products-grid .product-thumb {
    position: relative;
  }
  .shop-products-grid .product-thumb:last-child:after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mobile-ref-text {
    width: 100%;
    padding: 2em 3em;
    line-height: 1.5em;
    display: block;
  }
  .mobile-ref-text__title {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
  }
  .mobile-ref-text__text {
    margin-top: 1.5em;
  }
}
.ais-hits {
  width: 100%;
}

#filters {
  margin-right: -3px;
  transition: max-height 1s ease;
}
#filters:hover {
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  #filters {
    width: 100%;
  }
}

#toggle-filters {
  display: none;
}
#toggle-filters__input {
  height: 0;
  width: 0;
  position: absolute;
  left: 0;
  display: none;
}
@media screen and (max-width: 767px) {
  #toggle-filters {
    display: block;
  }
  #toggle-filters ~ .filter .filter--section--header {
    font-weight: normal;
  }
  #toggle-filters:not(.active) ~ .filter {
    display: none;
  }
  #toggle-filters__input:checked ~ .filter {
    display: block;
  }
}

.filter {
  float: left;
  width: 100%;
  background: #fff;
  vertical-align: top;
  display: inline-block;
  border-radius: 4.2rem;
  font-family: ether, serif;
  border: 0 solid #F6F6F6;
  border-right-width: 3px;
  border-bottom-width: 3px;
}
@media screen and (min-width: 1600px) {
  .filter {
    width: 14.2857142857%;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1600px) {
  .filter {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .filter {
    width: 20%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .filter {
    width: 25%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .filter {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .filter {
    width: 100%;
  }
}
.filter:empty {
  display: none;
  border: 0;
}
.filter .nested-list .item a:before {
  transform: none;
  font-family: esther, serif;
  content: "▢";
  line-height: 20px;
  margin-left: 1px;
  margin-bottom: 1px;
}
.filter .nested-list .item a.active:before {
  content: "▣";
  font-size: 24px;
  margin-right: 8px;
  margin-left: 0;
  margin-bottom: 0px;
}

#clear-all-filters .aside-section-label {
  color: #fff;
  text-align: center;
  padding-bottom: 19px;
}
#clear-all-filters .aside-section {
  background-image: linear-gradient(90deg, #908dd4 0%, #4ad4c5 100%);
  padding-bottom: 0;
}

.filter--sort #sort-by {
  display: inline-block;
  padding: 15px 19px 15px;
  width: 100%;
  border: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.filter--sort #sort-by:focus-visible {
  border: none;
  outline: none;
}
.filter--sort #sort-by:focus {
  outline: none;
  background-color: transparent;
}

#filter-price .filter--section--list {
  display: none;
}
#filter-price form {
  text-align: center;
}
#filter-price form .ais-price-ranges--label,
#filter-price form .ais-price-ranges--separator {
  width: 32%;
  line-height: 40px;
  display: inline-block;
}
#filter-price form .ais-price-ranges--label input,
#filter-price form .ais-price-ranges--separator input {
  width: 100%;
  height: 100%;
  font-weight: bold;
  padding: 5px 10px;
  display: inline-block;
}
#filter-price form .ais-price-checkbox--label {
  display: block;
  margin-top: 15px;
  cursor: pointer;
  font-weight: bold;
}
#filter-price form .ais-price-ranges--label {
  background: #F6F6F6;
  position: relative;
}
#filter-price form .ais-price-ranges--label:before {
  right: 8px;
  content: " €";
  display: block;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
}
#filter-price form label > span {
  display: none;
}
#filter-price form button {
  display: block;
  margin: 15px auto 0;
  padding: 8px 20px;
  border: 2px solid #000;
  cursor: pointer;
}
#filter-price form button:hover {
  background: #e6e6e6;
}
#filter-price form button:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.filter--section {
  position: relative;
}
.filter--section .filters--section--close,
.filter--section .filter--section--list {
  position: relative;
  z-index: 2;
}
.filter--section .filter--section--shadow {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 0;
}
@media screen and (min-width: 768px) {
  body.no-js #filters .filter--section:hover, body.no-js #filters .filter--section:hover .filter--section--body,
  .filter--section .filter--section--shadow {
    box-shadow: 0px 0px 20px 0px rgba(153, 153, 153, 0.3);
    border-radius: 4.2rem;
  }
}
body.no-js .filter--section:hover .filters--section--close:before, .filter--section.active .filters--section--close:before {
  content: "\e613";
}
body.no-js .filter--section:hover .filter--section--shadow,
body.no-js .filter--section:hover .filter--section--body, .filter--section.active .filter--section--shadow,
.filter--section.active .filter--section--body {
  display: block !important;
}
body.no-js .filter--section:hover .filter--section--shadow > .filter--section--body--before,
body.no-js .filter--section:hover .filter--section--body > .filter--section--body--before, .filter--section.active .filter--section--shadow > .filter--section--body--before,
.filter--section.active .filter--section--body > .filter--section--body--before {
  display: block;
  content: " ";
  position: absolute;
  top: -15px;
  height: 15px;
  left: 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .filter--section.active .filter--section--shadow {
    display: none !important;
  }
}

.filter--section--header {
  z-index: 2;
  position: relative;
  letter-spacing: 0.093em;
  font-weight: 600;
  cursor: pointer;
  padding: 0 25px;
  white-space: nowrap;
}
@media screen and (max-width: 1199px) {
  .filter--section--header {
    padding-left: 20px;
    padding-right: 10px;
  }
}

.filters--section--close:before {
  font-family: Nouvelle-collection-typo;
  display: inline-block;
  line-height: 100%;
  content: "\e612";
  font-size: 22px;
  float: right;
}

.filter--section--body {
  padding-bottom: 10px;
}
.filter--section--body > div {
  padding-bottom: 10px;
  max-height: 250px;
  overflow-y: auto;
}
.filter--section--body.ais-refinement-list--body {
  display: none;
}
@media screen and (min-width: 350px) {
  .filter--section--body.ais-refinement-list--body {
    min-width: 350px;
  }
}
.filter--section--body.ais-refinement-list--body {
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .filter--section--body.ais-refinement-list--body {
    position: absolute;
  }
}
.filter--section--body.ais-refinement-list--body {
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 15px 20px 30px;
}

.filter--section--list {
  max-height: 300px;
  overflow-x: auto;
  margin: 0;
}
.filter--section--list .sffv_no-results {
  text-align: center;
}
.filter--section--list .searchbox.sbx-sffv {
  margin-bottom: 10px;
}
.filter--section--list .searchbox.sbx-sffv .sbx-sffv__submit svg {
  fill: #000;
}
.filter--section--list .searchbox.sbx-sffv .sbx-sffv__input:active, .filter--section--list .searchbox.sbx-sffv .sbx-sffv__input:focus {
  box-shadow: inset 0 0 0 1px #000;
}
.filter--section--list .searchbox.sbx-sffv .sbx-sffv__input {
  box-shadow: inset 0 0 0 1px #ccc;
  border-radius: 0;
}

.main-heading-title h1 {
  display: inline-block;
}
.main-heading-title sup {
  vertical-align: super;
  font-size: smaller;
}

.page-inspiration .main-heading-banner .main-heading-title h1,
.page-shop .main-heading-banner .main-heading-title h1 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}
.page-inspiration .main-heading-banner .main-heading-title .btn.btn-follow,
.page-shop .main-heading-banner .main-heading-title .btn.btn-follow {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.4em;
  background-color: transparent;
}
.page-inspiration .main-heading-banner .main-heading-content,
.page-shop .main-heading-banner .main-heading-content {
  position: relative;
  text-align: center;
}
.page-inspiration .main-heading-banner .main-heading-content .heading-infos,
.page-shop .main-heading-banner .main-heading-content .heading-infos {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 30px;
}
.page-inspiration .main-heading-banner .main-heading-content .heading-infos .breadcrumb,
.page-shop .main-heading-banner .main-heading-content .heading-infos .breadcrumb {
  flex: 1;
}
.page-inspiration .main-heading-banner .main-heading-content .heading-infos .dropdown,
.page-shop .main-heading-banner .main-heading-content .heading-infos .dropdown {
  font-size: 0.8em;
}
.page-inspiration .main-heading-banner .main-heading-content .heading-description,
.page-shop .main-heading-banner .main-heading-content .heading-description {
  position: relative;
  width: 100%;
}
.page-inspiration .page-category-filters,
.page-shop .page-category-filters {
  display: flex;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
}
.page-inspiration .page-category-filters .breadcrumb,
.page-shop .page-category-filters .breadcrumb {
  flex: 1;
}

.auth-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0 50px;
}
.auth-form .centered {
  display: flex;
  justify-content: center;
}
.auth-form .centered .primary-form {
  background: linear-gradient(157deg, #fff 41%, rgba(255, 255, 255, 0));
  border: 1px solid rgba(58, 0, 2, 0.129);
  border-radius: 20px;
  padding: 0 40px;
  width: 602px;
}
.auth-form .centered .primary-form .container-icon-settings {
  margin-top: -24px;
  padding-bottom: 10px;
  padding-left: 42%;
}
.auth-form .centered .primary-form .setting-icon-path {
  color: #fff;
  background-color: #212529;
  border-radius: 50%;
  font-size: 40px;
  aspect-ratio: 1/1;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-form .centered .primary-form .auth-form-close {
  display: flex;
  justify-content: flex-end;
  margin: -36px -26px 0;
}
@media screen and (max-width: 991px) {
  .auth-form .centered .primary-form .auth-form-close {
    margin: -42px 0px 0;
  }
}
.auth-form .centered .primary-form .auth-form-close a {
  font-size: 1.6rem;
  color: #212529;
}
.auth-form .centered .primary-form .container-header-title {
  text-align: center;
  font-family: "esther";
  font-weight: bold;
  letter-spacing: 1.5px;
  font-size: 23px;
}
.auth-form .centered .primary-form .login-label-header, .auth-form .centered .primary-form .login-label {
  margin: 20px 0;
  font-weight: 600;
  font-family: "esther";
  letter-spacing: 1.3px;
  font-size: 17px;
}
.auth-form .centered .primary-form .class-register-icons {
  align-items: center;
  display: flex;
  justify-content: center;
}
.auth-form .centered .primary-form .class-register-icons .apple-icon {
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 41px;
  margin-left: 7px;
  aspect-ratio: 1/1;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-form .centered .primary-form .class-register-icons .social-mid-text {
  font-size: 18px;
  font-family: "esther";
  font-weight: bold;
  letter-spacing: 1.5px;
  padding: 6px;
}
@media screen and (max-width: 991px) {
  .auth-form .centered .primary-form .class-register-icons .social-mid-text {
    font-size: 12px;
  }
}
.auth-form .centered .primary-form .form--default .form-item__content {
  border-radius: 50px;
  overflow: hidden;
  overflow: visible;
  transition: all 0.3s ease;
  margin: 16px 0px;
}
.auth-form .centered .primary-form .form--default .form-item__content input {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 22px 15px;
  font-size: 15px;
  border-radius: 50px;
  background-color: var(--surface-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: var(--default-color);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.3px;
}
.auth-form .centered .primary-form .form--default .form-item__content input:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}
.auth-form .centered .primary-form .form--default .form-item__content input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  -webkit-transition: background-color 9999s ease-in-out 0s !important;
  transition: background-color 9999s ease-in-out 0s !important;
  border-radius: 50px;
}
.auth-form .centered .primary-form .form--default .form-item__content input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  border-radius: 50px;
}
.auth-form .centered .primary-form .form--default .form-item__content input.error {
  border: 1px solid #f30c0c;
}
.auth-form .centered .primary-form .form--default .form-item__content:focus-within {
  border-color: var(--accent-color);
}
.auth-form .centered .primary-form .form--default .form-item__content .input__wrapper {
  position: relative;
  transform: translateZ(0);
  transition: var(--el-transition-box-shadow);
  width: 100%;
  align-items: center;
}
.auth-form .centered .primary-form .form--default .form-item__content .input__wrapper .input__suffix {
  position: absolute;
  top: 10px;
  right: 17px;
  color: var(--el-input-icon-color, var(--el-text-color-placeholder));
  line-height: var(--el-input-inner-height);
  cursor: pointer;
  transition: all var(--el-transition-duration);
  white-space: nowrap;
}
.auth-form .centered .primary-form .form--default .form-item__content .input__wrapper .input__suffix .input__password {
  align-items: center;
  line-height: inherit;
  margin-left: 8px;
  transition: all var(--el-transition-duration);
}
.auth-form .centered .primary-form .form--default .form-item__content .input__wrapper .input__suffix .input__password svg {
  height: 1em;
  width: 1em;
}
.auth-form .centered .primary-form .form--default .form-item__content .input__wrapper .input__suffix .eye-open {
  display: none;
}
.auth-form .centered .primary-form .form--default .form-item__content label.error {
  padding-left: 15px;
  font-weight: 500;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.3px;
  font-size: 13px;
  color: #f30c0c;
}
.auth-form .centered .primary-form .form--default .auth-danger-alert ul {
  padding-left: 0;
}
.auth-form .centered .primary-form .form--default .auth-danger-alert ul li {
  list-style: none;
}
.auth-form .centered .primary-form .form--default .auth-success-alert {
  margin: 10px 0;
  text-align: center;
}
.auth-form .centered .primary-form .form--default .auth-form-description {
  text-align: center;
  font-size: 14px;
  color: #676767;
  margin: 0 0 20px;
  line-height: 1.5;
}
.auth-form .centered .primary-form .forgot-pass-link {
  color: #3D4852;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.3px;
  font-size: 14px;
}
.auth-form .centered .primary-form .login-link {
  color: #3D4852;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.3px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 20px;
}
.auth-form .centered .primary-form .form-action--content {
  display: flex;
  justify-content: center;
}
.auth-form .centered .primary-form .form-action--content .form-action--inner {
  display: flex;
  flex-direction: column;
  width: 70%;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.3px;
}
@media screen and (max-width: 991px) {
  .auth-form .centered .primary-form .form-action--content .form-action--inner {
    width: 100%;
  }
}
.auth-form .centered .primary-form .form-action--content .form-action--inner button {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 16px;
  letter-spacing: 1.5px;
}
.auth-form .centered .primary-form .form-action--content .form-action--inner .button-register {
  background-color: rgba(201, 192, 181, 0.23);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 0.57rem 1.5rem;
  font-weight: 600;
  border-radius: 3.5rem;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.auth-form .centered .primary-form .form-action--content .form-action--inner .button-register:hover {
  background-color: rgba(201, 192, 181, 0.79);
}
@media screen and (max-width: 991px) {
  .auth-form .centered .primary-form {
    padding: 0 5px;
    width: 100%;
  }
}

.btn-black {
  background-color: #202020 !important;
  color: var(--contrast-color) !important;
  border: none !important;
  padding: 0.75rem 1.5rem;
  font-weight: 600 !important;
  border-radius: 4rem !important;
  transition: all 0.3s ease;
}
.btn-black:hover {
  background-color: #000 !important;
  color: var(--contrast-color);
}

.accordion {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
  font-size: 0.86em;
  letter-spacing: 0.093em;
}
.accordion .accordion-title {
  display: block;
  position: relative;
  width: 100%;
  font-weight: 700;
  text-decoration: none;
}
.accordion .accordion-title .accordion-close {
  display: block;
  font-weight: 700;
  position: absolute;
  top: -0.4em;
  right: 0;
  padding: 0.3em 0.5em;
  border: 2px solid #202020;
  border-radius: 2px;
}
.accordion .accordion-title .accordion-close:after {
  display: inline-block;
  content: "+";
  transition: transform 0.3s ease;
}
.accordion .accordion-content {
  display: none;
  line-height: 1.7;
  margin-top: 2em;
}
@media screen and (min-width: 992px) {
  .accordion .accordion-content {
    max-width: 40vw;
  }
}
.accordion .accordion-content {
  word-wrap: break-word;
}

.accordion.open .accordion-title .accordion-close:after {
  transform: rotate(45deg);
}
.accordion.open .accordion-content {
  display: block;
}

/**
*
*	FORMS.SCSS
*	Forms styles definition
*
*/
/*----------  VARIABLES  ----------*/
/*----------  STYLES  ----------*/
.form .form-title {
  display: block;
  text-transform: uppercase;
  margin-bottom: 3em;
}
.form .dropdown.dropdown-popin {
  width: 100%;
}
.form .dropdown.dropdown-popin .dropdown-label {
  color: #676767;
}

.form-group {
  margin-bottom: 1.42em;
}
.form-group:last-child {
  margin-bottom: 0px;
}

.form-control, .input-group input {
  display: block;
  width: 100%;
  height: 42px;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 0.2em;
  font-size: 0.86em;
  padding: 15px 1.5em;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.form-control::-webkit-input-placeholder, .input-group input::-webkit-input-placeholder {
  color: #676767;
}
.form-control::-moz-placeholder, .input-group input::-moz-placeholder {
  color: #676767;
}
.form-control:-ms-input-placeholder, .input-group input:-ms-input-placeholder {
  color: #676767;
}
.form-control :-moz-placeholder, .input-group input :-moz-placeholder {
  color: #676767;
}
.form-control.form-group, .input-group input.form-group {
  margin-bottom: 1.42em;
  height: 42px;
}
.form-control.form-group:focus, .input-group input.form-group:focus {
  background-color: #fcfcfc;
}

textarea.form-control {
  height: 150px !important;
  line-height: 1.5;
  resize: none;
}

select.form-control {
  display: flex;
  align-items: center;
  height: 4em;
  padding: 0 1.5em;
  color: #676767;
  background-color: transparent;
  background-image: url(/images/form-arrow.png);
  background-size: 0.8em;
  background-position: calc(100% - 1em) 50%;
  background-repeat: no-repeat;
}

.form-group.error .form-control, .form-group.error .input-group input, .input-group .form-group.error input {
  color: #DB1212;
  border-color: #DB1212;
}

.form-group .form-error {
  font-size: 0.8em;
  text-align: left;
  color: #DB1212;
  margin-top: -0.8em;
  margin-bottom: 2em;
}

.input-group {
  display: flex;
}
.input-group input {
  height: 42px;
  border-left: none;
  border-radius: 0;
  box-shadow: none;
}
.input-group input:first-child {
  border-left: 1px solid rgb(230.5, 230.5, 230.5);
  border-top-left-radius: 0.2em;
  border-bottom-left-radius: 0.2em;
}
.input-group input:last-child {
  border-top-right-radius: 0.2em;
  border-bottom-right-radius: 0.2em;
  border-left: none;
}
.input-group input:focus {
  background-color: #fcfcfc;
}
.input-group .dropdown.dropdown-popin .dropdown-label {
  border-radius: 0;
  box-shadow: none;
  border-left: none;
}
.input-group .dropdown.dropdown-popin .dropdown-items {
  margin-left: -1px;
  width: calc(100% + 1px);
}
.input-group .dropdown.dropdown-popin:first-child .dropdown-label {
  border-left: 1px solid rgb(230.5, 230.5, 230.5);
  border-top-left-radius: 0.2em;
  border-bottom-left-radius: 0.2em;
}
.input-group .dropdown.dropdown-popin:last-child .dropdown-label {
  border-top-right-radius: 0.2em;
  border-bottom-right-radius: 0.2em;
  border-left: none;
}

/**
*
*	RANGE|SCSS
*	-------------------
*	MODULE | Range slider module styles
*	LOCATION | > styles > modules > controls > range.scss
*
*/
/*----------  STYLES  ----------*/
.range-slider {
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
  height: 1px;
  background-color: #202020;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.range-slider .range-slider-handle {
  position: absolute;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #CDCDCD;
}
.range-slider .range-slider-handle span {
  display: block;
  position: absolute;
  font-size: 0.9em;
  top: -2rem;
  width: 100%;
}
.range-slider .range-slider-handle span:after {
  display: block;
  content: "";
  position: absolute;
  top: calc(2rem - 3px);
  width: 8px;
  height: 8px;
  background-color: #202020;
  border-radius: 4px;
}
.range-slider .range-slider-handle.range-slider-left-handle {
  left: -100%;
  text-align: right;
}
.range-slider .range-slider-handle.range-slider-left-handle span {
  right: -10px;
}
.range-slider .range-slider-handle.range-slider-left-handle span:after {
  right: 6px;
}
.range-slider .range-slider-handle.range-slider-right-handle {
  left: 100%;
}
.range-slider .range-slider-handle.range-slider-right-handle span {
  left: -10px;
}
.range-slider .range-slider-handle.range-slider-right-handle span:after {
  left: 6px;
}
.range-slider:before {
  display: block;
  content: "";
  width: 100px;
  height: 1px;
  display: block;
  position: absolute;
  top: 0;
  left: -104px;
  background-color: #FFFFFF;
  z-index: 1000;
}
.range-slider:after {
  display: block;
  content: "";
  width: 100px;
  height: 1px;
  display: block;
  position: absolute;
  top: 0;
  right: -104px;
  background-color: #FFFFFF;
  z-index: 1000;
}

.page-marques-index .brands--list a {
  display: inline-block;
}
.page-marques-index .brands--list__item--is-top {
  font-weight: bold;
}
.page-marques-index.page-marques-index-all .brand-container {
  padding-top: 30px;
}
.page-marques-index center a.btn {
  margin-bottom: 10px;
}
.page-marques-index p {
  margin-top: 30px;
}
.page-marques-index .brands-top__title {
  font-family: esther, serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.25em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-marques-index .brands-top__title:after {
  content: "";
  display: block;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: #202020;
  height: 2px;
  width: 10px;
}
.page-marques-index .brand-container {
  border: none;
}
.page-marques-index .brand-container .brand-search-content {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 1.2rem;
}
.page-marques-index .brand-container .brand-search-content .search_input {
  width: 50%;
  border-radius: 4rem;
  border-color: #202020;
}
.page-marques-index .brand-container .brand-search-content .search_input:focus {
  box-shadow: none;
  border-color: #202020;
}
@media screen and (max-width: 992px) {
  .page-marques-index .brand-container .brand-search-content .search_input {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .page-marques-index .brand-container {
    padding-top: 10px;
  }
}
.page-marques-index .brand-container {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgba(244, 239, 235, 0.46);
}
.page-marques-index .brand-container .brands-top__text {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5;
  font-family: esther;
  font-size: 1.2em;
  letter-spacing: 1.2px;
}
.page-marques-index .brand-container .brands-top__text:empty {
  margin-bottom: 0;
}
.page-marques-index .brand-container .brands-top__text em {
  font-style: italic;
  display: block;
  font-size: small;
  margin-top: 10px;
}
.page-marques-index .brand-container .no-record-found {
  text-align: center;
  font-family: "esther";
  letter-spacing: 1.2px;
  font-size: 1.1rem;
}
.page-marques-index .hide {
  display: none !important;
}
.page-marques-index .brands-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-marques-index .brands-top .btn-black {
  padding: 0.75rem 1.5rem;
}
.page-marques-index .brand-section {
  -moz-column-count: 5;
       column-count: 5;
}
@media screen and (max-width: 480px) {
  .page-marques-index .brand-section {
    -moz-column-count: 2;
         column-count: 2;
  }
}
.page-marques-index .brand-section li {
  line-height: 2em;
  list-style-type: none;
}
.page-marques-index .brand-section li a {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #303030;
  transition: color 0.2s ease;
  text-decoration: none;
}
.page-marques-index .brand-section li a:hover {
  color: #202020;
  text-decoration: underline;
}
.page-marques-index .brand-section--letter {
  margin-bottom: 50px;
}
.page-marques-index .brand-section--letter > div[id] {
  position: relative;
  top: -100px;
}
.page-marques-index .brand-section--letter h2 {
  margin-top: 0;
  -moz-column-span: all;
       column-span: all;
  display: inline-block;
}
.page-marques-index .brand-index--letters {
  text-align: justify;
  margin-bottom: 30px;
  font-family: monospace;
  -moz-text-align-last: center;
       text-align-last: center;
}
.page-marques-index .brand-index--letters a {
  padding: 0 18px;
  font-size: 2em;
  display: inline-block;
  margin: 4px 0;
}

.page-grid .fixed {
  position: fixed;
}
.page-grid .aside-section-associated-searches ul li {
  line-height: 18px;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .page-grid .aside-section-associated-searches ul li {
    font-size: 0.9em;
    line-height: 16px;
  }
}
@media screen and (min-width: 768px) {
  .page-grid .full-width .container,
  .page-grid .main-heading-banner--grid {
    width: 100%;
    padding-left: 4.1em;
    padding-right: 4.1em;
    max-width: 100%;
  }
}
.page-grid .main-heading-banner--grid {
  margin: auto;
  padding-top: 20px;
}
.page-grid .main-heading-banner--grid h1 {
  font-size: 30px;
  letter-spacing: 0;
  margin: 0;
  font-weight: 500;
  letter-spacing: 1.2px;
}
.page-grid .main-heading-banner--grid h1, .page-grid .main-heading-banner--grid p {
  color: #202020;
}
.page-grid #amount-of-products-found {
  font-family: "ether", serif;
  font-size: 1.09rem;
}
.page-grid .full-bg-grey {
  background-color: rgba(244, 239, 235, 0.46);
  margin: 0 auto;
}
.page-grid .full-bg-grey .container {
  padding-top: 20px;
}
.page-grid .full-bg-grey .container .col-xs-15,
.page-grid .full-bg-grey .container .col-sm-15,
.page-grid .full-bg-grey .container .col-md-15,
.page-grid .full-bg-grey .container .col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
.page-grid .full-bg-grey .container .col-xs-15 {
  width: 20%;
  float: left;
}
@media (min-width: 768px) {
  .page-grid .full-bg-grey .container .col-sm-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .page-grid .full-bg-grey .container .col-md-15 {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .page-grid .full-bg-grey .container .col-lg-15 {
    width: 20%;
    float: left;
  }
}
.page-grid .pagination-for-grid .pagination {
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
}
.page-grid .pagination-for-grid .pagination br {
  display: none;
}
.page-grid .pagination-for-grid .pagination li.disabled {
  display: none;
}
.page-grid .pagination-for-grid .pagination > li > a,
.page-grid .pagination-for-grid .pagination > li > span {
  padding: 7px 16px;
  margin: 0 6px;
}
.page-grid .shop-products-grid {
  clear: both;
}
.page-grid .shop-products-grid:not(.shop-products-grid--page--1) .bloc-must-have {
  display: none;
}
.page-grid .shop-products-grid > .ais-hits {
  margin-top: -3px;
}
.page-grid .shop-products-grid {
  min-height: 350px;
}
.page-grid .shop-products-grid .bloc-must-have {
  position: relative;
}
.page-grid .shop-products-grid .bloc-must-have .must-have-container {
  background-color: black;
  min-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  color: white;
  text-align: center;
  display: flex;
}
.page-grid .shop-products-grid .bloc-must-have .must-have-container .must-have-content {
  margin: auto;
}
.page-grid .shop-products-grid .bloc-must-have .must-have-container .must-have-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 10px;
}
.page-grid .shop-products-grid .bloc-must-have .must-have-container .must-have-category {
  margin-top: 20px;
  display: block;
}
.page-grid .shop-products-grid .first-bloc-grid {
  width: 100%;
}
.page-grid .shop-products-grid .first-bloc-grid .filtres-top .dropdown.dropdown-popin {
  margin-right: 6px;
}
.page-grid .shop-products-grid .first-bloc-grid .filtres-top .dropdown.dropdown-popin .dropdown-label {
  min-width: 170px;
  max-width: 170px;
}
.page-grid .shop-products-grid .first-bloc-grid .filtres-top .dropdown.dropdown-popin .dropdown-items {
  width: 170px;
}
.page-grid .must-have-container {
  background-size: auto 100%;
  background-position: top center;
  background-color: #000;
  overflow: hidden;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.page-grid .must-have-container .must-have-content {
  z-index: 2;
}
.page-grid .must-have-container video {
  z-index: 1;
  position: absolute;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 50%;
  transform: translateX(-50%);
}
.page-grid .must-have-container:after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 500px) {
  .page-grid .full-width .container {
    width: 100%;
  }
  .page-grid .shop-products-grid {
    padding: 0px;
  }
}
@media screen and (max-width: 991px) {
  .page-grid .full-bg-grey {
    width: 100%;
  }
  .page-grid .main-heading-banner {
    height: auto;
    width: 100%;
  }
  .page-grid .main-heading-banner .description-content {
    display: none;
  }
  .page-grid .main-heading-banner .infos-content {
    width: 100%;
  }
  .page-grid .main-heading-banner .infos-content .title-content {
    max-width: 100%;
  }
  .page-grid .main-heading-banner .infos-content .title-content .main-heading-title {
    font-size: 1.7em;
    padding: 40px 0;
  }
  .page-grid .main-heading-banner .infos-content .breadcrumb-content {
    text-align: center;
    display: block;
  }
  .page-grid .main-heading-banner .infos-content .breadcrumb-content ul.breadcrumb {
    width: auto;
    height: 30px;
    margin-bottom: 15px;
  }
  .page-grid .main-heading-banner .infos-content .breadcrumb-content .filter-content {
    width: 100%;
  }
  .page-grid .main-heading-banner .infos-content .breadcrumb-content .filter-content .dropdown.dropdown-popin {
    margin: 0 auto;
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-grid .main-heading-banner--grid {
    padding-left: 5px;
    padding-right: 5px;
  }
  .page-grid .main-heading-banner--grid .row {
    width: 100%;
  }
  .page-grid .full-width {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .page-grid .main-heading-banner--grid h1 {
    padding: 0 10%;
  }
}

.page-shop-promotions .main-heading-banner {
  background-image: none !important;
}

.page-shop-product .full-bg-grey {
  background-color: rgba(244, 239, 235, 0.46);
  margin: 0 auto;
}
.page-shop-product .full-bg-grey .container:first-child {
  border-top: 0;
}
.page-shop-product .header {
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
  z-index: 9999;
}
.page-shop-product .product-infos {
  padding: 0;
  display: flex;
}
.page-shop-product .product-infos .product-infos-photos {
  padding-bottom: 10px;
  padding-top: 10px;
  height: inherit;
}
.page-shop-product .product-infos .product-infos-photos .photos-main-photo {
  border-radius: 4px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
}
.page-shop-product .product-infos .product-infos-photos .photos-main-photo.lozad:not([data-loaded]) {
  height: 0;
  padding-bottom: 100%;
}
.page-shop-product .product-infos .product-infos-content {
  padding-bottom: 10px;
  padding-top: 12px;
}
.page-shop-product .product-infos .product-infos-content .section-bg-color {
  background-color: white;
  border-radius: 10px;
}
.page-shop-product .product-infos .product-infos-content ul.breadcrumb {
  margin-bottom: 1.5em;
  padding-left: 20px;
  margin-top: 2em;
}
.page-shop-product .product-infos .product-infos-content ul.breadcrumb > li {
  letter-spacing: 0.093em;
  display: inline-block;
  vertical-align: top;
  font-size: 0.86em;
}
.page-shop-product .product-infos .product-infos-content ul.breadcrumb > li a {
  color: #676767;
  font-size: 0.86em;
  letter-spacing: 0.093em;
}
.page-shop-product .product-infos .product-infos-content ul.breadcrumb > li:after {
  vertical-align: middle;
  display: inline-block;
  margin-top: -0.15em;
  margin-left: 0.4em;
  color: #676767;
  font-size: 0.8em;
  content: ">";
}
.page-shop-product .product-infos .product-infos-content ul.breadcrumb > li:last-child:after {
  display: none;
}
.page-shop-product .product-infos .product-infos-content ul.breadcrumb > li:last-child, .page-shop-product .product-infos .product-infos-content ul.breadcrumb > li:last-child a {
  color: #202020;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos {
  padding-bottom: 1.5em;
  padding-left: 20px;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content {
  display: flex;
  justify-content: end;
  align-content: center;
  align-items: center;
  padding-right: 15px;
  padding-top: 10px;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content {
  position: relative;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content:hover .social-links-btn {
  border: 1px solid #000;
  border-radius: 50%;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content:hover .tooltip-list {
  opacity: 1;
  visibility: visible;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .social-links-btn {
  padding: 4px;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .social-links-btn > img {
  width: 27px;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list {
  position: absolute;
  display: flex;
  background-color: #fff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  left: 50%;
  top: 167%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  z-index: 99;
  padding: 0 4px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list::before {
  content: "";
  position: absolute;
  top: -11px; /* position above the ul */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #fff transparent; /* arrow pointing up */
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list > li {
  list-style: none;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list > li .share-btn {
  font-size: 1.8rem;
  padding: 0 10px;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list > li .facebook-btn {
  color: #1877F2;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list > li .facebook-btn:hover {
  color: #4064ac;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list > li .pinterest-btn {
  color: #F0002A;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list > li .pinterest-btn:hover {
  color: #E3173E;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list > li .whatsapp-btn {
  color: #25d366;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list > li .whatsapp-btn:hover {
  color: #075e54;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .share-tooltip-content .tooltip-list > li .copy-btn {
  color: #000;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .product-whitelist {
  color: #000;
  font-size: 25px;
  padding: 4px 8px;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .product-whitelist > i {
  padding: 1px 5px;
  border: 1px solid #fff;
}
.page-shop-product .product-infos .product-infos-content .infos-group .primary-infos .product-social-content .product-whitelist:hover > i {
  border: 1px solid #000;
  border-radius: 50%;
}
.page-shop-product .product-infos .product-infos-content .product-description {
  padding-right: 20px;
  padding-left: 20px;
  font-family: esther, serif;
  letter-spacing: 1px;
  font-weight: 500;
}
.page-shop-product .product-infos .product-infos-content .product-description .accordion-title {
  font-size: 1.2rem;
}
.page-shop-product .product-infos .product-infos-content .product-description .accordion-content {
  letter-spacing: 0.07rem;
}
.page-shop-product .product-looks {
  margin-top: 60px;
}

.page-shop-product .product-infos-content {
  justify-content: flex-start;
  flex-direction: column;
  display: flex;
}
.page-shop-product .product-infos-content .infos-brand {
  margin-bottom: 2.3em;
}
.page-shop-product .product-infos-content .infos-brand .infos-title {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  vertical-align: middle;
  display: inline-block;
  font-size: 1.1em;
}
.page-shop-product .product-infos-content .infos-brand .infos-title:after {
  width: 3.5em;
  height: 4px;
  background-color: #202020;
  right: 0;
  top: 1.5em;
  position: relative;
  display: block;
  content: "";
}
.page-shop-product .product-infos-content .infos-brand .btn.btn-follow {
  margin-left: 3em;
}
.page-shop-product .product-infos-content .brand-name {
  letter-spacing: 0.093em;
  font-size: 1.2em;
  line-height: 1.4;
  font-family: ether;
  color: #000;
}
.page-shop-product .product-infos-content .brand-name:hover {
  color: #937a58;
}
.page-shop-product .product-infos-content a.brand-name {
  text-decoration: underline;
}
.page-shop-product .product-infos-content .infos-datas {
  border-bottom: 1px solid rgba(244, 239, 235, 0.46);
  border-top: 1px solid rgba(244, 239, 235, 0.46);
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  width: 100%;
  font-family: ether;
}
.page-shop-product .product-infos-content .infos-datas .infos-price, .page-shop-product .product-infos-content .infos-datas .infos-sizes {
  padding: 30px;
  text-align: center;
  width: 50%;
}
.page-shop-product .product-infos-content .infos-datas .infos-price a.btn, .page-shop-product .product-infos-content .infos-datas .infos-sizes a.btn {
  text-align: center;
  width: 100%;
}
.page-shop-product .product-infos-content .infos-datas .infos-price .infos-seller, .page-shop-product .product-infos-content .infos-datas .infos-sizes .infos-seller {
  letter-spacing: 0.093em;
  margin-bottom: 10px;
  font-size: 1em;
  color: black;
  line-height: 1.5em;
}
.page-shop-product .product-infos-content .infos-datas .infos-price .infos-seller a, .page-shop-product .product-infos-content .infos-datas .infos-sizes .infos-seller a {
  font-weight: 700;
  color: #000;
  display: block;
}
.page-shop-product .product-infos-content .infos-datas .infos-price, .page-shop-product .product-infos-content .infos-datas .infos-sizes {
  letter-spacing: 0.093em;
  font-size: 0.86em;
}
.page-shop-product .product-infos-content .infos-datas .infos-price {
  border-right: 1px solid rgba(244, 239, 235, 0.46);
  justify-content: center;
  flex-direction: column;
  padding-left: 0.5em;
  display: flex;
}
.page-shop-product .product-infos-content .infos-datas .infos-price .infos-price-numbers {
  letter-spacing: 0.2em;
}
.page-shop-product .product-infos-content .infos-datas .infos-price .infos-price-numbers .price-old {
  vertical-align: sub;
  display: inline-block;
  margin-right: 0.4em;
  position: relative;
  font-size: 1.2em;
}
.page-shop-product .product-infos-content .infos-datas .infos-price .infos-price-numbers .price-old:after {
  background-color: #202020;
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  top: 50%;
  content: "";
  height: 2px;
}
.page-shop-product .product-infos-content .infos-datas .infos-price .infos-price-numbers .price-current {
  vertical-align: middle;
  display: inline-block;
  font-size: 1.6em;
  color: #202020;
}
.page-shop-product .product-infos-content .infos-datas .infos-price .infos-price-numbers .price-promotion {
  border: 2px solid #DB1212;
  vertical-align: middle;
  display: inline-block;
  border-radius: 2px;
  margin-left: 2em;
  padding: 0.3em;
  color: #DB1212;
}
.page-shop-product .product-infos-content .infos-datas .infos-price .infos-sale {
  margin-top: 1.5em;
  font-size: 0.8em;
}
.page-shop-product .product-infos-content .infos-datas .infos-price .infos-sale strong {
  margin-right: 0.3em;
  font-weight: 700;
  color: #71C94B;
}
.page-shop-product .product-infos-content .infos-datas .infos-price .infos-stock {
  margin-top: 10px;
  display: block;
}
.page-shop-product .product-infos-content .infos-datas .infos-sizes {
  padding-right: 0.2em;
}
.page-shop-product .product-infos-content .infos-datas .infos-sizes .dropdown {
  width: 100%;
  font-size: 0.9em;
}
.page-shop-product .product-infos-content .infos-datas .infos-sizes .infos-sizes-guide {
  display: inline-block;
  font-size: 0.85em;
  margin-left: 2px;
  margin-top: 1em;
}
.page-shop-product .product-infos-content .infos-datas .infos-sizes .infos-sizes-guide:after {
  background-color: #202020;
  margin-top: 0.1em;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
}
.page-shop-product .product-infos-content .infos-datas .seller-button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}
.page-shop-product .product-infos-content .infos-datas .seller-button:hover {
  background-color: rgba(70, 70, 70, 0.79);
}
.page-shop-product .product-infos-content .infos-actions {
  padding: 35px 4px 37px 4px;
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
}
.page-shop-product .product-infos-content .infos-actions a.btn {
  width: calc(50% - 15px);
  margin-right: 30px;
  display: inline-block;
  text-align: center;
}
.page-shop-product .product-infos-content .infos-actions a.btn:last-child {
  margin-right: -4px;
}
.page-shop-product .product-infos-content .infos-networks {
  padding: 30px 0 7px 0;
  text-align: center;
}
.page-shop-product .product-infos-content .infos-networks .btn.btn-network {
  display: inline-block;
  margin-right: 1em;
}
.page-shop-product .product-infos-content .infos-networks .btn.btn-network:last-child {
  margin-right: 0;
}

.product-similar .heading-similar h2 {
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 2;
}
.product-similar .heading-similar h2:after {
  height: 3px;
  width: 150px;
  background: #212529;
  top: 3px;
  left: 50%;
  margin-left: -75px;
  position: relative;
  display: block;
  content: "";
}

@media screen and (max-width: 991px) {
  .page-shop-product .full-bg-grey {
    width: 100%;
  }
  .page-shop-product .infos-group {
    flex-direction: column;
  }
  .page-shop-product .infos-group .primary-infos {
    order: 1;
  }
  .page-shop-product .infos-group .infos-datas {
    order: 0;
  }
  .page-shop-product .infos-group .product-description {
    order: 2;
    border-top: 6px solid #f6f6f6;
    border-bottom: 0 !important;
  }
  .page-shop-product .product-infos {
    flex-direction: column;
    max-height: none;
    display: flex;
    height: auto;
    padding: 0;
  }
  .page-shop-product .product-infos .full-bg-grey {
    width: 100%;
  }
  .page-shop-product .product-infos .product-infos-content {
    order: 2;
  }
  .page-shop-product .product-infos .product-infos-photos {
    border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
    border-right: none;
    margin-right: 0;
    display: block;
    height: auto;
    padding: 0 10px;
  }
  .page-shop-product .product-infos-content .infos-datas {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .page-shop-product .product-infos-content .infos-datas .infos-price, .page-shop-product .product-infos-content .infos-datas .infos-sizes {
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 0.2em;
    border-right: none;
    margin-left: 0;
    width: 100%;
  }
  .page-shop-product .product-infos-content .infos-datas .infos-price {
    order: 1;
    padding-right: 0;
    border-top: 1px solid rgb(230.5, 230.5, 230.5);
  }
  .page-shop-product .product-infos-content .infos-networks {
    text-align: left;
  }
  .page-shop-product .product-similar .shop-products .inspiration-products-grid .product-thumb {
    margin: 20px auto 24px;
  }
}
@media screen and (max-width: 767px) {
  .tooltip-list {
    display: none !important;
  }
  .product-container {
    margin: 0 !important;
  }
  .page-shop-product .product-similar .shop-products .inspiration-products-grid .product-thumb:nth-child(4n+1)::after,
  .page-shop-product .product-similar .shop-products .inspiration-products-grid .product-thumb:nth-child(7)::after,
  .page-shop-product .product-similar .shop-products .inspiration-products-grid .product-thumb::after {
    left: -25px;
    width: calc(100% + 0px + 40px);
    height: 6px;
  }
  .page-shop-product .product-similar .shop-products .inspiration-products-grid .product-thumb:last-child:after {
    height: 0px;
  }
}
.grid-columns-similar {
  width: 20%;
  padding: 0 10px;
}

@media (max-width: 1300px) {
  .grid-columns-similar {
    width: 25%;
  }
}
@media (max-width: 700px) {
  .grid-columns-similar {
    width: 33.333333%;
  }
}
@media (max-width: 550px) {
  .grid-columns-similar {
    width: 50%;
  }
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Wishlist Page Styles
  --------------------------------------------------------------*/
}
.page-wishlist .page-wishlist {
  background-color: var(--background-color);
  min-height: 100vh;
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Wishlist Header
  --------------------------------------------------------------*/
}
.page-wishlist .wishlist-header {
  background: linear-gradient(135deg, #f5f2eb 0%, #ffffff 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-wishlist .wishlist-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(172, 151, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-wishlist .wishlist-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(172, 151, 128, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-wishlist .wishlist-header .header-content {
  position: relative;
  z-index: 2;
}
.page-wishlist .wishlist-header .wishlist-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .page-wishlist .wishlist-header .wishlist-title {
    font-size: 2.5rem;
  }
}
.page-wishlist .wishlist-header .wishlist-subtitle {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
}
@media (max-width: 768px) {
  .page-wishlist .wishlist-header .wishlist-subtitle {
    font-size: 1rem;
  }
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Wishlist Content
  --------------------------------------------------------------*/
}
.page-wishlist .wishlist-content {
  padding: 60px 0 80px;
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Wishlist Grid
  --------------------------------------------------------------*/
}
.page-wishlist .wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .page-wishlist .wishlist-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .page-wishlist .wishlist-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Wishlist Item Card
  --------------------------------------------------------------*/
}
.page-wishlist .wishlist-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.page-wishlist .wishlist-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.page-wishlist .wishlist-item:hover .quick-view-overlay {
  opacity: 1;
  visibility: visible;
}
.page-wishlist .wishlist-item:hover .wishlist-item-image img {
  transform: scale(1.08);
}
.page-wishlist .wishlist-item .remove-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.page-wishlist .wishlist-item .remove-btn i {
  font-size: 14px;
  color: #666;
  transition: all 0.3s ease;
}
.page-wishlist .wishlist-item .remove-btn:hover {
  background: #ff4444;
  transform: rotate(90deg) scale(1.1);
}
.page-wishlist .wishlist-item .remove-btn:hover i {
  color: #ffffff;
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Wishlist Item Image
  --------------------------------------------------------------*/
}
.page-wishlist .wishlist-item-image {
  position: relative;
  width: 100%;
  padding-top: 125%;
  overflow: hidden;
  background: #f8f8f8;
}
.page-wishlist .wishlist-item-image .image-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.page-wishlist .wishlist-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-wishlist .wishlist-item-image .quick-view-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.page-wishlist .wishlist-item-image .quick-view-overlay .quick-view-text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.page-wishlist .wishlist-item-image:hover .quick-view-overlay .quick-view-text {
  transform: translateY(0);
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Wishlist Item Content
  --------------------------------------------------------------*/
}
.page-wishlist .wishlist-item-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-wishlist .wishlist-item-content .item-brand {
  margin-bottom: 0.5rem;
}
.page-wishlist .wishlist-item-content .item-brand a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.page-wishlist .wishlist-item-content .item-brand a:hover {
  color: var(--heading-color);
}
.page-wishlist .wishlist-item-content .item-title {
  margin-bottom: 1rem;
  flex: 1;
}
.page-wishlist .wishlist-item-content .item-title a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--default-color);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.page-wishlist .wishlist-item-content .item-title a:hover {
  color: var(--heading-color);
}
.page-wishlist .wishlist-item-content .item-price {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-wishlist .wishlist-item-content .item-price .current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}
.page-wishlist .wishlist-item-content .item-price .original-price {
  font-size: 1.125rem;
  color: #999;
  text-decoration: line-through;
}
.page-wishlist .wishlist-item-content .item-stock {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-wishlist .wishlist-item-content .item-stock.in-stock {
  color: #059652;
}
.page-wishlist .wishlist-item-content .item-stock.in-stock i {
  font-size: 1rem;
}
.page-wishlist .wishlist-item-content .item-stock.out-of-stock {
  color: #ff4444;
}
.page-wishlist .wishlist-item-content .item-stock.out-of-stock i {
  font-size: 1rem;
}
.page-wishlist .wishlist-item-content .item-actions {
  margin-top: auto;
}
.page-wishlist .wishlist-item-content .item-actions .btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.page-wishlist .wishlist-item-content .item-actions .btn i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}
.page-wishlist .wishlist-item-content .item-actions .btn.btn-add-cart {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.page-wishlist .wishlist-item-content .item-actions .btn.btn-add-cart:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.page-wishlist .wishlist-item-content .item-actions .btn.btn-add-cart:hover i {
  transform: scale(1.1);
}
.page-wishlist .wishlist-item-content .item-actions .btn.btn-add-cart.added {
  background: #059652;
  animation: pulse 0.6s ease;
}
.page-wishlist .wishlist-item-content .item-actions .btn.btn-notify {
  background: #f5f5f5;
  color: #666;
}
.page-wishlist .wishlist-item-content .item-actions .btn.btn-notify:not(:disabled):hover {
  background: #e0e0e0;
}
.page-wishlist .wishlist-item-content .item-actions .btn.btn-notify:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Empty State
  --------------------------------------------------------------*/
}
.page-wishlist .wishlist-empty {
  text-align: center;
  padding: 80px 20px;
}
.page-wishlist .wishlist-empty .empty-content {
  max-width: 500px;
  margin: 0 auto;
}
.page-wishlist .wishlist-empty .empty-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #f5f2eb 0%, #e8e3d9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}
.page-wishlist .wishlist-empty .empty-icon i {
  font-size: 3.5rem;
  color: var(--heading-color);
}
.page-wishlist .wishlist-empty .empty-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}
.page-wishlist .wishlist-empty .empty-text {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.page-wishlist .wishlist-empty .btn-shop-now {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.page-wishlist .wishlist-empty .btn-shop-now i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}
.page-wishlist .wishlist-empty .btn-shop-now:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.page-wishlist .wishlist-empty .btn-shop-now:hover i {
  transform: translateX(5px);
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Wishlist Summary
  --------------------------------------------------------------*/
}
.page-wishlist .wishlist-summary {
  background: linear-gradient(135deg, #f5f2eb 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.page-wishlist .wishlist-summary .summary-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .page-wishlist .wishlist-summary .summary-content {
    flex-direction: column;
    align-items: stretch;
  }
}
.page-wishlist .wishlist-summary .summary-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}
.page-wishlist .wishlist-summary .summary-info .item-count {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.page-wishlist .wishlist-summary .summary-info .item-count span {
  font-weight: 700;
  color: var(--accent-color);
}
.page-wishlist .wishlist-summary .summary-actions {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .page-wishlist .wishlist-summary .summary-actions {
    flex-direction: column;
  }
}
.page-wishlist .wishlist-summary .summary-actions .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.page-wishlist .wishlist-summary .summary-actions .btn i {
  font-size: 1.125rem;
}
.page-wishlist .wishlist-summary .summary-actions .btn.btn-clear-all {
  background: transparent;
  color: #ff4444;
  border: 2px solid #ff4444;
}
.page-wishlist .wishlist-summary .summary-actions .btn.btn-clear-all:hover {
  background: #ff4444;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 68, 68, 0.3);
}
.page-wishlist .wishlist-summary .summary-actions .btn.btn-continue {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.page-wishlist .wishlist-summary .summary-actions .btn.btn-continue:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Recommendations Section
  --------------------------------------------------------------*/
}
.page-wishlist .recommendations-section {
  padding: 80px 0;
}
.page-wishlist .recommendations-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.page-wishlist .recommendations-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .page-wishlist .recommendations-section .section-header .section-title {
    font-size: 2rem;
  }
}
.page-wishlist .recommendations-section .section-header .section-subtitle {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.page-wishlist .recommendations-section .recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .page-wishlist .recommendations-section .recommendations-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}
.page-wishlist .recommendations-section .recommendation-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.page-wishlist .recommendations-section .recommendation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.page-wishlist .recommendations-section .recommendation-item .recommendation-image {
  width: 100%;
  padding-top: 125%;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}
.page-wishlist .recommendations-section .recommendation-item .recommendation-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.page-wishlist .recommendations-section .recommendation-item:hover .recommendation-image img {
  transform: scale(1.05);
}
.page-wishlist .recommendations-section .recommendation-item .recommendation-content {
  padding: 1.25rem;
}
.page-wishlist .recommendations-section .recommendation-item .recommendation-content .recommendation-brand {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.page-wishlist .recommendations-section .recommendation-item .recommendation-content .recommendation-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.page-wishlist .recommendations-section .recommendation-item .recommendation-content .recommendation-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Animations
  --------------------------------------------------------------*/
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
.page-wishlist {
  /*--------------------------------------------------------------
  # Responsive Adjustments
  --------------------------------------------------------------*/
}
@media (max-width: 1200px) {
  .page-wishlist .wishlist-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
@media (max-width: 992px) {
  .page-wishlist .wishlist-header {
    padding: 60px 0 40px;
  }
  .page-wishlist .wishlist-content {
    padding: 40px 0 60px;
  }
  .page-wishlist .wishlist-summary {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .page-wishlist .wishlist-header .wishlist-title {
    font-size: 2.5rem;
  }
  .page-wishlist .wishlist-item-content {
    padding: 1.25rem;
  }
  .page-wishlist .wishlist-item-content .item-title a {
    font-size: 1rem;
  }
  .page-wishlist .wishlist-item-content .item-price .current-price {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .page-wishlist .wishlist-header {
    padding: 40px 0 30px;
  }
  .page-wishlist .wishlist-header .wishlist-title {
    font-size: 2rem;
  }
  .page-wishlist .wishlist-header .wishlist-subtitle {
    font-size: 0.9375rem;
  }
  .page-wishlist .wishlist-summary {
    padding: 1.5rem;
  }
  .page-wishlist .wishlist-summary .summary-info h3 {
    font-size: 1.25rem;
  }
  .page-wishlist .recommendations-section {
    padding: 60px 0;
  }
  .page-wishlist .recommendations-section .section-header .section-title {
    font-size: 1.75rem;
  }
}

.page-shop-redirect .content-redirect {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
  justify-content: center;
  font-family: esther;
  font-weight: 500;
  font-size: 1.1rem;
}
.page-shop-redirect .content-redirect .logo {
  text-align: center;
}
.page-shop-redirect .content-redirect .logo img {
  width: 25em;
}
.page-shop-redirect .content-redirect .loading-redirect {
  margin: 50px 0 50px 0;
  height: 4px;
  animation: loading-redirect 3s;
  background-color: #000000;
}
@keyframes loading-redirect {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.page-shop-redirect .content-redirect .merchant-redirect {
  text-align: center;
  line-height: normal;
  padding: 0 10px;
}
.page-shop-redirect .content-redirect .merchant-redirect span {
  letter-spacing: 0.085em;
}
@media screen and (max-width: 500px) {
  .page-shop-redirect .content-redirect .logo img {
    width: 20em;
  }
}

.page-faq .main > .container {
  padding-bottom: 20px;
  margin-top: 0px;
  border-top: 0px;
}

.faq {
  list-style: none;
  padding: 0;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 10px;
}
.faq .faq-item {
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
}
.faq .faq-item:last-child {
  border-bottom: none;
}
.faq .faq-item:last-child .faq-item-issue:hover {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.faq .faq-item:first-child .faq-item-issue:hover {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.faq .faq-item .faq-item-issue {
  display: block;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.09rem;
  font-size: 1em;
  font-family: esther, Sans-Serif;
  padding: 1.5em 4em 1.5em 2em;
}
@media screen and (min-width: 992px) {
  .faq .faq-item .faq-item-issue {
    padding-left: 1.93em;
    padding-right: 1.93em;
  }
}
.faq .faq-item .faq-item-issue:hover {
  background-color: #fcfcfc;
}
.faq .faq-item .faq-item-issue:after {
  display: block;
  font-family: Nouvelle-collection-typo;
  font-size: 1.5em;
  color: #636565;
  content: "\e612";
  position: absolute;
  top: 50%;
  right: 1.3333333333em;
  transform: translate3d(0, -50%, 0);
}
.faq .faq-item .faq-item-content {
  display: none;
  padding: 2em 2em 2em 4em;
  border-top: 1px solid rgb(230.5, 230.5, 230.5);
}
.faq .faq-item.open .faq-item-content {
  display: block;
  font-family: ester;
  font-size: 0.9em;
  letter-spacing: 0.0785em;
}
.faq .faq-item.open .faq-item-content, .faq .faq-item.open .faq-item-content p {
  line-height: 1.7em;
}

.page-cgu .main > .container {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0px;
  border-top: 0px;
}

.page-cgu .cgu-section {
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
  padding: 1em 1em 2em;
}
.page-cgu .cgu-section:first-child {
  padding-top: 0;
}
.page-cgu .cgu-section:last-child {
  border-bottom: none;
}
.page-cgu .cgu-section .cgu-section-title {
  font-weight: bolder;
  margin-bottom: 1em;
  letter-spacing: 0.08rem;
}
.page-cgu .cgu-section p {
  letter-spacing: 0.0885em;
  font-size: 0.95em;
  line-height: 1.2;
  margin-bottom: 1em;
  line-height: 1.7em;
  font-family: ester;
}
.page-cgu .cgu-section p:last-child {
  margin-bottom: 0;
}
.page-cgu .cgu-section .article-title {
  font-size: 1.1em;
  font-weight: bold;
}

.page-about .main {
  height: 742px;
}
@media screen and (max-width: 767px) {
  .page-about .main {
    height: auto;
  }
}
.page-about .main > .container {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  height: 100%;
  margin-top: 0px;
  border-top: 0px;
}

.page-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2em 2em 2em 3em;
}
.page-about-content .main-heading-title {
  font-size: 2.45em;
}
.page-about-content .main-heading-title:after {
  display: block;
  content: "";
  width: 59px;
  height: 4px;
  background-color: #202020;
  margin: 1.21em 0 1.05em 0;
}
.page-about-content p {
  line-height: 2.5;
  margin-bottom: 0.6em;
  letter-spacing: 0.0785em;
  font-size: 1.1em;
  font-family: ether;
}
@media screen and (max-width: 767px) {
  .page-about-content p {
    line-height: 2;
  }
}

/**
*
*	BLOG
*	Styles for blog listing and article pages
*	Design inspired by promojagers.be/nieuws
*
*/
.blog-header {
  padding: 30px 0 10px;
}

.blog-page-title {
  font-family: esther, serif;
  font-size: 2em;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.blog-search {
  max-width: 500px;
  margin: 20px auto 0;
}

.blog-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-search-icon {
  position: absolute;
  left: 16px;
  font-size: 0.9em;
  color: #676767;
  pointer-events: none;
}

.blog-search-input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 25px;
  font-size: 0.9em;
  outline: none;
  transition: border-color 0.2s ease;
  background: #F6F6F6;
}
.blog-search-input::-moz-placeholder {
  color: #676767;
}
.blog-search-input::placeholder {
  color: #676767;
}
.blog-search-input:focus {
  border-color: #202020;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .blog-search-input {
    padding: 9px 14px 9px 38px;
    font-size: 0.85em;
  }
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 15px 0 25px;
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .blog-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    scrollbar-width: none;
  }
  .blog-categories::-webkit-scrollbar {
    display: none;
  }
}

.blog-category-tab {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  color: #202020;
  background: #F6F6F6;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-category-tab:hover {
  background: #202020;
  color: #FFFFFF;
  text-decoration: none;
}
.blog-category-tab.active {
  background: #202020;
  color: #FFFFFF;
}

.blog-tag {
  display: inline-block;
  background: #FFFFFF;
  color: #202020;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 25px;
  margin-bottom: 35px;
}
@media screen and (max-width: 992px) {
  .blog-top {
    grid-template-columns: 1fr;
  }
}

.blog-featured {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
}
.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}
.blog-featured:hover .blog-featured-image img {
  transform: scale(1.05);
}

.blog-featured-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .blog-featured-image {
    min-height: 200px;
    max-height: none;
  }
}
.blog-featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.blog-featured-title {
  font-family: esther, serif;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.35;
  margin: 8px 0 0;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .blog-featured-title {
    font-size: 1.15em;
  }
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-sidebar-heading {
  font-family: esther, serif;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #202020;
}

.blog-sidebar-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
.blog-sidebar-item:hover {
  text-decoration: none;
  color: inherit;
  background: rgba(0, 0, 0, 0.02);
  padding-left: 6px;
}
.blog-sidebar-item:last-child {
  border-bottom: none;
}

.blog-sidebar-image {
  width: 85px;
  height: 65px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.blog-sidebar-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-sidebar-info {
  flex: 1;
  min-width: 0;
}

.blog-sidebar-date {
  font-size: 0.72em;
  color: #676767;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.blog-sidebar-title {
  font-family: esther, serif;
  font-size: 0.88em;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}
.blog-card:hover .blog-card-read {
  color: #202020;
  gap: 8px;
}

.blog-card-image {
  position: relative;
  width: 100%;
  padding-top: 62%;
  overflow: hidden;
  background: #F6F6F6;
}
.blog-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
}
.blog-card-placeholder i {
  font-size: 3em;
  color: #CDCDCD;
}

.blog-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.blog-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 0.75em;
  color: #676767;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: esther, serif;
  font-size: 1.05em;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.4;
  color: #202020;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 0.85em;
  line-height: 1.55;
  margin: 0 0 12px;
  color: #676767;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-read {
  font-size: 0.8em;
  font-weight: 600;
  color: #676767;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0 50px;
}

.blog-paginator {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.blog-paginator__btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 8px;
  background: #FFFFFF;
  color: #202020;
  font-size: 0.95em;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-paginator__btn:hover:not(.is-disabled):not(.is-active) {
  border-color: #202020;
  background: #202020;
  color: #FFFFFF;
  text-decoration: none;
}
.blog-paginator__btn.is-active {
  background: #202020;
  color: #FFFFFF;
  border-color: #202020;
  cursor: default;
}
.blog-paginator__btn.is-disabled {
  color: rgb(230.5, 230.5, 230.5);
  background: #FFFFFF;
  cursor: default;
  pointer-events: none;
}
.blog-paginator__btn i {
  font-size: 0.85em;
}
.blog-paginator__dots {
  padding: 0 6px;
  color: #676767;
  font-size: 0.95em;
}

.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: #676767;
}
.blog-empty i {
  font-size: 4em;
  margin-bottom: 20px;
  display: block;
}
.blog-empty p {
  font-size: 1.1em;
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.blog-article-header {
  margin-top: 20px;
  margin-bottom: 30px;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9em;
  color: #676767;
  margin-bottom: 12px;
  margin-right: 15px;
  transition: color 0.2s ease;
}
.blog-back-link:hover {
  color: #202020;
  text-decoration: none;
}

.blog-article-category {
  display: inline-block;
  background: #202020;
  color: #FFFFFF;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blog-article-title {
  font-family: esther, serif;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  .blog-article-title {
    font-size: 1.6em;
  }
}

.blog-article-meta {
  font-size: 0.9em;
  color: #676767;
}
.blog-article-meta i {
  margin-right: 5px;
}

.blog-article-image {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}
.blog-article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-article-content {
  font-size: 1.05em;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.blog-article-content p {
  margin-bottom: 0.5em;
}
.blog-article-content h2, .blog-article-content h3, .blog-article-content h4 {
  font-family: esther, serif;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
.blog-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5em 0;
}
.blog-article-content ul, .blog-article-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}
.blog-article-content blockquote {
  border-left: 4px solid #202020;
  padding: 15px 25px;
  margin: 1.5em 0;
  background: #F6F6F6;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.blog-article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgb(230.5, 230.5, 230.5);
}

.blog-related {
  max-width: 100%;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgb(230.5, 230.5, 230.5);
}

.blog-related-title {
  font-family: esther, serif;
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 0 25px;
}

/**
*
*	PROFILE
*	Styles for user profile and settings page
*
*/
.profile-header {
  padding: 30px 0 10px;
}

.profile-page-title {
  font-family: esther, serif;
  font-size: 2em;
  font-weight: 700;
  margin: 0;
}

.profile-alert {
  margin-bottom: 24px;
  border-radius: 8px;
  font-size: 14px;
}
.profile-alert ul {
  margin: 0;
  padding-left: 16px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 24px 0 60px;
}
@media screen and (max-width: 768px) {
  .profile-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.profile-avatar-card {
  background: #FFFFFF;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: #202020;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-avatar-placeholder span {
  color: #FFFFFF;
  font-family: esther, serif;
  font-size: 36px;
  font-weight: 700;
}

.profile-user-name {
  font-family: esther, serif;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 0 4px;
}

.profile-user-email {
  font-size: 13px;
  color: #676767;
  margin: 0 0 20px;
}

.profile-meta {
  border-top: 1px solid rgb(230.5, 230.5, 230.5);
  padding-top: 16px;
}

.profile-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #676767;
  margin-bottom: 10px;
}
.profile-meta-item i {
  font-size: 15px;
}
.profile-meta-item .text-success {
  color: #71C94B;
}
.profile-meta-item .text-warning {
  color: #e6a817;
}

.profile-section {
  background: #FFFFFF;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .profile-section {
    padding: 20px 16px;
  }
}

.profile-section-title {
  font-family: esther, serif;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
}

.profile-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .profile-form-row {
    grid-template-columns: 1fr;
  }
}

.profile-form-group {
  margin-bottom: 16px;
}

.profile-label {
  display: block;
  font-family: esther, serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #202020;
}

.profile-form-actions {
  padding-top: 8px;
}

.profile-avatar-upload {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.profile-avatar-preview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgb(230.5, 230.5, 230.5);
}
.profile-avatar-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-avatar-preview .profile-avatar-placeholder {
  width: 100%;
  height: 100%;
}
.profile-avatar-preview .profile-avatar-placeholder span {
  font-size: 24px;
}

.profile-avatar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.profile-file-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #CDCDCD;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.profile-file-label:hover {
  background: #F6F6F6;
}
.profile-file-label i {
  font-size: 16px;
}

.profile-remove-avatar {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border: 1px solid #DB1212;
  border-radius: 6px;
  background: none;
  color: #DB1212;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.profile-remove-avatar:hover {
  background: #DB1212;
  color: #FFFFFF;
}

#cropModal .modal-dialog {
  max-width: 500px;
}
#cropModal .modal-header {
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
}
#cropModal .modal-header .modal-title {
  font-family: esther, serif;
  font-weight: 700;
}
#cropModal .modal-footer {
  border-top: 1px solid rgb(230.5, 230.5, 230.5);
}

.crop-container {
  max-height: 400px;
  overflow: hidden;
}
.crop-container img {
  display: block;
  max-width: 100%;
}

.cropper-view-box,
.cropper-face {
  border-radius: 50%;
}

.cropper-view-box {
  outline: 0;
  box-shadow: 0 0 0 1px #39f;
}

.cropper-dashed {
  display: none;
}

.password-container {
  position: relative;
}
.password-container .toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #676767;
  z-index: 2;
}

.profile-social-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-social-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 8px;
}

.profile-social-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-social-info i {
  font-size: 20px;
}
.profile-social-info .bi-facebook {
  color: #507CBE;
}
.profile-social-info .bi-google {
  color: #4D4F54;
}
.profile-social-info .bi-apple {
  color: #202020;
}

.profile-social-name {
  font-size: 15px;
  font-weight: 500;
}

.profile-social-connected {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #71C94B;
}

.profile-social-connect {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #202020;
  border-radius: 6px;
  font-size: 13px;
  color: #202020;
  text-decoration: none;
  transition: all 0.2s ease;
}
.profile-social-connect:hover {
  background: #202020;
  color: #FFFFFF;
  text-decoration: none;
}

.delete-modal-warning {
  text-align: center;
  margin-bottom: 20px;
}
.delete-modal-warning i {
  font-size: 3em;
  color: #DB1212;
  display: block;
  margin-bottom: 12px;
}
.delete-modal-warning p {
  font-size: 0.9em;
  color: #676767;
  line-height: 1.6;
  margin: 0;
}

.page-dashboard {
  /**
  *
  *	DASHBOARD
  *	Styles for user dashboard pages
  *
  */
}
.page-dashboard .dash-header {
  padding: 30px 0 10px;
}
.page-dashboard .dash-page-title {
  font-family: esther, serif;
  font-size: 2em;
  font-weight: 700;
  margin: 0;
}
.page-dashboard .dash-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
  margin-bottom: 28px;
}
.page-dashboard .dash-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #676767;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.page-dashboard .dash-nav-link i {
  font-size: 16px;
}
.page-dashboard .dash-nav-link:hover {
  color: #202020;
  text-decoration: none;
}
.page-dashboard .dash-nav-link.active {
  color: #202020;
  border-bottom-color: #202020;
}
@media screen and (max-width: 768px) {
  .page-dashboard .dash-nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }
}
.page-dashboard .dash-alert {
  margin-bottom: 24px;
  border-radius: 8px;
  font-size: 14px;
}
.page-dashboard .dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .page-dashboard .dash-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.page-dashboard .dash-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 12px;
  padding: 20px 24px;
}
.page-dashboard .dash-stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
  border-radius: 10px;
  flex-shrink: 0;
}
.page-dashboard .dash-stat-icon i {
  font-size: 22px;
  color: #202020;
}
.page-dashboard .dash-stat-info {
  display: flex;
  flex-direction: column;
}
.page-dashboard .dash-stat-value {
  font-family: esther, serif;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.2;
}
.page-dashboard .dash-stat-label {
  font-size: 13px;
  color: #676767;
  margin-top: 2px;
}
.page-dashboard .dash-section {
  background: #FFFFFF;
  border: 1px solid rgb(230.5, 230.5, 230.5);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .page-dashboard .dash-section {
    padding: 20px 16px;
  }
}
.page-dashboard .dash-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
}
.page-dashboard .dash-section-header .dash-section-title {
  margin: 0;
  padding: 0;
  border: none;
}
.page-dashboard .dash-section-title {
  font-family: esther, serif;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
}
.page-dashboard .dash-section-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #202020;
  text-decoration: none;
  font-weight: 500;
}
.page-dashboard .dash-section-link:hover {
  text-decoration: underline;
}
.page-dashboard .dash-section-text {
  font-size: 14px;
  color: #676767;
  margin-bottom: 16px;
  line-height: 1.6;
}
.page-dashboard .dash-products-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media screen and (max-width: 768px) {
  .page-dashboard .dash-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-dashboard .dash-empty-state {
  text-align: center;
  padding: 40px 20px;
}
.page-dashboard .dash-empty-state > i {
  font-size: 3em;
  color: #CDCDCD;
  display: block;
  margin-bottom: 12px;
}
.page-dashboard .dash-empty-state p {
  font-size: 14px;
  color: #676767;
  margin-bottom: 16px;
}
.page-dashboard .dash-setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
}
.page-dashboard .dash-setting-item:last-of-type {
  border-bottom: none;
}
.page-dashboard .dash-setting-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.page-dashboard .dash-setting-label {
  font-size: 15px;
  font-weight: 500;
  color: #202020;
}
.page-dashboard .dash-setting-desc {
  font-size: 13px;
  color: #676767;
}
.page-dashboard .dash-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.page-dashboard .dash-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.page-dashboard .dash-toggle input:checked + .dash-toggle-slider {
  background: #202020;
}
.page-dashboard .dash-toggle input:checked + .dash-toggle-slider::before {
  transform: translateX(20px);
}
.page-dashboard .dash-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #CDCDCD;
  border-radius: 24px;
  transition: 0.3s;
}
.page-dashboard .dash-toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: 0.3s;
}
.page-dashboard .dash-form-actions {
  padding-top: 16px;
}

/*--------------------------------------------------------------
# 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(--accent-color), transparent 96%);
  font-size: 14px;
}

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

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

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

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

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

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

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

.header .top-bar .dropdown-menu {
  min-width: 150px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-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 {
  background: linear-gradient(120deg, rgb(245, 233, 213) 0%, rgb(232, 225, 211) 50%, rgb(245, 242, 235) 100%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

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

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

@media (max-width: 768px) {
  .header .main-header .logo h1 {
    font-size: 24px;
  }
}
.header .main-header .desktop-search-form {
  min-width: 600px;
}

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

.header .main-header .header-actions .header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--default-color);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

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

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

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

.header .main-header .account-dropdown .dropdown-menu {
  background-color: var(--surface-color);
  min-width: 280px;
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.header .main-header .account-dropdown .dropdown-menu .dropdown-body {
  padding: 1rem 0;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item {
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
  .header .header-nav {
    background: var(--background-color);
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }
}
.header .searchs .search__results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: auto;
  min-width: 600px;
  padding: 24px 20px;
  background: var(--surface-color, #fff);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1050;
}
.header .searchs .search__results .search__datasets {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header .searchs .search__results .search__dataset-container {
  flex: 1;
  min-width: 0;
}
.header .searchs .search__results .search__dataset-title {
  display: block;
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-color);
}
.header .searchs .search__results .search__dataset {
  font-weight: normal;
}
.header .searchs .search__results .search__suggestion {
  line-height: 2.2em;
}
.header .searchs .search__results .search__suggestion-link {
  display: block;
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--default-color);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9em;
  transition: background 0.15s ease;
}
.header .searchs .search__results .search__suggestion-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  text-decoration: none;
}
.header .searchs .search__results .search__dataset-all-link-wrapper {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.header .searchs .search__results .search__dataset-all-link-wrapper .search__dataset-all-link {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
}
.header .searchs .search__results .search__dataset-all-link-wrapper .search__dataset-all-link:hover {
  text-decoration: underline;
}
.header .searchs .search__results .search__dataset-all-link-wrapper .search__dataset-all-link-icon {
  display: none;
}

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

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

@media (max-width: 992px) {
  .header .main-header .header-actions {
    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;
  }
}
.user-dropdown {
  position: relative;
}
.user-dropdown .profile-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  background-color: #212529;
  border-radius: 50%;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.3rem;
}
.user-dropdown .profile-link span {
  vertical-align: middle;
  line-height: 0.5px;
}
.user-dropdown .profile-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.user-dropdown .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
  top: 44px;
}
.user-dropdown .dropdown-menu li {
  padding: 0 0.5rem;
}
.user-dropdown .dropdown-menu li a {
  text-decoration: none;
  color: #212529;
  font-family: "esther";
  letter-spacing: 1.2px;
  font-weight: bold;
}
.user-dropdown .dropdown-menu li a:hover {
  color: var(--nav-hover-color);
}
.user-dropdown .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgb(230.5, 230.5, 230.5);
}
@media (max-width: 767px) {
  .user-dropdown .dropdown-menu {
    left: auto;
    right: 0;
    transform: none;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 2.5px;
    text-decoration: none;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:first-child a {
    padding-left: 0;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
.menu-title {
  text-transform: uppercase;
}

/* Products Mega Menu  - Desktop */
@media (min-width: 1200px) {
  .navmenu .products-megamenu {
    position: static;
    /* Hide Mobile Mega Menu in Desktop */
    /* Tabs Navigation */
    /* Tab Content */
  }
  .navmenu .products-megamenu .mobile-megamenu {
    display: none;
  }
  .navmenu .products-megamenu .desktop-megamenu,
  .navmenu .products-megamenu .active,
  .navmenu .products-megamenu .active:focus {
    background-color: var(--nav-dropdown-background-color);
  }
  .navmenu .products-megamenu .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:hover > .desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .products-megamenu .megamenu-tabs {
    padding: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .navmenu .products-megamenu .megamenu-tabs .nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
  }
  .navmenu .products-megamenu .megamenu-tabs .nav-tabs .nav-item {
    margin: 0;
  }
  .navmenu .products-megamenu .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 .megamenu-tabs .nav-tabs .nav-link:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .products-megamenu .megamenu-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
  }
  .navmenu .products-megamenu .megamenu-content {
    flex: 1;
    overflow-y: auto;
    /* Hide scrollbar for Chrome, Safari and Opera */
    /* Category Layout */
    /* Categories Section */
    /* Featured Section */
  }
  .navmenu .products-megamenu .megamenu-content::-webkit-scrollbar {
    width: 5px;
  }
  .navmenu .products-megamenu .megamenu-content::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 10px;
  }
  .navmenu .products-megamenu .megamenu-content::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }
  .navmenu .products-megamenu .megamenu-content .tab-pane {
    padding: 25px;
  }
  .navmenu .products-megamenu .megamenu-content .category-layout {
    display: flex;
    gap: 30px;
  }
  .navmenu .products-megamenu .megamenu-content .categories-section {
    flex: 1;
    /* Category Headers */
    /* Category Links */
  }
  .promo-desktop-menu {
    max-width: 160px;
    padding-top: 0;
  }
  .promo-category-headers {
    flex-direction: column;
  }
  .promo-category-headers > li a {
    padding: 8px 0;
    font-size: 17px;
    text-transform: capitalize;
  }
  .promo-category-headers > li a:focus {
    padding: 8px 0;
  }
  .navmenu .products-megamenu .megamenu-content .categories-section .category-headers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 15px;
  }
  .navmenu .products-megamenu .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 .megamenu-content .categories-section .category-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .navmenu .products-megamenu .megamenu-content .categories-section .category-links .item-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: 3px 0px !important;
  }
  .navmenu .products-megamenu .megamenu-content .categories-section .category-links .item-link-row a:hover {
    color: var(--nav-dropdown-hover-color);
    transform: translateX(3px);
  }
  .navmenu .products-megamenu .megamenu-content .featured-section {
    width: 300px;
  }
  .navmenu .products-megamenu .megamenu-content .featured-section .featured-image {
    position: relative;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
  }
  .navmenu .products-megamenu .megamenu-content .featured-section .featured-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.9;
  }
  .navmenu .products-megamenu .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 .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 .megamenu-content .featured-section .featured-image .featured-content .btn-shop {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    width: -moz-fit-content;
    width: fit-content;
  }
  .navmenu .products-megamenu .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 {
    /* Hide Desktop Mega Menu in Mobile */
  }
  .navmenu .products-megamenu .desktop-megamenu {
    display: none;
  }
  .navmenu .products-megamenu .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 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  .navmenu .products-megamenu .mobile-megamenu li:last-child {
    border-bottom: none;
  }
  .navmenu .products-megamenu .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 .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 .mobile-megamenu li ul {
    padding: 0;
  }
  .navmenu .products-megamenu .mobile-megamenu.dropdown-active {
    display: block;
  }
}
.footer {
  background: linear-gradient(180deg, #f7f7f7 0%, #F0E6DF 90%);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer-item--link {
  transition: color 0.3s ease;
  font-family: "esther";
  letter-spacing: 1.2px;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.footer-item--link:hover {
  text-decoration: underline;
  color: #937a58;
}

.footer-block__heading {
  font-size: 1.5rem;
}

.footer__content-bottom {
  display: flex;
  justify-content: center;
  padding: 22px 0;
}

.footer__content-bottom a {
  font-weight: 600;
}

.footer-social--link {
  color: #000;
  font-size: 1.6rem;
  margin: 0 10px;
}

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

.footer .footer-bottom .copyright {
  padding-top: 10px;
}

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

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

@media (max-width: 991.98px) {
  .footer-block {
    text-align: center;
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .footer-block {
    text-align: center;
    margin-bottom: 15px;
  }
  .footer .footer-bottom .copyright {
    text-align: center;
  }
  .footer .app-buttons {
    justify-content: center;
  }
  .footer .social-icons {
    justify-content: center;
  }
}
.fv-cc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}
.fv-cc__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}
.fv-cc__panel {
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
  max-width: 640px;
  width: 100%;
  padding: 1.5rem;
  pointer-events: auto;
  max-height: 90vh;
  overflow-y: auto;
}
.fv-cc__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 0.5rem;
}
.fv-cc__text {
  font-size: 0.9rem;
  color: #676767;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.fv-cc__text a {
  color: #202020;
  text-decoration: underline;
}
.fv-cc__categories {
  margin-bottom: 1.25rem;
}
.fv-cc__category {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
}
.fv-cc__category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fv-cc__category-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #202020;
}
.fv-cc__category-desc {
  font-size: 0.8rem;
  color: #676767;
  margin: 0.35rem 0 0;
  line-height: 1.4;
}
.fv-cc__badge--required {
  font-size: 0.75rem;
  background: #e8f5e1;
  color: #71C94B;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  font-weight: 600;
}
.fv-cc__toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.fv-cc__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.fv-cc__toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  transition: background 0.25s ease;
}
.fv-cc__toggle-slider::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.25s ease;
}
.fv-cc__toggle input:checked + .fv-cc__toggle-slider {
  background: #202020;
}
.fv-cc__toggle input:checked + .fv-cc__toggle-slider::after {
  transform: translateX(20px);
}
.fv-cc__toggle input:focus-visible + .fv-cc__toggle-slider {
  outline: 2px solid #4D90FE;
  outline-offset: 2px;
}
.fv-cc__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.fv-cc__btn {
  flex: 1;
  min-width: 120px;
  padding: 0.7rem 1rem;
  border-radius: 4rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #202020;
  text-align: center;
}
.fv-cc__btn--accept {
  background: #202020;
  color: #FFFFFF;
}
.fv-cc__btn--accept:hover {
  background: rgb(57.5, 57.5, 57.5);
}
.fv-cc__btn--reject {
  background: #FFFFFF;
  color: #202020;
}
.fv-cc__btn--reject:hover {
  background: #F6F6F6;
}
.fv-cc__btn--save {
  background: #FFFFFF;
  color: #202020;
}
.fv-cc__btn--save:hover {
  background: #F6F6F6;
}
.fv-cc__footer-link {
  text-align: center;
  margin-top: 0.75rem;
}
.fv-cc__footer-link a {
  font-size: 0.8rem;
  color: #676767;
  text-decoration: underline;
}

body.fv-cc-open {
  overflow: hidden;
}

@media (max-width: 576px) {
  .fv-cc {
    padding: 0;
  }
  .fv-cc__panel {
    border-radius: 12px 12px 0 0;
    max-height: 85vh;
  }
  .fv-cc__actions {
    flex-direction: column;
  }
  .fv-cc__btn {
    min-width: unset;
  }
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-card:hover .product-card-wishlist {
  opacity: 1;
}
.product-card .product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f5f5f5;
}
.product-card .product-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card .product-card-image .image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card .product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.product-card .product-card-badge--top {
  background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
}
.product-card .product-card-badge--popular {
  background: #1a1a1a;
}
.product-card .product-card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.2s ease;
  z-index: 2;
}
@media (max-width: 768px) {
  .product-card .product-card-wishlist {
    opacity: 1;
  }
}
.product-card .product-card-wishlist i {
  font-size: 16px;
  color: #333;
  transition: color 0.3s ease;
}
.product-card .product-card-wishlist:hover {
  background: #fff;
  transform: scale(1.1);
}
.product-card .product-card-wishlist.active, .product-card .product-card-wishlist.in-wishlist {
  opacity: 1;
}
.product-card .product-card-wishlist.active i, .product-card .product-card-wishlist.in-wishlist i {
  color: #e74c3c;
}
.product-card .product-card-wishlist.loading {
  pointer-events: none;
  opacity: 0.5;
}
.product-card .product-card-content {
  padding: 15px;
}
.product-card .product-card-brand {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 5px;
  text-decoration: none;
}
.product-card .product-card-brand:hover {
  color: #333;
}
.product-card .product-card-title {
  display: block;
  font-family: ether, serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-card .product-card-title:hover {
  color: #000;
}
.product-card .product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-card .product-card-price .current-price {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.product-card .product-card-price .current-price.sale {
  color: #e74c3c;
}
.product-card .product-card-price .old-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}
.product-card .product-card-price .discount {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #e74c3c;
  padding: 2px 6px;
  border-radius: 3px;
}

.similar-products-section,
.recently-viewed-section,
.recommendations-section {
  padding: 60px 0;
}
.similar-products-section.light-background,
.recently-viewed-section.light-background,
.recommendations-section.light-background {
  background: #f9f9f9;
}
.similar-products-section .section-header,
.recently-viewed-section .section-header,
.recommendations-section .section-header {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 0;
}
.similar-products-section .section-header .section-title,
.recently-viewed-section .section-header .section-title,
.recommendations-section .section-header .section-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  padding-bottom: 0 !important;
}
@media (max-width: 768px) {
  .similar-products-section .section-header .section-title,
  .recently-viewed-section .section-header .section-title,
  .recommendations-section .section-header .section-title {
    font-size: 24px;
  }
}
.similar-products-section .section-header .section-subtitle,
.recently-viewed-section .section-header .section-subtitle,
.recommendations-section .section-header .section-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
}
@media (max-width: 768px) {
  .similar-products-section .section-header .section-subtitle,
  .recently-viewed-section .section-header .section-subtitle,
  .recommendations-section .section-header .section-subtitle {
    font-size: 14px;
  }
}
.similar-products-section .products-carousel,
.recently-viewed-section .products-carousel,
.recommendations-section .products-carousel {
  position: relative;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
@font-face {
  font-family: "esther";
  src: local("☺"), url("/fonts/esther/esther-webfont.woff2") format("woff2"), url("/fonts/esther/esther-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* Regular (400) */
@font-face {
  font-family: "Playfair-Display";
  src: local("☺"), url("/fonts/playfairdisplay/static/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* SemiBold (500) */
@font-face {
  font-family: "Playfair-Display";
  src: local("☺"), url("/fonts/playfairdisplay/static/PlayfairDisplay-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
/* Bold (600)*/
@font-face {
  font-family: "Playfair-Display";
  src: local("☺"), url("/fonts/playfairdisplay/static/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
/* Bold (700)*/
@font-face {
  font-family: "Playfair-Display";
  src: local("☺"), url("/fonts/playfairdisplay/static/PlayfairDisplay-ExtraBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Nouvelle-collection-typo";
  src: url("/fonts/icons/Nouvelle-collection-typo.eot");
  src: local("☺"), url("/fonts/icons/Nouvelle-collection-typo.woff") format("woff"), url("/fonts/icons/Nouvelle-collection-typo.ttf") format("truetype"), url("/fonts/icons/Nouvelle-collection-typo.eot?#iefix") format("embedded-opentype"), url("/fonts/icons/Nouvelle-collection-typo.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=icon-], [class*=" icon-"] {
  font-family: "Nouvelle-collection-typo";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ig:before {
  content: "\e600";
}

.icon-facebook:before {
  content: "\e601";
}

.icon-twitter:before {
  content: "\e602";
}

.icon-googleplus:before {
  content: "\e603";
}

.icon-youtube:before {
  content: "\e604";
}

.icon-tumblr:before {
  content: "\e605";
}

.icon-pin:before {
  content: "\e606";
}

.icon-profil:before {
  content: "\e607";
}

.icon-coeur:before {
  content: "\e608";
}

.icon-notif:before {
  content: "\e609";
}

.icon-notifrond .path1:before {
  content: "\e60a";
  color: rgb(0, 0, 0);
}

.icon-notifrond .path2:before {
  content: "\e60b";
  margin-left: -1em;
  color: rgb(54, 97, 169);
}

.icon-notifcarre .path1:before {
  content: "\e60c";
  color: rgb(0, 0, 0);
}

.icon-notifcarre .path2:before {
  content: "\e60d";
  margin-left: -1em;
  color: rgb(54, 97, 169);
}

.icon-loupe:before, .icon-search:before {
  content: "\e60e";
}

.icon-menu:before {
  content: "\e60f";
}

.icon-flechedroite:before {
  content: "\e610";
}

.icon-flechegauche:before {
  content: "\e611";
}

.icon-flechebasse:before {
  content: "\e612";
}

.icon-flechehaut:before {
  content: "\e613";
}

.icon-flechepdroite:before {
  content: "\e614";
}

.icon-flechepgauche:before {
  content: " ";
}

.icon-flachepbas:before {
  content: "\e616";
}

.icon-flechephaut:before {
  content: "\e617";
}

.icon-maison:before {
  content: "\e618";
}

.icon-livre:before {
  content: "\e619";
}

.icon-marque:before {
  content: "\e61a";
}

.icon-photo:before {
  content: "\e61b";
}

.icon-valide:before {
  content: "\e61c";
}

.icon-fermer:before {
  content: "\e61d";
}

.icon-cadi:before {
  content: "\e61e";
}

.icon-map:before {
  content: "\e61f";
}

.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  color: #ac9780;
  text-decoration: none;
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #212529;
  background-color: rgb(238.425, 238.425, 238.425);
  border-color: #ddd;
}
.pagination > li > a:focus,
.pagination > li > span:focus {
  box-shadow: none;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  border: 1px solid #ac9780;
  border-radius: 50%;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border: 1px solid #ac9780;
  border-radius: 50%;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #212529;
  border-color: #212529;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #212529;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/**
* Template Name: eStore
* Template URL: https://bootstrapmade.com/estore-bootstrap-ecommerce-template/
* Updated: Apr 26 2025 with Bootstrap v5.3.5
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "esther";
  --heading-font: "esther";
  --nav-font: "esther";
}

/* 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: #fffdff;
  /* 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: #937a58;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #212529;
  /* 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. */
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #000;
  --bs-btn-active-border-color: #000;
}

/* 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: #ac9780;
  /* 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: #ac9780;
  /* 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: #F5F2EB;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #232931;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #e4d0bc;
  --surface-color: #38424f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
  --font-heading-scale: 1.0;
}

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

.row:after,
.row:before {
  content: " ";
  display: table;
}

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

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

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

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

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

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 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: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 55px 0 86px;
  position: relative;
  overflow: hidden;
  background-image: url("/assets/img/fashionvida_banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero .content-col {
  position: relative;
  z-index: 2;
}

.hero .content-col .content {
  padding-left: 2.7rem;
}

.hero .content-col .content .promo-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero .content-col .content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero .content-col .content h1 span {
  color: var(--accent-color);
  position: relative;
}

.hero .content-col .content h1 span::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: -1;
}

.hero .content-col .content p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .content-col .content .hero-cta {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.hero .content-col .content .hero-cta .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 3.5rem;
  transition: all 0.3s ease;
}

.hero .content-col .content .hero-cta .btn.btn-shop {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.hero .content-col .content .hero-cta .btn.btn-shop i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.hero .content-col .content .hero-cta .btn.btn-shop:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.hero .content-col .content .hero-cta .btn.btn-shop:hover i {
  transform: translateX(5px);
}

.hero .content-col .content .hero-cta .btn.btn-collection {
  background-color: rgba(201, 192, 181, 0.95);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.hero .content-col .content .hero-cta .btn.btn-collection:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: var(--default-color);
}

.hero .content-col .content .hero-features {
  display: flex;
  gap: 2rem;
}

.hero .content-col .content .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.hero .image-col {
  position: relative;
}

.hero .image-col .hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  bottom: 177px;
}

.hero .image-col .hero-image .main-product {
  max-width: 100%;
  height: auto;
  z-index: 1;
}

.hero .image-col .hero-image .floating-product {
  position: absolute;
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero .image-col .hero-image .floating-product img {
  width: 3.5rem;
  height: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.5rem;
}

.hero .image-col .hero-image .floating-product .product-info h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .image-col .hero-image .floating-product .product-info .price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .image-col .hero-image .floating-product.product-1 {
  top: 20%;
  left: 0;
}

.hero .image-col .hero-image .floating-product.product-2 {
  bottom: 24px;
  right: -53px;
}

.hero .image-col .hero-image .discount-badge {
  position: absolute;
  top: 10%;
  right: 7.5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero .image-col .hero-image .discount-badge .percent {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.hero .image-col .hero-image .discount-badge .text {
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .hero {
    padding: 80px 0;
  }
  .hero .content-col .content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
  .hero .content-col .content h1 {
    font-size: 2.75rem;
  }
  .hero .content-col .content .hero-cta {
    justify-content: center;
  }
  .hero .content-col .content .hero-features {
    justify-content: center;
  }
  .hero .image-col .hero-image .floating-product.product-1 {
    top: 10%;
    left: 5%;
  }
  .hero .image-col .hero-image .floating-product.product-2 {
    bottom: 10%;
    right: 5%;
  }
  .about-main-content {
    flex-direction: column;
  }
  .about-main-content .about-grid-item {
    display: flex;
    padding: 0;
    margin: -25px 0;
  }
}
@media (max-width: 767.98px) {
  .hero {
    padding: 60px 0;
  }
  .hero .content-col .content h1 {
    font-size: 2.25rem;
  }
  .hero .content-col .content .hero-cta {
    flex-direction: column;
  }
  .hero .content-col .content .hero-cta .btn {
    width: 100%;
  }
  .hero .content-col .content .hero-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero .image-col .hero-image .floating-product {
    padding: 0.5rem;
  }
  .hero .image-col .hero-image .floating-product img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .hero .image-col .hero-image .floating-product .product-info h4 {
    font-size: 0.75rem;
  }
  .hero .image-col .hero-image .floating-product .product-info .price {
    font-size: 0.75rem;
  }
  .hero .image-col .hero-image .discount-badge {
    width: 3.5rem;
    height: 3.5rem;
  }
  .hero .image-col .hero-image .discount-badge .percent {
    font-size: 1.25rem;
  }
  .hero .image-col .hero-image .discount-badge .text {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 21px 0 0;
    position: relative;
    overflow: hidden;
    background-image: url("/assets/img/fashionvida_banner_mobile3.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .hero .content-col .content {
    margin-bottom: 0rem;
    padding-left: 0 !important;
  }
  .about-grid-inner {
    padding: 3rem 1rem 3rem 5rem !important;
  }
}
.brands-info {
  padding: 30px 0;
}

.brands-info .brand-logo-box img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.brands-info .brand-logo-box {
  border-radius: 30px;
  box-shadow: 8px 15px 20px 6px rgba(237, 228, 212, 0.32);
}

/*--------------------------------------------------------------
# Home Info Box
--------------------------------------------------------------*/
.border-20 {
  border-radius: 20px;
}

.about-grid-item {
  display: flex;
  padding: 4rem 0;
}

.about-grid-inner {
  height: auto;
  width: calc(100% + 4rem);
  min-width: calc(100% + 4rem);
  margin-top: 0;
  margin-left: -4rem;
  background-color: rgb(241, 235, 228);
  padding: 3rem 3rem 7rem;
  border-radius: 20px;
}

.about-grid-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}

.about-grid-body p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-family: esther;
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Info Cards Section
--------------------------------------------------------------*/
.info-cards {
  padding: 30px 0;
}

.info-cards .info-card {
  padding: 20px 15px;
  height: 100%;
  transition: transform 0.3s ease;
  text-align: center;
  background-color: rgba(224, 213, 198, 0.48);
  border-radius: 30px;
}

.info-cards .info-card:hover {
  transform: translateY(-5px);
}

.info-cards .info-card .icon-box img {
  height: 40px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.info-cards .info-card .icon-box {
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.info-cards .info-card h3 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
  letter-spacing: 2px;
}

.info-cards .info-card p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
  margin-bottom: 0;
  font-family: "esther";
  letter-spacing: 1.2px;
}

@media (max-width: 991px) {
  .info-cards .info-card .icon-box i {
    font-size: 2.2rem;
  }
  .info-cards .info-card p {
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  .info-cards .info-card {
    margin-bottom: 15px;
  }
}
/*--------------------------------------------------------------
# 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);
}

.category-cards .category-slider .swiper-button-prev {
  left: 0;
}

.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%;
  -o-object-fit: contain;
     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 {
    left: -15px;
  }
  .category-cards .category-slider .swiper-button-next {
    right: -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;
  }
}
@media (max-width: 575.98px) {
  .category-cards .category-slider .swiper-button-prev {
    left: -10px;
  }
  .category-cards .category-slider .swiper-button-next {
    right: -10px;
  }
  .category-cards .category-card {
    padding: 0.5rem;
  }
  .category-cards .category-card .category-image {
    height: 80px;
    margin-bottom: 0.5rem;
  }
}
/*--------------------------------------------------------------
# Best Sellers Section
--------------------------------------------------------------*/
.best-sellers .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;
}

.best-sellers .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.best-sellers .product-card:hover .default-image {
  opacity: 0;
}

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

.best-sellers .product-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background-color: #f8f9fa;
}

.best-sellers .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.5s ease;
}

.best-sellers .product-image .default-image {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.best-sellers .product-image .hover-image {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.best-sellers .product-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.best-sellers .product-tags .badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 500;
  border-radius: 4px;
  margin-right: 5px;
}

.best-sellers .product-tags .bg-accent {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.best-sellers .product-tags .bg-sale {
  background-color: #ff6b6b;
  color: var(--contrast-color);
}

.best-sellers .product-tags .bg-sold-out {
  background-color: #6c757d;
  color: var(--contrast-color);
}

.best-sellers .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;
}

.best-sellers .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;
}

.best-sellers .product-actions button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.best-sellers .product-actions button i {
  font-size: 1rem;
}

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

.best-sellers .product-info {
  padding: 1.25rem;
}

.best-sellers .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;
}

.best-sellers .product-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.best-sellers .product-price {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.best-sellers .product-price .original-price {
  font-size: 0.875rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.best-sellers .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #ffc107;
  font-size: 0.875rem;
}

.best-sellers .product-rating i {
  margin-right: 2px;
}

.best-sellers .product-rating .rating-count {
  margin-left: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.75rem;
}

.best-sellers .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;
}

.best-sellers .btn-add-to-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.best-sellers .btn-add-to-cart i {
  font-size: 1rem;
}

.best-sellers .btn-add-to-cart.btn-disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

.best-sellers .btn-add-to-cart.btn-disabled:hover {
  background-color: #e9ecef;
}

@media (max-width: 991.98px) {
  .best-sellers .product-title {
    font-size: 0.95rem;
  }
}
@media (max-width: 767.98px) {
  .best-sellers .product-card {
    max-width: 320px;
    margin: 0 auto;
  }
  .best-sellers .product-actions {
    opacity: 1;
    transform: translateX(0);
  }
}
/*--------------------------------------------------------------
# Product List Section
--------------------------------------------------------------*/
.product-list .product-filters ul {
  gap: 10px;
}

.product-list .product-filters ul li {
  padding: 8px 20px;
  font-size: 14px;
  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);
}

.product-list .product-container {
  position: relative;
  min-height: 400px;
}

.product-list .product-item {
  margin-bottom: 30px;
}

.product-list .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 .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-list .product-card:hover .product-image .main-img {
  opacity: 0;
}

.product-list .product-card:hover .product-image .hover-img {
  opacity: 1;
}

.product-list .product-card:hover .product-image .product-overlay {
  opacity: 1;
  visibility: visible;
}

.product-list .product-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

.product-list .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}

.product-list .product-image .main-img {
  opacity: 1;
  z-index: 1;
}

.product-list .product-image .hover-img {
  opacity: 0;
  z-index: 2;
}

.product-list .product-image .badge {
  position: absolute;
  top: 15px;
  left: 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 .product-image .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.product-list .product-image .product-overlay .btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 20px;
  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 .product-image .product-overlay .btn-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.product-list .product-image .product-overlay .product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-list .product-image .product-overlay .product-actions .action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

.product-list .product-info {
  padding: 20px;
}

.product-list .product-info .product-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.product-list .product-info .product-title a {
  color: var(--heading-color);
  transition: all 0.3s ease;
}

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

.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);
}

.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-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #FFB800;
}

.product-list .product-info .product-rating span {
  margin-left: 5px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-list .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 .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);
}

@media (max-width: 991.98px) {
  .product-list .product-container .product-item {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .product-list .product-filters ul {
    justify-content: center;
  }
  .product-list .product-filters ul li {
    padding: 6px 15px;
    font-size: 13px;
  }
  .product-list .product-info {
    padding: 15px;
  }
  .product-list .product-info .product-title {
    font-size: 15px;
  }
  .product-list .product-info .product-price .current-price {
    font-size: 16px;
  }
  .product-list .product-info .product-price .old-price {
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .product-list .product-container .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .product-list .product-container .product-item {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
  }
}
/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.product-details .product-images {
  position: relative;
  margin-bottom: 2rem;
}

.product-details .product-images .main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--surface-color);
}

.product-details .product-images .main-image-container .image-zoom-container {
  position: relative;
  width: 100%;
}

.product-details .product-images .main-image-container .image-zoom-container .main-image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: crosshair;
}

.product-details .product-images .drift-zoom-pane {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-details .product-images .drift-zoom-pane.drift-opening {
  animation: drift-fadeZoomIn 180ms ease-out;
}

.product-details .product-images .drift-zoom-pane.drift-closing {
  animation: drift-fadeZoomOut 210ms ease-in;
}

.product-details .product-images .drift-zoom-pane-loader {
  display: none;
}

@keyframes drift-fadeZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes drift-fadeZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}
.product-details .product-images .product-thumbnails {
  margin-top: 1rem;
}

.product-details .product-images .product-thumbnails .swiper-wrapper {
  height: auto !important;
}

.product-details .product-images .product-thumbnails .thumbnail-item {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.product-details .product-images .product-thumbnails .thumbnail-item:hover {
  opacity: 0.9;
}

.product-details .product-images .product-thumbnails .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
}

.product-details .product-images .product-thumbnails .thumbnail-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-details .product-images .product-thumbnails .swiper-button-next,
.product-details .product-images .product-thumbnails .swiper-button-prev {
  color: var(--accent-color);
  background-color: var(--surface-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-details .product-images .product-thumbnails .swiper-button-next::after,
.product-details .product-images .product-thumbnails .swiper-button-prev::after {
  font-size: 14px;
}

.product-details .product-info {
  padding: 0 0.5rem;
}

@media (min-width: 992px) {
  .product-details .product-info {
    padding: 0 1rem;
  }
}
.product-details .product-info .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-details .product-info .product-meta .product-category {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-details .product-info .product-meta .product-rating {
  display: flex;
  align-items: center;
}

.product-details .product-info .product-meta .product-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.product-details .product-info .product-meta .product-rating .rating-count {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 4px;
}

.product-details .product-info .product-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--heading-color);
}

@media (min-width: 768px) {
  .product-details .product-info .product-title {
    font-size: 2rem;
  }
}
.product-details .product-info .product-price-container {
  display: flex;
  align-items: center;
}

.product-details .product-info .product-price-container .current-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
}

.product-details .product-info .product-price-container .original-price {
  font-size: 1.125rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 0.75rem;
}

.product-details .product-info .product-price-container .discount-badge {
  background-color: #e53935;
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.75rem;
}

.product-details .product-info .product-short-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.product-details .product-info .product-availability {
  display: flex;
  align-items: center;
}

.product-details .product-info .product-availability i {
  margin-right: 0.5rem;
}

.product-details .product-info .product-availability .stock-count {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-info .product-colors .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details .product-info .product-colors .color-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.product-details .product-info .product-colors .color-options .color-option {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-details .product-info .product-colors .color-options .color-option:hover {
  transform: scale(1.1);
}

.product-details .product-info .product-colors .color-options .color-option.active {
  border-color: var(--accent-color);
}

.product-details .product-info .product-colors .color-options .color-option.active i {
  opacity: 1;
}

.product-details .product-info .product-colors .color-options .color-option i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contrast-color);
  font-size: 0.875rem;
  opacity: 0;
}

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

.product-details .product-info .product-sizes .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details .product-info .product-sizes .size-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.product-details .product-info .product-sizes .size-options .size-option {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
}

.product-details .product-info .product-sizes .size-options .size-option:hover {
  border-color: var(--accent-color);
}

.product-details .product-info .product-sizes .size-options .size-option.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

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

.product-details .product-info .product-quantity .option-title {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.product-details .product-info .product-quantity .quantity-selector {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.product-details .product-info .product-quantity .quantity-selector .quantity-btn.decrease {
  border-radius: 4px 0 0 4px;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-btn.increase {
  border-radius: 0 4px 4px 0;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-input {
  width: 60px;
  height: 36px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.product-details .product-info .product-quantity .quantity-selector .quantity-input::-webkit-inner-spin-button,
.product-details .product-info .product-quantity .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-details .product-info .product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.product-details .product-info .product-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-details .product-info .product-actions .btn i {
  margin-right: 0.5rem;
}

.product-details .product-info .product-actions .add-to-cart-btn {
  flex: 1;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-details .product-info .product-actions .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.product-details .product-info .product-actions .buy-now-btn {
  flex: 1;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.product-details .product-info .product-actions .buy-now-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.product-details .product-info .product-actions .wishlist-btn {
  width: 46px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details .product-info .product-actions .wishlist-btn i {
  margin-right: 0;
  font-size: 1.125rem;
}

.product-details .product-info .product-actions .wishlist-btn:hover {
  color: #fff;
  border-color: #e53935;
  background-color: #e53935;
}

@media (max-width: 575px) {
  .product-details .product-info .product-actions {
    flex-direction: column;
    justify-content: center;
  }
  .product-details .product-info .product-actions .wishlist-btn {
    align-self: center;
  }
}
.product-details .product-info .additional-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-info .additional-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details .product-info .additional-info .info-item i {
  color: var(--accent-color);
  font-size: 1.125rem;
  margin-right: 0.75rem;
}

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

.product-details .product-details-tabs {
  margin-top: 3rem;
}

.product-details .product-details-tabs .nav-tabs {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 1.5rem;
}

.product-details .product-details-tabs .nav-tabs .nav-item {
  margin-bottom: -1px;
}

.product-details .product-details-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

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

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

.product-details .product-details-tabs .tab-content {
  padding: 1rem 0;
}

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

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

.product-details .product-details-tabs .tab-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.product-details .product-details-tabs .tab-content ul li {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.product-details .product-details-tabs .product-specifications .specs-group {
  margin-bottom: 2rem;
}

.product-details .product-details-tabs .product-specifications .specs-group h4 {
  margin-bottom: 1rem;
}

.product-details .product-details-tabs .product-specifications .specs-table .specs-row {
  display: flex;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-details-tabs .product-specifications .specs-table .specs-row:last-child {
  border-bottom: none;
}

.product-details .product-details-tabs .product-specifications .specs-table .specs-row .specs-label {
  width: 40%;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-details-tabs .product-specifications .specs-table .specs-row .specs-value {
  width: 60%;
  padding: 0.75rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .product-details-tabs .product-reviews .reviews-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (min-width: 768px) {
  .product-details .product-details-tabs .product-reviews .reviews-summary {
    flex-direction: row;
  }
}
.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-stars {
  margin: 0.5rem 0;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 1.25rem;
  margin-right: 2px;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .overall-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown {
  flex: 2;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label {
  width: 60px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details-tabs .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%);
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress .progress-bar {
  background-color: #FFD700;
}

.product-details .product-details-tabs .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-count {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: right;
}

.product-details .product-details-tabs .product-reviews .review-form-container {
  margin-bottom: 3rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-details .product-details-tabs .product-reviews .review-form-container h4 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

.product-details .product-details-tabs .product-reviews .review-form-container h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.product-details .product-details-tabs .product-reviews .review-form-container .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.product-details .product-details-tabs .product-reviews .review-form-container .form-control, .product-details .product-details-tabs .product-reviews .review-form-container .input-group input, .input-group .product-details .product-details-tabs .product-reviews .review-form-container input {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}

.product-details .product-details-tabs .product-reviews .review-form-container .form-control:focus, .product-details .product-details-tabs .product-reviews .review-form-container .input-group input:focus, .input-group .product-details .product-details-tabs .product-reviews .review-form-container input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details .product-details-tabs .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-tabs .product-reviews .review-form-container .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating input[type=radio] {
  display: none;
}

.product-details .product-details-tabs .product-reviews .review-form-container .star-rating label {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0 0.25rem;
}

.product-details .product-details-tabs .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-tabs .product-reviews .review-form-container .star-rating input[type=radio]:checked ~ label i,
.product-details .product-details-tabs .product-reviews .review-form-container .star-rating label:hover i,
.product-details .product-details-tabs .product-reviews .review-form-container .star-rating label:hover ~ label i {
  color: #FFD700;
}

.product-details .product-details-tabs .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: 6px;
  transition: all 0.3s ease;
}

.product-details .product-details-tabs .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%);
}

.product-details .product-details-tabs .product-reviews .reviews-list h4 {
  margin-bottom: 1.5rem;
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item {
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--surface-color);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}

.product-details .product-details-tabs .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0.75rem;
}

.product-details .product-details-tabs .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-tabs .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-tabs .product-reviews .reviews-list .review-item .review-header .review-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.product-details .product-details-tabs .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-tabs .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-tabs .product-reviews .reviews-list .load-more-btn {
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  border-color: var(--accent-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.product-details .product-details-tabs .product-reviews .reviews-list .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767.98px) {
  .category-header .filter-container {
    padding: 1rem;
  }
  .category-header .filter-container .active-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-header .filter-container .active-filters .filter-tags {
    width: 100%;
  }
  .category-header .filter-container .active-filters .clear-all-btn {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
/*--------------------------------------------------------------
# Category Product List Section
--------------------------------------------------------------*/
.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%;
  -o-object-fit: cover;
     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;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

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

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

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

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

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

@media (max-width: 575px) {
  .category-pagination ul {
    gap: 4px;
  }
  .category-pagination li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Cart Section
--------------------------------------------------------------*/
.cart .cart-items {
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cart .cart-items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 0.25rem 0.25rem 0 0;
}

.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: var(--heading-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cart .cart-items .cart-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.cart .cart-items .cart-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.cart .cart-items .cart-item .product-info .product-image {
  width: 5.5rem;
  height: 5.5rem;
  min-width: 5.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-right: 1.25rem;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: transform 0.3s ease;
}

.cart .cart-items .cart-item .product-info .product-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}

.cart .cart-items .cart-item .product-info .product-image:hover img {
  transform: scale(1.05);
}

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

.cart .cart-items .cart-item .product-info .product-details .product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.cart .cart-items .cart-item .product-info .product-details .product-title:hover {
  color: var(--accent-color);
}

.cart .cart-items .cart-item .product-info .product-details .product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  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-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 0.375rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.cart .cart-items .cart-item .product-info .product-details .remove-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #dc3545;
  transition: width 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:hover::after {
  width: 100%;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.cart .cart-items .cart-item .product-info .product-details .remove-item:hover i {
  transform: translateX(-2px);
}

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

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

.cart .cart-items .cart-item .quantity-selector {
  display: inline-flex;
  align-items: center;
  border-radius: 2rem;
  overflow: hidden;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

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

.cart .cart-items .cart-item .quantity-selector .quantity-btn {
  background: none;
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: -1;
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:hover {
  color: var(--accent-color);
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:hover::before {
  transform: scale(1);
}

.cart .cart-items .cart-item .quantity-selector .quantity-btn:active {
  transform: scale(0.95);
}

.cart .cart-items .cart-item .quantity-selector .quantity-input {
  width: 2.5rem;
  text-align: center;
  border: none;
  font-size: 0.9375rem;
  color: var(--heading-color);
  font-weight: 600;
  padding: 0.25rem 0;
  background-color: transparent;
}

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

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

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

.cart .cart-items .cart-item .item-total span {
  position: relative;
  display: inline-block;
}

.cart .cart-items .cart-item .item-total span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 1px;
}

@media (max-width: 767.98px) {
  .cart .cart-items .cart-item {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
}
.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 {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.03);
}

.cart .cart-items .cart-actions .coupon-form .input-group .form-control, .cart .cart-items .cart-actions .coupon-form .input-group input {
  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%);
  padding-left: 1.25rem;
  border-radius: 2rem 0 0 2rem;
}

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

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

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

.cart .cart-items .cart-actions .coupon-form .input-group .btn {
  border-radius: 0 2rem 2rem 0;
  font-size: 0.875rem;
  padding-right: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.cart .cart-items .cart-actions .btn i {
  transition: transform 0.3s ease;
}

.cart .cart-items .cart-actions .btn:hover i {
  transform: rotate(15deg);
}

.cart .cart-summary {
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: sticky;
  top: 6.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart .cart-summary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 50%), var(--accent-color));
  border-radius: 0.25rem 0.25rem 0 0;
}

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

.cart .cart-summary .summary-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 3rem;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 1px;
}

.cart .cart-summary .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  position: relative;
}

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

.cart .cart-summary .summary-item.discount .summary-value {
  background-color: rgba(40, 167, 69, 0.1);
}

.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);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  transition: transform 0.3s ease;
}

.cart .cart-summary .summary-item .summary-value:hover {
  transform: translateX(-3px);
}

.cart .cart-summary .summary-item .shipping-options {
  width: 100%;
  padding: 0 1rem 1rem 1rem;
}

.cart .cart-summary .summary-item .shipping-options .form-check {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
}

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

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  margin-left: -2rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  transition: all 0.3s ease;
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-label {
  font-size: 0.875rem;
  color: var(--default-color);
  transition: color 0.3s ease;
}

.cart .cart-summary .summary-item .shipping-options .form-check .form-check-label:hover {
  color: var(--accent-color);
}

.cart .cart-summary .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.75rem 0;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--background-color), transparent 95%));
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

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

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

.cart .cart-summary .summary-total .summary-value::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 1px;
}

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

.cart .cart-summary .checkout-button .btn {
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cart .cart-summary .checkout-button .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  z-index: -1;
  transition: transform 0.6s ease;
  transform: translateX(-100%);
}

.cart .cart-summary .checkout-button .btn:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.cart .cart-summary .checkout-button .btn:hover::before {
  transform: translateX(0);
}

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

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

.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;
  border-radius: 2rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

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

.cart .cart-summary .continue-shopping .btn-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  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: 1.25rem;
}

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

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

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

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

.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%);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.cart .btn-accent:active {
  transform: translateY(0);
}

.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);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.cart .btn-outline-accent:active {
  transform: translateY(0);
}

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

.cart .btn-outline-danger:hover,
.cart .btn-outline-danger:focus,
.cart .btn-outline-danger:active {
  color: var(--contrast-color);
  background-color: #dc3545;
  border-color: #dc3545;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.cart .btn-outline-danger:active {
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .cart .cart-summary {
    position: static;
    margin-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .cart .cart-items,
  .cart .cart-summary {
    padding: 1.5rem;
  }
}
/*--------------------------------------------------------------
# Checkout Section
--------------------------------------------------------------*/
.checkout {
  padding: 60px 0;
}

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

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

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

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

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

.checkout .checkout-section .section-header .section-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

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

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

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

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

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

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

.checkout .checkout-section .section-content .form-group .form-control:hover, .checkout .checkout-section .section-content .form-group .input-group input:hover, .input-group .checkout .checkout-section .section-content .form-group input:hover,
.checkout .checkout-section .section-content .form-group .form-select:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.checkout .checkout-section .section-content .form-group .form-control:focus, .checkout .checkout-section .section-content .form-group .input-group input:focus, .input-group .checkout .checkout-section .section-content .form-group input:focus,
.checkout .checkout-section .section-content .form-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.checkout .checkout-section .section-content .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-left: -1.8rem;
  margin-top: 0.2rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  background-color: var(--surface-color);
  cursor: pointer;
}

.checkout .checkout-section .section-content .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkout .checkout-section .section-content .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 575.98px) {
  .checkout .checkout-section .section-content .payment-options .payment-option {
    min-width: 100%;
  }
  .checkout .checkout-section .section-content .payment-options .payment-option label {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }
  .checkout .checkout-section .section-content .payment-options .payment-option label .payment-icon {
    margin-bottom: 0;
  }
}
.checkout .checkout-section .section-content .payment-details {
  padding-top: 8px;
}

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

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

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

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

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

.checkout .checkout-section .section-content .place-order-container .place-order-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(54, 144, 231, 0.25);
}

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

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

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

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

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

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

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

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

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

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

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     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: 4px;
  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: 8px;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .quantity {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.checkout .order-summary .order-summary-content .order-items .order-item .order-item-details .order-item-price .price {
  color: var(--heading-color);
}

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

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control, .checkout .order-summary .order-summary-content .promo-code .input-group input {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-right: none;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control:focus, .checkout .order-summary .order-summary-content .promo-code .input-group input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
  outline: none;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .form-control::-moz-placeholder, .checkout .order-summary .order-summary-content .promo-code .input-group input::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 0.9rem;
}

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

.checkout .order-summary .order-summary-content .promo-code .input-group .btn {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: none;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 0 16px;
  font-weight: 500;
  color: var(--accent-color);
  background-color: var(--surface-color);
  transition: all 0.25s ease;
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.checkout .order-summary .order-summary-content .promo-code .input-group .btn:focus {
  box-shadow: none;
}

.checkout .order-summary .order-summary-content .order-totals {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.checkout .order-summary .order-summary-content .order-totals > div {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.checkout .order-summary .order-summary-content .order-totals > div:last-child {
  margin-bottom: 0;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.checkout .order-summary .order-summary-content .secure-checkout {
  text-align: center;
}

.checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.checkout .order-summary .order-summary-content .secure-checkout .secure-checkout-header i {
  color: #28a745;
  font-size: 1.1rem;
}

.checkout .order-summary .order-summary-content .secure-checkout .payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.checkout .order-summary .order-summary-content .secure-checkout .payment-icons i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991.98px) {
  .checkout .order-summary {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}
.checkout .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkout .modal-content .modal-header {
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout .modal-content .modal-header .modal-title {
  font-weight: 600;
}

.checkout .modal-content .modal-footer {
  border-top-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767.98px) {
  .checkout .checkout-section .section-header h3 {
    font-size: 1.1rem;
  }
  .checkout .order-summary .order-summary-header h3 {
    font-size: 1.1rem;
  }
}
.checkout .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# Order Confirmation Section
--------------------------------------------------------------*/
.order-confirmation {
  max-width: 900px;
  margin: 0 auto;
}

.order-confirmation .confirmation-header {
  margin-bottom: 2.5rem;
}

.order-confirmation .confirmation-header .success-icon i {
  font-size: 4rem;
  color: #4BB543;
}

.order-confirmation .confirmation-header h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.order-confirmation .confirmation-header .lead {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.order-confirmation .confirmation-header .order-number {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.order-confirmation .confirmation-header .order-number strong {
  color: var(--default-color);
  letter-spacing: 0.5px;
}

.order-confirmation .order-details {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .order-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.order-confirmation .order-details address {
  font-style: normal;
  line-height: 1.6;
}

.order-confirmation .order-details .shipping-method {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.9rem;
}

.order-confirmation .order-details .payment-info .payment-method {
  display: flex;
  align-items: center;
}

.order-confirmation .order-details .payment-info .billing-address {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .order-confirmation .order-details {
    padding: 1.5rem;
  }
}
.order-confirmation .order-summary {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .order-summary h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.order-confirmation .order-summary .order-items .item-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.order-confirmation .order-summary .order-items .item-row:last-child {
  border-bottom: none;
}

.order-confirmation .order-summary .order-items .item-row .item-image {
  flex: 0 0 80px;
  margin-right: 1rem;
}

.order-confirmation .order-summary .order-items .item-row .item-image img {
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.order-confirmation .order-summary .order-items .item-row .item-details {
  flex: 1;
}

.order-confirmation .order-summary .order-items .item-row .item-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.order-confirmation .order-summary .order-items .item-row .item-details p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.order-confirmation .order-summary .order-items .item-row .item-details .quantity-price {
  font-size: 0.95rem;
}

.order-confirmation .order-summary .order-items .item-row .item-details .quantity-price .price {
  font-weight: 600;
}

.order-confirmation .order-summary .order-totals {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 1rem;
  font-size: 0.95rem;
}

.order-confirmation .order-summary .order-totals .total-row {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.order-confirmation .next-steps {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .next-steps h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.order-confirmation .next-steps p {
  margin-bottom: 1.5rem;
}

.order-confirmation .next-steps .tracking-info {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.order-confirmation .next-steps .tracking-info i {
  color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn {
  padding: 0.65rem 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.order-confirmation .next-steps .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.order-confirmation .next-steps .action-buttons .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn.btn-outline-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.order-confirmation .help-contact {
  font-size: 0.95rem;
}

.order-confirmation .help-contact a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.order-confirmation .help-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .order-confirmation .order-details,
  .order-confirmation .order-summary,
  .order-confirmation .next-steps {
    padding: 1.25rem;
  }
  .order-confirmation .order-items .item-row .item-image {
    flex: 0 0 70px;
  }
  .order-confirmation .order-items .item-row .item-image img {
    width: 70px;
    height: 70px;
  }
  .order-confirmation .order-items .item-row .item-details h5 {
    font-size: 1rem;
  }
}
/*--------------------------------------------------------------
# Search Results Header Section
--------------------------------------------------------------*/
.search-results-header .results-count h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.search-results-header .results-count p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.search-results-header .results-count .results-number,
.search-results-header .results-count .search-term {
  font-weight: 600;
  color: var(--accent-color);
}

.search-results-header .search-form {
  position: relative;
}

.search-results-header .search-form .input-group {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  overflow: hidden;
}

.search-results-header .search-form .form-control, .search-results-header .search-form .input-group input, .input-group .search-results-header .search-form 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: 12px 20px;
  border-radius: 50px 0 0 50px;
  border-right: none;
  height: auto;
}

.search-results-header .search-form .form-control:focus, .search-results-header .search-form .input-group input:focus, .input-group .search-results-header .search-form input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.search-results-header .search-form .form-control::-moz-placeholder, .search-results-header .search-form .input-group input::-moz-placeholder, .input-group .search-results-header .search-form input::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.search-results-header .search-form .form-control::placeholder, .search-results-header .search-form .input-group input::placeholder, .input-group .search-results-header .search-form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.search-results-header .search-form .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0 25px;
  border-radius: 0 50px 50px 0;
  transition: all 0.3s ease;
}

.search-results-header .search-form .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.search-results-header .search-filters .filter-label {
  font-weight: 600;
  margin-right: 10px;
  color: var(--heading-color);
}

.search-results-header .search-filters .tags-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-results-header .search-filters .filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .filter-tag i {
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .filter-tag:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.search-results-header .search-filters .filter-tag:hover i {
  transform: scale(1.1);
}

.search-results-header .search-filters .sort-options label {
  color: var(--heading-color);
  font-weight: 500;
}

.search-results-header .search-filters .sort-options .form-select {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-results-header .search-filters .sort-options .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .search-results-header .filter-tags {
    margin-bottom: 15px;
  }
  .search-results-header .sort-options {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .search-results-header .results-count h2 {
    font-size: 1.5rem;
  }
  .search-results-header .results-count p {
    font-size: 1rem;
  }
  .search-results-header .filter-label {
    display: block;
    margin-bottom: 8px;
  }
  .search-results-header .tags-wrapper {
    margin-top: 5px;
  }
}
/*--------------------------------------------------------------
# Search Product List Section
--------------------------------------------------------------*/
.search-product-list .product-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.search-product-list .product-card:hover {
  transform: translateY(-4px);
}

.search-product-list .product-card:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.search-product-list .product-card:hover .hover-image {
  transform: scale(1);
  opacity: 1;
}

.search-product-list .product-card:hover .main-image {
  transform: scale(1.1);
  opacity: 0;
}

.search-product-list .product-image {
  position: relative;
  padding-top: 125%;
  background: color-mix(in srgb, var(--surface-color), transparent 97%);
  overflow: hidden;
}

.search-product-list .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     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%;
  -o-object-fit: cover;
     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-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-nav .nav-link span {
  flex: 1;
}

.account .profile-menu .menu-nav .nav-link .badge {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex: 0;
}

.account .profile-menu .menu-nav .nav-link .badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account .profile-menu .menu-nav .nav-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-nav .nav-link:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-nav .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
}

.account .profile-menu .menu-nav .nav-link.active i {
  color: var(--contrast-color);
}

.account .profile-menu .menu-nav .nav-link.active .badge {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.account .profile-menu .menu-footer a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--default-color);
  border-radius: 12px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a i {
  font-size: 20px;
  margin-right: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.account .profile-menu .menu-footer a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a:hover i {
  color: var(--accent-color);
}

.account .profile-menu .menu-footer a.logout-link {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link i {
  color: #ef4444;
}

.account .profile-menu .menu-footer a.logout-link:hover {
  background-color: rgba(239, 68, 68, 0.08);
}

.account .content-area {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 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;
}

.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;
  -o-object-fit: cover;
     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;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.account .content-area .orders-grid .order-card .order-content .product-grid .more-items {
  min-width: 64px;
  height: 64px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row:last-child {
  margin-bottom: 0;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status {
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.processing {
  background-color: #fff7ed;
  color: #f97316;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.shipped {
  background-color: #ecfeff;
  color: #06b6d4;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.delivered {
  background-color: #f0fdf4;
  color: #22c55e;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .status.cancelled {
  background-color: #fef2f2;
  color: #ef4444;
}

.account .content-area .orders-grid .order-card .order-content .order-info .info-row .price {
  font-weight: 600;
  color: var(--heading-color);
}

.account .content-area .orders-grid .order-card .order-footer {
  display: flex;
  gap: 12px;
}

.account .content-area .orders-grid .order-card .order-footer button {
  flex: 1;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-track {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-track:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .content-area .orders-grid .order-card .order-footer button.btn-details {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-details:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .content-area .orders-grid .order-card .order-footer button.btn-review {
  background-color: #f0fdf4;
  color: #22c55e;
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-review:hover {
  background-color: #dcfce7;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-reorder {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .content-area .orders-grid .order-card .order-footer button.btn-reorder:hover {
  background-color: #fee2e2;
}

.account .content-area .pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.account .content-area .pagination-wrapper button {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
  background-color: transparent;
  color: var(--default-color);
}

.account .content-area .pagination-wrapper button:hover:not(:disabled) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .content-area .pagination-wrapper button.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account .content-area .pagination-wrapper button:disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  cursor: not-allowed;
}

.account .content-area .pagination-wrapper button i {
  font-size: 18px;
}

.account .content-area .pagination-wrapper .page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .content-area .pagination-wrapper .page-numbers span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991.98px) {
  .account .profile-menu {
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .account .content-area {
    padding: 20px;
  }
  .account .content-area .section-header .header-actions {
    width: 100%;
  }
  .account .content-area .section-header .header-actions .search-box {
    flex: 1;
  }
  .account .content-area .section-header .header-actions .search-box input {
    width: 100%;
  }
}
.account .wishlist-grid {
  display: grid;
  grid-template-columns: repeat(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%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.account .wishlist-grid .wishlist-card .wishlist-image .btn-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1;
}

.account .wishlist-grid .wishlist-card .wishlist-image .btn-remove:hover {
  background-color: #ef4444;
  color: #ffffff;
}

.account .wishlist-grid .wishlist-card .wishlist-image .sale-badge,
.account .wishlist-grid .wishlist-card .wishlist-image .out-of-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.account .wishlist-grid .wishlist-card .wishlist-image .sale-badge {
  background-color: #fef2f2;
  color: #ef4444;
}

.account .wishlist-grid .wishlist-card .wishlist-image .out-of-stock-badge {
  background-color: #f3f4f6;
  color: #6b7280;
}

.account .wishlist-grid .wishlist-card .wishlist-content {
  padding: 20px;
}

.account .wishlist-grid .wishlist-card .wishlist-content h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta {
  margin-bottom: 16px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .rating i {
  color: #f59e0b;
  font-size: 14px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .rating span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .price .current {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.account .wishlist-grid .wishlist-card .wishlist-content .product-meta .price .original {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart,
.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-add-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .wishlist-grid .wishlist-card .wishlist-content .btn-notify:hover {
  background-color: #e5e7eb;
}

.account .payment-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.account .payment-cards-grid .payment-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .payment-cards-grid .payment-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .payment-cards-grid .payment-card.default {
  border-color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account .payment-cards-grid .payment-card .card-header i {
  font-size: 24px;
  color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header .card-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account .payment-cards-grid .payment-card .card-header .card-badges span {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.account .payment-cards-grid .payment-card .card-header .card-badges .default-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .payment-cards-grid .payment-card .card-header .card-badges .card-type {
  background-color: #f3f4f6;
  color: #6b7280;
}

.account .payment-cards-grid .payment-card .card-body {
  margin-bottom: 16px;
}

.account .payment-cards-grid .payment-card .card-body .card-number {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.account .payment-cards-grid .payment-card .card-body .card-info {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .payment-cards-grid .payment-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account .payment-cards-grid .payment-card .card-actions button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.account .payment-cards-grid .payment-card .card-actions button i {
  font-size: 14px;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-remove {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-remove:hover {
  background-color: #fee2e2;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-make-default {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account .payment-cards-grid .payment-card .card-actions button.btn-make-default:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .reviews-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.account .reviews-grid .review-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .reviews-grid .review-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .reviews-grid .review-card .review-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.account .reviews-grid .review-card .review-header .product-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.account .reviews-grid .review-card .review-header .review-meta {
  flex: 1;
}

.account .reviews-grid .review-card .review-header .review-meta h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.account .reviews-grid .review-card .review-header .review-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.account .reviews-grid .review-card .review-header .review-meta .rating i {
  color: #f59e0b;
  font-size: 14px;
}

.account .reviews-grid .review-card .review-header .review-meta .rating span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .reviews-grid .review-card .review-header .review-meta .review-date {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.account .reviews-grid .review-card .review-content {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account .reviews-grid .review-card .review-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.account .reviews-grid .review-card .review-footer {
  display: flex;
  gap: 12px;
}

.account .reviews-grid .review-card .review-footer button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .reviews-grid .review-card .review-footer button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .reviews-grid .review-card .review-footer button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .reviews-grid .review-card .review-footer button.btn-delete {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .reviews-grid .review-card .review-footer button.btn-delete:hover {
  background-color: #fee2e2;
}

.account .addresses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.account .addresses-grid .address-card {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.account .addresses-grid .address-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.account .addresses-grid .address-card.default {
  border-color: var(--accent-color);
}

.account .addresses-grid .address-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.account .addresses-grid .address-card .card-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.account .addresses-grid .address-card .card-header .default-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.account .addresses-grid .address-card .card-body {
  margin-bottom: 16px;
}

.account .addresses-grid .address-card .card-body .address-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
}

.account .addresses-grid .address-card .card-body .contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 4px;
}

.account .addresses-grid .address-card .card-body .contact-info div:last-child {
  margin-bottom: 0;
}

.account .addresses-grid .address-card .card-body .contact-info div i {
  font-size: 14px;
}

.account .addresses-grid .address-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account .addresses-grid .address-card .card-actions button {
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.account .addresses-grid .address-card .card-actions button i {
  font-size: 14px;
}

.account .addresses-grid .address-card .card-actions button.btn-edit {
  background-color: #f3f4f6;
  color: #6b7280;
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-edit:hover {
  background-color: #e5e7eb;
}

.account .addresses-grid .address-card .card-actions button.btn-remove {
  background-color: #fef2f2;
  color: #ef4444;
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-remove:hover {
  background-color: #fee2e2;
}

.account .addresses-grid .address-card .card-actions button.btn-make-default {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border: none;
}

.account .addresses-grid .address-card .card-actions button.btn-make-default:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.account .settings-content .settings-section {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.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, .account .settings-content .settings-form .input-group input, .input-group .account .settings-content .settings-form input {
  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, .account .settings-content .settings-form .input-group input:focus, .input-group .account .settings-content .settings-form input: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) {
  .account .orders-grid .order-card .order-header {
    flex-direction: column;
    gap: 8px;
  }
  .account .section-header .header-actions {
    width: 100%;
    justify-content: stretch;
  }
  .account .section-header .header-actions .search-box,
  .account .section-header .header-actions .dropdown,
  .account .section-header .header-actions button {
    width: 100%;
  }
  .account .payment-cards-grid,
  .account .addresses-grid {
    grid-template-columns: 1fr;
  }
  .account .review-card .review-header {
    flex-direction: column;
    text-align: center;
  }
  .account .review-card .review-header .product-image {
    margin: 0 auto;
  }
  .account .review-card .review-header .rating {
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# Login Register Section
--------------------------------------------------------------*/
.login-register .login-register-wraper {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.login-register .nav-tabs {
  border: none;
  margin-bottom: 2rem;
  gap: 0.75rem;
}

.login-register .nav-tabs .nav-item .nav-link {
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-register .nav-tabs .nav-item .nav-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.login-register .nav-tabs .nav-item .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.login-register .nav-tabs .nav-item .nav-link i {
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.login-register .form-label {
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.login-register .form-control, .login-register .input-group input, .input-group .login-register input {
  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-register .form-control:focus, .login-register .input-group input:focus, .input-group .login-register input: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-register .form-control:hover, .login-register .input-group input:hover, .input-group .login-register input:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  background-color: var(--surface-color);
}

.login-register .form-check {
  margin-bottom: 1rem;
}

.login-register .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-register .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.login-register .form-check .form-check-input:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: var(--accent-color);
}

.login-register .form-check .form-check-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  cursor: pointer;
}

.login-register .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.login-register .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-register .form-check .form-check-label a:hover:after {
  transform: scaleX(1);
}

.login-register .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-register .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.login-register .btn-primary:active {
  transform: translateY(0);
}

.login-register .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-register .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-register .forgot-password:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.login-register .forgot-password:hover:after {
  transform: scaleX(1);
}

@media (max-width: 576px) {
  .login-register {
    padding: 2rem;
    border-radius: 16px;
  }
  .login-register .nav-tabs {
    gap: 0.5rem;
  }
  .login-register .nav-tabs .nav-item .nav-link {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
  .login-register .form-control, .login-register .input-group input, .input-group .login-register input {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  margin-bottom: 1rem;
}

.about-2 .section-badge i {
  font-size: 1rem;
}

.about-2 .about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.about-2 .about-description,
.about-2 .section-text {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  line-height: 1.6;
}

.about-2 .features-boxes .feature-box {
  height: 100%;
  position: relative;
}

.about-2 .features-boxes .feature-box .icon-box {
  width: 60px;
  height: 60px;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.about-2 .features-boxes .feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-2 .features-boxes .feature-box h3 a {
  color: var(--heading-color);
}

.about-2 .features-boxes .feature-box p {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-2 .features-boxes .feature-box:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-2 .features-boxes .feature-box:hover h3 a {
  color: var(--accent-color);
}

.about-2 .video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-2 .video-box img {
  width: 100%;
  border-radius: 20px;
}

.about-2 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .avatars {
  position: relative;
}

.stats .avatars img {
  width: 60px;
  height: 60px;
  border: 3px solid var(--accent-color);
  margin-right: -15px;
  transition: transform 0.3s ease;
}

.stats .avatars img:hover {
  transform: translateY(-5px);
  z-index: 2;
}

.stats .counters h2 {
  color: var(--heading-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats .counters h2 span {
  display: inline-block;
}

.stats .counters p {
  color: var(--default-color);
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .stats .row {
    text-align: center;
  }
  .stats .avatars {
    justify-content: center;
    margin-bottom: 40px;
  }
  .stats .counters h2 {
    font-size: 36px;
  }
  .stats .counters p {
    font-size: 16px;
  }
  .stats .counters .col-md-4 {
    margin-bottom: 30px;
  }
  .stats .counters .col-md-4:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  .stats {
    padding: 60px 0;
  }
  .stats .avatars {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stats .avatars img {
    margin: 0 -8px;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }
  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}
@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }
  .testimonials .testimonial-content {
    padding: 1.5rem;
  }
  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }
  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }
  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }
  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }
  .testimonials .client-details h3 {
    font-size: 1rem;
  }
  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}
/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact-2 .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact-2 .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact-2 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-2 .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact-2 .php-email-form {
    padding: 20px;
  }
}
.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: var(--surface-color);
  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]::-moz-placeholder, .contact-2 .php-email-form input[type=email]::-moz-placeholder, .contact-2 .php-email-form textarea::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.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: 50px;
}

.contact-2 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Support Section
--------------------------------------------------------------*/
.support .support-header {
  text-align: center;
  margin-bottom: 60px;
}

.support .support-header .header-content {
  max-width: 700px;
  margin: 0 auto;
}

.support .support-header .header-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.support .support-header .header-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
  border-radius: 2px;
}

.support .support-header .header-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

.support .quick-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .support .quick-support {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .support .quick-support {
    grid-template-columns: 1fr;
  }
}
.support .quick-support .action-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.support .quick-support .action-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  opacity: 0;
  transition: opacity 0.3s;
}

.support .quick-support .action-item:hover::before {
  opacity: 1;
}

.support .quick-support .action-item .action-content {
  background-color: var(--surface-color);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%;
  transition: transform 0.3s;
}

.support .quick-support .action-item .action-content:hover {
  transform: translateY(-5px);
}

.support .quick-support .action-item .action-content i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.support .quick-support .action-item .action-content h4 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.support .quick-support .action-item .action-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.support .quick-support .action-item .action-content .action-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.support .quick-support .action-item .action-content .action-button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.support .help-categories {
  margin-bottom: 70px;
}

.support .help-categories h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.support .help-categories .category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .support .help-categories .category-cards {
    grid-template-columns: 1fr;
  }
}
.support .help-categories .category-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.3s;
}

.support .help-categories .category-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support .help-categories .category-card:hover .arrow {
  transform: translateX(5px);
  opacity: 1;
}

.support .help-categories .category-card .icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support .help-categories .category-card .icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.support .help-categories .category-card h5 {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.support .help-categories .category-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support .help-categories .category-card ul li {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.support .help-categories .category-card ul li:last-child {
  margin-bottom: 0;
}

.support .help-categories .category-card .arrow {
  color: var(--accent-color);
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s;
}

.support .self-help .content-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.support .self-help .content-box .subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.support .self-help .content-box .resource-links {
  display: grid;
  gap: 20px;
}

.support .self-help .content-box .resource-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.support .self-help .content-box .resource-link:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.support .self-help .content-box .resource-link:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.support .self-help .content-box .resource-link i {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: all 0.3s;
}

.support .self-help .content-box .resource-link .link-content h6 {
  margin: 0 0 5px;
  color: var(--heading-color);
  font-size: 1.1rem;
}

.support .self-help .content-box .resource-link .link-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.support .self-help .faq-section {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

@media (max-width: 991px) {
  .support .self-help .faq-section {
    margin-top: 40px;
  }
}
.support .self-help .faq-section h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.support .self-help .faq-section .faq-list .faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 15px;
}

.support .self-help .faq-section .faq-list .faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.support .self-help .faq-section .faq-list .faq-item h3 {
  margin: 0;
  padding: 15px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--heading-color);
  transition: all 0.3s;
}

.support .self-help .faq-section .faq-list .faq-item h3 i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.support .self-help .faq-section .faq-list .faq-item .faq-answer {
  display: none;
  padding: 0 0 15px;
}

.support .self-help .faq-section .faq-list .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.support .self-help .faq-section .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.support .self-help .faq-section .faq-list .faq-item.faq-active h3 i {
  transform: rotate(45deg);
}

.support .self-help .faq-section .faq-list .faq-item.faq-active .faq-answer {
  display: block;
}

@media (max-width: 767px) {
  .support .support-header .header-content h2 {
    font-size: 2rem;
  }
  .support .category-card {
    grid-template-columns: auto 1fr !important;
  }
  .support .category-card .arrow {
    display: none;
  }
  .support .self-help .resource-link {
    padding: 15px;
  }
  .support .self-help .resource-link i {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  .support .self-help .faq-section {
    padding: 30px 20px;
  }
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

.faq .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.faq .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 24px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }
  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}
/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
  padding-bottom: 0;
}

.blog-hero .post-item {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-hero .post-item:hover .post-img img {
  transform: scale(1.1);
}

.blog-hero .post-item:hover .post-title a {
  color: var(--accent-color);
}

.blog-hero .post-item .post-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-hero .post-item .post-img img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-hero .post-item .post-img .category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 15px;
  font-size: 14px;
  color: var(--contrast-color);
  border-radius: 4px;
  z-index: 1;
}

.blog-hero .post-item .post-img .category.entertainment {
  background-color: #e74c3c;
}

.blog-hero .post-item .post-img .category.business {
  background-color: #3498db;
}

.blog-hero .post-item .post-img .category.technology {
  background-color: #2ecc71;
}

.blog-hero .post-item .post-img .category.lifestyle {
  background-color: #9b59b6;
}

.blog-hero .post-item .post-content .post-title {
  margin: 0 0 12px;
  font-family: var(--heading-font);
}

.blog-hero .post-item .post-content .post-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.blog-hero .post-item .post-content .post-title a:hover {
  color: var(--accent-color);
}

.blog-hero .post-item .post-content .post-meta {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-hero .post-item .post-content .post-meta .dot {
  margin: 0 8px;
}

.blog-hero .main-post {
  margin-bottom: 0;
}

.blog-hero .main-post .post-img {
  margin-bottom: 20px;
}

.blog-hero .main-post .post-title {
  font-size: 28px;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .blog-hero .main-post .post-title {
    font-size: 24px;
  }
}
.blog-hero .side-posts .side-post {
  margin-bottom: 30px;
}

.blog-hero .side-posts .side-post:last-child {
  margin-bottom: 0;
}

.blog-hero .side-posts .side-post .post-title {
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .blog-hero .side-posts {
    margin-top: 0;
  }
}
/*--------------------------------------------------------------
# Article section
--------------------------------------------------------------*/
.article-section-title {
  text-align: center;
  padding-bottom: 14px;
  text-decoration: underline;
  font-weight: 700;
  letter-spacing: 2px;
}

.article-link {
  text-decoration: none;
}

.article-link a {
  text-decoration: none;
  color: inherit;
}

.article-title {
  padding-top: 11px;
}

.article-link:hover .article-title {
  text-decoration: underline;
}

.article-link .article-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/580;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 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 {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .post-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.blog-details .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .post-img {
    height: 300px;
  }
}
.blog-details .article-content {
  padding: 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content {
    padding: 1.5rem;
  }
}
.blog-details .meta-categories {
  margin-bottom: 1rem;
}

.blog-details .meta-categories .category,
.blog-details .meta-categories .reading-time {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.blog-details .meta-categories .category i,
.blog-details .meta-categories .reading-time i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-details .title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 1rem 0 1.5rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .blog-details .title {
    font-size: 2rem;
  }
}
.blog-details .meta-top {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .meta-top ul li {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-top ul li i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.blog-details .meta-top ul li .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.blog-details .meta-top ul li a {
  color: var(--heading-color);
}

.blog-details .meta-top ul li a:hover {
  color: var(--accent-color);
}

.blog-details .content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-details .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--heading-color);
}

.blog-details .content p {
  margin-bottom: 1.5rem;
}

.blog-details .content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.blog-details .content ul li {
  margin-bottom: 0.5rem;
}

.blog-details .content .content-image {
  margin: 2rem 0;
}

.blog-details .content .content-image img {
  width: 100%;
  border-radius: 8px;
}

.blog-details .content .content-image figcaption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .content .content-image-split {
  margin: 2rem 0;
}

.blog-details .content .content-image-split img {
  border-radius: 8px;
}

.blog-details .content blockquote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.blog-details .content blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
}

.blog-details .content blockquote cite {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-style: normal;
  display: block;
}

.blog-details .content blockquote cite:before {
  content: "— ";
}

.blog-details .meta-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-details .meta-bottom .article-tags {
  display: flex;
  align-items: center;
}

.blog-details .meta-bottom .article-tags i {
  margin-right: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-bottom .article-tags .tags {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .meta-bottom .article-tags .tags li a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.blog-details .meta-bottom .article-tags .tags li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .meta-bottom .article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .meta-bottom .article-share span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-bottom .article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .meta-bottom .article-share a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .meta-bottom .article-share a i {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding-bottom: 0;
}

.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}
.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}
.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}
.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  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: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }
  .blog-comments .comments-header .title {
    font-size: 24px;
  }
  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }
  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }
  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }
  .blog-comments .comment-content {
    padding: 20px;
  }
  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }
  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }
  .blog-comments .comment-body p {
    font-size: 14px;
  }
  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}
/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.blog-comment-form form {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9375rem;
}

.blog-comment-form .input-group {
  margin-bottom: 1rem;
  position: relative;
}

.blog-comment-form .input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.blog-comment-form .input-group input::-moz-placeholder, .blog-comment-form .input-group textarea::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:-moz-placeholder), .blog-comment-form .input-group textarea:invalid:not(:-moz-placeholder) {
  border-color: #dc3545;
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.blog-comment-form .input-group input:invalid:not(:-moz-placeholder) + .error-text, .blog-comment-form .input-group textarea:invalid:not(:-moz-placeholder) + .error-text {
  opacity: 1;
  transform: translateY(0);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown) + .error-text,
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) + .error-text {
  opacity: 1;
  transform: translateY(0);
}

.blog-comment-form .input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .input-group .error-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #dc3545;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.blog-comment-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comment-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.blog-comment-form button[type=submit]:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 1.5rem;
  }
  .blog-comment-form .form-header h3 {
    font-size: 1.5rem;
  }
  .blog-comment-form button[type=submit] {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}
/*--------------------------------------------------------------
# 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 {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }
  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }
  .privacy h1 {
    font-size: 24pt;
  }
  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }
  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }
  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }
  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}
@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }
  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }
  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }
  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }
  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}
/*--------------------------------------------------------------
# Retun Policy Section
--------------------------------------------------------------*/
.retun-policy .policy-header {
  margin-bottom: 60px;
}

.retun-policy .policy-header .policy-label {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.retun-policy .policy-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.retun-policy .policy-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.retun-policy .return-period {
  margin-bottom: 70px;
}

.retun-policy .return-period .period-box {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  text-align: center;
}

.retun-policy .return-period .period-box .box-header {
  margin-bottom: 25px;
}

.retun-policy .return-period .period-box .box-header i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.retun-policy .return-period .period-box .box-header h4 {
  margin: 0;
  font-size: 1.4rem;
}

.retun-policy .return-period .period-box .timer {
  margin-bottom: 20px;
}

.retun-policy .return-period .period-box .timer .days {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.retun-policy .return-period .period-box .timer .label {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.retun-policy .return-period .period-box p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.retun-policy .return-period .eligibility-list {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}

.retun-policy .return-period .eligibility-list h4 {
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.retun-policy .return-period .eligibility-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.retun-policy .return-period .eligibility-list ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.retun-policy .return-period .eligibility-list ul li:last-child {
  margin-bottom: 0;
}

.retun-policy .return-period .eligibility-list ul li i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.retun-policy .return-process {
  margin-bottom: 70px;
  text-align: center;
}

.retun-policy .return-process h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.retun-policy .return-process .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

@media (max-width: 991px) {
  .retun-policy .return-process .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .retun-policy .return-process .process-steps {
    grid-template-columns: 1fr;
  }
}
.retun-policy .return-process .process-steps::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  z-index: 0;
}

@media (max-width: 991px) {
  .retun-policy .return-process .process-steps::after {
    display: none;
  }
}
.retun-policy .return-process .process-step {
  position: relative;
  z-index: 1;
}

.retun-policy .return-process .process-step .step-icon {
  width: 80px;
  height: 80px;
  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;
}

.retun-policy .return-process .process-step .step-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.retun-policy .return-process .process-step h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.retun-policy .return-process .process-step p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.retun-policy .non-returnable {
  margin-bottom: 70px;
}

.retun-policy .non-returnable .content-wrapper {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

.retun-policy .non-returnable .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.retun-policy .non-returnable .section-header i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.retun-policy .non-returnable .section-header h3 {
  font-size: 2rem;
  margin: 0;
}

.retun-policy .non-returnable .items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 767px) {
  .retun-policy .non-returnable .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .retun-policy .non-returnable .items-grid {
    grid-template-columns: 1fr;
  }
}
.retun-policy .non-returnable .items-grid .item {
  text-align: center;
  padding: 25px;
  background-color: var(--background-color);
  border-radius: 15px;
  transition: all 0.3s;
}

.retun-policy .non-returnable .items-grid .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.retun-policy .non-returnable .items-grid .item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.retun-policy .non-returnable .items-grid .item span {
  font-size: 1.1rem;
}

.retun-policy .return-faqs {
  margin-bottom: 70px;
}

.retun-policy .return-faqs h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.retun-policy .return-faqs .faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.retun-policy .return-faqs .faq-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.retun-policy .return-faqs .faq-item h3 {
  margin: 0;
  padding: 20px 25px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.retun-policy .return-faqs .faq-item h3 i {
  transition: transform 0.3s;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.retun-policy .return-faqs .faq-item .faq-answer {
  display: none;
  padding: 25px 20px;
}

.retun-policy .return-faqs .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.retun-policy .return-faqs .faq-item.faq-active h3 {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.retun-policy .return-faqs .faq-item.faq-active h3 i {
  transform: rotate(180deg);
}

.retun-policy .return-faqs .faq-item.faq-active .faq-answer {
  display: block;
}

.retun-policy .need-help {
  text-align: center;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

.retun-policy .need-help i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.retun-policy .need-help h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.retun-policy .need-help p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.retun-policy .need-help .help-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.retun-policy .need-help .help-actions a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.retun-policy .need-help .help-actions a i {
  font-size: 1.2rem;
  margin: 0;
}

.retun-policy .need-help .help-actions .btn-chat {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 30px;
}

.retun-policy .need-help .help-actions .btn-chat:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
}

.retun-policy .need-help .help-actions .divider {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.retun-policy .need-help .help-actions .phone-link {
  color: var(--heading-color);
  font-size: 1.1rem;
}

.retun-policy .need-help .help-actions .phone-link:hover {
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .retun-policy .need-help .help-actions {
    flex-direction: column;
  }
}
/*--------------------------------------------------------------
# Paymnt Methods Section
--------------------------------------------------------------*/
.paymnt-methods .payment-header {
  margin-bottom: 60px;
}

.paymnt-methods .payment-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.paymnt-methods .payment-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 80%) 100%);
}

.paymnt-methods .payment-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

.paymnt-methods .payment-options {
  margin-bottom: 70px;
}

.paymnt-methods .payment-options .payment-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s;
}

.paymnt-methods .payment-options .payment-card:hover {
  transform: translateY(-10px);
}

.paymnt-methods .payment-options .payment-card:hover .icon-box {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.paymnt-methods .payment-options .payment-card:hover .icon-box i {
  color: var(--contrast-color);
}

.paymnt-methods .payment-options .payment-card .card-content {
  padding: 40px 30px;
  text-align: center;
}

.paymnt-methods .payment-options .payment-card .icon-box {
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s;
}

.paymnt-methods .payment-options .payment-card .icon-box i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.paymnt-methods .payment-options .payment-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.paymnt-methods .payment-options .payment-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.paymnt-methods .payment-options .payment-card .accepted-cards {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.paymnt-methods .payment-options .payment-card .accepted-cards .card-icon {
  padding: 8px 15px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.paymnt-methods .security-features {
  margin-bottom: 70px;
}

.paymnt-methods .security-features .security-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.paymnt-methods .security-features .security-content .subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.paymnt-methods .security-features .security-content .security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paymnt-methods .security-features .security-content .security-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.paymnt-methods .security-features .security-content .security-list li:last-child {
  margin-bottom: 0;
}

.paymnt-methods .security-features .security-content .security-list li i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.paymnt-methods .security-features .security-content .security-list li .feature-text h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.paymnt-methods .security-features .security-content .security-list li .feature-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.paymnt-methods .security-features .process-steps {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

@media (max-width: 991px) {
  .paymnt-methods .security-features .process-steps {
    margin-top: 40px;
  }
}
.paymnt-methods .security-features .process-steps h4 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.paymnt-methods .security-features .process-steps .steps-list {
  display: grid;
  gap: 25px;
}

.paymnt-methods .security-features .process-steps .steps-list .step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.paymnt-methods .security-features .process-steps .steps-list .step .step-number {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.paymnt-methods .security-features .process-steps .steps-list .step .step-content h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.paymnt-methods .security-features .process-steps .steps-list .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.paymnt-methods .payment-faqs {
  margin-bottom: 70px;
}

.paymnt-methods .payment-faqs h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.paymnt-methods .payment-faqs .faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item h3 {
  margin: 0;
  padding: 20px 25px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item h3 i {
  transition: transform 0.3s;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item .faq-answer {
  display: none;
  padding: 0 25px 20px;
}

.paymnt-methods .payment-faqs .faq-grid .faq-item .faq-answer p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active h3 i {
  transform: rotate(180deg);
}

.paymnt-methods .payment-faqs .faq-grid .faq-item.faq-active .faq-answer {
  display: block;
}

.paymnt-methods .payment-support .support-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.paymnt-methods .payment-support .support-content i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.paymnt-methods .payment-support .support-content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.paymnt-methods .payment-support .support-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 25px;
}

.paymnt-methods .payment-support .support-content .support-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .paymnt-methods .payment-support .support-content .support-actions {
    flex-direction: column;
  }
}
.paymnt-methods .payment-support .support-content .support-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.paymnt-methods .payment-support .support-content .support-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.paymnt-methods .payment-support .support-content .support-actions .btn-primary i {
  font-size: 1.2rem;
  margin: 0;
}

.paymnt-methods .payment-support .support-content .support-actions .divider {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

@media (max-width: 576px) {
  .paymnt-methods .payment-support .support-content .support-actions .divider {
    display: none;
  }
}
.paymnt-methods .payment-support .support-content .support-actions .contact-email {
  color: var(--heading-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.paymnt-methods .payment-support .support-content .support-actions .contact-email:hover {
  color: var(--accent-color);
}

.paymnt-methods .payment-support .support-content .support-actions .contact-email i {
  font-size: 1.2rem;
  margin: 0;
}

/*--------------------------------------------------------------
# Shipping Info Section
--------------------------------------------------------------*/
.shipping-info .shipping-info-header {
  text-align: center;
  margin-bottom: 60px;
}

.shipping-info .shipping-info-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.shipping-info .shipping-info-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.shipping-info .shipping-info-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 700px;
  margin: 0 auto;
}

.shipping-info .delivery-options {
  margin-bottom: 80px;
}

.shipping-info .delivery-options .delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 0;
  position: relative;
}

@media (max-width: 991px) {
  .shipping-info .delivery-options .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .shipping-info .delivery-options .delivery-grid {
    grid-template-columns: 1fr;
  }
}
.shipping-info .delivery-option {
  position: relative;
}

.shipping-info .delivery-option .option-content {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.shipping-info .delivery-option .option-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--surface-color) 100%);
  transition: height 0.4s ease-out;
  z-index: -1;
}

.shipping-info .delivery-option .option-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.shipping-info .delivery-option .option-content:hover::before {
  height: 100%;
}

.shipping-info .delivery-option.featured .option-content {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shipping-info .delivery-option.featured .option-content:hover {
  transform: scale(1.05) translateY(-5px);
}

.shipping-info .delivery-option .icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.3s;
}

.shipping-info .delivery-option .icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-color);
}

.shipping-info .delivery-option:hover .icon-wrapper {
  transform: rotateY(180deg);
}

.shipping-info .delivery-option .option-details h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.shipping-info .delivery-option .option-details .time {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin-bottom: 15px;
}

.shipping-info .delivery-option .option-details .time i {
  font-size: 1.1rem;
}

.shipping-info .delivery-option .option-details .description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.shipping-info .delivery-option .option-details .price-tag {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 600;
}

.shipping-info .shipping-features {
  margin-bottom: 80px;
}

.shipping-info .shipping-features .feature-item {
  text-align: center;
  background-color: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;
  transition: all 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.shipping-info .shipping-features .feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: width 0.3s;
}

.shipping-info .shipping-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shipping-info .shipping-features .feature-item:hover::after {
  width: 80%;
}

.shipping-info .shipping-features .feature-item:hover i {
  transform: scale(1.2);
}

.shipping-info .shipping-features .feature-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: transform 0.3s;
  display: inline-block;
}

.shipping-info .shipping-features .feature-item h5 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.shipping-info .shipping-features .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.shipping-info .international-shipping {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 60px;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .shipping-info .international-shipping {
    padding: 40px 20px;
  }
}
.shipping-info .international-shipping .content-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.shipping-info .international-shipping .content-box .lead {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.shipping-info .international-shipping .content-box .shipping-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shipping-info .international-shipping .content-box .shipping-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.shipping-info .international-shipping .content-box .shipping-benefits li i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.shipping-info .international-shipping .info-cards {
  display: grid;
  gap: 20px;
}

.shipping-info .international-shipping .info-cards .info-card {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s;
}

.shipping-info .international-shipping .info-cards .info-card:hover {
  transform: translateX(-10px);
}

.shipping-info .international-shipping .info-cards .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.shipping-info .international-shipping .info-cards .info-card h5 {
  margin-bottom: 10px;
}

.shipping-info .international-shipping .info-cards .info-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.shipping-info .faq-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.shipping-info .faq-section .faq-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.shipping-info .faq-section .faq-grid .faq-item {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
}

.shipping-info .faq-section .faq-grid .faq-item h3 {
  margin: 0;
  padding: 25px 30px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.shipping-info .faq-section .faq-grid .faq-item h3 i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.shipping-info .faq-section .faq-grid .faq-item .faq-answer {
  display: none;
  padding: 30px 25px;
}

.shipping-info .faq-section .faq-grid .faq-item .faq-answer p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.shipping-info .faq-section .faq-grid .faq-item.faq-active h3 {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.shipping-info .faq-section .faq-grid .faq-item.faq-active h3 i {
  transform: rotate(45deg);
}

.shipping-info .faq-section .faq-grid .faq-item.faq-active .faq-answer {
  display: block;
}

@media (max-width: 991px) {
  .shipping-info .international-shipping .row > div:first-child {
    margin-bottom: 40px;
  }
}
/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control, .error-404 .search-box .input-group input, .input-group .error-404 .search-box input {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus, .error-404 .search-box .input-group input:focus, .input-group .error-404 .search-box input:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::-moz-placeholder, .error-404 .search-box .input-group input::-moz-placeholder, .input-group .error-404 .search-box input::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .form-control::placeholder, .error-404 .search-box .input-group input::placeholder, .input-group .error-404 .search-box input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }
  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }
  .error-404 .error-title {
    font-size: 1.5rem;
  }
  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }
  .error-404 .search-box {
    margin: 0 20px;
  }
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.product-categories-widget .category-tree {
  margin-top: 1rem;
}

.product-categories-widget .category-tree .category-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 0;
}

.product-categories-widget .category-tree .category-item:last-child {
  border-bottom: none;
}

.product-categories-widget .category-tree .category-item .category-header {
  cursor: pointer;
  transition: all 0.3s;
}

.product-categories-widget .category-tree .category-item .category-header:hover .category-link {
  color: var(--accent-color);
}

.product-categories-widget .category-tree .category-item .category-header:hover .category-toggle {
  color: var(--accent-color);
}

.product-categories-widget .category-tree .category-item .category-link {
  color: var(--default-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .category-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .category-toggle .bi-chevron-up {
  display: none;
}

.product-categories-widget .category-tree .category-item .category-header:not(.collapsed) .category-toggle .bi-chevron-down {
  display: none;
}

.product-categories-widget .category-tree .category-item .category-header:not(.collapsed) .category-toggle .bi-chevron-up {
  display: inline;
}

.product-categories-widget .category-tree .category-item .subcategory-list li {
  padding: 0.5rem 0;
}

.product-categories-widget .category-tree .category-item .subcategory-list li:first-child {
  padding-top: 0.75rem;
}

.product-categories-widget .category-tree .category-item .subcategory-list li:last-child {
  padding-bottom: 0;
}

.product-categories-widget .category-tree .category-item .subcategory-list .subcategory-link {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.product-categories-widget .category-tree .category-item .subcategory-list .subcategory-link:hover {
  color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .product-categories-widget .category-tree .category-item {
    padding: 0.625rem 0;
  }
  .product-categories-widget .category-tree .category-item .subcategory-list li {
    padding: 0.4rem 0;
  }
}
.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;
  -moz-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);
  -webkit-transition: box-shadow 0.2s ease;
  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);
  -moz-transition: box-shadow 0.2s ease;
  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, .pricing-range-widget .price-range-container .price-inputs .input-group input, .input-group .pricing-range-widget .price-range-container .price-inputs input {
  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, .pricing-range-widget .price-range-container .price-inputs .input-group input:focus, .input-group .pricing-range-widget .price-range-container .price-inputs input:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.pricing-range-widget .price-range-container .price-inputs .form-control::-moz-placeholder, .pricing-range-widget .price-range-container .price-inputs .input-group input::-moz-placeholder, .input-group .pricing-range-widget .price-range-container .price-inputs input::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing-range-widget .price-range-container .price-inputs .form-control::placeholder, .pricing-range-widget .price-range-container .price-inputs .input-group input::placeholder, .input-group .pricing-range-widget .price-range-container .price-inputs input::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::-moz-placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.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 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  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: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.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;
}
