/* Custom overrides to ensure product form + add-to-cart remain visible */
/* Loaded after theme.css */

/* =============================================
   Order History � Mobile Card Layout
   ============================================= */

/* Card container */
.order-card-mobile {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Header row: reference + status badge */
.order-card-mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.order-card-mobile__ref {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
}

.order-card-mobile__status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* Meta row: date and total */
.order-card-mobile__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  color: #666;
  font-size: 14px;
}

.order-card-mobile__meta .material-icons {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 3px;
  color: #999;
}

.order-card-mobile__date,
.order-card-mobile__total {
  display: flex;
  align-items: center;
}

/* Action buttons row */
.order-card-mobile__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.order-card-mobile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  flex: 1 1 auto;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.order-card-mobile__btn .material-icons {
  font-size: 18px;
}

.order-card-mobile__btn--details {
  background-color: #333;
  color: #fff;
  border: 2px solid #333;
}

.order-card-mobile__btn--details:hover,
.order-card-mobile__btn--details:focus {
  background-color: #555;
  border-color: #555;
  color: #fff;
  text-decoration: none;
}

.order-card-mobile__btn--reorder {
  background-color: #fff;
  color: #333;
  border: 2px solid #333;
}

.order-card-mobile__btn--reorder:hover,
.order-card-mobile__btn--reorder:focus {
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
}

/* Divider between cards */
.orders.hidden-md-up .order-card-mobile:last-child {
  margin-bottom: 0;
}

/* Core product action containers - ensure visibility */
.product-actions,
.product-add-to-cart,
#add-to-cart-or-refresh {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
}


/* Keep Wholesale Program link readable in top header nav */
#header .header-nav a[href*="wholesale"],
#header .header-nav a[title*="Wholesale Program"],
#header .header-nav a[aria-label*="Wholesale Program"] {
  color: #c9c9c9 !important;
}

#header .header-nav a[href*="wholesale"]:hover,
#header .header-nav a[title*="Wholesale Program"]:hover,
#header .header-nav a[aria-label*="Wholesale Program"]:hover,
#header .header-nav a[href*="wholesale"]:focus,
#header .header-nav a[title*="Wholesale Program"]:focus,
#header .header-nav a[aria-label*="Wholesale Program"]:focus,
#header .header-nav a[href*="wholesale"]:visited,
#header .header-nav a[title*="Wholesale Program"]:visited,
#header .header-nav a[aria-label*="Wholesale Program"]:visited {
  color: #c9c9c9 !important;
}

li.product-flag {
  display: none;
}

/* Product variants - ensure label + selector visible and properly sized */
.product-actions .product-variants,
.product-variants {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
  margin-bottom: 15px;
}

.product-variants > .product-variants-item {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
  margin-bottom: 10px;
}

.product-variants .control-label,
.product-actions .control-label {
  display: block !important;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.product-variants select,
.product-variants input[type=radio],
.product-variants .custom-select,
.product-variants select.form-control {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 44px;
  width: 100%;
  max-width: 100%;
}

/* Add-to-cart button styling */
button[data-button-action="add-to-cart"],
.add-to-cart.btn,
.btn.add-to-cart,
.add-to-cart {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  justify-content: center;
}

/* Quantity input wrapper */
.product-add-to-cart {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Neutralize generic hiding classes that may be applied by scripts */
.product-actions .hidden,
.product-actions .invisible,
.product-actions .d-none,
.product-actions .js-hidden {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.product-variants .sr-only,
.product-variants .visually-hidden {
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  clip-path: none !important;
  overflow: visible !important;
}

/* Ensure product is purchasable when form exists */
[data-product-attribute-form] .add-to-cart {
  pointer-events: auto;
  cursor: pointer;
}

/* Fix product thumbnails having 0 height */
a.thumbnail.product-thumbnail,
.thumbnail.product-thumbnail,
.product-thumbnail {
  height: auto !important;
  min-height: 60px;
  overflow: visible !important;
}

/* Debug helper: add outline when debug_cart=1 via JS adding body class */
body.debug-cart-active #add-to-cart-or-refresh,
body.debug-cart-active .add-to-cart {
  outline: 2px dashed #d33;
}

/* Ensure product image containers do not interfere with dropdown stacking */
.thumbnail-container,
.thumbnail-container-image,
.product-miniature {
  position: relative !important;
  
}
.thumbnail-container-image img {
  margin: 0 auto !important;
}
.an-sfsl p {
    margin-top: auto !important;
}  
table.table-product-discounts {
  margin-bottom: 20px;
}
#chat-info-link {
  display: none !important;
}

.an_productattributes-dropdown-toggler {
  outline: none !important;
  box-shadow: none !important;
  border: none /* Optional: adjust border if needed */
}

/* Footer mobile accordion title alignment (fix chevron drifting near title text) */
@media (max-width: 767px) {
  .footer-container .links .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .footer-container .links .title .pull-xs-right {
    float: none !important;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
  }
}

.product-miniature .an_wishlist-mini .an_wishlist-mini-count {
    display: none;
}

.cart-products-count,
.mobile-cart-item-count {
  font-weight: bold;
  color: #5ba718; /* orange bounce count */
  background-color: transparent;
}

.cart-subtotal,
.mobile-cart-subtotal {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background-color: #5ba718; /* soft orange */
  border-radius: 999px;
  line-height: 1;
}

/* BOUNCE ANIMATION */
.cart-bounce {
  animation: cart-bounce 0.4s ease;
}

@keyframes cart-bounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.25); color: #5ba718; }
  60%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* Optional: Hover glow effect on cart icon */
.blockcart-link:hover svg {
  fill: #5ba718;
  transition: fill 0.3s;
}

/* Mini Cart Availability Messages (for both dropdown and sidebar) */
.cart-dropdown .product-availability-mini,
.cart-preview .product-availability-mini {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.2;
}

.cart-dropdown .availability-available,
.cart-preview .availability-available {
    color: #5cb85c;
    font-weight: 500;
}

.cart-dropdown .availability-warning,
.cart-preview .availability-warning {
    color: #5ba718;
    font-weight: 500;
}

.cart-dropdown .availability-unavailable,
.cart-preview .availability-unavailable {
    color: #d9534f;
    font-weight: 500;
}

.cart-dropdown .availability-error,
.cart-preview .availability-error {
    color: #d9534f;
    font-weight: 600;
    background-color: #f2dede;
    padding: 3px 6px;
    border-radius: 3px;
    border: 1px solid #ebccd1;
}

.cart-dropdown .availability-backorder,
.cart-preview .availability-backorder {
    color: #856404;
    font-weight: 600;
    background-color: #fff3cd;
    padding: 3px 6px;
    border-radius: 3px;
    border: 1px solid #ffeaa7;
}

/* Cart Page Availability Messages */
.product-availability-cart {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.3;
}

.product-availability-cart .availability-available {
    color: #5cb85c;
    font-weight: 500;
}

.product-availability-cart .availability-warning {
    color: #5ba718;
    font-weight: 500;
}

.product-availability-cart .availability-unavailable {
    color: #d9534f;
    font-weight: 500;
}

.product-availability-cart .availability-error {
    color: #d9534f;
    font-weight: 600;
    background-color: #f2dede;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ebccd1;
    display: inline-block;
}

.product-availability-cart .availability-backorder {
    color: #856404;
    font-weight: 600;
    background-color: #fff3cd;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ffeaa7;
    display: inline-block;
}

/* Checkout Summary Availability Messages */
.product-availability-summary {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.3;
    clear: both;
    display: block !important;
    width: 100%;
    visibility: visible !important;
}

.product-availability-summary .availability-available {
    color: #5cb85c !important;
    font-weight: 500;
    display: block;
}

.product-availability-summary .availability-warning {
    color: #5ba718 !important;
    font-weight: 500;
    display: block;
}

.product-availability-summary .availability-unavailable {
    color: #d9534f !important;
    font-weight: 500;
    display: block;
}

.product-availability-summary .availability-error {
    color: #d9534f !important;
    font-weight: 600;
    background-color: #f2dede;
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid #ebccd1;
    display: block;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.2;
    text-align: left;
    word-wrap: break-word;
}

.product-availability-summary .availability-backorder {
    color: #856404 !important;
    font-weight: 600;
    background-color: #fff3cd;
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid #ffeaa7;
    display: block;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.2;
    text-align: left;
    word-wrap: break-word;
}

/* Order Confirmation Availability Messages */
.product-availability-confirmation {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.3;
    clear: both;
    display: block;
    width: 100%;
}

.product-availability-confirmation .availability-available {
    color: #5cb85c;
    font-weight: 500;
}

.product-availability-confirmation .availability-warning {
    color: #5ba718;
    font-weight: 500;
}

.product-availability-confirmation .availability-unavailable {
    color: #d9534f;
    font-weight: 500;
}

.product-availability-confirmation .availability-error {
    color: #d9534f;
    font-weight: 600;
    background-color: #f2dede;
    padding: 3px 6px;
    border-radius: 3px;
    border: 1px solid #ebccd1;
    display: block;
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.2;
    text-align: left;
    word-wrap: break-word;
}

.product-availability-confirmation .availability-backorder {
    color: #856404;
    font-weight: 600;
    background-color: #fff3cd;
    padding: 3px 6px;
    border-radius: 3px;
    border: 1px solid #ffeaa7;
    display: block;
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.2;
    text-align: left;
    word-wrap: break-word;
}

/* One-Page Checkout Availability Messages */
.product-availability-opc {
    margin-top: 15px;
    font-size: 11px;
    line-height: 1.3;
    clear: both;
    display: block !important;
    width: 100%;
    visibility: visible !important;
}

.product-availability-opc .availability-available {
    color: #5cb85c !important;
    font-weight: 500;
    display: block;
    margin-top: 3px;
}

.product-availability-opc .availability-warning {
    color: #5ba718 !important;
    font-weight: 500;
    display: block;
    margin-top: 3px;
}

.product-availability-opc .availability-unavailable {
    color: #d9534f !important;
    font-weight: 500;
    display: block;
    margin-top: 3px;
}

.product-availability-opc .availability-error {
    color: #d9534f !important;
    font-weight: 600;
    background-color: #f2dede;
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid #ebccd1;
    display: block;
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.2;
    text-align: left;
    word-wrap: break-word;
}

.product-availability-opc .availability-backorder {
    color: #856404 !important;
    font-weight: 600;
    background-color: #fff3cd;
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid #ffeaa7;
    display: block;
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.2;
    text-align: left;
    word-wrap: break-word;
}

/* Fix One-Page Checkout Price Layout */
.wk-product-price-section {
    margin-top: 8px;
    clear: both;
    display: block;
    width: 100%;
}

.wk-product-price-section .product-price {
    display: inline-block;
    color: #414141 !important;
    line-height: 1.4 !important;
    font-weight: 600;
    margin-right: 8px;
}

.wk-product-price-section .wk-product-quantity {
    display: inline-block;
    font-size: 12px;
    color: #7d7d7d;
    line-height: 1.4;
}

/* ================================
    Cross-selling Section
   ================================ */

section.featured-products {
  
  padding: 5px 20px;
  margin-top: 40px;
}

section.featured-products h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  margin-top: 20px;
}

/* Homepage product block headers: replace gray pills with accent-line style */
.page-home .featured-products .products-section-title,
.page-home .an_homeproducts-block .products-section-title {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin: 0 auto 28px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #0f172a !important;
  font-size: clamp(28px, 4.5vw, 38px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.2px;
  text-transform: none !important;
  text-align: center;
  overflow: visible;
}

.page-home .featured-products .products-section-title::before,
.page-home .featured-products .products-section-title::after,
.page-home .an_homeproducts-block .products-section-title::before,
.page-home .an_homeproducts-block .products-section-title::after {
  content: "";
  display: block;
  flex: 0 0 clamp(64px, 11vw, 132px);
  height: 8px;
  position: relative;
  border-radius: 999px;
  overflow: visible;
}

.page-home .featured-products .products-section-title::before,
.page-home .an_homeproducts-block .products-section-title::before {
  max-width: 110px;
  background:
    radial-gradient(circle 5px at calc(100% - 4px) 50%, #2f9e44 70%, rgba(47, 158, 68, 0.92) 86%, transparent 100%),
    linear-gradient(90deg, rgba(47, 158, 68, 0.35) 0%, #2f9e44 62%, #2f9e44 100%);
  background-repeat: no-repeat;
  background-size: 10px 10px, calc(100% - 5px) 2px;
  background-position: right center, left center;
}

.page-home .featured-products .products-section-title::after,
.page-home .an_homeproducts-block .products-section-title::after {
  max-width: 110px;
  background:
    radial-gradient(circle 5px at 4px 50%, #2f9e44 70%, rgba(47, 158, 68, 0.92) 86%, transparent 100%),
    linear-gradient(90deg, #2f9e44 0%, #2f9e44 38%, rgba(47, 158, 68, 0.35) 100%);
  background-repeat: no-repeat;
  background-size: 10px 10px, calc(100% - 5px) 2px;
  background-position: left center, right center;
}

.page-home .featured-products .products-section-title::before,
.page-home .an_homeproducts-block .products-section-title::before,
.page-home .featured-products .products-section-title::after,
.page-home .an_homeproducts-block .products-section-title::after {
  box-shadow: none;
}

.page-home .featured-products .products-section-title a,
.page-home .an_homeproducts-block .products-section-title a {
  color: inherit !important;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .page-home .featured-products .products-section-title,
  .page-home .an_homeproducts-block .products-section-title {
    font-size: clamp(28px, 8vw, 42px) !important;
    gap: 12px;
  }

  .page-home .featured-products .products-section-title::before,
  .page-home .featured-products .products-section-title::after,
  .page-home .an_homeproducts-block .products-section-title::before,
  .page-home .an_homeproducts-block .products-section-title::after {
    flex-basis: clamp(34px, 12vw, 60px);
  }
}

section.featured-products .products {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 0 20px;
}

section.featured-products .product-miniature {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 5px;
  transition: transform 0.3s ease;
  position: relative !important;
  z-index: 1 !important;
}

section.featured-products .thumbnail-container {
  text-align: center;
  position: relative !important;
  z-index: 1 !important;
}

section.featured-products .product-description {
  text-align: center;
  padding-top: 10px;
}

section.featured-products .product-description h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

/* -------------------------------
   Dropdown Variant Selector
--------------------------------- */
.an_productattributes-dropdown-menu {
  max-height: 320px !important;
  min-width: 220px !important;  
  z-index: 99999 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12) !important;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #ddd;
}
.an_productattributes-product-selectbox {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ccc !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6H0z' fill='%23000'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 10px 6px !important;
  min-width: 220px !important;
}

.product-actions .product-variants > .product-variants-item select.form-control:not([size]):not([multiple]) {
  width: 100%;
}

.an_productattributes-dropdown .an_productattributes-dropdown-toggler::after {
  display: none !important;
}

.an_productattributes-dropdown .an_productattributes-dropdown-item {
  padding: 6px 10px !important;
  font-size: 14px !important;
  display: flex;
  align-items: flex-start !important;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px;
  min-height: 40px;
  line-height: 1.3;
  box-sizing: border-box;
  width: 100%;
  white-space: normal;         /* allow wrapping */
  overflow-x: hidden;          /* hide horizontal overflow */
}

.an_productattributes-dropdown .an_productattributes-dropdown-item span {
  white-space: normal;         /* allow wrapping for span text */
  word-break: break-word;      /* break long words if needed */
  flex-grow: 1;
}

span.an_productattributes-select-sold-out {
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
  text-align: center;
}

/* Hover effect */
.an_productattributes-dropdown .an_productattributes-dropdown-item:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

/* Zebra striping */
.an_productattributes-dropdown-menu li:nth-child(odd) {
  background-color: #f9f9f9 !important;
}

.an_productattributes-dropdown-menu li:nth-child(even) {
  background-color: #ffffff !important;
}

/* Sold out label */
.an_productattributes-dropdown .an_productattributes-select-sold-out {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 11px;
  padding: 1px 6px;
  background: #ffc427;
  color: #000;
  border-radius: 3px;
  line-height: 1.5;
}

/* -------------------------------
   Header & Navigation Styling
--------------------------------- */
.navigation { background: #d9d9d9; }
.fixed-menu-container { background: #d9d9d9; }
.amenu-item .amenu-link { color: #000000; }
#header .header-top .navigation { border-top: none; border-bottom: none; }
.fixed-menu .fixed-menu-container { background: #f5f6fa; }
.fixed-menu .amenu-item .amenu-link { color: #000000; }
#_desktop_top_menu, #amegamenu { background: #d9d9d9; }
.header-top,
#header .header-top,
#header .header-top .header_middle_line,
#header .header-top .header-menu-line {
  background: #f5f6fa;
}
#amegamenu.fixed-menu {
  box-shadow: 0px 0px 5px 0px rgb(1 1 1 / 40%);
  border-bottom: 1px solid #dddddd;
}

/* Sticky header hard override (theme.css has stronger defaults) */
#header #amegamenu.fixed-menu,
#amegamenu.fixed-menu,
#amegamenu.fixed-menu .fixed-menu-container,
#amegamenu.fixed-menu .anav-top,
#amegamenu.fixed-menu #_desktop_top_menu,
#amegamenu.fixed-menu .header-top,
#amegamenu.fixed-menu .navigation {
  background: #f5f6fa !important;
}

#amegamenu.fixed-menu .amenu-item .amenu-link,
#amegamenu.fixed-menu .amenu-item .amenu-link:visited,
#amegamenu.fixed-menu .amenu-item .amenu-link:hover,
#amegamenu.fixed-menu .amenu-item .amenu-link:focus {
  color: #000000 !important;
}

/* -------------------------------
   Wishlist Counter Positioning
--------------------------------- */
.an_wishlist-nav-link .wishlist_count_super {
  position: absolute;
  top: -8px;
  right: -10px;
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  background-color: #5B84c4 !important;
}

#_desktop_an_wishlist-nav a {
  position: relative;
}

/* Lower z-index of wishlist icon so it doesn't cover dropdowns */
.an_wishlist-mini {
  z-index: 1 !important;
  position: relative !important;
}

/* -------------------------------
   Product Page - Quantity Input
--------------------------------- */
.product-miniature .product-quantity input.input-group {
  width: 50px !important;
  padding: 6px 8px !important;
  font-size: 16px !important;
  text-align: center;
  box-sizing: border-box;
}

/* Main quantity input field */
.an_productattributes-qty {
  width: 60px !important;
  padding: 6px 8px !important;
  text-align: center !important;
  font-size: 16px;
  box-sizing: border-box;
  color: #272727;
}

/* Shrink default number input spinners slightly */
.an_productattributes-qty::-webkit-inner-spin-button {
  transform: scale(0.8);
  margin: 0;
}


/* -------------------------------
   Mobile Adjustments
--------------------------------- */
@media (max-width: 768px) {
  .an_productattributes-dropdown .an_productattributes-dropdown-item {
    font-size: 16px !important;
    padding: 12px 16px !important;
    min-height: 44px;
  }

  .an_productattributes-product-selectbox {
    font-size: 16px !important;
    padding: 12px 16px !important;
  }

  .an_brandslider-block .owl-dots {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
  }
}

.an_productattributes-dropdown-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Brand name style on category and product pages */
.page-category span.brand-name,
.page-product span.brand-name {
  text-align: center;
  width: 100%;
  float: left;
  font-style: italic;
  font-size: 13px;
}


/* -------------------------------
   Brand Slider Height Cleanup
--------------------------------- */
.an_brandslider-block {
  max-height: 140px !important;
  overflow: hidden !important;
  padding: 20px 0 !important;
}

.an_brandslider-block .owl-stage-outer {
  max-height: 100px !important;
  overflow: hidden !important;
}

.an_brandslider-block .owl-item {
  max-height: 100px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.an_brandslider-block .owl-item img {
  max-height: 80px !important;
  height: auto !important;
  width: auto !important;
  margin: 0 auto !important;
  object-fit: contain;
}

/* -------------------------------
   Misc Layout Cleanup
--------------------------------- */
.manufacturer-image-overlay-right,
.manufacturer-image-overlay-left {
  display: none;
}

#manufacturer .block-manufacturer .manufacturer-image {
  margin: 0 0% 0 0%;
}

.productblock-image {
  position: relative;
}

.page-content .an_wishlist-container.an_wishlist-mini {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 5;
  padding: 0 !important;
  background: none !important;
}

/* -------------------------------
   Product Image Zoom Fix
--------------------------------- */


/* Hide zoom image by default */
.an_productpage-slider-image .zoomImg {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

/* Show zoom image only when hovered */
.an_productpage-slider-image.slider-zoom-hover:hover .zoomImg {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.delivery-options-list.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.alert.alert-danger {
  background-color: #f8d7da !important;
  color: #721c24 !important;
  border-left: 4px solid #f5c6cb !important;
  padding: 15px;
  border-radius: 4px;
  font-weight: 500;
}

.wk-shipping-warning-light {
  background-color: #fdfae9;
  border-left: 4px solid #d6a741;
  color: #333;
  padding: 12px 16px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 15px;
}

.wk-spinner-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #ccc;
  border-top: 3px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================
   Popular Collections Section
   ================================ */

.popular-collections-section {
  padding: 80px 0;
  background: #f5f6fa;
}

.popular-collections-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.popular-collections-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3e3e3e;
  margin-bottom: 30px;
  position: relative;
}

.popular-collections-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #5ba718, #5ba718);
  border-radius: 2px;
}

.popular-collections-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.popular-collections-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.popular-collections-grid .product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.popular-collections-grid .product-card:hover {
  transform: translateY(-5px);
}

.popular-collections-grid .product-image-card {
  background-size: cover;
  background-position: center;
  height: 200px;
}

.popular-collections-grid .product-info {
  padding: 20px;
}

.popular-collections-grid .product-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.popular-collections-grid .product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  min-height: 40px;
}

.popular-collections-grid .product-price {
  color: #5ba718;
  font-weight: bold;
  font-size: 16px;  
  margin-bottom: 12px; /* âœ… spacing below price */
  display: block;
}

.popular-collections-grid .product-btn {
  display: inline-block;
  width: auto; /* âœ… keeps button tight */
  background-color: #5ba718;
  color: #fff;
  border-radius: 6px;
  margin-top: 0; /* just in case */
  padding: 10px 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.popular-collections-grid .product-btn:hover {
  background-color: #4a6a22;
}


.why-choose-us {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title .underline {
  display: block;
  height: 4px;
  width: 300px; /* wider green line */
  background-color: #5ba718;
  margin: 0 auto;
  margin-top: 10px;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  text-align: center;
}

.feature-item {
  flex: 1 1 250px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #5ba718;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-description {
  color: #555;
  font-size: 0.95rem;
}
.an_productpage-slider-image .zoomImg {
  display: none !important;
}

#product-modal .modal-content {
  background: 0 0;
  border: 0;
  padding: 0;
}

#product-modal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.product-cover-modal {
  max-width: 100%;
  max-height: 100vh;
  transition: transform 0.3s ease;
}
.an_productpage-slider-main .slick-dots {
  display: none !important;
}
.block_newsletter {
  padding: 40px 0;
  background: #f8f9fb;
}

.block_newsletter .h1 {
  text-align: center !important;
  font-weight: bold;
  margin-bottom: 15px;
}

.newsletter-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
}

.block_newsletter .input-wrapper input[type="text"] {
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
  min-width: 300px;
}

.block_newsletter .subscribe-btn {
  position: absolute;
  top: 9px;
  right: 19px;
  background-color: #5ba718;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block_newsletter .subscribe-btn:hover {
  background-color: #5ba718;
}
.block_newsletter .subscribe-btn svg {
  transition: transform 0.2s ease;
}

.block_newsletter .subscribe-btn:hover svg {
  transform: translateX(2px);
}



.wk-save-address.loading::after {
  content: '';
  margin-left: 8px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  width: 14px;
  height: 14px;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes onAutoFillStart {}
input:-webkit-autofill {
  animation-name: onAutoFillStart;
  animation-duration: 0.01s;
  animation-iteration-count: 1;
}

/* ================================
Home Page Blog Section
================================ */

.secondary-blog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.secondary-blog .blog-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.secondary-blog .blog-item:hover {
    transform: translateY(-5px);
}

.blog-image-container {
    width: 100%;
    overflow: hidden;
}

.blog-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 10px 0 5px;
    color: #222;
}

.blog-shortinfo {
    max-width: 500px;
    margin: 10px 0 0 0;
    line-height: 1.5;
    text-align: left;
    color: #555;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #555;
    gap: 10px;
    margin: 10px 0;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more a,
.secondary-blog .btn-primary {
    width: 100%;
    display: block;
    text-align: center;
    background: #5ba718;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.read-more a:hover,
.secondary-blog .btn-primary:hover {
    background: #5ba718;
}

@media (max-width: 480px) {
    .secondary-blog {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .read-more a {
        padding: 12px;
        font-size: 1rem;
    }
}
.secondary-blog-title {
    text-align: center;
    margin: 60px auto 20px;
    max-width: 1200px;
    padding: 0 20px;
}

.secondary-blog-title h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: #333;
}

.secondary-blog-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #5ba718;
    margin: 10px auto 0;
    border-radius: 2px;
}
.product-add-to-cart .an_wishlist-mini .an_wishlist-mini-count, .page-content .an_wishlist-mini .an_wishlist-mini-count {
    margin-right: 5px;
    position: static;
    display: none;
}
.block_newsletter .newsletter-input-group{ position: relative; }
.block_newsletter .subscribe-btn{
  position: absolute !important;
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%);
  width: 42px; height: 42px; padding: 0;
}
.block_newsletter .newsletter-input-group .form-control{
  padding-right: 56px; /* room for the button */
}

.quantity-button-vertical{
  display: none
}

/* Hide Contact Us menu item in sticky nav */
#amegamenu.fixed-menu a[href*="customer-support"],
#amegamenu.fixed-menu a[href*="contact"] {
  display: none !important;
}

/* Lower mobile cart icon position */
@media (max-width: 767px) {
  #_mobile_cart {
    margin-top: 0px !important;
  }
  
  #header #_mobile_cart .blockcart a {
    display: flex;
    align-items: center;
  }
}

/* ===================================================================== */
/* SHOPPING CART PAGE STYLING - MATCH CHECKOUT DESIGN                   */
/* ===================================================================== */
.cart-detailed-totals .card-block {
    padding: 17px 10px 0;
}
.cart-grid-right {
    margin-top: 0px !important;
    padding-left: 0 !important;
    padding-right: 0px !important;
}
/* Cart Page Main Container */
body#cart .cart-grid {
    max-width: 1400px;
    margin: 40px auto !important;
    padding: 0 20px !important;
}

/* Cart Header Title - Orange Modern Style */
.cart-grid-body .card-block h1,
body#cart .cart-grid-body .card-block h1,
body#cart h1.h1,
.cart-container h1 {
    color: #2c3e50 !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    text-align: center !important;
    letter-spacing: -0.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 40px !important;
    padding-bottom: 20px !important;
    position: relative !important;
}

.cart-grid-body .card-block h1::after,
body#cart .cart-grid-body .card-block h1::after,
body#cart h1.h1::after,
.cart-container h1::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 4px !important;
    background: linear-gradient(135deg, #5ba718 0%, #5ba718 100%) !important;
    border-radius: 2px !important;
    display: block !important;
}

/* Cart Container - Modern Card Style */
.cart-grid-body .card.cart-container {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 40px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e9ecef !important;
    margin-bottom: 30px !important;
    position: relative !important;
    overflow: visible !important;
}

/* Orange top border accent */
.cart-grid-body .card.cart-container::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(135deg, #5ba718 0%, #5ba718 100%) !important;
    border-radius: 16px 16px 0 0 !important;
}

/* Cart Product Line Items - Modern Cards */
body#cart .cart-item,
.cart-overview .cart-item,
.cart-items .cart-item {
    background: #fafafa !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 15px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    border-bottom: none !important;
}

body#cart .cart-item:hover,
.cart-overview .cart-item:hover,
.cart-items .cart-item:hover {
    border-color: #5ba718 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69,0.1) !important;
    transform: translateY(-2px) !important;
}

/* Product Image Container */
.product-line-grid-left {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-line-grid-left img {
    border-radius: 10px !important;
    border: 2px solid #e9ecef !important;
    background: #ffffff !important;
    padding: 5px !important;
    transition: all 0.3s ease !important;
}

.cart-item:hover .product-line-grid-left img {
    border-color: #5ba718 !important;
}

/* Product Name/Title */
.product-line-grid-body .product-line-info a.label {
    color: #2c3e50 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    line-height: 1.4 !important;
    display: block !important;
    margin-bottom: 8px !important;
}

.product-line-grid-body .product-line-info a.label:hover {
    color: #5ba718 !important;
}

/* Product Price */
.product-line-grid-body .product-price h5 {
    margin: 0 !important;
}

.product-line-grid-body .product-price .price {
    color: #5ba718 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.product-line-grid-body .product-price .regular-price {
    color: #6c757d !important;
    text-decoration: line-through !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    margin-right: 10px !important;
}

/* Product Attributes/Variations */
.product-line-grid-body .product-line-info .label {
    color: #6c757d !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}

.product-line-grid-body .product-line-info .value {
    color: #2c3e50 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Quantity Controls - Modern Styling */
.product-line-grid-right .qty,
body#cart .product-line-grid-right .qty,
.cart-item .product-line-grid-right .qty {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.product-line-grid-right .bootstrap-touchspin,
body#cart .product-line-grid-right .bootstrap-touchspin,
.cart-item .bootstrap-touchspin {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0px !important;
    background: #ffffff !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 0px !important;
}

.product-line-grid-right .bootstrap-touchspin input.form-control,
body#cart .product-line-grid-right .bootstrap-touchspin input.form-control,
.cart-item .bootstrap-touchspin input.form-control {
    width: 70px !important;
    height: 40px !important;
    padding: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    text-align: center !important;
    border: none !important;
    background: #fafafa !important;
    border-radius: 6px !important;
}

.product-line-grid-right .bootstrap-touchspin .btn,
body#cart .product-line-grid-right .bootstrap-touchspin .btn,
.cart-item .bootstrap-touchspin .btn,
.product-line-grid-right .bootstrap-touchspin .btn-touchspin,
body#cart .product-line-grid-right .btn-touchspin,
.cart-item .btn-touchspin {
    width: 25px !important;
    height: 40px !important;
    padding: 0 !important;
    background: #5ba718 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-line-grid-right .bootstrap-touchspin .btn:hover,
body#cart .product-line-grid-right .bootstrap-touchspin .btn:hover,
.cart-item .bootstrap-touchspin .btn:hover {
    background: #5ba718 !important;
    transform: scale(1.05) !important;
}

/* Remove From Cart Button */
.cart-line-product-actions .remove-from-cart {
    background: #dc3545 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
    padding: 0 !important;
}

.cart-line-product-actions .remove-from-cart:hover {
    background: #c82333 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3) !important;
}

.cart-line-product-actions .remove-from-cart i {
    font-size: 18px !important;
}

/* Product Total Price */
.product-line-grid-right .product-price strong {
    color: #5ba718 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
}

/* Continue Shopping Button */
.cart-grid-body .btn.btn-primary,
body#cart .cart-grid-body .btn.btn-primary,
.cart-grid-body a.btn-primary,
body#cart a.btn-primary[href*="index"] {
    background: linear-gradient(135deg, #5ba718 0%, #5ba718 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69,0.3) !important;
    margin-top: 20px !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.cart-grid-body .btn.btn-primary:hover,
body#cart .cart-grid-body .btn.btn-primary:hover,
.cart-grid-body a.btn-primary:hover,
body#cart a.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69,0.4) !important;
    color: #ffffff !important;
}

/* ===================================================================== */
/* CART SUMMARY (RIGHT SIDEBAR) - MATCH CHECKOUT DESIGN                 */
/* ===================================================================== */
.cart-summary-line {
    margin: 0px 0 5px;
}
/* Cart Summary Container */
.cart-grid-right .cart-summary {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 10px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e9ecef !important;
    margin-bottom: 30px !important;
    position: relative !important;
    position: sticky !important;
    top: 20px !important;
}

/* Orange top border */
.cart-grid-right .cart-summary::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(135deg, #5ba718 0%, #5ba718 100%) !important;
    border-radius: 16px 16px 0 0 !important;
}

/* Cart Summary Line Items */
.cart-summary .cart-summary-line {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 5px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    font-size: 15px !important;
    color: #495057 !important;
}

.cart-summary .cart-summary-line:last-child {
    border-bottom: none !important;
}

.cart-summary .cart-summary-line .label {
    font-weight: 500 !important;
    color: #6c757d !important;
    flex: 0 0 auto !important;
    max-width: 75% !important;
    white-space: nowrap !important;
}

.cart-summary .cart-summary-line .label.sub {
    max-width: 80% !important;
}

.cart-summary .cart-summary-line .value {
    font-weight: 700 !important;
    color: #2c3e50 !important;
    flex: 0 0 auto !important;
    text-align: right !important;
    margin-left: auto !important;
}

.cart-summary .cart-summary-line .value.sub {
    white-space: nowrap !important;
}

/* Cart Total - Highlight */
.cart-summary .cart-summary-totals .cart-summary-line.cart-total {
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #2c3e50 !important;
    padding: 20px 0 10px !important;
    margin-top: 15px !important;
    border-top: 3px solid #5ba718 !important;
    border-bottom: none !important;
}

.cart-summary .cart-summary-totals .cart-summary-line.cart-total .value {
    color: #5ba718 !important;
    font-size: 24px !important;
}

/* ===================================================================== */
/* PROMO CODE SECTION - MODERN STYLING                                  */
/* ===================================================================== */

/* Promo Code Toggle Button */
.block-promo .promo-code-button {
    display: inline-block !important;
    padding: 7px 7px !important;
    background: linear-gradient(135deg, rgba(40, 167, 69,0.1) 0%, rgba(40, 167, 69,0.05) 100%) !important;
    border: 2px solid #5ba718 !important;
    border-radius: 10px !important;
    color: #5ba718 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin-bottom: 15px !important;
}

.block-promo .promo-code-button:hover {
    background: linear-gradient(135deg, #5ba718 0%, #5ba718 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69,0.3) !important;
}

/* Promo Code Input Section */
.block-promo .promo-code {
    background: #f8f9fa !important;
    border-radius: 10px !important;
    padding: 10px !important;
    margin-top: 15px !important;
    border: 2px solid #e9ecef !important;
}

/* Promo Code Input Field */
.block-promo .promo-input {
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 5px 5px !important;    
    width: 100% !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
    margin-bottom: 12px !important;
}

.block-promo .promo-input:focus {
    border-color: #5ba718 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69,0.1) !important;
}

/* Promo Code Apply Button */
.block-promo .promo-code button[type="submit"],
.block-promo button.btn-primary {
    width: 100% !important;
    background: linear-gradient(135deg, #5ba718 0%, #5ba718 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0px 5px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.block-promo .promo-code button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69,0.363) !important;
}

/* Applied Promo Codes Display */
.cart-summary .promo-discounts .cart-summary-line {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%) !important;
    border: 2px solid rgba(40, 167, 69, 0.2) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    margin-bottom: 10px !important;
}

.cart-summary .promo-discounts .cart-summary-line .label {
    color: #28a745 !important;
    font-weight: 600 !important;
    display: block !important;
    width: 100% !important;
    white-space: normal !important;
    line-height: 1.35 !important;
}

.cart-summary .promo-discounts .cart-summary-line .code {
    background: #28a745 !important;
    color: #ffffff !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    width: auto !important;
    display: inline-block !important;
    line-height: 1.2 !important;
    margin-right: 8px !important;
    vertical-align: baseline !important;
}

.cart-summary .promo-discounts .cart-summary-line .discount-name {
    width: auto !important;
    display: inline !important;
    color: #1f6f34 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

/* ===================================================================== */
/* PROCEED TO CHECKOUT BUTTON - HERO STYLING                            */
/* ===================================================================== */

.cart-summary .checkout.card-block {
    padding: 0 !important;
    margin-top: 25px !important;
}

.cart-summary .checkout a.btn-primary,
.cart-summary .checkout button.btn-primary {
    width: 100% !important;
    background: linear-gradient(135deg, #5ba718 0%, #5ba718 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 6px 32px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: block !important;
    text-decoration: none !important;
}

.cart-summary .checkout a.btn-primary:hover,
.cart-summary .checkout button.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(0, 179, 0, 0.5) !important;
}

/* Disabled State */
.cart-summary .checkout button.btn-primary.disabled,
.cart-summary .checkout button.btn-primary:disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

/* ===================================================================== */
/* CART ALERTS & MESSAGES                                               */
/* ===================================================================== */

/* Minimum Purchase Alert */
.cart-summary .alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.08) 100%) !important;
    border: 2px solid rgba(255, 193, 7, 0.4) !important;
    border-radius: 10px !important;
    padding: 15px 20px !important;
    color: #856404 !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
}

.cart-grid-body {
    padding-right: 50px !important;
}

/* Empty Cart Message */
.cart-grid-body .no-items {
    text-align: center !important;
    padding: 60px 20px !important;
    color: #6c757d !important;
    font-size: 18px !important;
    font-weight: 500 !important;
}

/* ===================================================================== */
/* RESPONSIVE DESIGN - CART PAGE                                        */
/* ===================================================================== */

@media (max-width: 991px) {
    /* Stack cart summary on mobile */
    .cart-grid-right .cart-summary {
        position: static !important;
        top: auto !important;
    }
    
    .cart-grid-body .card.cart-container {
        padding: 25px !important;
    }
    
    .cart-grid-right .cart-summary {
        padding: 25px !important;
    }
}

@media (max-width: 767px) {
    /* Mobile product layout adjustments */
    .cart-item {
        padding: 15px !important;
    }
    
    .product-line-grid-body .product-line-info a.label {
        font-size: 16px !important;
    }
    
    .product-line-grid-right .bootstrap-touchspin input.form-control {
        width: 60px !important;
        font-size: 14px !important;
    }
    
    .product-line-grid-right .bootstrap-touchspin .btn {
        width: 32px !important;
        height: 36px !important;
    }
    
    .cart-grid-body .card-block h1 {
        font-size: 26px !important;
    }
    
    .cart-summary .checkout a.btn-primary,
    .cart-summary .checkout button.btn-primary {
        font-size: 16px !important;
        padding: 16px 24px !important;
    }
}

@media (max-width: 543px) {
    .cart-item {
        padding: 12px !important;
    }
    
    .cart-grid-body .card.cart-container {
        padding: 20px !important;
    }
    
    .cart-grid-right .cart-summary {
        padding: 20px !important;
    }
    
    .product-line-grid-right .product-price strong {
        font-size: 18px !important;
    }
}

/* ===================================================================== */
/* LOGIN PAGE THEME - Match Checkout Aesthetic                          */
/* Route: /login (body id usually #authentication)                      */
/* ===================================================================== */

/* Page title */
body#authentication h1,
body#tegistration h1,
body#password h1,
body#authentication .page-header h1,
body#registration .page-header h1,
body#password .page-header h1,
body#authentication .page-heading,
body#registration .page-heading,
body#password .page-heading {
  color: #333333 !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  text-align: center !important;
  letter-spacing: -0.3px !important;
  text-transform: none !important;
  margin: 20px auto 18px !important;
  padding-bottom: 14px !important;
  position: relative !important;
}

body#authentication h1::after,
body#registration h1::after,
body#password h1::after,
body#authentication .page-header h1::after,
body#registration .page-header h1::after,
body#password .page-header h1::after,
body#authentication .page-heading::after,
body#registration .page-heading::after,
body#password .page-heading::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 80px !important;
  height: 4px !important;
  background: linear-gradient(135deg, #9279e3 0%, #5ba718 100%);
  border-radius: 2px !important;
}

/* Center the login card and give it a modern container style */
body#authentication .customerform-wrapper,
body#registration .customerform-wrapper,
body#authentication section.login-form,
body#registration section.register-form,
body#password section.page-content {
  display: block !important;
  max-width: 960px !important;
  margin: 0 auto !important;
}

/* Form container */
body#authentication section.login-form #login-form,
body#registration section.register-form #customer-form,
body#authentication form#login-form,
body#registration form#customer-form,
body#password section.page-content form.forgotten-password {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 28px 28px 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid #e9ecef !important;
  position: relative !important;
  overflow: hidden;
}

/* Orange top accent */
body#authentication section.login-form #login-form::before,
body#registration section.register-form #customer-form::before,
body#authentication form#login-form::before,
body#registration form#customer-form::before,
body#password section.page-content form.forgotten-password::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  background: linear-gradient(135deg, #5ba718 0%, #5ba718 100%) !important;
  border-radius: 16px 16px 0 0 !important;
}

/* Inputs */
body#authentication #login-form .form-control,
body#registration #customer-form .form-control,
body#password form.forgotten-password .form-control,
body#authentication #login-form input[type="email"],
body#registration #customer-form input[type="email"],
body#password form.forgotten-password input[type="email"],
body#authentication #login-form input[type="password"],
body#registration #customer-form input[type="password"] {
  border: 2px solid #c7c7c7 !important;
  border-radius: 10px !important;
  padding: 4px 16px !important;
  font-size: 15px !important;
  height: 48px !important;
  transition: all .2s ease !important;
  background: #ffffff !important;
  color: #2c3e50 !important;
}
body#authentication #login-form .form-control:hover,
body#registration #customer-form .form-control:hover,
body#password form.forgotten-password .form-control:hover,
body#authentication #login-form input[type="email"]:hover,
body#registration #customer-form input[type="email"]:hover,
body#password form.forgotten-password input[type="email"]:hover,
body#authentication #login-form input[type="password"]:hover,
body#registration #customer-form input[type="password"]:hover {
  border: 2px solid #5ba718 !important;
}

body#authentication #login-form .form-control:focus,
body#registration #customer-form .form-control:focus,
body#password form.forgotten-password .form-control:focus {
  border-color: #5ba718 !important;
  box-shadow: 0 0 0 3px rgba(249,129,37,.12) !important;
  outline: none !important;
}

/* Show password checkbox */
body#authentication #login-form .show-password-checkbox,
body#registration #customer-form .show-password-checkbox {
    position: absolute;
    top: 13px;
    right: 8px;
}

@media (min-width: 992px) {
  .col-lg-undefined { flex: 0 0 auto; width: 25% !important; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .col-lg-undefined { flex: 0 0 auto; width: 33.333333% !important; }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .col-lg-undefined { flex: 0 0 auto; width: 50% !important; }
}
@media (max-width: 575.98px) {
  .col-lg-undefined { flex: 0 0 auto; width: 100% !important; }
}

/* ================================
   Faceted Search Loading Animation
   ================================ */
.faceted-overlay .spinner {
  width: 75px !important;
  height: 75px !important;
  display: inline-block !important;
  border-width: 2px !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  border-top-color: #fff !important;
  border-radius: 100% !important;
  border-style: solid !important;
  animation: faceted-spinner-animation 1s infinite linear !important;
}

@keyframes faceted-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Fix for bullet points in product descriptions */
/* Override the global ul { list-style: none; } rule for content areas */

.tab-content ul,
.product-description ul,
#description ul,
.tabs .tab-pane ul,
.product-short-description ul {
  list-style: disc !important;
  padding-left: 30px !important;
  margin-bottom: 15px !important;
}

.tab-content ol,
.product-description ol,
#description ol,
.tabs .tab-pane ol,
.product-short-description ol {
  list-style: decimal !important;
  padding-left: 30px !important;
  margin-bottom: 15px !important;
}

.tab-content li,
.product-description li,
#description li,
.tabs .tab-pane li,
.product-short-description li {
  margin-bottom: 5px !important;
  line-height: 1.5 !important;
}

/* Nested lists support */
.tab-content ul ul,
.product-description ul ul,
#description ul ul,
.tabs .tab-pane ul ul,
.product-short-description ul ul {
  list-style: circle !important;
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.tab-content ul ul ul,
.product-description ul ul ul,
#description ul ul ul,
.tabs .tab-pane ul ul ul,
.product-short-description ul ul ul {
  list-style: square !important;
}

/* Hide spinner arrows on quantity input fields */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

input[type="number"] {
  -moz-appearance: textfield !important;
}

/* Fix bullet points in product descriptions */
/* Restore list styling for content areas where rich text is displayed */
.tab-content ul,
.product-description ul,
#description ul,
.tabs .tab-pane ul {
  list-style: disc !important;
  padding-left: 20px !important;
  margin-bottom: 10px;
}

.tab-content ol,
.product-description ol,
#description ol,
.tabs .tab-pane ol {
  list-style: decimal !important;
  padding-left: 20px !important;
  margin-bottom: 10px;
}

/* Nested list support */
.tab-content ul ul,
.product-description ul ul,
#description ul ul,
.tabs .tab-pane ul ul {
  list-style: circle !important;
  margin-top: 5px;
  margin-bottom: 5px;
}

.tab-content ul ul ul,
.product-description ul ul ul,
#description ul ul ul,
.tabs .tab-pane ul ul ul {
  list-style: square !important;
}

/* Ensure proper spacing for list items */
.tab-content li,
.product-description li,
#description li,
.tabs .tab-pane li {
  margin-bottom: 5px;
}

/* Also apply to product short description if displayed elsewhere */
.product-short-description ul {
  list-style: disc !important;
  padding-left: 20px !important;
  margin-bottom: 10px;
}

.product-short-description ol {
  list-style: decimal !important;
  padding-left: 20px !important;
  margin-bottom: 10px;
}

.product-short-description li {
  margin-bottom: 5px;
}
/* ===================================================================== */
/* ORDER DETAILS PAGE - MODERN STYLING                                  */
/* ===================================================================== */

/* Order details page container */
body#order-detail #order-infos {
  margin-bottom: 40px;
}

/* Order header styling */
.order-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  border-radius: 16px !important;
  padding: 30px 40px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #e9ecef !important;
  border-top: 4px solid #5ba718 !important;
  margin-bottom: 25px !important;
}

.order-header h2 {
  margin: 0 !important;
  color: #2c3e50 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

/* Order summary box */
.order-summary {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 30px 40px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #e9ecef !important;
  border-top: 4px solid #28a745 !important;
  margin-bottom: 25px !important;
}

/* Order info items */
.order-info-item {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.order-info-label {
  font-weight: 600;
  color: #6c757d;
  min-width: 150px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.order-info-value {
  font-weight: 500;
  color: #2c3e50;
  font-size: 16px;
}

.order-action-link {
  color: #5ba718;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.order-action-link:hover {
  color: #6b1b7f;
  text-decoration: underline;
}

.order-action-link i {
  font-size: 18px;
}

/* Gift message styling */
.gift-info {
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  border-radius: 10px;
  border-left: 4px solid #0066cc;
  padding: 15px !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.gift-info p {
  margin: 0 !important;
  color: #2c3e50;
}

.gift-message {
  background-color: #f5f5f5 !important;
  border-left: 3px solid #5ba718 !important;
  padding: 12px 15px !important;
  margin-top: 10px !important;
  border-radius: 6px;
  font-style: italic;
  color: #555;
  line-height: 1.6;
}

/* Order history section */
#order-history {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 30px 40px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #e9ecef !important;
  border-top: 4px solid #ffc107 !important;
  margin-bottom: 25px !important;
}

#order-history h3 {
  color: #2c3e50 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 25px !important;
  padding-bottom: 15px !important;
  border-bottom: 2px solid #f0f0f0 !important;
}

/* Status history table */
#order-history .table {
  margin-bottom: 0 !important;
  border-collapse: collapse !important;
}

#order-history .table thead {
  background-color: #f9f9f9 !important;
}

#order-history .table th {
  padding: 15px 12px !important;
  font-weight: 600 !important;
  color: #6c757d !important;
  border-bottom: 2px solid #e9ecef !important;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.3px;
}

#order-history .table td {
  padding: 15px 12px !important;
  vertical-align: middle !important;
  border-bottom: 1px solid #e9ecef !important;
}

#order-history .table tbody tr:hover {
  background-color: #f8f9fa !important;
}

#order-history .label-pill {
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  display: inline-block !important;
}

/* Shipping section */
.shipping-section {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 30px 40px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #e9ecef !important;
  border-top: 4px solid #17a2b8 !important;
  margin-bottom: 25px !important;
}

.shipping-section h3 {
  color: #2c3e50 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding-bottom: 15px !important;
  border-bottom: 2px solid #f0f0f0 !important;
}

/* Shipping table styling */
.shipping-table {
  margin-bottom: 0 !important;
}

.shipping-table thead {
  background-color: #f9f9f9 !important;
}

.shipping-table th {
  padding: 15px 12px !important;
  font-weight: 600 !important;
  color: #6c757d !important;
  border-bottom: 2px solid #e9ecef !important;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.shipping-table td {
  padding: 15px 12px !important;
  vertical-align: middle !important;
  border-bottom: 1px solid #e9ecef !important;
  color: #2c3e50;
}

.shipping-table tbody tr:hover {
  background-color: #f8f9fa !important;
}

/* Tracking number styling */
.tracking-number {
  color: #0066cc;
  font-weight: 600;
}

.tracking-number a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tracking-number a:hover {
  color: #0052a3;
  text-decoration: underline;
}

/* Mobile shipping card styling */
.shipping-line {
  background: #f9f9f9 !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 10px !important;
  padding: 15px !important;
  margin-bottom: 15px !important;
  transition: all 0.3s ease;
}

.shipping-line:hover {
  border-color: #17a2b8 !important;
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.shipping-line strong {
  color: #6c757d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 5px;
}

.shipping-line ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shipping-line li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
}

.shipping-line li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Addresses section */
.addresses {
  margin-bottom: 25px;
}

.addresses .box {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 30px 40px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #e9ecef !important;
  border-top: 4px solid #6c757d !important;
}

.addresses h4 {
  color: #2c3e50 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  padding-bottom: 15px !important;
  border-bottom: 2px solid #f0f0f0 !important;
}

.addresses address {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  font-style: normal;
}

/* Product details section */
body#order-detail .box {
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid #e9ecef !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s ease;
}

body#order-detail .box:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .order-header,
  .order-summary,
  #order-history,
  .shipping-section,
  .addresses .box {
    padding: 20px !important;
  }

  .order-header h2 {
    font-size: 20px !important;
  }

  #order-history h3,
  .shipping-section h3,
  .addresses h4 {
    font-size: 18px !important;
  }

  .order-info-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-info-label {
    min-width: auto;
  }

  .shipping-table {
    font-size: 13px !important;
  }

  .shipping-table th,
  .shipping-table td {
    padding: 10px 8px !important;
  }
}

.support-nav-link {
  display: inline-block;
  margin: 0 25px 0 10px;  /* top right bottom left */
  vertical-align: middle;
}

#_desktop_support_link svg.support-icon,
#_desktop_support_link svg.support-icon path {
  fill: none !important;
}

#_desktop_support_link svg.support-icon {
  stroke: currentColor !important;
  stroke-width: 2 !important;
  vertical-align: -4px;
}

@media (max-width: 480px) {
  .order-header,
  .order-summary,
  #order-history,
  .shipping-section,
  .addresses .box {
    padding: 15px !important;
  }

  .order-header h2 {
    font-size: 18px !important;
  }

  .gift-message {
    font-size: 13px !important;
  }
}

/* Keep hero slider caption text readable when the slide link is hovered */
.an_homeslider .an_homeslider-item .an_homeslider-desc,
.an_homeslider .an_homeslider-item .an_homeslider-desc .h2,
.an_homeslider .an_homeslider-item .an_homeslider-desc p,
.an_homeslider .an_homeslider-item .an_homeslider-desc a,
.an_homeslider .an_homeslider-item:hover .an_homeslider-desc,
.an_homeslider .an_homeslider-item:hover .an_homeslider-desc .h2,
.an_homeslider .an_homeslider-item:hover .an_homeslider-desc p,
.an_homeslider .an_homeslider-item:hover .an_homeslider-desc a,
.an_homeslider .an_homeslider-item:focus .an_homeslider-desc,
.an_homeslider .an_homeslider-item:focus .an_homeslider-desc .h2,
.an_homeslider .an_homeslider-item:focus .an_homeslider-desc p,
.an_homeslider .an_homeslider-item:focus .an_homeslider-desc a {
  color: #fff !important;
}

.an_homeslider .an_homeslider-item:hover .an_homeslider-desc a,
.an_homeslider .an_homeslider-item:focus .an_homeslider-desc a {
  text-decoration: none;
}

/* Restore homepage banner card styling and hover behavior */
.page-home .banner-wr {
  padding-bottom: 10px;
}

.page-home .banner-wr .row,
.page-home .banner-wr .owl-stage-outer,
.page-home .banner-wr .owl-stage,
.page-home .banner-wr .owl-item {
  overflow: visible;
}

.page-home .banner-wr .product-banner {
  border-radius: 12px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.page-home .banner-wr .product-banner .banner-text-bl::before {
  content: none !important;
  background: transparent !important;
}

.page-home .banner-wr .product-banner img {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.page-home .banner-wr .product-banner:hover {
  transform: translateY(-8px);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}

.page-home .banner-wr .product-banner:hover img {
  opacity: 0.92;
}

/* Homeproducts banner cards (Vape Juice / Salt Juice) */
.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay {
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay img {
  display: block;
  border-radius: 12px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.14);
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-link,
.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-content {
  border-radius: 12px;
  overflow: hidden;
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-content::before {
  content: none !important;
  background: transparent !important;
  opacity: 0 !important;
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.16);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-content .h2,
.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-content p:not(.h2) {
  position: relative;
  z-index: 2;
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-content p:not(.h2) {
  opacity: 0.85;
  transform: translate3d(0, 0, 0);
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-link:hover + .an_homeproducts-banner-content p:not(.h2),
.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-link:focus + .an_homeproducts-banner-content p:not(.h2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-link:hover + .an_homeproducts-banner-content::after,
.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-link:focus + .an_homeproducts-banner-content::after {
  opacity: 1;
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-link:hover + .an_homeproducts-banner-content .h2,
.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-link:focus + .an_homeproducts-banner-content .h2 {
  transform: translate3d(0, -6px, 0);
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-link:hover,
.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay .an_homeproducts-banner-link:focus {
  outline: none;
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay:hover {
  transform: translateY(-8px);
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay img {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.page-home .an_homeproducts .an_homeproducts-banner-default.an_homeproducts-banner-overlay:hover img {
  opacity: 0.9;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}

/* an_homeproducts visibility toggles (missing in themed module CSS) */
@media (min-width: 768px) {
  .an_homeproducts-hide-desktop {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .an_homeproducts-hide-mobile {
    display: none !important;
  }
}