/* Dynamic ps_mainmenu integration */
.ash-native-cart-sync { display: none; }
.ash-mobile-cat-list { display: none; }
#mobile_top_menu_wrapper .ash-mobile-cat-list { display: block; }
#mobile_top_menu_wrapper .ash-nav-item.has-megamenu { display: none; }
#mobile_top_menu_wrapper .ash-mobile-cat-list .ash-mobile-menu-parent,
#mobile_top_menu_wrapper .ash-mobile-cat-list .ash-mobile-menu-child {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#mobile_top_menu_wrapper .ash-mobile-cat-list .ash-mobile-menu-child { padding-left: 18px; }
#mobile_top_menu_wrapper .ash-mobile-cat-list .ash-mobile-menu-level-2 { padding-left: 36px; }
#mobile_top_menu_wrapper .ash-mobile-cat-list .ash-mobile-menu-level-3 { padding-left: 54px; }
#mobile_top_menu_wrapper .ash-mobile-cat-list .ash-mobile-menu-parent { align-items: center; display: flex; justify-content: space-between; }
.ash-mobile-submenu-icon { color: var(--ash-gold); font-size: 9px; margin-left: 12px; }
.ash-megamenu-title-link { text-decoration: none !important; transition: color 0.2s ease; } .ash-megamenu-title-link:hover { color: var(--ash-gold) !important; }

/* Hover submenus in the desktop mega menu. */
.ash-megamenu-list > li {
  position: relative;
}
.ash-megamenu-item-link {
  align-items: center;
  display: flex !important;
  gap: 12px;
  justify-content: space-between;
  width: 100%;
}
.ash-megamenu-list > li.ash-megamenu-item--has-children > .ash-megamenu-item-link {
  font-weight: 600;
}
.ash-megamenu-submenu-icon {
  color: var(--ash-gold);
  flex: 0 0 auto;
  font-size: 9px;
  transition: transform 0.2s ease;
}
.ash-megamenu-list--nested {
  background: transparent;
  border: 0;
  border-left: 1px solid var(--ash-border);
  box-shadow: none;
  display: none;
  margin: 4px 0 8px 12px;
  min-width: 0;
  padding: 0 0 0 12px;
  position: static;
}
.ash-megamenu-list li:hover > .ash-megamenu-list--nested,
.ash-megamenu-list li:focus-within > .ash-megamenu-list--nested {
  display: block;
}
.ash-megamenu-list li:hover > .ash-megamenu-item-link .ash-megamenu-submenu-icon,
.ash-megamenu-list li:focus-within > .ash-megamenu-item-link .ash-megamenu-submenu-icon {
  transform: rotate(180deg);
}
.ash-megamenu-list--nested li {
  margin-bottom: 7px;
}
.ash-megamenu-list--nested li:last-child {
  margin-bottom: 0;
}
.ash-megamenu-list--nested li a {
  color: var(--ash-text-muted);
  font-size: 11px;
}
/* Dynamic category tree used by the collection sidebar. */
.ash-category-tree-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ash-category-tree-list--nested {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--ash-border);
}
.ash-category-tree-row {
  align-items: center;
  border-bottom: 1px solid var(--ash-border);
  display: flex;
  gap: 8px;
}
.ash-category-tree-item--has-children > .ash-category-tree-row {
  cursor: pointer;
}
.ash-category-tree-link {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  padding: 0.72rem 0;
  color: var(--ash-text-muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-decoration: none !important;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.ash-category-tree-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ash-gold);
  cursor: pointer;
  display: flex;
  flex: 0 0 28px;
  height: 32px;
  justify-content: center;
  padding: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.ash-category-tree-item--has-children > .ash-category-tree-row > .ash-category-tree-toggle {
  margin-left: auto;
}
.ash-category-tree-toggle:hover,
.ash-category-tree-toggle:focus-visible {
  background: var(--ash-bg-card);
  color: var(--ash-dark-green);
  outline: none;
}
.ash-category-tree-toggle i {
  font-size: 9px;
  transition: transform 0.25s ease;
}
.ash-category-tree-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.ash-category-tree-branch {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.25s ease, opacity 0.2s ease;
  visibility: hidden;
}
.ash-category-tree-branch.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}
.ash-category-tree-branch-inner {
  min-height: 0;
  overflow: hidden;
}
.ash-category-tree-link--parent {
  color: var(--ash-dark-green);
  font-weight: 600;
}
.ash-category-tree-link--active,
.ash-category-tree-link:hover {
  color: var(--ash-gold) !important;
}
.ash-category-tree-list--nested .ash-category-tree-link {
  padding-block: 0.58rem;
  font-size: 0.68rem;
}
.ash-category-tree-list--nested .ash-category-tree-toggle {
  flex-basis: 24px;
  height: 28px;
}
.ash-category-tree-link:hover {
  padding-left: 4px;
}

/* Product reviews: scoped theme treatment for the Product Comments module. */
.ash-p-reviews-section { margin-bottom: 72px; }
.ash-reviews-grid { align-items: stretch; gap: 24px; grid-template-columns: minmax(0, 1fr); }
.ash-score-card, .ash-review-quote-card { background: var(--ash-bg-card); border: 1px solid var(--ash-border); border-radius: 0; min-height: 250px; padding: clamp(28px, 4vw, 46px); }
.ash-score-card { align-items: center; display: flex; flex-direction: column; justify-content: center; }
.ash-review-eyebrow { color: var(--ash-text-muted); font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: .16em; margin: 0 0 16px; }
.ash-score-big { color: var(--ash-dark-green); font-family: var(--font-heading); font-size: clamp(46px, 5vw, 60px); font-weight: 500; line-height: .85; margin-bottom: 10px; }
.ash-score-big--empty { color: var(--ash-gold); font-size: 64px; line-height: .5; margin: 14px 0 22px; }
.ash-review-stars { color: var(--ash-gold); font-size: 16px; letter-spacing: 4px; line-height: 1; margin-left: 4px; }
.ash-score-count, .ash-score-empty { color: var(--ash-text-muted); font-family: var(--font-body); font-size: 12px; line-height: 1.6; margin: 14px 0 0; }
.ash-score-empty { max-width: 230px; }
.ash-score-card { min-height: 180px; padding: 24px; }
.ash-score-card .ash-review-eyebrow { margin-bottom: 10px; }
.ash-score-card--empty { min-height: 140px; }
.ash-score-card--empty .ash-review-eyebrow { margin-bottom: 8px; }
.ash-score-card--empty .ash-score-empty { margin-top: 0; }
.ash-review-quote-card { display: flex; flex-direction: column; justify-content: center; }
.ash-review-quote-card #product-comments-list-header { align-items: center; border-bottom: 1px solid var(--ash-border); color: var(--ash-dark-green); font-family: var(--font-body); font-size: 12px; letter-spacing: .04em; padding: 0 0 18px; }
.ash-review-quote-card #product-comments-list-header .comments-nb { padding: 0; }
.ash-review-quote-card #product-comments-list-header .grade-stars, .ash-review-quote-card #product-comments-list-header .comments-nb .material-icons { color: var(--ash-gold); }
.ash-review-quote-card .product-comment-list-item { background: transparent; margin: 0; padding: 30px 0 0; }
.ash-review-quote-card #empty-product-comment { color: var(--ash-text-muted); font-family: var(--font-body); font-size: 13px; }
.ash-review-quote-card .btn-comment, .ash-review-quote-card #product-comments-list .btn-comment { background: var(--ash-dark-green); border: 1px solid var(--ash-dark-green); border-radius: 0; box-shadow: none; color: #fff; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .08em; margin: 0 auto; padding: 14px 22px; text-transform: uppercase; transition: background-color .2s ease, border-color .2s ease, color .2s ease; }
.ash-review-quote-card .btn-comment:hover, .ash-review-quote-card .btn-comment:focus-visible { background: var(--ash-gold); border-color: var(--ash-gold); color: var(--ash-dark-green); }
.ash-review-quote-card .btn-comment:focus-visible { outline: 2px solid var(--ash-gold-light); outline-offset: 3px; }

@media (max-width: 767px) {
  .ash-p-reviews-section { margin-bottom: 48px; }
  .ash-score-card, .ash-review-quote-card { min-height: 0; padding: 30px 24px; }
}

.ash-pm-debit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ash-text-dark);
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.ash-pm-debit i {
  font-size: 18px;
}

.ash-pm-troy {
  display: block;
  width: 58px;
  height: 26px;
  object-fit: contain;
}

/* Footer legal strip: copyright first, studio credit directly below. */
.ash-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  padding-top: 28px;
}

.ash-footer-signature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.ash-footer-copyright {
  color: #8C9990;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.ash-routart-link {
  display: inline-flex;
  align-items: center;
  color: var(--ash-bg-main);
  text-decoration: none;
}

.ash-routart-word {
  font-size: 17px;
  letter-spacing: 0.42em;
  line-height: 1;
}

.ash-footer-legal-links {
  align-self: flex-start;
  padding-top: 2px;
}

@media (max-width: 767px) {
  .ash-footer-bottom {
    margin-top: 24px;
    padding-top: 24px;
    gap: 22px;
  }

  .ash-footer-signature {
    gap: 24px;
  }

  .ash-footer-legal-links {
    width: 100%;
    padding-top: 0;
  }
}

/* Turkish cart information notice */
.ash-cart-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 13px 20px;
  border: 1px solid var(--ash-border);
  border-left: 3px solid var(--ash-gold);
  background: var(--ash-bg-card);
  color: var(--ash-text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .02em;
}
.ash-cart-notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--ash-gold);
  border-radius: 50%;
  color: var(--ash-gold);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

/* CMS pages: Hakkımızda / Kargo / SSS */

/* ---- CMS page styles: about-us ---- */
.ash-about-page {
      max-width: 920px;
      margin: 40px auto 80px auto;
      padding: 0 20px;
      font-family: var(--font-body, 'Montserrat', sans-serif);
      color: var(--ash-text-dark, #1C1C1C);
    }
    .ash-about-header {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }
    .ash-about-badge {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid var(--ash-gold, #C5A059);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--ash-gold, #C5A059);
      font-size: 22px;
      margin-bottom: 16px;
    }
    .ash-about-title {
      font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif) !important;
      font-size: 42px !important;
      font-weight: 500 !important;
      letter-spacing: 2px !important;
      color: var(--ash-dark-green, #0D1B16) !important;
      text-transform: uppercase !important;
      margin-bottom: 10px !important;
    }
    .ash-about-subtitle {
      font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif) !important;
      font-size: 22px !important;
      font-style: italic !important;
      color: var(--ash-gold, #C5A059) !important;
      margin-bottom: 30px !important;
    }
    .ash-about-divider {
      width: 60px;
      height: 1px;
      background-color: var(--ash-gold, #C5A059);
      margin: 0 auto 40px auto;
    }
    .ash-story-card {
      background-color: var(--ash-bg-card, #F0ECE3);
      border: 1px solid var(--ash-border, #EAE4D8);
      border-radius: 4px;
      padding: 50px 45px;
      box-shadow: 0 15px 35px rgba(13, 27, 22, 0.04);
      margin-bottom: 50px;
    }
    .ash-story-lead {
      font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
      font-size: 24px;
      line-height: 1.6;
      color: var(--ash-dark-green, #0D1B16);
      font-weight: 500;
      margin-bottom: 30px;
      border-left: 3px solid var(--ash-gold, #C5A059);
      padding-left: 20px;
    }
    .ash-story-paragraph {
      font-size: 15px;
      line-height: 1.85;
      color: var(--ash-text-muted, #444444);
      margin-bottom: 24px;
      text-align: justify;
    }
    .ash-story-highlight {
      background-color: rgba(197, 160, 89, 0.1);
      border: 1px solid var(--ash-border, #EAE4D8);
      border-radius: 4px;
      padding: 30px;
      margin: 35px 0;
      text-align: center;
    }
    .ash-story-highlight-text {
      font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
      font-size: 22px;
      font-style: italic;
      color: var(--ash-dark-green, #0D1B16);
      line-height: 1.6;
      margin: 0;
    }
    .ash-signature-block {
      text-align: right;
      margin-top: 40px;
      padding-top: 25px;
      border-top: 1px dashed var(--ash-border, #EAE4D8);
    }
    .ash-signature-name {
      font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
      font-size: 26px;
      font-weight: 600;
      color: var(--ash-dark-green, #0D1B16);
      letter-spacing: 1px;
    }
    .ash-signature-title {
      font-size: 12px;
      letter-spacing: 2px;
      color: var(--ash-gold, #C5A059);
      text-transform: uppercase;
      margin-top: 4px;
    }
    .ash-values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      margin-top: 40px;
    }
    .ash-val-card {
      background-color: var(--ash-bg-card, #F0ECE3);
      border: 1px solid var(--ash-border, #EAE4D8);
      border-radius: 4px;
      padding: 30px 20px;
      text-align: center;
    }
    .ash-val-icon {
      font-size: 26px;
      color: var(--ash-gold, #C5A059);
      margin-bottom: 12px;
    }
    .ash-val-title {
      font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
      font-size: 20px;
      font-weight: 600;
      color: var(--ash-dark-green, #0D1B16);
      margin-bottom: 8px;
    }
    .ash-val-desc {
      font-size: 12.5px;
      color: var(--ash-text-muted, #555555);
      line-height: 1.5;
    }
    @media (max-width: 768px) {
      .ash-story-card { padding: 30px 20px; }
      .ash-about-title { font-size: 32px !important; }
      .ash-values-grid { grid-template-columns: 1fr; }
    }

.ash-about-founder {
  align-items: stretch;
  background: var(--ash-dark-green, #0D1B16);
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  margin: 42px auto 0;
  max-width: 920px;
  overflow: hidden;
}

.ash-about-founder__portrait {
  margin: 0;
  min-height: 470px;
}

.ash-about-founder__portrait img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  width: 100%;
}

.ash-about-founder__copy {
  align-self: center;
  padding: 54px 56px;
}

.ash-about-founder__eyebrow,
.ash-about-founder__role {
  color: var(--ash-gold-light, #D5B675);
  display: block;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.ash-about-founder__copy h1 {
  color: var(--ash-bg-main, #F5F2EB);
  font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.35rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  margin: 18px 0 22px;
}

.ash-about-founder__copy p {
  color: rgba(245, 242, 235, 0.76);
  font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.35rem;
  line-height: 1.45;
  margin: 0 0 34px;
  max-width: 330px;
}

.ash-about-founder__role {
  border-top: 1px solid rgba(213, 182, 117, 0.4);
  padding-top: 16px;
}

@media (max-width: 768px) {
  .ash-about-founder {
    grid-template-columns: 1fr;
    margin: 24px 16px 0;
  }

  .ash-about-founder__portrait {
    height: min(112vw, 480px);
    min-height: 0;
  }

  .ash-about-founder__copy {
    padding: 38px 28px 42px;
  }

  .ash-about-founder__copy h1 {
    font-size: 2.8rem;
  }

  .ash-about-founder__copy p {
    font-size: 1.2rem;
  }
}

.ash-about-workshop {
  align-items: stretch;
  background: var(--ash-bg-card, #F0ECE3);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1.18fr);
  margin: 58px auto 80px;
  max-width: 920px;
  overflow: hidden;
}

.ash-about-workshop__copy {
  align-self: center;
  padding: 58px 54px;
}

.ash-about-workshop__eyebrow {
  color: var(--ash-gold, #C5A059);
  display: block;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.ash-about-workshop__copy h2 {
  color: var(--ash-dark-green, #0D1B16);
  font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.2rem, 3.7vw, 3.35rem);
  font-weight: 500;
  line-height: 1.02;
  margin: 18px 0 22px;
}

.ash-about-workshop__copy p {
  color: var(--ash-text-muted, #555555);
  font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.28rem;
  line-height: 1.5;
  margin: 0;
}

.ash-about-workshop__portrait {
  height: 500px;
  margin: 0;
}

.ash-about-workshop__portrait img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  width: 100%;
}

@media (max-width: 768px) {
  .ash-about-workshop {
    grid-template-columns: 1fr;
    margin: 42px 16px 56px;
  }

  .ash-about-workshop__portrait {
    height: min(112vw, 470px);
    order: -1;
  }

  .ash-about-workshop__copy {
    padding: 38px 28px 42px;
  }

  .ash-about-workshop__copy h2 {
    font-size: 2.7rem;
  }

  .ash-about-workshop__copy p {
    font-size: 1.18rem;
  }
}

/* ---- CMS page styles: kargo-ve-iade ---- */
.ash-shipping-page-wrapper {
      max-width: 980px !important;
      margin: 0 auto !important;
      padding: 20px 0 60px 0 !important;
      font-family: "Montserrat", -apple-system, sans-serif !important;
      color: #1C1C1C !important;
      box-sizing: border-box !important;
    }

    .ash-shipping-hero {
      text-align: center !important;
      margin-bottom: 40px !important;
      padding: 0 15px !important;
    }

    .ash-shipping-badge {
      display: inline-block !important;
      background-color: #F0ECE3 !important;
      color: #C5A059 !important;
      font-family: "Cormorant Garamond", serif !important;
      font-size: 13px !important;
      font-weight: 600 !important;
      letter-spacing: 2px !important;
      padding: 6px 20px !important;
      border-radius: 30px !important;
      border: 1px solid #EAE4D8 !important;
      margin-bottom: 16px !important;
      text-transform: uppercase !important;
    }

    .ash-shipping-hero h1 {
      font-family: "Cormorant Garamond", Georgia, serif !important;
      font-size: 38px !important;
      font-weight: 600 !important;
      color: #0D1B16 !important;
      margin-bottom: 14px !important;
      letter-spacing: 1px !important;
      text-transform: uppercase !important;
    }

    .ash-shipping-intro {
      font-size: 16px !important;
      color: #555555 !important;
      max-width: 650px !important;
      margin: 0 auto !important;
      line-height: 1.7 !important;
      font-style: italic !important;
    }

    .ash-shipping-divider {
      width: 60px !important;
      height: 2px !important;
      background-color: #C5A059 !important;
      margin: 20px auto 0 auto !important;
    }

    .ash-shipping-section-card {
      background: #FFFFFF !important;
      border: 1px solid #EAE4D8 !important;
      border-radius: 12px !important;
      padding: 40px !important;
      box-shadow: 0 10px 30px rgba(13, 27, 22, 0.05) !important;
      margin-bottom: 35px !important;
    }

    .ash-shipping-card-header {
      display: flex !important;
      align-items: center !important;
      gap: 15px !important;
      margin-bottom: 30px !important;
      padding-bottom: 15px !important;
      border-bottom: 1px solid #EAE4D8 !important;
    }

    .ash-shipping-icon-box {
      width: 50px !important;
      height: 50px !important;
      border-radius: 50% !important;
      background: #F0ECE3 !important;
      color: #C5A059 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 20px !important;
      flex-shrink: 0 !important;
      border: 1px solid #EAE4D8 !important;
    }

    .ash-shipping-card-header h2 {
      font-family: "Cormorant Garamond", Georgia, serif !important;
      font-size: 26px !important;
      font-weight: 600 !important;
      color: #0D1B16 !important;
      margin: 0 !important;
    }

    .ash-shipping-features-grid {
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 25px !important;
    }

    @media (max-width: 850px) {
      .ash-shipping-features-grid {
        grid-template-columns: 1fr !important;
      }
      .ash-shipping-section-card {
        padding: 25px 20px !important;
      }
    }

    .ash-shipping-feat-box {
      background: #F5F2EB !important;
      border: 1px solid #EAE4D8 !important;
      border-radius: 8px !important;
      padding: 28px 22px !important;
      text-align: center !important;
      transition: all 0.3s ease !important;
    }

    .ash-shipping-feat-box:hover {
      transform: translateY(-4px) !important;
      border-color: #C5A059 !important;
      box-shadow: 0 8px 25px rgba(197, 160, 89, 0.15) !important;
      background: #FFFFFF !important;
    }

    .ash-feat-icon {
      width: 44px !important;
      height: 44px !important;
      margin: 0 auto 14px auto !important;
      border-radius: 50% !important;
      background: #FFFFFF !important;
      color: #0D1B16 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 18px !important;
      border: 1px solid #C5A059 !important;
    }

    .ash-shipping-feat-box h3 {
      font-family: "Cormorant Garamond", Georgia, serif !important;
      font-size: 20px !important;
      font-weight: 600 !important;
      color: #0D1B16 !important;
      margin-bottom: 10px !important;
    }

    .ash-shipping-feat-box p {
      font-size: 14px !important;
      line-height: 1.6 !important;
      color: #1C1C1C !important;
      margin: 0 !important;
    }

    .highlight-box {
      border-color: #C5A059 !important;
      background: #FAF6ED !important;
    }

    .ash-shipping-cta-banner {
      background: #0D1B16 !important;
      color: #FFFFFF !important;
      border-radius: 12px !important;
      padding: 35px 45px !important;
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      flex-wrap: wrap !important;
      gap: 20px !important;
      box-shadow: 0 12px 35px rgba(13, 27, 22, 0.15) !important;
    }

    .ash-cta-text h3 {
      font-family: "Cormorant Garamond", Georgia, serif !important;
      font-size: 26px !important;
      color: #C5A059 !important;
      margin-bottom: 6px !important;
    }

    .ash-cta-text p {
      font-size: 15px !important;
      color: #E0E0E0 !important;
      margin: 0 !important;
    }

    .ash-shipping-cta-btn {
      background: #C5A059 !important;
      color: #0D1B16 !important;
      font-family: "Cormorant Garamond", Georgia, serif !important;
      font-size: 16px !important;
      font-weight: 600 !important;
      letter-spacing: 1.5px !important;
      padding: 14px 35px !important;
      border-radius: 4px !important;
      text-decoration: none !important;
      text-transform: uppercase !important;
      transition: all 0.3s ease !important;
      white-space: nowrap !important;
      display: inline-block !important;
    }

    .ash-shipping-cta-btn:hover {
      background: #FFFFFF !important;
      color: #0D1B16 !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
    }

/* ---- CMS page styles: sikca-sorulan-sorular ---- */
.ash-privacy-policy {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px 84px;
  color: var(--ash-text-dark, #1C1C1C);
  font-family: var(--font-body, Montserrat, sans-serif);
}

.ash-privacy-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 32px 58px;
  margin-bottom: 50px;
  text-align: center;
  background: var(--ash-dark-green, #0D1B16);
  color: #fff;
}

.ash-privacy-hero::before,
.ash-privacy-hero::after {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(197, 160, 89, 0.32);
  border-radius: 50%;
  content: '';
}

.ash-privacy-hero::before { top: -102px; left: -74px; }
.ash-privacy-hero::after { right: -90px; bottom: -122px; }

.ash-privacy-eyebrow,
.ash-privacy-date,
.ash-privacy-intro,
.ash-privacy-seal,
.ash-privacy-hero h1 { position: relative; z-index: 1; }

.ash-privacy-eyebrow {
  display: block;
  color: var(--ash-gold-light, #D5B675);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.ash-privacy-seal {
  display: flex;
  width: 46px;
  height: 46px;
  margin: 20px auto 17px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ash-gold, #C5A059);
  border-radius: 50%;
  color: var(--ash-gold-light, #D5B675);
  font-family: var(--font-heading, Georgia, serif);
  font-size: 26px;
  line-height: 1;
}

.ash-privacy-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.ash-privacy-date {
  margin: 15px 0 0;
  color: var(--ash-gold-light, #D5B675);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.ash-privacy-intro {
  max-width: 590px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 14px;
  line-height: 1.75;
}

.ash-privacy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(42px, 7vw, 100px);
  justify-content: center;
}

.ash-privacy-nav {
  align-self: start;
  position: sticky;
  top: 120px;
  padding: 4px 0 4px 18px;
  border-left: 1px solid var(--ash-border, #EAE4D8);
}

.ash-privacy-nav-title {
  display: block;
  margin-bottom: 13px;
  color: var(--ash-dark-green, #0D1B16);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ash-privacy-nav a {
  display: block;
  padding: 5px 0;
  color: var(--ash-text-muted, #555555);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.ash-privacy-nav a:hover,
.ash-privacy-nav a:focus { color: var(--ash-gold, #C5A059); transform: translateX(3px); }

.ash-privacy-content > p,
.ash-privacy-content section > p,
.ash-privacy-content li,
.ash-privacy-purpose-list dd {
  color: var(--ash-text-muted, #555555);
  font-size: 14px;
  line-height: 1.9;
}

.ash-privacy-content > p { margin: 0 0 20px; }

.ash-privacy-content section {
  padding: 34px 0 12px;
  scroll-margin-top: 125px;
}

.ash-privacy-content h2 {
  margin: 0 0 17px;
  color: var(--ash-dark-green, #0D1B16);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.1;
}

.ash-privacy-content h2::after {
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 13px;
  background: var(--ash-gold, #C5A059);
  content: '';
}

.ash-privacy-content ul { padding-left: 0; margin: 18px 0 0; list-style: none; }
.ash-privacy-content li { position: relative; padding-left: 21px; margin: 9px 0; }
.ash-privacy-content li::before { position: absolute; top: 12px; left: 0; width: 5px; height: 5px; background: var(--ash-gold, #C5A059); border-radius: 50%; content: ''; }
.ash-privacy-content strong { color: var(--ash-text-dark, #1C1C1C); font-weight: 600; }
.ash-privacy-content a { color: var(--ash-dark-green, #0D1B16); font-weight: 600; text-decoration-color: var(--ash-gold, #C5A059); text-underline-offset: 3px; }

.ash-privacy-data-list,
.ash-privacy-rights-list { padding: 17px 23px 18px !important; background: var(--ash-bg-card, #F0ECE3); }

.ash-privacy-purpose-list { margin: 0; }
.ash-privacy-purpose-list div { padding: 19px 0; border-bottom: 1px solid var(--ash-border, #EAE4D8); }
.ash-privacy-purpose-list dt { color: var(--ash-dark-green, #0D1B16); font-family: var(--font-heading, Georgia, serif); font-size: 22px; font-weight: 600; }
.ash-privacy-purpose-list dd { margin: 7px 0 0; }

@media (max-width: 767px) {
  .ash-privacy-policy { padding: 0 0 55px; }
  .ash-privacy-hero { padding: 48px 24px 42px; margin-bottom: 34px; }
  .ash-privacy-layout { display: block; padding: 0 22px; }
  .ash-privacy-nav { position: static; display: none; }
  .ash-privacy-content > p,
  .ash-privacy-content section > p,
  .ash-privacy-content li,
  .ash-privacy-purpose-list dd { font-size: 13px; line-height: 1.8; }
  .ash-privacy-content section { padding-top: 30px; scroll-margin-top: 85px; }
  .ash-privacy-data-list,
  .ash-privacy-rights-list { padding: 12px 16px !important; }
}

.ash-privacy-nav a:focus-visible,
.ash-privacy-content a:focus-visible { outline: 2px solid var(--ash-gold, #C5A059); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .ash-privacy-nav a { transition: none; }
}

/* ---- CMS page styles: hizmet-sartlari ---- */
.ash-terms-policy {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px 84px;
  color: var(--ash-text-dark, #1C1C1C);
  font-family: var(--font-body, Montserrat, sans-serif);
}

.ash-terms-hero {
  padding: 57px 32px 51px;
  margin-bottom: 48px;
  text-align: center;
  border-top: 1px solid var(--ash-gold, #C5A059);
  border-bottom: 1px solid var(--ash-gold, #C5A059);
  background: var(--ash-bg-card, #F0ECE3);
}

.ash-terms-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--ash-gold, #C5A059);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.8px;
}

.ash-terms-hero h1 {
  margin: 0;
  color: var(--ash-dark-green, #0D1B16);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.ash-terms-hero p {
  max-width: 470px;
  margin: 18px auto 0;
  color: var(--ash-text-muted, #555555);
  font-size: 13px;
  line-height: 1.7;
}

.ash-terms-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: clamp(42px, 7vw, 100px);
  justify-content: center;
}

.ash-terms-nav {
  align-self: start;
  position: sticky;
  top: 120px;
  padding: 4px 0 4px 17px;
  border-left: 1px solid var(--ash-border, #EAE4D8);
}

.ash-terms-nav span {
  display: block;
  margin-bottom: 13px;
  color: var(--ash-dark-green, #0D1B16);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ash-terms-nav a {
  display: block;
  padding: 5px 0;
  color: var(--ash-text-muted, #555555);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.ash-terms-nav a:hover,
.ash-terms-nav a:focus { color: var(--ash-gold, #C5A059); transform: translateX(3px); }

.ash-terms-content section {
  position: relative;
  padding: 34px 0 15px 45px;
  border-bottom: 1px solid var(--ash-border, #EAE4D8);
  scroll-margin-top: 125px;
}

.ash-terms-number {
  position: absolute;
  top: 39px;
  left: 0;
  color: var(--ash-gold, #C5A059);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.ash-terms-content h2 {
  margin: 0 0 14px;
  color: var(--ash-dark-green, #0D1B16);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.1;
}

.ash-terms-content p {
  margin: 0 0 14px;
  color: var(--ash-text-muted, #555555);
  font-size: 14px;
  line-height: 1.9;
}

.ash-terms-content p:last-child { margin-bottom: 0; }

.ash-terms-content a {
  color: var(--ash-dark-green, #0D1B16);
  font-weight: 600;
  text-decoration-color: var(--ash-gold, #C5A059);
  text-underline-offset: 3px;
}

.ash-terms-nav a:focus-visible,
.ash-terms-content a:focus-visible { outline: 2px solid var(--ash-gold, #C5A059); outline-offset: 3px; }

@media (max-width: 767px) {
  .ash-terms-policy { padding: 0 0 55px; }
  .ash-terms-hero { padding: 45px 24px 39px; margin-bottom: 28px; }
  .ash-terms-layout { display: block; padding: 0 22px; }
  .ash-terms-nav { display: none; }
  .ash-terms-content section { padding: 29px 0 14px 37px; scroll-margin-top: 85px; }
  .ash-terms-number { top: 34px; font-size: 10px; }
  .ash-terms-content p { font-size: 13px; line-height: 1.8; }
}

@media (prefers-reduced-motion: reduce) {
  .ash-terms-nav a { transition: none; }
}

/* ---- CMS page styles: mesafeli-satis-sozlesmesi ---- */
.ash-distance-sale-policy {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px 84px;
  color: var(--ash-text-dark, #1C1C1C);
  font-family: var(--font-body, Montserrat, sans-serif);
}

.ash-distance-sale-hero {
  padding: 59px 32px 53px;
  margin-bottom: 49px;
  text-align: center;
  background: var(--ash-dark-green, #0D1B16);
}

.ash-distance-sale-eyebrow {
  display: block;
  margin-bottom: 15px;
  color: var(--ash-gold-light, #D5B675);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.8px;
}

.ash-distance-sale-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.025em;
}

.ash-distance-sale-hero p {
  max-width: 570px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.7;
}

.ash-distance-sale-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: clamp(42px, 7vw, 100px);
  justify-content: center;
}

.ash-distance-sale-nav {
  align-self: start;
  position: sticky;
  top: 120px;
  padding: 4px 0 4px 17px;
  border-left: 1px solid var(--ash-border, #EAE4D8);
}

.ash-distance-sale-nav span {
  display: block;
  margin-bottom: 13px;
  color: var(--ash-dark-green, #0D1B16);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ash-distance-sale-nav a {
  display: block;
  padding: 5px 0;
  color: var(--ash-text-muted, #555555);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.ash-distance-sale-nav a:hover,
.ash-distance-sale-nav a:focus { color: var(--ash-gold, #C5A059); transform: translateX(3px); }

.ash-distance-sale-content section {
  position: relative;
  padding: 38px 0 18px;
  border-bottom: 1px solid var(--ash-border, #EAE4D8);
  scroll-margin-top: 125px;
}

.ash-sale-article {
  display: block;
  margin-bottom: 9px;
  color: var(--ash-gold, #C5A059);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.ash-distance-sale-content h2 {
  margin: 0 0 16px;
  color: var(--ash-dark-green, #0D1B16);
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(28px, 3vw, 35px);
  font-weight: 600;
  line-height: 1.1;
}

.ash-distance-sale-content h3 {
  margin: 0 0 14px;
  color: var(--ash-dark-green, #0D1B16);
  font-family: var(--font-heading, Georgia, serif);
  font-size: 24px;
  font-weight: 600;
}

.ash-distance-sale-content p,
.ash-distance-sale-content li,
.ash-sale-details dd,
.ash-sale-parties-grid dd {
  color: var(--ash-text-muted, #555555);
  font-size: 14px;
  line-height: 1.9;
}

.ash-distance-sale-content p { margin: 0 0 14px; }
.ash-distance-sale-content p:last-child { margin-bottom: 0; }
.ash-distance-sale-content a { color: var(--ash-dark-green, #0D1B16); font-weight: 600; text-decoration-color: var(--ash-gold, #C5A059); text-underline-offset: 3px; }

.ash-sale-parties-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.ash-sale-parties-grid > div { padding: 25px; background: var(--ash-bg-card, #F0ECE3); }
.ash-sale-parties-grid dl,
.ash-sale-details { display: grid; grid-template-columns: minmax(110px, .75fr) minmax(0, 1.5fr); margin: 0; }
.ash-sale-parties-grid dt,
.ash-sale-details dt { padding: 8px 12px 8px 0; color: var(--ash-text-dark, #1C1C1C); font-size: 12px; font-weight: 600; }
.ash-sale-parties-grid dd,
.ash-sale-details dd { padding: 8px 0; margin: 0; font-size: 13px; line-height: 1.5; }
.ash-sale-order-fields dd { color: var(--ash-text-muted, #555555); font-style: italic; }
.ash-sale-details { padding: 18px 22px; margin: 0 0 20px; background: var(--ash-bg-card, #F0ECE3); }
.ash-distance-sale-content ul { padding-left: 0; margin: 0; list-style: none; }
.ash-distance-sale-content li { position: relative; padding-left: 21px; margin: 9px 0; }
.ash-distance-sale-content li::before { position: absolute; top: 12px; left: 0; width: 5px; height: 5px; background: var(--ash-gold, #C5A059); border-radius: 50%; content: ''; }
.ash-sale-notice { padding: 17px 21px; margin-top: 20px !important; border-left: 2px solid var(--ash-gold, #C5A059); background: var(--ash-bg-card, #F0ECE3); }
.ash-sale-highlight-list { padding: 16px 22px !important; background: var(--ash-bg-card, #F0ECE3); }
.ash-sale-closing { color: var(--ash-dark-green, #0D1B16) !important; font-family: var(--font-heading, Georgia, serif); font-size: 21px !important; font-weight: 600; line-height: 1.35 !important; }
.ash-sale-signature { padding-top: 15px; color: var(--ash-text-dark, #1C1C1C) !important; font-size: 13px !important; }

.ash-distance-sale-nav a:focus-visible,
.ash-distance-sale-content a:focus-visible { outline: 2px solid var(--ash-gold, #C5A059); outline-offset: 3px; }

@media (max-width: 767px) {
  .ash-distance-sale-policy { padding: 0 0 55px; }
  .ash-distance-sale-hero { padding: 46px 24px 40px; margin-bottom: 28px; }
  .ash-distance-sale-layout { display: block; padding: 0 22px; }
  .ash-distance-sale-nav { display: none; }
  .ash-distance-sale-content section { padding: 31px 0 15px; scroll-margin-top: 85px; }
  .ash-distance-sale-content p,
  .ash-distance-sale-content li,
  .ash-sale-details dd,
  .ash-sale-parties-grid dd { font-size: 13px; line-height: 1.8; }
  .ash-sale-parties-grid { grid-template-columns: 1fr; gap: 14px; }
  .ash-sale-parties-grid > div { padding: 20px; }
  .ash-sale-details { grid-template-columns: 1fr; padding: 15px 18px; }
  .ash-sale-details dt { padding: 8px 0 0; }
  .ash-sale-details dd { padding: 3px 0 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .ash-distance-sale-nav a { transition: none; }
}

/* ---- CMS page styles: sikca-sorulan-sorular ---- */
.ash-cms-faq-wrapper {
      max-width: 920px;
      margin: 0 auto;
      padding: 10px 0 50px 0;
      font-family: var(--font-body, Montserrat, sans-serif);
      color: var(--ash-text-dark, #1C1C1C);
    }
    
    .ash-faq-header {
      text-align: center;
      margin-bottom: 45px;
    }

    .ash-faq-header h1 {
      font-family: var(--font-heading, Cormorant Garamond, serif) !important;
      font-size: 38px !important;
      font-weight: 600 !important;
      color: var(--ash-dark-green, #0D1B16) !important;
      margin-bottom: 12px !important;
      letter-spacing: 1px !important;
      text-transform: uppercase !important;
    }

    .ash-faq-header p {
      font-size: 15px;
      color: var(--ash-text-muted, #555555);
      max-width: 600px;
      margin: 0 auto;
    }

    .ash-faq-divider {
      width: 60px;
      height: 2px;
      background-color: var(--ash-gold, #C5A059);
      margin: 18px auto 0 auto;
    }

    /* ACCORDION CARDS */
    .ash-faq-accordion-item {
      background: #FFFFFF;
      border: 1px solid var(--ash-border, #EAE4D8);
      border-radius: 8px;
      margin-bottom: 18px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(13, 27, 22, 0.03);
      transition: all 0.3s ease;
    }

    .ash-faq-accordion-item:hover {
      border-color: var(--ash-gold, #C5A059);
      box-shadow: 0 8px 25px rgba(197, 160, 89, 0.12);
    }

    .page-content.page-cms .ash-cms-faq-wrapper .ash-faq-question {
      width: 100%;
      padding: 22px 28px;
      display: grid !important;
      grid-template-columns: minmax(0, 1fr) 32px;
      gap: 15px;
      align-items: center;
      border: 0;
      color: inherit;
      cursor: pointer;
      list-style: none;
      text-align: left;
      user-select: none;
      background: #FFFFFF;
      transition: background 0.25s ease;
    }

    .ash-faq-question h3 {
      font-family: var(--font-heading, Cormorant Garamond, serif) !important;
      font-size: 22px !important;
      font-weight: 600 !important;
      color: var(--ash-dark-green, #0D1B16) !important;
      margin: 0 !important;
      padding: 0 !important;
      min-width: 0;
    }

    .ash-faq-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--ash-bg-card, #F0ECE3);
      color: var(--ash-gold, #C5A059);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: all 0.3s ease;
      flex-shrink: 0;
      margin-left: 15px;
    }

    .ash-faq-accordion-item.active .ash-faq-icon {
      background: var(--ash-dark-green, #0D1B16);
      color: var(--ash-gold, #C5A059);
      transform: rotate(180deg);
    }

    .page-content.page-cms .ash-cms-faq-wrapper .ash-faq-answer {
      display: none;
      padding: 0 28px;
      overflow: hidden;
      background: #FAF8F4;
      border-top: 1px solid transparent;
    }

    .page-content.page-cms .ash-cms-faq-wrapper .ash-faq-accordion-item.active .ash-faq-answer {
      display: block;
      padding: 20px 28px 25px 28px;
      border-top-color: var(--ash-border, #EAE4D8);
    }

    .ash-faq-answer p {
      font-size: 15px;
      line-height: 1.8;
      color: var(--ash-text-dark, #1C1C1C);
      margin: 0 0 12px 0;
    }

    .ash-faq-answer ul {
      padding-left: 20px;
      margin: 0;
      font-size: 15px;
      line-height: 1.8;
    }

    .ash-faq-answer ul li {
      margin-bottom: 8px;
    }

    /* CTA BOX */
    .ash-faq-cta-card {
      background: var(--ash-bg-card, #F0ECE3);
      border: 1px solid var(--ash-border, #EAE4D8);
      border-left: 5px solid var(--ash-gold, #C5A059);
      border-radius: 8px;
      padding: 35px;
      text-align: center;
      margin-top: 45px;
      box-shadow: 0 10px 25px rgba(13, 27, 22, 0.04);
    }

    .ash-faq-cta-card h3 {
      font-family: var(--font-heading, Cormorant Garamond, serif) !important;
      font-size: 26px !important;
      font-weight: 600 !important;
      color: var(--ash-dark-green, #0D1B16) !important;
      margin-bottom: 10px !important;
    }

    .ash-faq-cta-card p {
      font-size: 15px;
      color: var(--ash-text-muted, #555555);
      margin-bottom: 22px;
    }

    .ash-faq-cta-card p a {
      color: var(--ash-gold, #C5A059);
      font-weight: 600;
      text-decoration-color: var(--ash-gold, #C5A059);
      text-underline-offset: 3px;
    }

    .ash-faq-cta-card p a:hover,
    .ash-faq-cta-card p a:focus {
      color: var(--ash-dark-green, #0D1B16);
    }

    .ash-faq-btn {
      display: inline-block;
      background: var(--ash-dark-green, #0D1B16);
      color: var(--ash-gold, #C5A059) !important;
      border: 1px solid var(--ash-gold, #C5A059);
      padding: 14px 38px;
      font-family: var(--font-heading, Cormorant Garamond, serif);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-decoration: none !important;
      text-transform: uppercase;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .ash-faq-btn:hover {
      background: var(--ash-gold, #C5A059);
      color: var(--ash-dark-green, #0D1B16) !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
    }

/* Native PrestaShop add-to-cart confirmation */
#header .ash-nav-menu > li > a:hover,
#header .ash-nav-menu > li > a:focus,
#header .ash-header-actions > a:hover,
#header .ash-header-actions > a:focus,
#header .ash-header-search-btn:hover,
#header .ash-header-search-btn:focus {
  color: var(--ash-gold) !important;
}

/* Instagram takip butonunu bölüm içinde yatayda ortala. */
.ash-insta-btn-wrapper {
  text-align: center;
}

#header .ash-header-actions > a:hover,
#header .ash-header-actions > a:focus {
  text-decoration: none;
}

#blockcart-modal .modal-dialog {
  max-width: 920px;
}

#blockcart-modal .modal-content {
  background: var(--ash-bg-main);
  border: 1px solid var(--ash-gold);
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(13, 27, 22, 0.36);
  color: var(--ash-text-dark);
}

#blockcart-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 20px 64px;
  border-bottom: 1px solid var(--ash-border);
  background: var(--ash-bg-card);
}

#blockcart-modal .modal-title {
  margin: 0;
  color: var(--ash-dark-green);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: none;
}

#blockcart-modal .modal-title .material-icons {
  margin-right: 12px;
  color: var(--ash-gold);
  font-size: 25px;
  vertical-align: -4px;
}

#blockcart-modal .close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--ash-dark-green);
  font-size: 22px;
  line-height: 1;
  opacity: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

#blockcart-modal .close:hover,
#blockcart-modal .close:focus {
  border-color: var(--ash-gold);
  background: var(--ash-bg-main);
  color: var(--ash-gold);
}

#blockcart-modal .modal-body {
  padding: 34px 42px 38px;
}

#blockcart-modal .divide-right {
  border-right: 1px solid var(--ash-border);
}

#blockcart-modal .product-image {
  width: 100%;
  max-width: 168px;
  border: 1px solid var(--ash-border);
  border-radius: 0;
}

#blockcart-modal .product-name {
  margin: 0 0 10px;
  color: var(--ash-dark-green);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
}

#blockcart-modal .product-price,
#blockcart-modal .product-quantity {
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-size: 14px;
}

#blockcart-modal .cart-content {
  padding-left: 30px;
}

#blockcart-modal .cart-products-count {
  margin-bottom: 20px;
  color: var(--ash-dark-green);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 600;
}

#blockcart-modal .cart-content > p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--ash-border);
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-size: 14px;
}

#blockcart-modal .cart-content .value {
  color: var(--ash-dark-green);
  font-weight: 700;
}

#blockcart-modal .cart-content .product-total {
  margin-top: 10px;
  border-top: 1px solid var(--ash-gold);
  border-bottom: 0;
  font-size: 15px;
}

#blockcart-modal .cart-content-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

#blockcart-modal .cart-content-btn .btn {
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#blockcart-modal .cart-content-btn .btn-secondary {
  border: 1px solid var(--ash-dark-green);
  background: transparent;
  color: var(--ash-dark-green);
}

#blockcart-modal .cart-content-btn .btn-secondary:hover {
  background: var(--ash-dark-green);
  color: var(--ash-bg-main);
}

#blockcart-modal .cart-content-btn .btn-primary {
  border: 1px solid var(--ash-gold);
  background: var(--ash-gold);
  color: var(--ash-dark-green);
}

#blockcart-modal .cart-content-btn .btn-primary:hover {
  border-color: var(--ash-dark-green);
  background: var(--ash-dark-green);
  color: var(--ash-bg-main);
}

#blockcart-modal .cart-content-btn .material-icons {
  margin-right: 6px;
  font-size: 17px;
  vertical-align: -3px;
}

@media (max-width: 767px) {
  #blockcart-modal .modal-dialog {
    width: calc(100% - 28px);
    margin: 14px auto;
  }

  #blockcart-modal .modal-header {
    min-height: 64px;
    padding: 16px 48px 16px 20px;
  }

  #blockcart-modal .modal-title {
    font-size: 19px;
    text-align: left;
  }

  #blockcart-modal .modal-body {
    padding: 24px 20px 28px;
  }

  #blockcart-modal .divide-right {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--ash-border);
  }

  #blockcart-modal .cart-content {
    padding-left: 0;
  }

  #blockcart-modal .cart-content-btn {
    grid-template-columns: 1fr;
  }
}

/* Product variants: use the same restrained custom-select language as catalogue sorting. */
.product-variants {
  margin: 1.8rem 0;
  padding: 1.35rem 0;
  border-top: 1px solid var(--ash-border);
  border-bottom: 1px solid var(--ash-border);
}

.product-variants-item + .product-variants-item {
  margin-top: 1.1rem;
}

.product-variants .control-label {
  display: block;
  margin: 0 0 .55rem;
  color: var(--ash-dark-green);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.ash-variant-select {
  position: relative;
  max-width: 24rem;
}

.ash-variant-select-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 3.25rem;
  padding: .9rem 1rem;
  border: 2px solid var(--ash-border);
  border-radius: 0;
  background: var(--ash-bg-main);
  color: var(--ash-dark-green);
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .02em;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ash-variant-select-trigger:hover,
.ash-variant-select-trigger:focus-visible,
.ash-variant-select.is-open .ash-variant-select-trigger {
  outline: none;
  border-color: var(--ash-dark-green);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, .18);
}

.ash-variant-select-trigger .fa-chevron-down {
  color: var(--ash-gold);
  font-size: .68rem;
  transition: transform .2s ease;
}

.ash-variant-select.is-open .fa-chevron-down {
  transform: rotate(180deg);
}

.ash-variant-select-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  z-index: 30;
  display: none;
  padding: 5px;
  border: 1px solid var(--ash-border);
  background: var(--ash-bg-main);
  box-shadow: 0 12px 28px rgba(13, 27, 22, .14);
}

.ash-variant-select.is-open .ash-variant-select-menu {
  display: grid;
}

.ash-variant-select-menu button {
  padding: .65rem .7rem;
  border: 0;
  background: transparent;
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-size: .8rem;
  text-align: left;
  cursor: pointer;
}

.ash-variant-select-menu button:hover,
.ash-variant-select-menu button:focus-visible,
.ash-variant-select-menu button.is-selected {
  outline: none;
  background: var(--ash-dark-green);
  color: var(--ash-gold-light);
}

.ash-variant-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  border: 0 !important;
}

.product-variants ul {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-variants .input-container {
  float: none !important;
  margin: 0;
}

.product-variants .input-radio,
.product-variants .input-color {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-variants .radio-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: .55rem .9rem;
  border: 1px solid var(--ash-border);
  background: var(--ash-bg-main);
  color: var(--ash-dark-green);
  font-family: var(--font-body);
  font-size: .77rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.product-variants .radio-label:hover,
.product-variants .input-radio:focus-visible + .radio-label {
  border-color: var(--ash-gold);
}

.product-variants .input-radio:checked + .radio-label {
  border-color: var(--ash-dark-green);
  background: var(--ash-dark-green);
  color: var(--ash-gold-light);
}

.product-variants .color {
  display: block;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--ash-border);
  background-color: var(--ash-bg-card);
  cursor: pointer;
}

.product-variants .input-color:focus-visible + .color,
.product-variants .input-color:checked + .color {
  outline: 2px solid var(--ash-gold);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .product-variants {
    margin: 1.35rem 0;
    padding: 1.1rem 0;
  }

  .ash-variant-select {
    max-width: none;
  }
}

/* Collection pagination */
.ash-collection-pagination {
  align-items: center;
  margin: 3rem 0 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--ash-border);
  color: var(--ash-text-muted);
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .04em;
}

.ash-collection-pagination .ash-pagination-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ash-collection-pagination .ash-pagination-list a,
.ash-collection-pagination .ash-pagination-list .spacer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 .55rem;
  border: 1px solid var(--ash-border);
  background: var(--ash-bg-main);
  color: var(--ash-dark-green);
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.ash-collection-pagination .ash-pagination-list a:hover,
.ash-collection-pagination .ash-pagination-list a:focus-visible {
  border-color: var(--ash-gold);
  background: var(--ash-bg-card);
  color: var(--ash-dark-green);
}

.ash-collection-pagination .ash-pagination-list li.current a {
  border-color: var(--ash-dark-green);
  background: var(--ash-dark-green);
  color: var(--ash-gold-light);
}

.ash-collection-pagination .ash-pagination-list a.disabled {
  opacity: .4;
  pointer-events: none;
}

.ash-collection-pagination .ash-pagination-list .previous,
.ash-collection-pagination .ash-pagination-list .next {
  float: none;
}

.ash-collection-pagination .ash-pagination-list .material-icons {
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .ash-collection-pagination {
    display: block;
    margin-top: 2rem;
    text-align: center;
  }

  .ash-collection-pagination .ash-pagination-summary,
  .ash-collection-pagination .ash-pagination-controls {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .ash-collection-pagination .ash-pagination-summary {
    margin-bottom: 1rem;
  }

  .ash-collection-pagination .ash-pagination-list {
    justify-content: center;
  }
}

/* Collection product cards */
.ash-return-policy-notice {
  margin: 1.5rem 0;
  padding: .9rem 1rem;
  border-left: 3px solid var(--ash-gold);
  background: var(--ash-bg-card);
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-size: .82rem;
  line-height: 1.55;
}

@media (min-width: 992px) {
  .ash-trust-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ash-category-page-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Shared reassurance band */
.ash-trust-band .ash-trust-box {
  justify-content: center;
  text-align: center;
}

@media (min-width: 640px) {
  .ash-category-page-container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ash-sidebar-filter {
    position: sticky;
    top: 5.5rem;
    align-self: start;
  }
}

.ash-cat-products-grid {
  gap: 1.75rem;
  margin-top: 0;
  padding-top: 0;
}

/* Shared product card: used by collection and related-product listings. */
#products .product-miniature,
.featured-products .product-miniature {
  margin: 0;
  width: 100%;
}

#products .product-miniature .thumbnail-container,
.featured-products .product-miniature .thumbnail-container {
  background: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}

#products .product-miniature .thumbnail-container:hover,
.featured-products .product-miniature .thumbnail-container:hover {
  border-color: var(--ash-gold);
  transform: translateY(-4px);
}

#products .product-miniature .thumbnail-top,
.featured-products .product-miniature .thumbnail-top {
  aspect-ratio: 1 / 1.12;
  background: #e9e3d7;
  overflow: hidden;
  position: relative;
}

#products .product-miniature .product-thumbnail,
.featured-products .product-miniature .product-thumbnail {
  display: block;
  height: 100%;
  width: 100%;
}

#products .product-miniature .product-thumbnail img,
.featured-products .product-miniature .product-thumbnail img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#products .product-miniature .quick-view,
.featured-products .product-miniature .quick-view {
  background: rgba(13, 27, 22, .94);
  border: 1px solid var(--ash-gold);
  box-sizing: border-box;
  color: var(--ash-bg-main);
  box-shadow: 0 8px 20px rgba(13, 27, 22, .2);
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  height: 40px;
  line-height: 38px;
  padding: 0 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease;
  width: 100%;
}

#products .product-miniature .highlighted-informations,
.featured-products .product-miniature .highlighted-informations {
  padding: 0;
}

#products .product-miniature .quick-view:hover,
#products .product-miniature .quick-view:focus,
.featured-products .product-miniature .quick-view:hover,
.featured-products .product-miniature .quick-view:focus {
  background: var(--ash-gold);
  color: var(--ash-dark-green);
  outline: 0;
}

#products .product-miniature .quick-view .material-icons,
.featured-products .product-miniature .quick-view .material-icons {
  font-size: 16px;
  margin-right: 5px;
  vertical-align: -3px;
}

/* The product-card wishlist control is intentionally not part of this design. */
.product-miniature .wishlist-button-add,
.product-miniature .add-to-wishlist,
.product-miniature [data-button-action='add-to-wishlist'] {
  display: none !important;
}

#products .product-miniature .product-description,
.featured-products .product-miniature .product-description {
  background: var(--ash-bg-card);
  min-height: 108px;
  padding: 17px 18px 19px;
  text-align: left;
}

#products .product-miniature .product-title,
.featured-products .product-miniature .product-title {
  font-family: var(--font-heading);
  font-size: 20px !important;
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 10px;
}

#products .product-miniature .product-title a,
.featured-products .product-miniature .product-title a {
  color: var(--ash-text-dark);
  font-size: 20px !important;
  line-height: 1.12;
  overflow-wrap: break-word;
  text-decoration: none;
  white-space: normal;
}

#products .product-miniature .product-price-and-shipping,
.featured-products .product-miniature .product-price-and-shipping {
  color: var(--ash-dark-green);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
}

#products .product-miniature .price,
.featured-products .product-miniature .price {
  color: var(--ash-dark-green);
  font-size: 16px !important;
  line-height: 1.1;
}

/* Quick-view: a compact jewellery consultation, not a generic Bootstrap dialog. */
.quickview .modal-dialog {
  max-width: 1050px;
}

.quickview .modal-content {
  background: var(--ash-bg-main);
  border: 1px solid rgba(197, 160, 89, .38);
  border-radius: 0;
  box-shadow: 0 26px 70px rgba(13, 27, 22, .3);
  overflow: hidden;
}

.quickview .modal-header,
.quickview .modal-footer {
  border: 0;
  padding: 0;
}

.quickview .modal-header .close {
  color: var(--ash-dark-green);
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  height: 38px;
  margin: 12px 14px -8px auto;
  opacity: 1;
  padding: 0;
  text-shadow: none;
  transition: color .2s ease, transform .2s ease;
  z-index: 1;
}

.quickview .modal-header .close:hover,
.quickview .modal-header .close:focus {
  color: var(--ash-gold);
  opacity: 1;
  outline: 0;
  transform: rotate(90deg);
}

.quickview .modal-body {
  padding: 28px 46px 46px;
}

.quickview .quickview-layout {
  align-items: stretch;
}

.quickview .quickview-gallery {
  border-right: 1px solid var(--ash-border);
  padding-right: 38px;
}

.quickview .quickview-details {
  display: flex;
  flex-direction: column;
  padding-left: 42px;
}

.quickview .quickview-product-heading {
  border-bottom: 1px solid var(--ash-border);
  margin-bottom: 20px;
  padding-bottom: 19px;
  position: relative;
}

.quickview .quickview-product-heading::after {
  background: var(--ash-gold);
  bottom: -1px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  width: 52px;
}

.quickview .product-cover img {
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
  transition: transform .22s ease-out;
  width: 100%;
}

.quickview .product-cover.ash-qv-zoom-target {
  background: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  border-radius: 2px;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
}

.quickview .product-cover.ash-qv-zoom-target:focus-visible {
  border-color: var(--ash-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, .2);
  outline: 0;
}

.quickview .product-cover.ash-qv-zoom-target.is-inline-zooming {
  cursor: zoom-out;
}

.quickview .product-cover.ash-qv-zoom-target.is-inline-zooming img {
  transform: scale(2.15);
}

.quickview .ash-qv-zoom-button {
  align-items: center;
  background: rgba(13, 27, 22, .9);
  border: 0;
  bottom: 14px;
  color: var(--ash-bg-main);
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  gap: 8px;
  left: 14px;
  letter-spacing: .12em;
  padding: 10px 12px;
  position: absolute;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease;
  z-index: 2;
}

.quickview .ash-qv-zoom-button:hover,
.quickview .ash-qv-zoom-button:focus-visible {
  background: var(--ash-gold);
  color: var(--ash-dark-green);
  outline: 0;
}

.quickview .ash-qv-zoom-button i {
  font-size: 12px;
}

.quickview .ash-qv-stock {
  align-items: center;
  border-bottom: 1px solid var(--ash-border);
  color: var(--ash-dark-green);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 11px;
  gap: 8px;
  letter-spacing: .06em;
  padding: 0 0 15px;
  text-transform: uppercase;
}

.quickview .ash-qv-stock i {
  color: #2e7d32;
  font-size: 13px;
}

.quickview .ash-qv-stock__label {
  font-weight: 700;
}

.quickview .ash-qv-stock__value {
  color: var(--ash-gold);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
}

.quickview .ash-qv-stock.is-out-of-stock i,
.quickview .ash-qv-stock.is-out-of-stock .ash-qv-stock__label {
  color: #a33a2b;
}

.quickview .modal-body h1.h1 {
  color: var(--ash-dark-green);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.quickview .product-prices .current-price span,
.quickview .product-prices .current-price-value,
.quickview .product-price {
  color: var(--ash-dark-green);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

/* Keep the price visually separate from the stock, shipping and installment row. */
.ash-p-price {
  padding-bottom: 10px;
}

/* Product payment option belongs to the stock and shipping information row. */
.ash-p-installments {
  align-items: center;
  color: var(--ash-text-muted);
  display: flex;
  font-family: var(--font-body);
  font-size: 11px;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.ash-p-installments i {
  color: var(--ash-text-muted);
  font-size: 13px;
}

.ash-p-installments strong {
  color: var(--ash-dark-green);
  font-weight: 700;
}

.quickview #product-description-short {
  color: var(--ash-text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  margin: 20px 0 24px;
  padding-bottom: 0;
}

.quickview #product-description-short hr {
  display: none;
}

.quickview .product-actions,
.quickview .product-actions .product-add-to-cart {
  border: 0 !important;
  margin: 0;
  padding: 0;
}

.quickview .product-actions .control-label,
.quickview .product-variants > .product-variants-item > span {
  color: var(--ash-dark-green);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quickview .product-actions .form-control {
  background: transparent;
  border: 1px solid var(--ash-border);
  border-radius: 0;
  color: var(--ash-text-dark);
}

.quickview .product-actions .form-control:focus {
  border-color: var(--ash-gold);
  box-shadow: 0 0 0 2px rgba(197, 160, 89, .18);
  outline: 0;
}

.quickview .product-actions .product-quantity {
  align-items: stretch;
  display: flex;
  gap: 8px;
}

.quickview .product-actions .qty {
  flex: 0 0 56px;
}

.quickview .product-actions .qty #quantity_wanted {
  height: 48px;
  padding: 0 8px;
  text-align: center;
  width: 100%;
}

.quickview .product-actions .add {
  flex: 1;
}

.quickview .product-actions .add-to-cart {
  background: var(--ash-dark-green);
  border: 1px solid var(--ash-dark-green);
  border-radius: 0;
  color: var(--ash-bg-main);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  min-height: 48px;
  padding: 14px 18px;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.quickview .product-actions .add-to-cart:hover,
.quickview .product-actions .add-to-cart:focus {
  background: var(--ash-gold);
  border-color: var(--ash-gold);
  color: var(--ash-dark-green);
}

.quickview .product-actions .ash-buy-now {
  align-items: center;
  background: var(--ash-gold) !important;
  border: 1px solid var(--ash-gold);
  border-radius: 0;
  color: #fff !important;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  justify-content: center;
  height: 48px;
  letter-spacing: .1em;
  padding: 0 12px;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease;
  width: 100%;
}

.quickview .product-actions .ash-buy-now:hover,
.quickview .product-actions .ash-buy-now:focus {
  background: var(--ash-dark-green) !important;
  border-color: var(--ash-dark-green);
  color: #fff !important;
  outline: 0;
}

.quickview .product-actions .add-to-cart:active {
  background: #a98446;
  border-color: #a98446;
  color: var(--ash-bg-main);
}

.quickview .product-availability .alert {
  background: rgba(197, 160, 89, .13);
  border: 1px solid rgba(197, 160, 89, .55);
  border-radius: 0;
  color: var(--ash-dark-green);
  font-family: var(--font-body);
  font-size: 12px;
  margin: 16px 0 0;
  padding: 13px 15px;
}

.quickview .product-availability .alert .material-icons {
  color: var(--ash-gold);
}

.quickview .product-images > li.thumb-container > .thumb {
  border: 1px solid transparent;
  transition: border-color .2s ease, opacity .2s ease;
}

.quickview .product-images > li.thumb-container > .thumb:hover,
.quickview .product-images > li.thumb-container > .thumb:focus,
.quickview .product-images > li.thumb-container > .thumb.selected {
  border: 3px solid var(--ash-gold) !important;
  outline: 0;
}

@media (max-width: 767px) {
  .quickview .modal-dialog {
    margin: 12px;
  }

  .quickview .modal-body {
    padding: 20px 22px 28px;
  }

  .quickview .quickview-details {
    padding-left: 15px;
  }

  .quickview .ash-qv-zoom-button {
    bottom: 10px;
    left: 10px;
  }
}

@media (max-width: 991px) {
  .quickview .quickview-gallery {
    border-right: 0;
    margin-bottom: 24px;
    padding-right: 15px;
  }
}

@media (min-width: 1280px) {
  .ash-cat-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* Compact laptop: persistent filter sidebar with two readable product columns. */
@media (min-width: 1024px) and (max-width: 1279px) {
  .ash-category-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
  }

  .ash-cat-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Use a compact three-column product grid while tablet filters stay in a drawer. */
@media (min-width: 768px) and (max-width: 991px) {
  .ash-cat-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.ash-cat-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--ash-border);
  border-radius: 0;
  padding: 0 !important;
  background: var(--ash-bg-card);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ash-cat-card:hover {
  border-color: var(--ash-gold);
  box-shadow: none;
  transform: none;
}

.ash-cat-img-box {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--ash-bg-main);
}

.ash-cat-img-box img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.ash-cat-card-content {
  padding: .25rem;
}

.ash-cat-card-title {
  min-height: 0;
  margin: 0 0 .25rem;
  color: var(--ash-text-dark);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
}

.ash-cat-card-price {
  margin: 0;
  color: var(--ash-dark-green);
  font-family: var(--font-body);
  font-size: 1rem !important;
  font-weight: 700;
  letter-spacing: .07em;
  text-align: left;
}

@media (max-width: 767px) {
  .ash-cat-products-grid {
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ash-cat-card-title {
    margin: 0 0 .25rem;
    font-size: 1.1rem;
  }

  .ash-cat-card-price {
    margin: 0;
    font-size: .9rem !important;
  }
}

/* --------------------------------------------------------------------------
   Ashlesha header: an understated atelier signature in dark green and gold.
   -------------------------------------------------------------------------- */
#header {
  background: var(--ash-bg-main) !important;
  border-bottom: 1px solid var(--ash-border) !important;
  box-shadow: 0 5px 22px rgba(13, 27, 22, .035);
}

#header .ash-header-main {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  gap: clamp(18px, 2.5vw, 42px);
  min-height: 70px;
  max-width: 1440px;
  padding: 12px clamp(22px, 4vw, 62px);
}

#header .ash-logo-container {
  position: relative;
  width: auto;
  height: 62px;
  min-width: 0;
  gap: 10px;
  justify-self: start;
  overflow: visible;
}

#header .ash-main-logo {
  position: static;
  width: 72px;
  height: 72px;
  max-width: 72px;
  object-fit: contain;
  transform: none;
}

#header .ash-logo-lockup {
  display: grid;
  gap: 3px;
}

#header .ash-logo-text {
  color: var(--ash-dark-green);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem) !important;
  font-weight: 600;
  letter-spacing: .18em !important;
  line-height: .9;
}

#header .ash-logo-subtext {
  color: var(--ash-gold);
  font-family: var(--font-body);
  font-size: .52rem !important;
  font-weight: 600;
  letter-spacing: .34em !important;
  line-height: 1;
  margin-left: .12em;
}

#header .ash-nav-menu,
#header .ash-nav-menu .top-menu {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2vw, 32px);
  justify-content: center;
}

#header .ash-nav-menu {
  justify-self: center;
  margin: 0;
}

#header .ash-nav-menu .top-menu {
  margin: 0;
  padding: 0;
}

#header .ash-nav-menu li {
  list-style: none;
}

#header .ash-nav-menu a {
  position: relative;
  padding: 8px 0;
  color: var(--ash-dark-green);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
}

#header .ash-nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--ash-gold);
  content: '';
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

#header .ash-nav-menu a:hover,
#header .ash-nav-menu a:focus-visible {
  color: var(--ash-dark-green);
}

#header .ash-nav-menu a:hover::after,
#header .ash-nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

#header .ash-header-actions {
  justify-self: end;
  gap: 15px;
  color: var(--ash-dark-green);
  font-size: 1rem;
}

#header .ash-header-actions a {
  color: var(--ash-dark-green);
}

#header .ash-header-actions a:hover,
#header .ash-header-actions a:focus-visible {
  color: var(--ash-gold);
}

#header .ash-header-search-input {
  width: 116px;
  height: 31px;
  padding: 0 29px 0 12px;
  border: 0;
  border-bottom: 1px solid var(--ash-border);
  border-radius: 0;
  color: var(--ash-dark-green);
  font-size: .7rem;
}

#header .ash-header-search-input:focus {
  width: 145px;
  border-bottom-color: var(--ash-gold);
  background: transparent;
}

#header .ash-header-search-btn {
  right: 0;
  color: var(--ash-dark-green);
  font-size: .75rem;
}

#header .ash-cart-badge {
  top: -8px;
  right: -10px;
  width: 14px;
  height: 14px;
  background: var(--ash-gold);
  color: var(--ash-dark-green);
  font-size: .5rem;
}

#header .ash-hamburger-btn {
  width: 41px;
  height: 41px;
  padding: 10px;
  border: 1px solid var(--ash-border);
  border-radius: 50%;
  color: var(--ash-dark-green);
}

#header .ash-hamburger-btn span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
}

#header .ash-hamburger-btn:hover,
#header .ash-hamburger-btn:focus-visible {
  border-color: var(--ash-gold);
  color: var(--ash-gold);
  outline: none;
}

@media (max-width: 991px) {
  #header .ash-header-main {
    display: flex;
    min-height: 64px;
    padding: 7px 18px;
  }

  #header .ash-logo-text {
    font-size: 1.2rem !important;
  }

  #header .ash-logo-subtext {
    font-size: .48rem !important;
  }

  #header .ash-hamburger-btn {
    display: block !important;
    margin-left: auto;
  }

}

@media (max-width: 480px) {
  #header .ash-main-logo {
    width: 62px;
    height: 62px;
    max-width: 62px;
  }
}


/* Homepage story: the workbench image doubles as the visual field and copy canvas. */
.page-home .ash-story-card-box {
  position: relative;
  display: block;
  min-height: 500px;
  padding: clamp(40px, 6vw, 84px);
  overflow: hidden;
  border: 1px solid var(--ash-border);
  border-radius: 4px;
  background-color: var(--ash-bg-card);
  background-image: url('../img/story-workbench-banner-desktop-v2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-home .ash-story-content {
  position: relative;
  z-index: 1;
  width: min(46%, 500px);
  color: var(--ash-text-dark);
  text-align: center;
}

.page-home .ash-story-content h2 {
  margin: 0 0 15px;
  color: var(--ash-dark-green);
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.35vw, 2.6rem);
  font-weight: 500;
  letter-spacing: .13em;
  line-height: 1;
}

.page-home .ash-story-content h2::after {
  display: block;
  width: 74px;
  height: 12px;
  margin: 15px auto 0;
  background: linear-gradient(var(--ash-gold), var(--ash-gold)) center / 100% 1px no-repeat;
  color: var(--ash-gold);
  content: '◇';
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 12px;
}

.page-home .ash-story-content h3 {
  margin: 0 0 18px;
  color: var(--ash-text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
}

.page-home .ash-story-content p {
  margin: 0 0 15px;
  color: var(--ash-text-dark);
  font-family: var(--font-heading);
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.45;
}

.page-home .ash-story-content p:last-child {
  margin-bottom: 22px;
}

.page-home .ash-story-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 25px;
  border: 1px solid var(--ash-dark-green);
  background: var(--ash-dark-green);
  color: var(--ash-bg-main);
  font-family: var(--font-body);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.page-home .ash-story-cta:hover,
.page-home .ash-story-cta:focus-visible {
  background: var(--ash-gold);
  border-color: var(--ash-gold);
  color: var(--ash-dark-green);
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .page-home .ash-story-card-box {
    aspect-ratio: 941 / 1672;
    min-height: 0;
    height: auto;
    padding: 26px 22px;
    background-image: url('../img/story-workbench-banner-mobile-v2.png');
    background-position: center top;
    background-size: cover;
  }

  .page-home .ash-story-card-box::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245, 242, 235, .88) 0%, rgba(245, 242, 235, .67) 42%, rgba(245, 242, 235, .08) 62%, rgba(245, 242, 235, 0) 76%);
    content: '';
  }

  .page-home .ash-story-content {
    width: 100%;
  }

  .page-home .ash-story-content h2 {
    margin-bottom: 9px;
    font-size: 1.45rem;
    letter-spacing: .1em !important;
  }

  .page-home .ash-story-content h2::after {
    width: 52px;
    height: 9px;
    margin-top: 9px;
    font-size: 11px;
    line-height: 9px;
  }

  .page-home .ash-story-content h3 {
    margin-bottom: 12px;
    font-size: .92rem;
    line-height: 1.25;
  }

  .page-home .ash-story-content p {
    margin-bottom: 10px;
    font-size: .8rem;
    line-height: 1.32;
  }

  .page-home .ash-story-content p:last-child {
    margin-bottom: 14px;
  }

  .page-home .ash-story-cta {
    min-height: 34px;
    padding: 9px 16px;
    font-size: .56rem;
    letter-spacing: .13em;
  }

  .page-home .ash-story-content p br {
    display: none;
  }
}

/* Theme-owned WhatsApp support button. */
.ash-whatsapp-support {
  align-items: center;
  background: var(--ash-dark-green);
  border: 1px solid var(--ash-gold);
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 12px 28px rgba(13, 27, 22, .24);
  color: #fff;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  gap: 0;
  letter-spacing: .02em;
  min-height: 52px;
  justify-content: center;
  padding: 0;
  position: fixed;
  right: 24px;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
  z-index: 1000;
}

.ash-whatsapp-support:hover,
.ash-whatsapp-support:focus-visible {
  background: var(--ash-gold);
  color: var(--ash-dark-green);
  text-decoration: none;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .ash-whatsapp-support {
    width: 52px;
  }

  .ash-whatsapp-support:hover,
  .ash-whatsapp-support:focus-visible {
    gap: 9px;
    padding: 0 19px;
    width: 185px;
  }

  .ash-whatsapp-support__label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width .2s ease, opacity .15s ease;
  }

  .ash-whatsapp-support:hover .ash-whatsapp-support__label,
  .ash-whatsapp-support:focus-visible .ash-whatsapp-support__label {
    max-width: 120px;
    opacity: 1;
  }
}

.ash-whatsapp-support:focus-visible {
  outline: 2px solid var(--ash-gold-light);
  outline-offset: 3px;
}

.ash-whatsapp-support__icon {
  font-size: 21px;
  line-height: 1;
}

.ash-whatsapp-support__label {
  white-space: nowrap;
}

/* PDP: Let the product-information area inherit the theme's warm page tone. */
.tabs.ash-p-tabs-wrapper {
  background-color: transparent;
}

.ash-p-tabs-nav {
  justify-content: flex-start;
}

.ash-energy-grid--tags-only,
.ash-energy-grid--benefits-only {
  grid-template-columns: minmax(0, 1fr);
}

.ash-p-story-section .ash-p-story-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* PDP: Product descriptions need stronger contrast than supporting copy. */
#tab-detail .ash-p-story-desc,
#tab-detail .ash-p-story-desc p,
#tab-detail .ash-p-story-desc strong,
#tab-detail .ash-p-story-desc span {
  color: var(--ash-dark-green) !important;
}

/* Order confirmation: a calm, gift-like receipt designed for the Ashlesha journey. */
.page-order-confirmation,
#content-hook_order_confirmation {
  font-family: var(--font-body);
}

.ash-order-confirmation__hero {
  background: var(--ash-bg-card);
  border-bottom: 1px solid var(--ash-border);
  margin: 0;
  padding: 66px 24px 62px;
  text-align: center;
}

.ash-order-confirmation__hero-inner {
  margin: 0 auto;
  max-width: 720px;
}

.ash-order-confirmation__check {
  align-items: center;
  background: var(--ash-dark-green);
  border: 1px solid var(--ash-gold);
  border-radius: 50%;
  color: var(--ash-gold-light);
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 24px;
  height: 52px;
  justify-content: center;
  margin-bottom: 20px;
  width: 52px;
}

.ash-order-confirmation__eyebrow {
  color: var(--ash-gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.ash-order-confirmation__title {
  color: var(--ash-dark-green);
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
  margin: 0 0 18px;
}

.ash-order-confirmation__email {
  color: var(--ash-text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.ash-order-confirmation__email a {
  color: var(--ash-dark-green);
  text-decoration-color: var(--ash-gold);
  text-underline-offset: 3px;
}

.ash-order-confirmation {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0 auto;
  max-width: 1240px;
  padding: 52px 24px 64px;
}

.ash-order-confirmation__content > .row {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
}

.ash-order-confirmation__items {
  background: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  padding: 28px 30px 30px;
  width: 66.666667%;
}

.ash-order-confirmation__items .row:first-child {
  border-bottom: 1px solid var(--ash-border);
  margin-bottom: 22px;
}

.ash-order-confirmation__items-title,
.ash-order-confirmation__items .card-title,
.ash-order-confirmation__details-title {
  color: var(--ash-dark-green);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
  margin: 0 0 18px;
}

.ash-order-confirmation__items .card-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ash-order-confirmation__items .order-line {
  align-items: center;
  border-bottom: 1px solid var(--ash-border);
  margin: 0;
  padding: 0 0 22px;
}

.ash-order-confirmation__items .image img {
  display: block;
  height: 116px;
  object-fit: cover;
  width: 100%;
}

.ash-order-confirmation__items .details {
  color: var(--ash-dark-green);
  font-size: 14px;
  font-weight: 500;
}

.ash-order-confirmation__items .qty {
  color: var(--ash-text-dark);
  font-size: 13px;
}

.ash-order-confirmation__items hr {
  display: none;
}

.ash-order-confirmation__items table {
  margin: 20px 0 0 auto;
  max-width: 340px;
  width: 100%;
}

.ash-order-confirmation__items table td {
  border: 0;
  color: var(--ash-text-muted);
  font-size: 13px;
  padding: 7px 0;
}

.ash-order-confirmation__items table td:last-child {
  color: var(--ash-dark-green);
  text-align: right;
}

.ash-order-confirmation__items table .total-value td {
  border-top: 1px solid var(--ash-dark-green);
  color: var(--ash-dark-green);
  font-size: 14px;
  padding-top: 14px;
}

.ash-order-confirmation__details {
  background: var(--ash-dark-green);
  color: #fff;
  margin-left: 0;
  min-height: 286px;
  padding: 30px;
  width: 33.333333%;
}

.ash-order-confirmation__details-title {
  color: var(--ash-gold-light);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(213, 182, 117, .36);
}

.ash-order-confirmation__details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ash-order-confirmation__details li {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.65;
  padding: 13px 0;
}

.ash-order-confirmation__details li:last-child {
  border-bottom: 0;
}

.ash-order-confirmation__details em {
  color: var(--ash-gold-light);
  font-size: 12px;
  font-style: normal;
}

.ash-order-confirmation__payment {
  background: var(--ash-bg-card);
  border: 1px solid var(--ash-border);
  margin: 0 auto 48px;
  max-width: 1192px;
}

.ash-order-confirmation__payment-inner {
  padding: 24px 30px;
}

/* Customer order history. */
.ash-orders-page { margin: 0 auto; max-width: 1120px; padding: 52px 24px 70px; }
.ash-orders-page__header { margin: 0 auto 34px; max-width: 620px; text-align: center; }
.ash-orders-page__eyebrow { color: var(--ash-gold); font-size: 10px; font-weight: 600; letter-spacing: .2em; margin: 0 0 10px; text-transform: uppercase; }
.ash-orders-page__title { color: var(--ash-dark-green); font-family: var(--font-heading); font-size: clamp(32px, 4vw, 44px); font-weight: 500; letter-spacing: .02em; line-height: 1; margin: 0 0 12px; }
.ash-orders-page__subtitle { color: var(--ash-text-muted); font-size: 14px; line-height: 1.7; margin: 0; }
.ash-orders-table-wrap { background: var(--ash-bg-card); border: 1px solid var(--ash-border); overflow-x: auto; }
.ash-orders-table { border-collapse: collapse; min-width: 930px; width: 100%; }
.ash-orders-table th { background: var(--ash-dark-green); color: var(--ash-gold-light); font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: .13em; padding: 17px 18px; text-align: left; text-transform: uppercase; }
.ash-orders-table td { border-bottom: 1px solid var(--ash-border); color: var(--ash-text-dark); font-size: 13px; padding: 22px 18px; vertical-align: middle; }
.ash-orders-table tbody tr:last-child td { border-bottom: 0; }
.ash-orders-table__reference, .ash-order-card__reference { color: var(--ash-dark-green); font-size: 14px; font-weight: 600; letter-spacing: .03em; }
.ash-orders-table__total { color: var(--ash-dark-green); font-weight: 600; }
.ash-order-status { background: rgba(197, 160, 89, .16); border: 1px solid rgba(197, 160, 89, .42); border-radius: 999px; color: var(--ash-dark-green); display: inline-block; font-size: 11px; font-weight: 600; line-height: 1.2; padding: 7px 10px; }
.ash-orders-table__invoice, .ash-order-actions a { color: var(--ash-dark-green); font-size: 12px; font-weight: 600; text-decoration: none; }
.ash-orders-table__invoice { border-bottom: 1px solid var(--ash-gold); padding-bottom: 2px; }
.ash-orders-table__invoice:hover, .ash-orders-table__invoice:focus, .ash-order-actions a:hover, .ash-order-actions a:focus { color: var(--ash-gold); text-decoration: none; }
.ash-orders-table__empty { color: var(--ash-text-muted); }
.ash-order-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; }
.ash-order-actions__detail, .ash-order-actions__reorder { border: 1px solid var(--ash-dark-green); padding: 9px 11px; white-space: nowrap; }
.ash-order-actions__reorder { border-color: var(--ash-gold); color: var(--ash-gold) !important; }
.ash-order-actions__detail:hover, .ash-order-actions__detail:focus { background: var(--ash-dark-green); color: #fff !important; }
.ash-order-actions__reorder:hover, .ash-order-actions__reorder:focus { background: var(--ash-gold); color: var(--ash-dark-green) !important; }
.ash-orders-mobile { display: grid; gap: 14px; }
.ash-order-card, .ash-orders-empty { background: var(--ash-bg-card); border: 1px solid var(--ash-border); padding: 22px; }
.ash-order-card__topline { align-items: flex-start; border-bottom: 1px solid var(--ash-border); display: flex; gap: 12px; justify-content: space-between; padding-bottom: 16px; }
.ash-order-card__reference { margin: 3px 0 0; }
.ash-order-card__summary { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 18px 0; }
.ash-order-card__summary dt { color: var(--ash-text-muted); font-size: 10px; font-weight: 600; letter-spacing: .12em; margin-bottom: 5px; text-transform: uppercase; }
.ash-order-card__summary dd { color: var(--ash-dark-green); font-size: 13px; font-weight: 600; margin: 0; }
.ash-orders-empty { margin: 0 auto; max-width: 530px; padding: 46px 28px; text-align: center; }
.ash-orders-empty__mark { color: var(--ash-gold); display: block; font-size: 24px; margin-bottom: 14px; }
.ash-orders-empty h2 { color: var(--ash-dark-green); font-family: var(--font-heading); font-size: 28px; font-weight: 500; margin: 0 0 10px; }
.ash-orders-empty p { color: var(--ash-text-muted); font-size: 14px; margin: 0; }

/* Order detail page. */
.ash-order-detail { margin: 0 auto; max-width: 1120px; padding: 52px 24px 70px; }
.ash-order-detail__header { margin: 0 auto 32px; max-width: 650px; text-align: center; }
.ash-order-detail__eyebrow { color: var(--ash-gold); font-size: 10px; font-weight: 600; letter-spacing: .2em; margin: 0 0 10px; text-transform: uppercase; }
.ash-order-detail__header h1 { color: var(--ash-dark-green); font-family: var(--font-heading); font-size: clamp(32px, 4vw, 44px); font-weight: 500; letter-spacing: .02em; line-height: 1; margin: 0 0 12px; }
.ash-order-detail__header > p:last-child { color: var(--ash-text-muted); font-size: 14px; margin: 0; }
.ash-order-detail .box { background: var(--ash-bg-card); border: 1px solid var(--ash-border); box-shadow: none; margin-bottom: 18px; padding: 26px; }
.ash-order-detail__summary { background: var(--ash-dark-green) !important; border-color: var(--ash-dark-green) !important; color: #fff; }
.ash-order-detail__summary strong { color: var(--ash-gold-light); font-family: var(--font-heading); font-size: 20px; font-weight: 500; }
.ash-order-detail .button-primary { background: var(--ash-gold); border: 1px solid var(--ash-gold); border-radius: 0; color: var(--ash-dark-green); font-size: 11px; font-weight: 600; letter-spacing: .08em; padding: 10px 13px; text-transform: uppercase; }
.ash-order-detail .button-primary:hover, .ash-order-detail .button-primary:focus { background: transparent; color: var(--ash-gold-light); text-decoration: none; }
.ash-order-detail__info-card ul { display: grid; gap: 13px; list-style: none; margin: 0; padding: 0; }
.ash-order-detail__info-card li { border-bottom: 1px solid var(--ash-border); color: var(--ash-text-muted); font-size: 13px; padding-bottom: 13px; }
.ash-order-detail__info-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.ash-order-detail__info-card strong { color: var(--ash-dark-green); display: inline-block; margin-right: 6px; }
.ash-order-detail a { color: var(--ash-dark-green); text-decoration-color: var(--ash-gold); text-underline-offset: 3px; }
.ash-order-detail__history h3, .ash-order-detail .box h3, .ash-order-detail .box h4 { color: var(--ash-dark-green); font-family: var(--font-heading); font-size: 23px; font-weight: 500; margin: 0 0 18px; }
.ash-order-detail .table { margin: 0; }
.ash-order-detail .table th { background: var(--ash-dark-green); border: 0; color: var(--ash-gold-light); font-size: 10px; letter-spacing: .13em; padding: 14px; text-transform: uppercase; }
.ash-order-detail .table td { border-color: var(--ash-border); color: var(--ash-text-dark); font-size: 13px; padding: 16px 14px; vertical-align: middle; }
.ash-order-detail .table-striped tbody tr:nth-of-type(odd) { background: rgba(255, 255, 255, .3); }
.ash-order-detail .history-line { border-bottom: 1px solid var(--ash-border); display: flex; justify-content: space-between; padding: 14px 0; }
.ash-order-detail .history-line:last-child { border-bottom: 0; }
.ash-order-detail .history-line .date { color: var(--ash-text-muted); font-size: 12px; }
.ash-order-detail .addresses { display: flex; flex-wrap: wrap; margin: 0 -9px 18px; }
.ash-order-detail .addresses > div { padding: 0 9px; }
.ash-order-detail__address { height: calc(100% - 18px); }
.ash-order-detail__address address { color: var(--ash-text-muted); font-size: 13px; font-style: normal; line-height: 1.75; margin: 0; }
.ash-order-detail .order-items .order-item { border-bottom: 1px solid var(--ash-border); padding: 16px 0; }
.ash-order-detail .order-items .order-item:first-child { padding-top: 0; }
.ash-order-detail .order-items .name { color: var(--ash-dark-green); font-weight: 600; }
.ash-order-detail .order-totals .order-total { padding: 8px 0; }
.ash-order-detail .order-totals .order-total:last-child { border-top: 1px solid var(--ash-dark-green); color: var(--ash-dark-green); margin-top: 8px; padding-top: 14px; }
.ash-order-detail .form-control-submit { background: var(--ash-dark-green); border-color: var(--ash-dark-green); border-radius: 0; color: #fff; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 767px) {
  .ash-order-confirmation__hero {
    padding: 46px 20px;
  }

  .ash-order-confirmation {
    padding: 32px 16px 44px;
  }

  .ash-order-confirmation__items,
  .ash-order-confirmation__details {
    width: 100%;
  }

  .ash-order-confirmation__items {
    padding: 22px 18px;
  }

  .ash-order-confirmation__details {
    min-height: 0;
    padding: 26px 22px;
  }

  .ash-order-confirmation__items .image img {
    height: 88px;
  }

  .ash-order-confirmation__items .qty {
    margin-top: 16px;
  }

  .ash-orders-page { padding: 38px 16px 50px; }
  .ash-orders-page__header { margin-bottom: 26px; }
  .ash-order-detail { padding: 38px 16px 50px; }
  .ash-order-detail .box { padding: 21px 18px; }
  .ash-order-detail .addresses { display: block; margin: 0; }
  .ash-order-detail .addresses > div { padding: 0; }
}

@media (max-width: 767px) {
  .ash-whatsapp-support {
    bottom: calc(18px + env(safe-area-inset-bottom));
    height: 50px;
    justify-content: center;
    min-height: 50px;
    padding: 0;
    left: 16px;
    right: auto;
    width: 50px;
  }

  .ash-whatsapp-support__label {
    display: none;
  }
}

.ash-price-filter-panel__inputs .ash-price-clear {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ash-text-muted);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 1.05rem;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0 0 0 0.15rem;
}

.ash-price-filter-panel__inputs .ash-price-clear[hidden] {
  display: none;
}

.ash-price-filter-panel__inputs .ash-price-clear:hover,
.ash-price-filter-panel__inputs .ash-price-clear:focus-visible {
  color: var(--ash-gold);
}

.ash-category-filter-toolbar .ash-sidebar-filter-field > span,
.ash-category-filter-toolbar .ash-price-filter-panel__heading {
  color: var(--ash-text-dark);
  font-family: var(--font-body);
  font-weight: 500;
}

/* Desktop category layout: filters above products, collections in a scrollable rail. */
@media (min-width: 1024px) {
  .ash-category-layout {
    grid-template-rows: auto minmax(0, 1fr);
    row-gap: 24px;
  }

  .ash-category-layout > .ash-sidebar-filter {
    display: contents;
    position: static;
  }

  .ash-category-layout .ash-sidebar-product-filters {
    display: contents;
  }

  .ash-category-layout .ash-mobile-filter-drawer-header {
    display: none;
  }

  .ash-category-filter-toolbar {
    align-items: center;
    border-bottom: 1px solid var(--ash-border);
    border-top: 1px solid var(--ash-border);
    display: grid;
    gap: 24px;
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: minmax(145px, .75fr) minmax(260px, 1.5fr) minmax(190px, .9fr);
    margin: 0;
    padding: 16px 0;
  }

  .ash-category-filter-toolbar .ash-custom-stock-trigger,
  .ash-category-filter-toolbar .ash-custom-sort-trigger {
    min-width: 0;
    width: 100%;
  }

  .ash-category-filter-toolbar .ash-sidebar-filter-field,
  .ash-category-filter-toolbar .ash-sidebar-sort {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
  }

  .ash-category-filter-toolbar .ash-sidebar-filter-field > span,
  .ash-category-filter-toolbar .ash-sidebar-sort > span,
  .ash-category-filter-toolbar .ash-price-filter-panel__heading {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .ash-category-filter-toolbar .ash-price-filter-panel {
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
  }

  .ash-category-filter-toolbar .ash-price-filter-panel__heading + .ash-price-filter-panel__inputs {
    margin-top: 0;
  }

  .ash-category-layout .ash-sidebar-collections {
    align-self: start;
    border-top: 1px solid var(--ash-border);
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    max-height: calc(100dvh - 6.5rem);
    min-height: 0;
    overflow-y: auto;
    padding: 16px 10px 0 0;
    position: sticky;
    top: 5.5rem;
    scrollbar-color: var(--ash-gold) transparent;
    scrollbar-width: thin;
  }

  .ash-category-layout .ash-category-products-col {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .ash-category-layout {
    gap: 24px 30px;
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .ash-category-filter-toolbar {
    gap: 18px;
    grid-template-columns: minmax(130px, .75fr) minmax(230px, 1.4fr) minmax(175px, .9fr);
  }
}

@media (min-width: 1280px) {
  .ash-category-layout {
    grid-template-columns: 250px minmax(0, 1fr);
  }
}
