ul,
li {
  list-style: none;
}

/******Working all over site *****/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  outline: none;
}

.ajax-qty:focus,
.ajax-qty:active {
  outline: none !important;
  box-shadow: none !important;
}

:root {
  --announcement-height: 34px;
  --header-height: 80px;
  --adminbar-height: 32px;
}

.afe-announcement {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--announcement-height);
  z-index: 10000;
}

body.admin-bar .afe-announcement {
  top: var(--adminbar-height);
}

.custom-header {
  position: fixed;
  top: var(--announcement-height);
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.4s ease-in-out;
}

body.admin-bar .custom-header {
  top: calc(var(--adminbar-height) + var(--announcement-height));
}

.custom-header.sticky-active {
  top: 0 !important;
}

body.admin-bar .custom-header.sticky-active {
  top: var(--adminbar-height) !important;
}


body.home .custom-header.sticky-active {
  background: #f4f4f4 !important;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

body:not(.home) .custom-header {
  background: #f4f4f4;
}

body:not(.home) .custom-header .custom-logo,
body:not(.home) .custom-header span.sidebar-toggle i,
body:not(.home) .custom-header .search-toggle i,
body:not(.home) .custom-header .header-icon.account-icon i,
body:not(.home) .custom-header .cart-toggle i {
  filter: unset;
}

body:not(.home) .custom-header.sticky-active .custom-logo,
body:not(.home) .custom-header.sticky-active span.sidebar-toggle i,
body:not(.home) .custom-header.sticky-active .search-toggle i,
body:not(.home) .custom-header.sticky-active .header-icon.account-icon i,
body:not(.home) .custom-header.sticky-active .cart-toggle i {
  filter: unset;
}

body {
  padding-top: calc(var(--announcement-height) + var(--header-height));
}

body.home {
  padding-top: 0 !important;
}

.ambreen-designer-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 10px 50px;
}

.header-col {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-col-left {
  justify-content: flex-start;
}

.header-col-center {
  justify-content: center;
}

.header-col-right {
  justify-content: flex-end;
}

.sidebar-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.custom-logo,
span.sidebar-toggle i,
.search-toggle i,
.header-icon.account-icon i,
.cart-toggle i {
  filter: brightness(0) invert(1) contrast(400%) saturate(200%);
}

body.home .custom-header.sticky-active .custom-logo,
body.home .custom-header.sticky-active span.sidebar-toggle i,
body.home .custom-header.sticky-active .search-toggle i,
body.home .custom-header.sticky-active .header-icon.account-icon i,
body.home .custom-header.sticky-active .cart-toggle i {
  filter: unset;
}

span.sidebar-toggle i {
  font-size: 26px;
  filter: brightness(0) invert(1) contrast(200%);
}

.sidebar-menu {
  position: fixed;
  top: 0;
  left: -370px;
  width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0;
  overflow-y: hidden;
}

.sidebar-menu.active {
  left: 0;
}

.sidebar-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #333;
  background: #21232614;
  border-radius: 50px;
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

[type="button"]:focus,
[type="button"]:hover,
[type="submit"]:focus,
[type="submit"]:hover,
button:focus,
button:hover {
  background-color: transparent;
  color: black;
  text-decoration: none;
}

.primary-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-menu li {
  margin-bottom: 15px;
  position: relative;
}

.primary-menu a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  display: block;
  padding: 8px 0;
  text-transform: uppercase;
  font-family: "Montserrat", Sans-serif;
}

.primary-menu .sub-menu {
  list-style: none;
  padding-left: 15px;
  margin-top: 5px;
  display: none;
}

.primary-menu .menu-item-has-children>a:after {
  content: "+";
  margin-left: 5px;
}

.primary-menu .menu-item-has-children.active>a:after {
  content: "-";
}

.site-logo img {
  max-height: 60px;
  width: auto;
}

.header-icons {
  display: flex;
  gap: 20px;
}

.header-icon a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  position: relative;
}

.cart-count {
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -8px;
}

/* Header Search Container */
.header-search-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10;
  display: none;
  align-items: center;
  padding: 0 40px;
}

.header-search-container.active {
  display: flex;
}

.search-form {
  width: 100%;
  position: relative;
  margin: 0;
  align-self: center;
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 10px;
  column-gap: 1.5rem;
  padding: 0 1.5rem;
}

#afe-search-field {
  box-shadow: none;
  border: none !important;
  height: 50px;
  min-height: auto;
  background-color: transparent !important;
  outline: none !important;
  padding-left: 30px !important;
}

button.search-submit svg {
  stroke: black;
}

.search-submit,
.search-close {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  top: 50%;
  transform: translateY(-45%);
}

.search-submit {
  left: 0px;
}

.search-close {
  right: 10px;
  color: #333;
}

.search-suggestions {
  overflow-y: auto;
  position: absolute;
  top: 85%;
  left: 40px;
  right: 40px;
  background: #fff;
  padding: 20px;
  display: none;
  z-index: 20;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.afe-searched-product {
  display: flex;
  gap: 20px;
}

.afe-searched-product .afe-product-wrapper .afe-product-image img {
  height: 250px;
}

.header-search-container.active .search-suggestions {
  display: block;
}

.search-suggestions h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.categories-list,
.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-link,
.product-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 10px;
  background: #f5f5f5;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.category-link:hover,
.product-link:hover {
  color: #000;
  background: #eee;
}

/* Side Cart Styles */
.side-cart {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
}

.side-cart.active {
  right: 0;
  transition: all 0.5s ease 0.2s;
  opacity: 1;
}

.side-cart-header {
  padding: 20px 30px 0px 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

p.shipping-goal {
  padding-left: 30px;
  padding-right: 30px;
  font-family: "Montserrat";
  font-size: 15px;
}

.side-cart-header h3 {
  margin: 0;
  font-size: 18px;
}

.side-cart-close {
  background: #21232614;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #333;
  border-radius: 81px;
  display: flex;
  position: absolute;
  right: 20px;
  top: 10px;
}

.side-cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.side-cart-items {
  margin-bottom: 20px;
}

.side-cart-item {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.side-cart-item-image {
  width: 80px;
  margin-right: 15px;
}

.side-cart-item-image img {
  max-width: 100%;
  height: auto;
}

.side-cart-item-details {
  flex: 1;
}

.side-cart-item-title {
  margin: 0 0 5px 0;
  font-size: 16px;
}

.side-cart-item-price {
  font-weight: bold;
  margin-bottom: 5px;
}

.side-cart-item-quantity {
  color: #666;
  font-size: 14px;
}

.side-cart-item-remove a {
  color: #ff0000;
  text-decoration: none;
  font-size: 20px;
  line-height: 1;
}

.side-cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
}

.side-cart-total {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: right;
}

.side-cart-buttons {
  display: flex;
  gap: 10px;
}

.side-cart-buttons .button {
  flex: 1;
  text-align: center;
  padding: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.side-cart-buttons .button.checkout {
  background: #4caf50;
}

.side-cart-empty {
  text-align: center;
  padding: 40px 0;
  color: #666;
}

.continue-shopping {
  display: block;
  text-align: center;
  padding: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* Cart Overlay */
.side-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.side-cart-overlay.active {
  display: block;
}

.related-cart-products {
  display: flex;
  padding-bottom: 50px;
}

.related-product-item img {
  max-width: 100%;
}

.afe-product-details {
  display: flex;
  flex-direction: column;
  padding: 10px 15px 0 15px;
  gap: 10px;
  margin-bottom: 12px;
}

.afe-product-details h4,
.afe-product-details button {
  font-size: 14px;
  color: black;
  margin: 0;
}

.related-product-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

span.related-product-price del span.woocommerce-Price-amount.amount {
  font-size: 14px;
  text-decoration: none;
  position: relative;
  color: #212326b3 !important;
}

span.woocommerce-Price-currencySymbol {
  font-size: 10px;
  padding-right: 3px;
}

span.related-product-price del span.woocommerce-Price-amount.amount:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 100%;
  border-bottom: 1px solid #d72c0d;
  opacity: 0.7;
  transform: rotate(-15deg);
}

span.related-product-price del,
span.related-product-price ins {
  text-decoration: none;
}

span.related-product-price ins span.woocommerce-Price-amount.amount {
  font-size: 16px;
  text-decoration: none;
  position: relative;
  color: #d72c0d;
}

.product-image img {
  width: 70px;
  height: 100px !important;
  object-fit: cover;
}

.side-additional-content h3 {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 15px;
  font-family: "Montserrat";
  margin-bottom: 30px;
}

a.view-product-btn {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Montserrat";
  display: flex;
  gap: 5px;
  align-items: center;
  color: #000;
  position: relative;
  top: 10px;
}

a.view-product-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  right: 0;
  top: auto;
  left: auto;
  transform: none;
  border: none;
  background-image: none;
  background-color: #d2d5d9;
  transition: transform 0.25s ease;
}

a.view-product-btn span.label {
  font-size: 10px;
  letter-spacing: 0.2em;
}

.afe-related-cart-products {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.afe-related-cart-products .product-image {
  flex: 0 0 auto;
}

.afe-related-cart-products .afe-product-details {
  flex: 1;
}

/******** Related product skeleton styling starts **********/
.related-products-skeletons {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 50px;
}

/* Parent container */
.related-products-skeletons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Skeleton wrapper */
.related-cart-products.skeleton {
  display: flex;
  gap: 12px;
  padding-bottom: 20px;
  align-items: flex-start;
}

/* Base skeleton box */
.skeleton-box {
  position: relative;
  overflow: hidden;
  background: #e0e0e0;
  border-radius: 6px;
}

/* Shimmer effect */
.skeleton-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: shimmer 1.5s infinite;
}

/* Animation keyframes */
@keyframes shimmer {
  0% {
    left: -150px;
  }

  100% {
    left: 100%;
  }
}

/* Sizes same as your structure */
.skeleton-image {
  width: 70px;
  height: 104px;
  flex-shrink: 0;
}

.skeleton-title {
  width: 120px;
  height: 16px;
  margin-bottom: 10px;
}

.skeleton-price {
  width: 80px;
  height: 14px;
  margin-bottom: 14px;
}

.skeleton-button {
  width: 100px;
  height: 16px;
  border-radius: 10px;
}

/******** Related product skeleton styling ends **********/

/* Animation for shimmer */
@keyframes pulse {
  0% {
    background-color: #f4f4f4;
  }

  50% {
    background-color: #e0e0e0;
  }

  100% {
    background-color: #f4f4f4;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: nowrap !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .header-col.header-col-left {
    justify-content: left;
  }

  .header-col {
    flex: 100%;
    justify-content: center;
  }

  .header-col-right {
    justify-content: center;
  }

  .header-search-container {
    padding: 0 10px;
  }

  .search-suggestions {
    left: 10px;
    right: 10px;
  }

  .categories-list,
  .products-list {
    flex-direction: column;
    gap: 5px;
  }

  .side-cart {
    width: 90%;
    height: 100% !important;
  }

  .side-cart-buttons {
    flex-direction: column;
  }
}

.suggestion-menu {
  margin-bottom: 20px;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  flex-direction: column;
}

.menu-link {
  color: black;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 10px;

  border-radius: 4px;
  transition: all 0.2s ease;
  font-family: "Montserrat", Sans-serif;
}

.menu-link:hover {
  color: #000;
  background: #eee;
}

@media (max-width: 768px) {
  .menu-list {
    flex-direction: column;
    gap: 5px;
  }
}

.cart-checkout-bar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  min-height: 45px;
  background-color: black;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2em;

  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  position: relative;
}

.cart-thumbnail img {
  width: 70px !important;
  height: 104px !important;
  object-fit: cover;
  border-radius: 0px;
}

.cart-details {
  flex: 1;
  margin-left: 20px;
}

.cart-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
  color: black;
  padding-top: 5px;
}

.cart-variation {
  font-size: 14px;
  color: #777;
  margin-bottom: 22px;
}

.cart-quantity-price {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.cart-quantity-price input[type="number"] {
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 0;
  width: 40px;
  height: 25px;
  font-size: 14px;
  color: #000;
  padding: 0px;
}

.price {
  font-size: 16px;
  font-weight: normal;
  color: #000;
}

.cart-remove {
  position: absolute;
  top: 10px;
  right: 0;
  font-size: 20px;
  color: black;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.cart-remove:hover {
  color: #000;
}

.cart-checkout {
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
}

.car-items-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
}

.side-cart a.cart-checkout-bar {
  color: white;
}

.progress-fill {
  height: 2px;
  background: linear-gradient(325deg, #049cff 0, #35ee7a);
}

.cart-progress-bar {
  margin-left: 30px;
  margin-right: 30px;
  background: rgb(210, 213, 217);
}

.side-cart {
  font-family: "Montserrat";
}

/* Additional Panel Styles */
.side-additional-panel.active {
  right: 450px;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease 0.2s;
  z-index: 9999;
}

.side-additional-panel {
  position: fixed;
  top: 0;
  right: 430px;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 0;
  transition: all 0.5s ease;
  overflow-y: auto;
  border-right: 1px solid #d2d5d9;
  opacity: 0;
  visibility: hidden;
}

.side-additional-content {
  padding: 30px;
  font-family: "Montserrat", sans-serif;
}

/* Ensure proper z-index for other elements */
.side-cart {
  z-index: 9999;
  /* Above additional panel */
}

.side-cart-overlay {
  z-index: 9997;
  /* Below both panels */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .side-additional-panel {
    width: 90%;
    right: -90%;
  }

  .side-additional-panel.active {
    display: none;
  }
}

.note-toggle-label .icon-pen {
  width: 16px;
  height: 16px;
}

.note-wrapper {
  padding: 20px;
  position: absolute;
  bottom: -20px;
  background: white;
  width: 100%;
  z-index: 2;
}

.note-wrapper textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0px;
  font-size: 14px;
  resize: vertical;
  margin-bottom: 10px;
  padding: 1.2rem;
  min-height: 10rem;
}

.side-cart.active.order-note-open:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgb(33 35 38 / 85%);
  z-index: 1;
}

button#close-note {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
  padding: 0;
}

button#close-note svg {
  transition: transform 0.3s ease;
}

button#close-note {
  color: #000000 !important;
}

button#close-note:hover svg {
  transform: scale(0.8) rotate(90deg);
  transition: transform 0.3s ease;
}

button.apply-note-btn {
  min-height: 45px;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  border: none;
  border-radius: 0px;
}

button.apply-note-btn:hover {
  background-color: black !important;
  color: white !important;
  text-decoration: none;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Adjust opacity */
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  top: 10%;
}

.header-search-container.active+.search-overlay {
  opacity: 1;
  visibility: visible;
}

body.no-scroll {
  overflow: hidden;
}

.sidebar-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 15px 20px;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d2d5d9;
}

.sidebar-footer .log-in {
  display: flex;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  gap: 10px;
  align-items: center;
}

.sidebar-footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.sidebar-footer .social-icons a i {
  width: 20px;
  height: 20px;
  color: #000;
  font-size: 20px;
}

.sidebar-footer .social-icons a {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 50px;
  transition-duration: 0.3s;
  transition-property: transform;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #000;
}

.social-icon:hover i {
  color: white !important;
}

ul.product-category-menu {
  padding: 0;
  list-style: none;
}

li.product-cat-item .cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d2d5d9;
}

.sub-cat-list {
    display: none;
}

.toggle-subcats {
  cursor: pointer;
  padding: 4px 8px;
  color: #333;
  background: #21232614;
  border-radius: 50px;
}

.sub-cat-list li {
  border-bottom: 1px solid #d2d5d9;
}

li.product-cat-item a {
  padding: 15px 0;
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-menu-content {
  overflow-x: scroll;
  height: 100%;
  padding: 0px 20px;
}

.sidebar-menu-header {
  border-bottom: 1px solid #d2d5d9;
  padding: 11px 15px;
}

/* responsive side-menu */

@media (min-width: 320px) and (max-width: 480px) {
  .sidebar-footer {
    padding: 7px 20px;
  }

  .sidebar-menu {
    height: 100% !important;
  }

  .sidebar-menu {
    left: -380px;
  }

  .header-icon.search-icon.mobile {
    display: block !important;
  }

  .header-icon.search-icon.desktop {
    display: none;
  }

  .header-col.header-col-right {
    justify-content: right;
  }

  .toogle-and-search-container {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .search-overlay {
    top: 15%;
  }
}

.afe-loader {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  /* light grey */
  border-top: 4px solid #3498db;
  /* blue */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 50px auto;
  /* center horizontally */
  display: none;
}

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

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

@media (min-width: 280px) and (max-width: 320px) {
  .sidebar-menu {
    height: 100% !important;
  }
}

.new-arrivals-btn {
  display: inline-block !important;
  padding: 12px 32px !important;
  border: 1px solid #ccc !important;
  background: transparent !important;
  color: #000 !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-align: center !important;
  text-decoration: none !important;
  line-height: 1.4 !important;
  transition: all 0.3s ease !important;
  border-radius: 0 !important;
}

/************* header Search Product styling *******************/
.afe-searched-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  justify-items: start;
}

.afe-product-wrapper {
  text-align: left;
  width: 100%; 
}

.afe-related-product-image {
  display: flex;
  gap: 15px;
}

.afe-related-product-image h4 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.8px;
  margin-bottom: 0;
}

.afe-related-product-image img {
  max-width: 80px !important;
  height: auto;
  display: block;
  margin: 0; 
}

.afe-search-product-card p .afe-old-price {
  text-decoration: none !important;
  color: #212326b3;
  margin-right: 6px;
  font-size: 14px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.afe-search-product-card p .afe-old-price:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  border-bottom: 2px solid #d72c0d;
  opacity: 0.7;
  transform: rotate(-15deg);
}

.afe-search-product-card p .afe-new-price {
  color: #d72c0d;
  font-weight: 500;
  font-size: 18px;
}


/* Skeleton base */
.afe-skeleton-img,
.afe-skeleton-text {
  position: relative;
  overflow: hidden;
  background: #e0e0e0; /* same color */
  border-radius: 6px;
}

/* Shimmer effect */
.afe-skeleton-img::after,
.afe-skeleton-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: afe-shimmer 1.5s infinite;
}

/* Animation */
@keyframes afe-shimmer {
  0% { left: -150px; }
  100% { left: 100%; }
}

/* Specific sizes */
.afe-skeleton-img {
  width: 70px;
  height: 104px;
  flex-shrink: 0;
}

.afe-skeleton-text.title {
  width: 120px;
  height: 16px;
  margin-bottom: 10px;
}

.afe-skeleton-text.price {
  width: 80px;
  height: 14px;
}


/******************** Related products pricing style ************************/
.related-product-price .afe-old-price {
  text-decoration: none !important;
  color: #212326b3;
  margin-right: 6px;
  font-size: 14px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  width: auto;
}

.related-product-price .afe-old-price:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  height: 2px;
  background: #d72c0d;
  opacity: 0.7;
  width: 50%;
  transform: rotate(-15deg);
}


.related-product-price .afe-new-price {
  color: #d72c0d;
  font-weight: 500;
  font-size: 18px;
}

/* ===============================
   MOMENT CATEGORY SLIDER
================================ */

.moment-slider-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 40px 24px;
    box-sizing: border-box;
}

.moment-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #1d1d1f;
}

/* SLIDER */
.moment-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

/* Hide scrollbar */
.moment-slider::-webkit-scrollbar {
    display: none;
}
.moment-slider {
    scrollbar-width: none;
}

/* CARD */
.moment-card {
    flex: 0 0 calc(25% - 15px); /* 4 items desktop */
    background: #f6efe9;
    border-radius: 10px;
    padding: 34px 20px 28px;
    text-align: center;
    text-decoration: none;
    color: #111;
    scroll-snap-align: start;
}
/* IMAGE */
.moment-card img {
    max-width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

/* TITLE */
.moment-card span {
    font-size: 16px;
    font-weight: 500;
    display: block;
}

/* NAVIGATION */
.moment-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.moment-nav button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: #00B1AA;
    font-size: 22px;
    cursor: pointer;
    color: #fff !important;
}
.moment-nav button:hover {
  background: #00B1AA !important;
}
/* ===============================
   RESPONSIVE
================================ */

/* TABLET */
@media (max-width: 991px) {
    .moment-title {
        font-size: 24px;
    }

    .moment-card {
        flex: 0 0 calc(50% - 10px); /* 2 items */
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .moment-slider-wrapper {
        padding: 30px 16px;
    }

    .moment-card {
        flex: 0 0 100%; /* 1 item */
    }

    .moment-nav {
        display: none;
    }
}
