/* --------------------------------------------------------------------------
   4. 02 KATEGORÄ° SAYFASI (CATEGORY PAGE) STYLES
   -------------------------------------------------------------------------- */
.ash-cat-hero-banner {
  background: var(--ash-bg-main, #F5F2EB);
  height: clamp(280px, 26vw, 420px);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(30px, 5vw, 78px);
  position: relative;
  width: 100% !important;
  display: flex;
  align-items: center;
}

.ash-cat-hero-banner__picture,
.ash-cat-hero-banner__picture img {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.ash-cat-hero-banner__picture img {
  object-fit: cover;
  object-position: center 65%;
}

.ash-cat-banner-overlay {
  position: relative;
  z-index: 2;
  color: var(--ash-dark-green, #0D1B16);
  max-width: min(39vw, 500px);
}

.ash-cat-banner-overlay__eyebrow {
  color: var(--ash-gold, #C5A059);
  display: block;
  font-family: var(--font-body, Montserrat, sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ash-cat-banner-overlay h1 {
  font-family: var(--font-heading) !important;
  font-size: clamp(36px, 4.3vw, 68px) !important;
  letter-spacing: .025em;
  line-height: .92;
  color: var(--ash-dark-green, #0D1B16) !important;
  margin-bottom: 18px;
  font-weight: 400 !important;
}

.ash-cat-banner-overlay p {
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.7;
  color: var(--ash-text-muted, #555555);
  margin: 0;
  max-width: 34ch;
  font-weight: 400;
}

@media (max-width: 768px) {
  .ash-cat-hero-banner {
    align-items: flex-start;
    aspect-ratio: 1 / 0.96;
    height: auto;
    padding: clamp(28px, 9vw, 48px) 26px;
  }

  .ash-cat-hero-banner__picture img {
    object-position: center 100%;
  }

  .ash-cat-banner-overlay {
    max-width: 100%;
  }

  .ash-cat-banner-overlay h1 {
    font-size: clamp(36px, 11vw, 52px) !important;
  }
}

.ash-category-page-container {
  width: 100% !important;
  max-width: 1550px;
  margin: 0 auto;
  padding: 40px max(20px, 4vw);
}

.ash-category-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

.ash-sidebar-filter {
  background-color: transparent;
}

/* Force expand collapse lists in sidebar filters & override hidden-sm-down */
.ash-sidebar-filter #search_filters_wrapper,
.ash-sidebar-filter #search_filters,
.ash-sidebar-filter .facet,
.ash-sidebar-filter .facet .collapse,
.ash-sidebar-filter .facet-title,
#search_filters .collapse {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
  opacity: 1 !important;
}

.ash-sidebar-filter .hidden-sm-down {
  display: block !important;
}

.ash-sidebar-filter .hidden-md-up {
  display: none !important;
}

/* Native PrestaShop Faceted Search & Slider Styling */
#search_filters .facet {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ash-border);
}

#search_filters .facet-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ash-dark-green);
  margin-bottom: 12px;
  text-transform: uppercase;
}

#search_filters .facet-label {
  color: var(--ash-text-dark);
}

#search_filters .facet-label .search-link {
  color: var(--ash-text-dark) !important;
  text-decoration: none !important;
}

#search_filters .facet-label:hover .search-link,
#search_filters .facet-label.active .search-link {
  color: var(--ash-gold) !important;
}

#search_filters .facet-label input {
  accent-color: var(--ash-gold);
}

#search_filters .custom-checkbox input[type="checkbox"] + span,
#search_filters .custom-radio input[type="radio"] + span {
  border-color: var(--ash-gold) !important;
  background: var(--ash-bg-main) !important;
}

#search_filters .custom-checkbox input[type="checkbox"]:checked + span,
#search_filters .custom-radio input[type="radio"]:checked + span {
  border-color: var(--ash-gold) !important;
  background: var(--ash-gold) !important;
}

#search_filters .custom-checkbox input[type="checkbox"]:checked + span .checkbox-checked {
  color: var(--ash-dark-green) !important;
}

#search_filters .faceted-slider {
  list-style: none;
  padding: 0;
  margin: 0;
}

#search_filters .faceted-slider li p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ash-gold);
  margin-bottom: 12px;
}

/* jQuery UI Price Slider Track & Handles */
.ui-slider,
.ui-slider-horizontal {
  height: 6px !important;
  background: var(--ash-border) !important;
  border: none !important;
  border-radius: 3px !important;
  position: relative !important;
  margin: 15px 8px 15px 8px !important;
  display: block !important;
}

.ui-slider-horizontal .ui-slider-range {
  position: absolute !important;
  top: 0 !important;
  height: 100% !important;
  background: var(--ash-dark-green) !important;
  border-radius: 3px !important;
}

.ui-slider-horizontal .ui-slider-handle {
  position: absolute !important;
  top: -5px !important;
  margin-left: -8px !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: var(--ash-gold) !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer !important;
  outline: none !important;
  z-index: 2 !important;
  transition: transform 0.15s ease, background-color 0.15s ease !important;
}

.ui-slider-horizontal .ui-slider-handle:hover,
.ui-slider-horizontal .ui-slider-handle.ui-state-focus {
  transform: scale(1.2) !important;
  background: var(--ash-dark-green) !important;
}

.ash-filter-group {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ash-border);
}

.ash-filter-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash-dark-green);
  margin-bottom: 15px;
}

.ash-filter-list-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ash-filter-list-links li {
  margin-bottom: 8px;
}

.ash-filter-list-links li a {
  color: var(--ash-text-muted);
  font-size: 12px;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.ash-filter-list-links li.active a,
.ash-filter-list-links li a:hover {
  color: var(--ash-dark-green);
  font-weight: 600;
}

.ash-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ash-filter-list li {
  margin-bottom: 8px;
}

.ash-filter-list li label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ash-text-dark);
  font-weight: 400;
  cursor: pointer;
}

.ash-filter-list li input[type="checkbox"] {
  accent-color: var(--ash-dark-green);
  width: 14px;
  height: 14px;
}

.ash-range-slider {
  width: 100%;
  accent-color: var(--ash-dark-green);
  margin-top: 5px;
}

.ash-price-values {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ash-text-muted);
  margin-top: 6px;
  font-weight: 600;
}

.ash-cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.ash-count-text {
  font-size: 12px;
  color: var(--ash-text-muted);
}

.ash-sort-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ash-text-dark);
}

.ash-select-sort {
  background-color: #FFFFFF;
  border: 1px solid var(--ash-border);
  padding: 6px 12px;
  font-size: 11px;
  color: var(--ash-text-dark);
  border-radius: 2px;
  outline: none;
}

.ash-cat-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ash-cat-card {
  background-color: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 3px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ash-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.ash-cat-img-box {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.ash-cat-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ash-cat-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--ash-text-dark);
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.2;
}

.ash-cat-card-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ash-text-dark);
}

/* --------------------------------------------------------------------------
   5. 03 ÃœRÃœN SAYFASI (PRODUCT DETAIL PAGE) STYLES
   -------------------------------------------------------------------------- */
.ash-product-page-container {
  width: 100% !important;
  max-width: 1550px;
  margin: 0 auto;
  padding: 40px max(20px, 4vw);
}

.ash-product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ash-product-gallery {
  display: flex;
  gap: 16px;
}

.ash-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 75px;
  order: -1;
}

.ash-gallery-thumbs img {
  width: 75px;
  height: 75px;
  border: 1px solid var(--ash-border);
  border-radius: 2px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.ash-gallery-thumbs img.active,
.ash-gallery-thumbs img:hover {
  opacity: 1;
  border-color: var(--ash-dark-green);
}

.ash-gallery-main {
  flex: 1;
  background-color: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.ash-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  cursor: inherit;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.2s ease-out;
}

.ash-gallery-main.is-inline-zooming img {
  transform: scale(2.15);
}

.ash-gallery-main.is-inline-zooming {
  cursor: zoom-out;
}

/* ---- MOBILE / TOUCH ---- */
@media (max-width: 991px) {
  /* Main image: tap cursor */
  .ash-gallery-main img {
    cursor: zoom-in;
    touch-action: manipulation;
  }

}

.ash-product-info-box {
  padding-top: 5px;
}

.ash-p-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(32px, 3.2vw, 42px) !important;
  color: var(--ash-dark-green) !important;
  margin-bottom: 10px;
  line-height: 1.1;
  font-weight: 500 !important;
}

.ash-p-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ash-gold);
  font-size: 15px;
  margin-bottom: 18px;
}

.ash-rating-count {
  font-size: 12px;
  color: var(--ash-text-muted);
}

.ash-p-price {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  color: var(--ash-dark-green);
  margin-bottom: 4px;
}

.ash-p-installments {
  font-size: 11px;
  color: var(--ash-text-muted);
  margin-bottom: 20px;
}

.ash-p-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--ash-text-muted);
  margin-bottom: 25px;
}

.ash-qty-stepper {
  display: inline-flex;
  border: 1px solid var(--ash-border);
  background-color: var(--ash-bg-card);
  border-radius: 2px;
  margin-bottom: 20px;
}

.ash-qty-stepper button {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
  color: var(--ash-dark-green);
}

.ash-qty-stepper input {
  width: 44px;
  height: 38px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--ash-dark-green);
  outline: none;
}

.ash-p-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ash-p-actions .ash-btn-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding-top: 0;
  padding-bottom: 0;
}

.ash-restock-notification {
  margin-top: 18px;
}

.ash-restock-alert .js-mailalert {
  display: grid;
  gap: 10px;
}

.ash-restock-label {
  color: var(--ash-text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.ash-restock-alert .form-control {
  width: 100%;
  height: 46px;
  background: transparent;
  border: 1px solid var(--ash-border);
  border-radius: 0;
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0 14px;
}

.ash-restock-alert .form-control:focus {
  border-color: var(--ash-gold);
  box-shadow: none;
  outline: 0;
}

.ash-restock-alert .js-mailalert-add {
  margin-top: 2px;
}

.ash-restock-alert .js-mailalert-alerts .alert,
.ash-restock-confirmation {
  background: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 0;
  color: var(--ash-text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 2px 0 0;
  padding: 12px 14px;
}

.ash-restock-alert .js-mailalert-alerts .alert-success {
  border-color: var(--ash-gold);
  color: var(--ash-dark-green);
}

.ash-btn-block {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.ash-p-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px 30px;
  background-color: #EFEBE1;
  border: 1px solid var(--ash-border);
  border-radius: 2px;
  margin-bottom: 40px;
}

.ash-p-tabs-wrapper {
  margin-bottom: 50px;
}

.ash-p-tabs-nav {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 2.5vw, 40px);
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  border-bottom: 1px solid var(--ash-border);
}

.ash-p-tabs-nav li a {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--ash-text-muted);
  text-decoration: none !important;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ash-p-tabs-nav li.active a,
.ash-p-tabs-nav li a:hover {
  color: var(--ash-dark-green);
  border-bottom-color: var(--ash-dark-green);
}

.ash-energy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.ash-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 28px;
  border: 1px solid var(--ash-border);
  background: rgba(240, 236, 227, .42);
}

.ash-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--ash-border);
}

.ash-benefit-item:last-child {
  border-bottom: 0;
}

.ash-benefit-icon {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ash-gold);
  border-radius: 50%;
  color: var(--ash-gold);
  font-size: 15px;
}

.ash-benefit-item strong {
  display: block;
  font-size: 15px;
  color: var(--ash-dark-green);
  margin-bottom: 4px;
}

.ash-benefit-item p {
  font-size: 12px;
  color: var(--ash-text-muted);
  margin: 0;
  line-height: 1.6;
}

.ash-zodiac-box {
  background: rgba(240, 236, 227, .42);
  border: 1px solid var(--ash-border);
  border-radius: 0;
  padding: 28px;
}

.ash-zodiac-group {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--ash-border);
}

.ash-zodiac-group:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.ash-zodiac-title {
  font-size: 9px;
  letter-spacing: 1.8px;
  color: var(--ash-gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ash-zodiac-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ash-text-dark);
  font-weight: 500;
}

.ash-zodiac-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ash-zodiac-tags i {
  color: var(--ash-gold);
  font-size: 12px;
}

.ash-p-story-section {
  margin-bottom: 50px;
}

.ash-p-story-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ash-text-muted);
  max-width: 1000px;
  margin-bottom: 25px;
}

.ash-p-reviews-section {
  margin-bottom: 50px;
}

.ash-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.ash-score-card,
.ash-review-quote-card {
  background-color: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 4px;
  padding: 30px;
  min-height: 280px;
  height: 100%;
}

.ash-score-card {
  text-align: center;
}

.ash-score-big {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--ash-dark-green);
  line-height: 1;
  margin-bottom: 8px;
}

.ash-score-count {
  font-size: 11px;
  color: var(--ash-text-muted);
  margin-bottom: 20px;
}

.ash-bars-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
  color: var(--ash-text-muted);
}

.ash-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ash-bar-bg {
  flex: 1;
  height: 5px;
  background-color: var(--ash-border);
  border-radius: 3px;
  overflow: hidden;
}

.ash-bar-fill {
  height: 100%;
  background-color: var(--ash-gold);
}

.ash-review-quote-card {
  display: flex;
  flex-direction: column;
}

.ash-review-text {
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ash-text-dark);
  margin: 12px 0;
}

.ash-review-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--ash-dark-green);
  margin-bottom: 20px;
}

.ash-review-user-photos {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.ash-review-user-photos img {
  width: 60px;
  height: 60px;
  border-radius: 2px;
  object-fit: cover;
  border: 1px solid var(--ash-border);
}

/* --------------------------------------------------------------------------
   6. 04 SEPET VE Ã–DEME (CART & CHECKOUT PAGE) STYLES
   -------------------------------------------------------------------------- */
.ash-cart-page-container {
  width: 100% !important;
  max-width: 1550px;
  margin: 0 auto;
  padding: 40px max(20px, 4vw);
}

.ash-cart-main-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(32px, 3.2vw, 42px) !important;
  color: var(--ash-dark-green) !important;
  margin-bottom: 30px;
  font-weight: 500 !important;
}

/* Stepper Bar */
.ash-stepper-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.ash-step-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  cursor: pointer;
}

.ash-step-box.active {
  opacity: 1;
}

.ash-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ash-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash-gold);
  font-size: 16px;
  background-color: var(--ash-bg-main);
}

.ash-step-box.active .ash-step-icon {
  background-color: var(--ash-gold);
  color: #FFFFFF;
}

.ash-step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ash-dark-green);
  text-transform: uppercase;
}

.ash-step-connector {
  flex: 1;
  max-width: 90px;
  height: 1px;
  background-color: var(--ash-border);
  margin-bottom: 20px;
}

.ash-step-connector.active {
  background-color: var(--ash-gold);
}

/* Cart Product Rows */
.ash-cart-section-wrapper {
  margin-bottom: 40px;
}

.ash-cart-items-header {
  font-family: var(--font-heading) !important;
  font-size: 22px !important;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ash-cart-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 3px;
  padding: 16px 24px;
  margin-bottom: 12px;
  gap: 15px;
}

.ash-c-img-box {
  width: 80px;
  height: 80px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--ash-border);
  background-color: #FFF;
  flex-shrink: 0;
}

.ash-c-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ash-c-info-box {
  flex: 1;
  padding: 0 15px;
}

.ash-c-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--ash-dark-green);
  margin-bottom: 4px;
}

.ash-c-sub {
  font-size: 11px;
  color: var(--ash-text-muted);
}

.ash-c-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--ash-dark-green);
  width: 90px;
  text-align: center;
}

.ash-c-qty-box {
  display: inline-flex;
  border: 1px solid var(--ash-border);
  background-color: #FFF;
  border-radius: 2px;
}

.ash-c-qty-box button {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 15px;
  cursor: pointer;
  color: var(--ash-dark-green);
}

.ash-c-qty-box input {
  width: 36px;
  height: 32px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  color: var(--ash-dark-green);
  outline: none;
}

.ash-c-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--ash-dark-green);
  width: 100px;
  text-align: right;
}

/* Shipping Progress Banner */
.ash-shipping-progress-banner {
  background-color: #EFEBE1;
  border: 1px solid var(--ash-border);
  border-radius: 3px;
  padding: 16px 24px;
  margin-top: 25px;
}

.ash-ship-text {
  font-size: 12px;
  color: var(--ash-dark-green);
  margin-bottom: 10px;
}

.ash-ship-bar-wrapper {
  position: relative;
  height: 8px;
  background-color: var(--ash-border);
  border-radius: 4px;
  overflow: hidden;
}

.ash-ship-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ash-gold) 0%, #E6CA85 100%);
}

.ash-ship-max {
  position: absolute;
  right: 10px;
  top: -18px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ash-text-muted);
}

/* Order Summary & Trust Grid */
.ash-summary-trust-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 24px;
  align-items: stretch;
  width: 100% !important;
  margin-bottom: 50px !important;
}

.ash-order-summary-card {
  width: 100% !important;
  max-width: none !important;
  background-color: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 4px;
  padding: 35px;
  box-sizing: border-box;
}

.ash-order-summary-card h3 {
  font-size: 20px;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ash-border);
  padding-bottom: 12px;
}

.ash-sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--ash-text-dark);
}

.ash-sum-row.grand-total {
  font-size: 20px;
  font-weight: 700;
  color: var(--ash-dark-green);
  border-top: 1px solid var(--ash-border);
  padding-top: 16px;
  margin-top: 20px;
}

.ash-tax-note {
  font-size: 11px;
  color: var(--ash-text-muted);
  margin-bottom: 25px;
}

.ash-cart-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 15px;
}

.ash-c-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ash-c-badge-item i {
  font-size: 22px;
  color: var(--ash-gold);
  width: 30px;
}

.ash-c-badge-item strong {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ash-dark-green);
  margin-bottom: 2px;
}

.ash-c-badge-item span {
  font-size: 11px;
  color: var(--ash-text-muted);
}

.ash-crosssell-section {
  margin-bottom: 50px;
}

/* Dark Promo Footer Banner */
.ash-dark-promo-banner {
  width: 100% !important;
  background-color: var(--ash-dark-green);
  color: #FFFFFF;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px 40px;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 40px;
}

.ash-dp-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ash-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ash-dp-main {
  font-family: var(--font-heading);
  font-size: 19px;
  letter-spacing: 1px;
  color: #EAE3D2;
  margin-bottom: 4px;
}

.ash-dp-code {
  font-size: 10px;
  color: #A3B0A7;
}

/* Payment Methods Footer */
.ash-payment-methods-footer {
  text-align: center;
  margin-bottom: 35px;
}

.ash-pm-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ash-text-muted);
  margin-bottom: 16px;
  font-weight: 700;
}

.ash-pm-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 24px;
  color: var(--ash-text-dark);
  flex-wrap: wrap;
}

.ash-ssl-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ash-dark-green);
  border: 1px solid var(--ash-border);
  padding: 5px 10px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --------------------------------------------------------------------------
   7. FOOTER
   -------------------------------------------------------------------------- */
#footer {
  width: 100% !important;
  background-color: var(--ash-dark-green) !important;
  color: #EAE3D2 !important;
  padding-top: 60px;
}

.ash-summary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.ash-summary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 16px;
  text-align: center;
  text-decoration: none !important;
  font-size: 11px;
  letter-spacing: 1px;
}
.ash-summary-action i { font-size: 11px; }

.ash-cart-benefits {
  background: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}
.ash-benefit-item { display: flex; align-items: center; gap: 18px; }
.ash-benefit-item > i { width: 28px; color: var(--ash-dark-green); font-size: 21px; text-align: center; }

/* Checkout — align PrestaShop's native flow with the Ashlesha palette. */
#checkout {
  background: var(--ash-bg-main);
  color: var(--ash-text-dark);
}

#checkout .checkout-step,
#checkout .cart-summary,
#checkout .block-promo {
  background: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  box-shadow: none;
}

#checkout .checkout-step .step-title,
#checkout .cart-summary .cart-summary-line,
#checkout .cart-summary .label,
#checkout .checkout-step h2,
#checkout .checkout-step h3 {
  color: var(--ash-dark-green);
}

#checkout .checkout-step .step-number,
#checkout .checkout-step .done {
  color: var(--ash-gold);
}

#checkout .checkout-step.-current .step-title {
  border-bottom-color: var(--ash-gold);
}

#checkout .btn-primary,
#checkout #payment-confirmation button {
  background: var(--ash-dark-green);
  border-color: var(--ash-dark-green);
  color: #fff;
}

#checkout .btn-primary:hover,
#checkout .btn-primary:focus,
#checkout #payment-confirmation button:hover,
#checkout #payment-confirmation button:focus {
  background: var(--ash-gold);
  border-color: var(--ash-gold);
  color: #fff;
}

#checkout a,
#checkout .step-edit,
#checkout .custom-radio input[type='radio']:checked + span {
  color: var(--ash-gold);
}

#checkout input:focus,
#checkout select:focus,
#checkout textarea:focus {
  border-color: var(--ash-gold);
  box-shadow: 0 0 0 0.15rem rgba(197, 160, 89, 0.2);
}

/* Address selection — replace PrestaShop's cyan card treatment. */
body#checkout section.checkout-step .address-selector .address-item {
  background: var(--ash-bg-main);
  border: 1px solid var(--ash-border);
  border-radius: 2px;
  box-shadow: none;
  color: var(--ash-text-dark);
  overflow: hidden;
}

body#checkout section.checkout-step .address-selector .address-item.selected {
  background: #fbf8f1;
  border-color: var(--ash-gold) !important;
  box-shadow: inset 3px 0 0 var(--ash-gold);
}

body#checkout section.checkout-step .address-selector .address-item header,
body#checkout section.checkout-step .address-selector .address-item footer {
  background: transparent;
  border-color: var(--ash-border);
}

body#checkout section.checkout-step .address-selector .address-item .address-alias,
body#checkout section.checkout-step .address-selector .address-item .address,
body#checkout section.checkout-step .address-selector .address-item address {
  color: var(--ash-dark-green) !important;
}

body#checkout section.checkout-step .address-selector .address-item .address-alias {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

body#checkout section.checkout-step .address-selector .address-item .edit-address,
body#checkout section.checkout-step .address-selector .address-item .delete-address,
body#checkout section.checkout-step .add-address a,
body#checkout section.checkout-step a[data-link-action='different-invoice-address'] {
  color: var(--ash-gold) !important;
}

body#checkout section.checkout-step .address-selector input[type='radio'] {
  accent-color: var(--ash-gold);
}

body#checkout section.checkout-step .address-selector .custom-radio input[type='radio']:checked + span {
  border-color: var(--ash-gold);
  background: var(--ash-gold);
}
.ash-benefit-item strong { display: block; color: var(--ash-dark-green); font-size: 11px; letter-spacing: .8px; margin-bottom: 5px; }
.ash-benefit-item span { display: block; color: var(--ash-text-muted); font-size: 11px; }

#footer a:hover {
  text-decoration: underline !important;
  text-decoration-color: var(--ash-gold) !important;
  text-underline-offset: 4px;
}

.footer-container {
  display: none !important;
}

.ash-footer-main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 max(20px, 4vw) 50px max(20px, 4vw);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 35px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.ash-footer-brand h3 {
  color: #FFFFFF !important;
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 4px;
}

.ash-footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ash-footer-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.ash-footer-brand-subtitle {
  display: block;
  color: var(--ash-gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
}

.ash-footer-brand p {
  color: #A3B0A7;
  font-size: 12px;
  line-height: 1.6;
}

.ash-footer-col h4 {
  color: var(--ash-gold) !important;
  font-family: var(--font-body) !important;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.ash-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ash-footer-col ul li {
  margin-bottom: 10px;
}

.ash-footer-col ul li a {
  color: #D5CEBE;
  font-size: 12px;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.ash-footer-col ul li a:hover {
  color: var(--ash-gold);
}

.ash-footer-craft-copy {
  color: #D5CEBE !important;
}

.ash-footer-payment-methods {
  margin-top: 10px;
}

.ash-footer-payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 24px;
}

.ash-footer-ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border: 1px solid rgba(197, 160, 89, .55);
  color: var(--ash-gold-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .6px;
  line-height: 1.25;
}

.ash-footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 25px max(20px, 4vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #8C9990;
}

.ash-footer-signature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ash-routart-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  text-decoration: none !important;
}

.ash-routart-word {
  display: inline-flex;
  gap: 0;
}

.ash-routart-rout {
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.ash-routart-art {
  color: #FF6A1A;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.ash-routart-link:hover {
  opacity: .8;
  text-decoration: underline !important;
  text-decoration-color: #FF6A1A !important;
  text-underline-offset: 4px;
}


/* ==========================================================================

/* ==========================================================================
   NATIVE WIRING OVERRIDES (custom JS removed, native PrestaShop structures)
   ========================================================================== */

/* Listing: native sort dropdown */
.ash-select-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ash-sort-box .dropdown-menu {
  font-size: 11px;
  min-width: 190px;
  border: 1px solid var(--ash-border);
  border-radius: 2px;
  padding: 6px 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #FFFFFF;
}

.ash-sort-box .dropdown-menu .select-list {
  display: block;
  padding: 7px 16px;
  color: var(--ash-text-dark);
  text-decoration: none;
}

.ash-sort-box .dropdown-menu .select-list:hover,
.ash-sort-box .dropdown-menu .current {
  background-color: var(--ash-bg-card);
  color: var(--ash-dark-green);
}

/* Listing: empty state */
.ash-no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--ash-text-muted);
}

/* Listing: native active filters chips */
#js-active-search-filters {
  margin-bottom: 20px;
}

#js-active-search-filters .h6 {
  font-size: 12px;
  font-weight: 600;
  color: var(--ash-text-dark);
}

#js-active-search-filters .faceted-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
}

#js-active-search-filters .faceted-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ash-text-dark);
  background: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  padding: 4px 10px;
  border-radius: 2px;
  text-decoration: none;
}

#js-active-search-filters .faceted-links a:hover {
  border-color: var(--ash-gold);
}

/* PDP gallery: isolated from PrestaShop's native product-image script */
.ash-product-gallery > .ash-gallery-container {
  display: flex;
  gap: 16px;
  width: 100%;
  position: relative;
}

.ash-gallery-thumbs .ash-product-images {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ash-gallery-thumbs .ash-thumb-container {
  line-height: 0;
}

.ash-gallery-thumbs img.selected {
  opacity: 1;
  border-color: var(--ash-dark-green);
}

.ash-gallery-main {
  position: relative;
}

/* PDP: native TouchSpin quantity stepper */
.ash-qty-stepper .qty {
  display: inline-flex;
}

.ash-qty-stepper .bootstrap-touchspin {
  display: flex;
  align-items: center;
  border: none;
}

.ash-qty-stepper .bootstrap-touchspin .input-group-addon {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 0;
}

.ash-qty-stepper .bootstrap-touchspin .input-group-addon .btn {
  width: 30px;
  height: 19px;
  border: none;
  background: transparent;
  color: var(--ash-dark-green);
  font-size: 13px;
  line-height: 19px;
  padding: 0;
  cursor: pointer;
}

.ash-qty-stepper .bootstrap-touchspin .input-group-addon .btn i {
  font-size: 13px;
  line-height: 19px;
}

/* PDP: native bootstrap tabs */
.ash-p-tabs-nav {
  border-bottom: 1px solid var(--ash-border);
}

.ash-p-tabs-nav .nav-item {
  margin: 0;
}

.ash-p-tabs-nav .nav-link {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  margin: 0;
  padding: 0 0 12px 0;
}

.ash-p-tabs-nav .nav-link.active {
  color: var(--ash-dark-green) !important;
  border-bottom: 2px solid var(--ash-dark-green) !important;
  background: transparent !important;
}

.ash-p-tab-content .tab-pane {
  padding-top: 25px;
}

/* --------------------------------------------------------------------------
   ASHLESHA CART QUANTITY STEPPER (- / +) STYLES
   -------------------------------------------------------------------------- */

.ash-cart-qty-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid var(--ash-border) !important;
  border-radius: 4px !important;
  background: #FFFFFF !important;
  overflow: hidden !important;
  width: auto !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) !important;
}

.ash-cart-qty-wrapper .ash-qty-btn {
  background: var(--ash-bg-card, #F0ECE3) !important;
  color: var(--ash-dark-green, #0D1B16) !important;
  border: none !important;
  width: 32px !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
  cursor: pointer !important;
  padding: 0 !important;
  line-height: 1 !important;
  user-select: none !important;
}

.ash-cart-qty-wrapper .ash-qty-btn:hover {
  background: var(--ash-gold, #C5A059) !important;
  color: #FFFFFF !important;
}

.ash-cart-qty-wrapper input.ash-qty-input {
  border: none !important;
  text-align: center !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ash-text-dark) !important;
  width: 44px !important;
  height: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  -moz-appearance: textfield !important;
}

.ash-cart-qty-wrapper input.ash-qty-input::-webkit-outer-spin-button,
.ash-cart-qty-wrapper input.ash-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Hide TouchSpin's auto-generated vertical buttons if TouchSpin runs */
.bootstrap-touchspin .input-group-btn-vertical,
.bootstrap-touchspin .touchspin-up,
.bootstrap-touchspin .touchspin-down {
  display: none !important;
}

/* Merged Güvenli Ödeme Badge inside Order Summary Box */
.ash-summary-secure-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--ash-border);
}

.ash-summary-secure-note i {
  font-size: 20px;
  color: var(--ash-gold);
}

.ash-summary-secure-note strong {
  display: block;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: var(--ash-dark-green);
  text-transform: uppercase;
  font-weight: 700;
}

.ash-summary-secure-note span {
  display: block;
  font-size: 11px;
  color: var(--ash-text-muted);
}

#js-product-list-top.ash-cat-toolbar {
  display: flex !important;
}

.ash-category-layout--toolbar {
  grid-template-columns: minmax(0, 1fr);
}

.ash-filter-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--ash-border);
  border-top: 1px solid var(--ash-border);
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  min-height: 5.4rem;
  padding: 1rem 1.25rem;
}

.ash-filter-toolbar__filters,
.ash-filter-toolbar__meta {
  align-items: center;
  display: flex;
  gap: 1.75rem;
}

.ash-filter-toolbar__label,
.ash-sort-box > span,
.ash-filter-toolbar__count,
.ash-filter-select select {
  color: var(--ash-text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.ash-filter-select {
  position: relative;
}

.ash-filter-select::after {
  color: var(--ash-text-muted);
  content: '⌄';
  font-size: 1rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-58%);
}

.ash-filter-select select {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  min-width: 6.7rem;
  padding: 0.35rem 1.15rem 0.35rem 0;
}

.ash-filter-select select:focus-visible,
.ash-select-sort:focus-visible {
  outline: 1px solid var(--ash-gold);
  outline-offset: 4px;
}

.ash-filter-toolbar .ash-sort-box {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.ash-filter-toolbar .ash-select-sort {
  color: var(--ash-text-muted);
  font-size: 0.78rem;
  min-width: 9rem;
  padding: 0.35rem 0;
}

.ash-filter-toolbar .ash-select-sort .fa-chevron-down {
  float: right;
  font-size: 0.7rem;
  margin-top: 0.2rem;
}

.ash-filter-toolbar__count {
  min-width: 3.4rem;
  text-align: right;
}

.ash-cat-card[hidden] {
  display: none;
}

.ash-sidebar-product-filters {
  border-bottom: 0;
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 0;
}

.ash-filter-sidebar-header,
.ash-sidebar-collections__title {
  align-items: center;
  color: var(--ash-dark-green);
  display: flex;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ash-filter-sidebar-header {
  border-bottom: 1px solid var(--ash-border);
  margin-bottom: 1.25rem;
  padding-bottom: .7rem;
}

.ash-sidebar-collections {
  border-top: 1px solid var(--ash-border);
  margin-top: 0;
  padding-top: 1.15rem;
}

.ash-sidebar-collections__title {
  margin-bottom: .35rem;
}

.ash-sidebar-filter-field {
  align-items: center;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 74px minmax(0, 1fr);
}

.ash-sidebar-filter-field span,
.ash-sidebar-filter-field select {
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ash-sidebar-filter-field select {
  background: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  cursor: pointer;
  padding: 0.65rem 0.75rem;
  width: 100%;
}

.ash-sidebar-filter-field select:focus-visible {
  outline: 1px solid var(--ash-gold);
  outline-offset: 2px;
}

.ash-cat-toolbar--sidebar {
  border-bottom: 1px solid var(--ash-border);
  padding-bottom: 1rem;
}

.ash-sort-select {
  align-items: center;
  display: flex;
  gap: 0.9rem;
  margin: 0;
}

.ash-sort-select span,
.ash-sort-select select {
  color: var(--ash-text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.ash-sort-select select {
  background: var(--ash-bg-main);
  border: 1px solid var(--ash-border);
  cursor: pointer;
  min-width: 12.4rem;
  padding: 0.55rem 2rem 0.55rem 0.65rem;
}

.ash-sort-select select:focus-visible {
  outline: 1px solid var(--ash-gold);
  outline-offset: 2px;
}

.ash-sort-select select,
.ash-sort-box.ash-sort-select select,
.ash-mobile-sort select,
.ash-sidebar-filter-field select {
  color: var(--ash-dark-green) !important;
}

.ash-sort-select select:hover,
.ash-sort-box.ash-sort-select select:hover,
.ash-mobile-sort select:hover,
.ash-sidebar-filter-field select:hover,
.ash-sort-select select:focus,
.ash-sort-box.ash-sort-select select:focus,
.ash-mobile-sort select:focus,
.ash-sidebar-filter-field select:focus {
  border-color: var(--ash-gold) !important;
  color: var(--ash-dark-green) !important;
  outline: none;
}

.ash-sort-select select option,
.ash-sort-box.ash-sort-select select option,
.ash-mobile-sort select option,
.ash-sidebar-filter-field select option {
  background: var(--ash-bg-main);
  color: var(--ash-dark-green);
}

.ash-custom-sort {
  position: relative;
}

.ash-custom-stock {
  position: relative;
  width: 100%;
}

.ash-custom-stock-trigger {
  width: 100%;
}

.ash-mobile-custom-sort {
  width: 100%;
}

.ash-mobile-custom-sort .ash-custom-sort-trigger {
  width: 100%;
}

.ash-mobile-custom-sort .ash-custom-sort-menu {
  right: auto;
  left: 0;
}

.ash-custom-sort-trigger,
.ash-custom-stock-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 12.4rem;
  padding: .75rem .8rem;
  border: 1px solid var(--ash-border);
  background: var(--ash-bg-main);
  color: var(--ash-dark-green);
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .01em;
  cursor: pointer;
}

.ash-custom-sort-trigger:hover,
.ash-custom-sort.is-open .ash-custom-sort-trigger,
.ash-custom-stock-trigger:hover,
.ash-custom-stock.is-open .ash-custom-stock-trigger {
  border-color: var(--ash-gold);
}

.ash-custom-sort-trigger .fa-chevron-down,
.ash-custom-stock-trigger .fa-chevron-down {
  color: var(--ash-gold);
  font-size: .65rem;
  transition: transform .2s ease;
}

.ash-custom-sort.is-open .fa-chevron-down,
.ash-custom-stock.is-open .fa-chevron-down {
  transform: rotate(180deg);
}

.ash-custom-sort-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  z-index: 20;
  display: none;
  width: max-content;
  min-width: 100%;
  padding: 5px;
  border: 1px solid var(--ash-border);
  background: var(--ash-bg-main);
  box-shadow: 0 12px 28px rgba(13, 27, 22, .14);
}

.ash-custom-stock-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 20;
  display: none;
  width: 100%;
  padding: 5px;
  border: 1px solid var(--ash-border);
  background: var(--ash-bg-main);
  box-shadow: 0 12px 28px rgba(13, 27, 22, .14);
}

.ash-custom-sort.is-open .ash-custom-sort-menu {
  display: grid;
}

.ash-custom-stock.is-open .ash-custom-stock-menu {
  display: grid;
}

.ash-custom-sort-menu button {
  padding: .6rem .7rem;
  border: 0;
  background: transparent;
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-size: .75rem;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.ash-custom-stock-menu button {
  padding: .6rem .7rem;
  border: 0;
  background: transparent;
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-size: .75rem;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.ash-custom-sort-menu button:hover,
.ash-custom-sort-menu button:focus-visible,
.ash-custom-stock-menu button:hover,
.ash-custom-stock-menu button:focus-visible {
  outline: none;
  background: var(--ash-dark-green);
  color: var(--ash-gold-light);
}

.ash-native-filter-control {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ash-mobile-sort {
  display: none;
}

.ash-sidebar-sort {
  align-items: center;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 74px minmax(0, 1fr);
}

.ash-sidebar-sort > span {
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ash-sidebar-sort .ash-custom-sort-trigger {
  width: 100%;
}

/* Sidebar controls must fit the narrow filter column on compact laptops. */
.ash-sidebar-filter .ash-custom-stock-trigger,
.ash-sidebar-filter .ash-custom-sort-trigger {
  min-width: 0;
}

.ash-mobile-filter-trigger,
.ash-mobile-filter-apply {
  display: none;
}

.ash-sidebar-filter .ash-collections-grid {
  gap: 0;
}

.ash-sidebar-filter .ash-collection-card {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid var(--ash-border);
  border-radius: 0;
  height: auto !important;
  justify-content: flex-start;
  padding: 0.72rem 0;
}

.ash-sidebar-filter .ash-collection-card:hover {
  background: transparent;
  transform: none;
}

.ash-sidebar-filter .ash-collection-card img {
  display: none;
}

.ash-sidebar-filter .ash-collection-title-box {
  color: var(--ash-text-muted);
  text-align: left;
}

.ash-sidebar-filter .ash-collection-main-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.ash-sidebar-filter .ash-collection-card:hover .ash-collection-main-title {
  color: var(--ash-gold);
}

@media (max-width: 1023px) {
  .ash-sidebar-filter {
    margin-bottom: 1.25rem;
  }

  .ash-filter-sidebar-header {
    display: none;
  }

  .ash-mobile-filter-trigger {
    align-items: center;
    background: var(--ash-bg-card);
    border: 1px solid var(--ash-dark-green);
    color: var(--ash-dark-green);
    display: flex;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    justify-content: space-between;
    letter-spacing: 0.06em;
    padding: 0.95rem 1rem;
    text-align: left;
    width: 100%;
  }

  .ash-mobile-filter-trigger > span:first-child {
    align-items: center;
    display: inline-flex;
    gap: 0.55rem;
  }

  .ash-mobile-filter-trigger .fa-plus {
    color: var(--ash-gold);
    font-size: 0.72rem;
    transition: transform 0.18s ease;
  }

  .ash-sidebar-filter.is-mobile-filters-open .ash-mobile-filter-trigger .fa-plus {
    transform: rotate(45deg);
  }

  .ash-sidebar-product-filters {
    display: none;
    margin: 0;
    padding: 1.1rem 0 0;
  }

  .ash-sidebar-filter.is-mobile-filters-open .ash-sidebar-product-filters {
    display: grid;
  }

  .ash-sidebar-collections {
    margin-top: 0;
    padding-top: 1.1rem;
  }

  .ash-mobile-filter-apply {
    background: var(--ash-dark-green);
    border: 1px solid var(--ash-dark-green);
    color: #fff;
    display: block;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-top: 0.35rem;
    padding: 0.95rem 1rem;
    width: 100%;
  }

  .ash-mobile-filter-apply:focus-visible,
  .ash-mobile-filter-trigger:focus-visible {
    outline: 1px solid var(--ash-gold);
    outline-offset: 3px;
  }

  #js-product-list-top.ash-cat-toolbar {
    align-items: center;
    display: grid !important;
    gap: 0.85rem;
    grid-template-columns: max-content minmax(0, 1fr);
    margin-bottom: 1.4rem;
    padding: 0.9rem 0;
  }

  #js-product-list-top .ash-count-text {
    font-size: 0.78rem;
    line-height: 1.3;
    white-space: nowrap;
  }

  #js-product-list-top .ash-sort-select {
    align-items: center;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: max-content minmax(0, 1fr);
    justify-content: unset;
    min-width: 0;
    width: 100%;
  }

  #js-product-list-top .ash-sort-select span {
    font-size: 0.7rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  #js-product-list-top .ash-sort-select select {
    min-width: 0;
    padding: 0.6rem 1.75rem 0.6rem 0.6rem;
    width: 100%;
  }

  .ash-mobile-sort {
    border-bottom: 1px solid var(--ash-border);
    display: grid;
    gap: 0.65rem;
    margin-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .ash-mobile-sort span,
  .ash-mobile-sort select {
    color: var(--ash-text-muted);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }

  .ash-mobile-sort select {
    background: var(--ash-bg-main);
    border: 1px solid var(--ash-border);
    min-height: 2.5rem;
    padding: 0.5rem 0.65rem;
  }
}

.ash-price-filter-panel {
  border-bottom: 1px solid var(--ash-border);
  margin: 0 -0.25rem;
  padding: 1.1rem 0.25rem 1.35rem;
}

.ash-price-filter-panel__heading {
  color: var(--ash-text-dark);
  display: flex;
  font-family: var(--font-body);
  font-size: 0.78rem;
  justify-content: space-between;
  letter-spacing: 0.03em;
}

.ash-price-filter-panel__heading .fa-chevron-down {
  color: var(--ash-gold);
  font-size: 0.65rem;
  line-height: 1.35;
}

.ash-price-filter-panel__heading + .ash-price-filter-panel__inputs {
  margin-top: 1rem;
}

.ash-price-filter-panel__inputs {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 1fr;
}

.ash-price-filter-panel__inputs label {
  align-items: center;
  border: 1px solid var(--ash-border);
  border-radius: 0.35rem;
  display: flex;
  gap: 0.55rem;
  min-width: 0;
  padding: 0 0.65rem;
}

.ash-price-filter-panel__inputs label > span:first-child {
  color: var(--ash-text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
}

.ash-price-filter-panel__inputs input {
  background: transparent;
  border: 0;
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  min-width: 0;
  outline: 0;
  padding: 0.7rem 0;
  width: 100%;
}

.ash-price-filter-panel__inputs input::placeholder {
  color: var(--ash-text-muted);
  opacity: 1;
}

.ash-price-filter-panel__inputs label:focus-within {
  border-color: var(--ash-gold);
}

.ash-mobile-filter-backdrop,
.ash-mobile-filter-drawer-header,
.ash-mobile-filter-close {
  display: none;
}

@media (max-width: 1023px) {
  body.ash-mobile-filter-open {
    overflow: hidden;
  }

  .ash-category-layout {
    display: block;
  }

  .ash-category-layout > .ash-mobile-filter-trigger {
    align-items: center;
    background: var(--ash-bg-card);
    border: 1px solid var(--ash-border);
    color: var(--ash-text-dark);
    display: flex;
    font-family: var(--font-body);
    font-size: 0.72rem;
    justify-content: space-between;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    padding: 0.95rem 1rem;
    width: 100%;
  }

  .ash-mobile-filter-trigger > span:first-child {
    align-items: center;
    display: inline-flex;
    gap: 0.6rem;
  }

  .ash-mobile-filter-trigger > span:last-child {
    color: var(--ash-text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.02em;
  }

  .ash-mobile-filter-backdrop {
    background: rgba(13, 27, 22, 0.48);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.22s ease;
    z-index: 1000;
  }

  .ash-mobile-filter-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .ash-sidebar-filter {
    background: var(--ash-bg-main);
    bottom: 0;
    box-shadow: -16px 0 40px rgba(13, 27, 22, 0.16);
    display: flex;
    flex-direction: column;
    height: 100dvh;
    margin: 0;
    max-width: 26rem;
    overflow: hidden;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform 0.28s ease;
    width: min(92vw, 26rem);
    z-index: 1001;
  }

  .ash-sidebar-filter.is-mobile-filters-open {
    transform: translateX(0);
  }

  .ash-sidebar-filter > .ash-mobile-filter-trigger {
    display: none;
  }

  .ash-mobile-filter-drawer-header {
    align-items: center;
    border-bottom: 1px solid var(--ash-border);
    display: flex;
    justify-content: center;
    padding: 1.15rem 1.25rem;
    position: relative;
  }

  .ash-mobile-filter-drawer-header > div {
    display: grid;
    gap: 0.2rem;
    text-align: center;
  }

  .ash-mobile-filter-drawer-header strong {
    color: var(--ash-text-dark);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
  }

  .ash-mobile-filter-drawer-header span {
    color: var(--ash-text-muted);
    font-family: var(--font-body);
    font-size: 0.7rem;
  }

  .ash-mobile-filter-close {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--ash-text-dark);
    display: inline-flex;
    font-size: 1.45rem;
    height: 2.5rem;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
  }

  .ash-sidebar-filter .ash-filter-sidebar-header {
    display: none;
  }

  .ash-sidebar-filter .ash-sidebar-product-filters {
    border: 0;
    display: grid;
    flex: 1;
    gap: 0;
    margin: 0;
    overflow-y: auto;
    padding: 1.15rem 1.25rem 1.5rem;
    text-align: left;
  }

  .ash-sidebar-filter .ash-sidebar-filter-field,
  .ash-sidebar-filter .ash-price-filter-panel,
  .ash-sidebar-filter .ash-mobile-sort,
  .ash-sidebar-filter .ash-sidebar-sort,
  .ash-sidebar-filter .ash-sidebar-collections {
    border-bottom: 1px solid var(--ash-border);
    margin: 0;
    padding: 1.1rem 0;
  }

  .ash-sidebar-filter .ash-sidebar-filter-field {
    align-items: stretch;
    gap: 0.65rem;
    text-align: left;
  }

  .ash-sidebar-filter .ash-sidebar-filter-field span,
  .ash-sidebar-filter .ash-price-filter-panel__heading,
  .ash-sidebar-filter .ash-mobile-sort span,
  .ash-sidebar-filter .ash-sidebar-sort > span {
    color: var(--ash-text-dark);
    font-size: 0.82rem;
    text-align: left;
  }

  .ash-sidebar-filter .ash-mobile-sort,
  .ash-sidebar-filter .ash-sidebar-sort {
    display: grid;
    text-align: left;
  }

  .ash-sidebar-filter .ash-mobile-sort select,
  .ash-sidebar-filter .ash-sidebar-filter-field select {
    background: transparent;
    border: 0;
    min-height: 2.8rem;
    padding: 0.55rem 0;
  }

  .ash-sidebar-filter .ash-mobile-filter-apply {
    bottom: 0;
    margin: 1.25rem 0 0;
    position: sticky;
  }

  #js-product-list-top.ash-cat-toolbar {
    display: none !important;
  }
}
