/* --- Cart, wishlist and reviews --------------------------------------------------------------
   The template's utility pages, in its own voice: the flat title band a page opens with, the
   cart drawn as the template's table (main-cart-items), the wishlist as the same product grid
   the shop lists with — plus the folder row Amazon-style lists need — and the review thread
   under a product. Its own layer for the same reason catalog.css is: these pages share the
   theme, not a screen, and should be replaceable without touching the listing.
   ------------------------------------------------------------------------------------------ */

/* ── The band a page opens with ─────────────────────────────────────────────────────────
   The listing's title band, reused: flat alternate ground, centred 42px heading. */
.theme-candan-saka .ng-page__title {
  width: 100%;
  padding: 69px var(--ng-container-pad) 65px;
  background: var(--ng-color-bg-alt);
  text-align: center;
}
.theme-candan-saka .ng-page__heading {
  margin: 0;
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
}
.theme-candan-saka .ng-page__sub {
  margin: 5px 0 0;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-page__body {
  width: 100%;
  max-width: var(--ng-container-width);
  margin-inline: auto;
  padding: 45px var(--ng-container-pad) 70px;
}

@media (max-width: 991px) {
  .theme-candan-saka .ng-page__title { padding-top: 52px; padding-bottom: 49px; }
  .theme-candan-saka .ng-page__heading { font-size: 28px; line-height: 34px; }
  .theme-candan-saka .ng-page__body { padding-top: 30px; padding-bottom: 50px; }
}

/* ── Shared small parts ─────────────────────────────────────────────────────────────────── */

/* The template's square tick, drawn with the accent colour when on. */
.theme-candan-saka .ng-check {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--ng-color-text);
  cursor: pointer;
}

/* A filled field, the template's form ground: grey, borderless, 46 tall. */
.theme-candan-saka .ng-input,
.theme-candan-saka .ng-textarea {
  width: 100%;
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-control);
  background: var(--ng-color-bg);
  padding: 0 16px;
  font: inherit;
  font-size: 14px;
  color: var(--ng-color-text);
}
.theme-candan-saka .ng-input { height: 46px; }
.theme-candan-saka .ng-textarea { min-height: 110px; padding: 12px 16px; resize: vertical; }
.theme-candan-saka .ng-input:focus,
.theme-candan-saka .ng-textarea:focus {
  outline: none;
  border-color: var(--ng-color-text);
}
.theme-candan-saka .ng-input::placeholder,
.theme-candan-saka .ng-textarea::placeholder { color: var(--ng-color-muted); }

/* A quiet inline text action: the template's underlined "Remove" link. */
.theme-candan-saka .ng-linkaction {
  border: 0;
  padding: 0;
  background: none;
  font-size: 14px;
  color: var(--ng-color-text-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.25s ease;
}
.theme-candan-saka .ng-linkaction:hover { color: var(--ng-color-primary); background: none; }

/* The soft notice band (a dropped line, a login hint). */
.theme-candan-saka .ng-notice {
  margin: 0 0 20px;
  padding: 12px 16px;
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-sm);
  background: var(--ng-color-bg-alt);
  font-size: 14px;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-notice a { color: var(--ng-color-text); text-decoration: underline; }

/* The centred empty state, template's "your cart is empty" shape. */
.theme-candan-saka .ng-empty {
  padding: 60px 20px;
  text-align: center;
}
.theme-candan-saka .ng-empty__text {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--ng-color-text-soft);
}

/* ── The cart table (.tf-table-page-cart) ───────────────────────────────────────────────── */

.theme-candan-saka .ng-cart__selectbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.theme-candan-saka .ng-cart__table {
  width: 100%;
  border-collapse: collapse;
}
.theme-candan-saka .ng-cart__table th {
  padding: 0 10px 18px 0;
  border-bottom: 1px solid var(--ng-color-line);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.theme-candan-saka .ng-cart__table th:last-child,
.theme-candan-saka .ng-cart__table td:last-child { text-align: right; padding-right: 0; }
.theme-candan-saka .ng-cart__table td {
  padding: 24px 10px 24px 0;
  border-bottom: 1px solid var(--ng-color-line);
  vertical-align: middle;
  font-size: 14px;
}

/* The product cell: tick, 80px picture, name and its quiet links underneath. */
.theme-candan-saka .ng-cart__product {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.theme-candan-saka .ng-cart__img {
  display: block;
  width: 80px;
  flex: 0 0 80px;
  aspect-ratio: 3 / 4;
  border-radius: var(--ng-radius-sm);
  overflow: hidden;
  background: var(--ng-color-bg-alt);
}
.theme-candan-saka .ng-cart__img img { width: 100%; height: 100%; object-fit: cover; }
.theme-candan-saka .ng-cart__meta { min-width: 0; }
.theme-candan-saka .ng-cart__name {
  display: block;
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ng-color-text);
  text-decoration: none;
  transition: color 0.25s ease;
}
.theme-candan-saka .ng-cart__name:hover { color: var(--ng-color-primary); }
.theme-candan-saka .ng-cart__rowlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

/* The listing's stepper, at table scale: 110x36 instead of the detail page's 127x46. */
.theme-candan-saka .ng-cart__qty .ng-product-qty { width: 110px; }
.theme-candan-saka .ng-cart__qty .ng-product-qty button { width: 32px; height: 36px; font-size: 18px; }
.theme-candan-saka .ng-cart__qty .ng-product-qty span { width: 46px; height: 36px; font-size: 14px; }

.theme-candan-saka .ng-cart__linetotal { font-weight: 600; white-space: nowrap; }

/* ── The cart footer (.tf-page-cart-footer): notes left, the totals box right. ──────────── */
.theme-candan-saka .ng-cart__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
  margin-top: 30px;
}
.theme-candan-saka .ng-cart__aside { display: grid; gap: 14px; justify-items: start; }

.theme-candan-saka .ng-cart__totals {
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-md);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.theme-candan-saka .ng-cart__totalrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.theme-candan-saka .ng-cart__totalrow strong { font-size: 20px; font-weight: 600; }

@media (max-width: 991px) {
  .theme-candan-saka .ng-cart__footer { grid-template-columns: 1fr; gap: 24px; }
}

/* Under 768 the table folds: headers go, each row reads as a small card. */
@media (max-width: 767px) {
  .theme-candan-saka .ng-cart__table thead { display: none; }
  .theme-candan-saka .ng-cart__table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 12px;
    padding: 18px 0;
    border-bottom: 1px solid var(--ng-color-line);
  }
  .theme-candan-saka .ng-cart__table td { display: block; padding: 0; border: 0; }
  .theme-candan-saka .ng-cart__table td:first-child { grid-column: 1 / -1; }
  .theme-candan-saka .ng-cart__table td:last-child { align-self: center; }
  .theme-candan-saka .ng-cart__price { display: none; }
}

/* ── The wishlist's folder row ──────────────────────────────────────────────────────────── */

.theme-candan-saka .ng-wishlist__lists {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}
.theme-candan-saka .ng-wishlist__list-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-pill);
  background: var(--ng-color-bg);
  font-size: 14px;
  color: var(--ng-color-text);
  cursor: pointer;
  transition: all 0.25s ease;
}
.theme-candan-saka .ng-wishlist__list-chip:hover { border-color: var(--ng-color-text); background: var(--ng-color-bg); }
.theme-candan-saka .ng-wishlist__list-chip.is-active {
  border-color: var(--ng-color-text);
  background: var(--ng-color-text);
  color: var(--ng-color-on-primary);
}
.theme-candan-saka .ng-wishlist__list-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--ng-radius-pill);
  background: var(--ng-color-bg-alt);
  font-size: 12px;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-wishlist__list-chip.is-active .ng-wishlist__list-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--ng-color-on-primary);
}

/* Naming a list, inline: a field and its two presses, no dialog. */
.theme-candan-saka .ng-wishlist__form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}
.theme-candan-saka .ng-wishlist__form .ng-input { width: 260px; height: 40px; }

/* The active list's own toolbar: its name's quiet actions. */
.theme-candan-saka .ng-wishlist__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  margin: 0 0 20px;
}

/* The same grid the shop lists with — four across, folding like the listing. */
.theme-candan-saka .ng-wishlist__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 15px;
}
@media (min-width: 768px) {
  .theme-candan-saka .ng-wishlist__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
}
@media (min-width: 1200px) {
  .theme-candan-saka .ng-wishlist__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* The template's wishlist card is the product card with a delete press over the picture. */
.theme-candan-saka .ng-wishlist-card { position: relative; }
.theme-candan-saka .ng-wishlist-card__remove {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: var(--ng-radius-control);
  background: var(--ng-color-bg);
  color: var(--ng-color-text);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
}
.theme-candan-saka .ng-wishlist-card__remove:hover {
  background: var(--ng-color-text);
  color: var(--ng-color-on-primary);
}
.theme-candan-saka .ng-wishlist-card__remove svg { width: 16px; height: 16px; }

/* Under the card: the cart press full width, the move pick beneath it. */
.theme-candan-saka .ng-wishlist-card__foot {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
/* The move picker is the shop's own drop-down (ng-select, base.css) in its compact size. */
.theme-candan-saka .ng-wishlist-card__move .ng-select__trigger { color: var(--ng-color-text-soft); }

/* ── Reviews ────────────────────────────────────────────────────────────────────────────── */

.theme-candan-saka .ng-reviews { display: grid; gap: 0; }
.theme-candan-saka .ng-reviews__heading {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 600;
}
.theme-candan-saka .ng-reviews__none { margin: 0 0 20px; font-size: 14px; color: var(--ng-color-text-soft); }

.theme-candan-saka .ng-review {
  padding: 20px 0;
  border-top: 1px solid var(--ng-color-line);
}
.theme-candan-saka .ng-review__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 8px;
}
.theme-candan-saka .ng-review__title { font-size: 14px; font-weight: 600; }
.theme-candan-saka .ng-review__body { margin: 0 0 8px; font-size: 14px; line-height: 22px; color: var(--ng-color-text-soft); }
.theme-candan-saka .ng-review__author { margin: 0; font-size: 12px; color: var(--ng-color-muted); }

/* The stars: grey until lit, the template's amber when they are. */
.theme-candan-saka .ng-stars { display: inline-flex; gap: 2px; }
.theme-candan-saka .ng-stars svg { width: 14px; height: 14px; color: var(--ng-color-line); }
.theme-candan-saka .ng-stars svg.is-on { color: #eca61c; fill: #eca61c; }
.theme-candan-saka .ng-stars--pick button {
  display: inline-flex;
  border: 0;
  padding: 2px;
  background: none;
  cursor: pointer;
}
.theme-candan-saka .ng-stars--pick svg { width: 20px; height: 20px; }

/* Writing one: the template's form ground, fields stacked, the press at the end. */
.theme-candan-saka .ng-review-form {
  margin-top: 10px;
  padding: 24px;
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-md);
  display: grid;
  gap: 14px;
  justify-items: start;
}
.theme-candan-saka .ng-review-form__title { margin: 0; font-size: 16px; font-weight: 600; }
.theme-candan-saka .ng-review-form .ng-input,
.theme-candan-saka .ng-review-form .ng-textarea { justify-self: stretch; }
.theme-candan-saka .ng-review-form__note { margin: 0; font-size: 14px; color: var(--ng-color-text-soft); }

/* ── The account area ───────────────────────────────────────────────────────────────────────
   One frame for "my account": the pages' own navigation on the left, the page on the right,
   folding to a chip row on narrow screens. */

.theme-candan-saka .ng-account {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}
.theme-candan-saka .ng-account__nav {
  display: grid;
  gap: 4px;
  position: sticky;
  top: 90px;
}
.theme-candan-saka .ng-account__nav-link {
  display: block;
  width: 100%;
  padding: 11px 16px;
  border: 0;
  border-radius: var(--ng-radius-sm);
  background: none;
  font-size: 14px;
  text-align: left;
  color: var(--ng-color-text-soft);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.theme-candan-saka .ng-account__nav-link:hover { background: var(--ng-color-bg-alt); color: var(--ng-color-text); }
.theme-candan-saka .ng-account__nav-link.is-active {
  background: var(--ng-color-text);
  color: var(--ng-color-on-primary);
}
.theme-candan-saka .ng-account__content { display: grid; gap: 30px; min-width: 0; }
.theme-candan-saka .ng-account__section {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: 24px;
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-md);
}
.theme-candan-saka .ng-account__section-title { margin: 0; font-size: 16px; font-weight: 600; }

@media (max-width: 991px) {
  .theme-candan-saka .ng-account { grid-template-columns: 1fr; gap: 24px; }
  .theme-candan-saka .ng-account__nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .theme-candan-saka .ng-account__nav-link { width: auto; }
}

/* The account's forms: two columns of labelled fields, folding to one. */
.theme-candan-saka .ng-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  justify-self: stretch;
}
.theme-candan-saka .ng-form__field { display: grid; gap: 6px; }
.theme-candan-saka .ng-form__field--full { grid-column: 1 / -1; }
.theme-candan-saka .ng-form__label { font-size: 13px; font-weight: 500; }
/* Which boxes must be filled and which may stay empty, said on the label: a red star for the
   first, a quiet "(optional)" for the second - the same two marks every form in the shop uses. */
.theme-candan-saka .ng-form__required { color: var(--ng-color-primary); }
.theme-candan-saka .ng-form__field[data-invalid] .ng-input,
.theme-candan-saka .ng-form__field[data-invalid] .ng-select__trigger { border-color: var(--ng-color-primary); }
.theme-candan-saka .ng-form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}
/* A row of radio choices inside a field - "person or company" on a billing address. */
.theme-candan-saka .ng-form__choices { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 2px; }
.theme-candan-saka .ng-form select.ng-input { padding-right: 12px; }
.theme-candan-saka .ng-input[readonly] { background: var(--ng-color-bg-alt); color: var(--ng-color-text-soft); }

@media (max-width: 640px) {
  .theme-candan-saka .ng-form { grid-template-columns: 1fr; }
}

/* ── Address cards ─────────────────────────────────────────────────────────────────────── */

.theme-candan-saka .ng-address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  justify-self: stretch;
}
.theme-candan-saka .ng-address-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-md);
}
.theme-candan-saka .ng-address-card__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.theme-candan-saka .ng-address-card__title { margin: 0; font-size: 14px; font-weight: 600; }
.theme-candan-saka .ng-address-card__text { margin: 0; font-size: 13px; line-height: 20px; color: var(--ng-color-text-soft); }
.theme-candan-saka .ng-address-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13px;
}
.theme-candan-saka .ng-address-card__actions .ng-linkaction { font-size: 13px; }

/* The quiet label: default-shipping, default-billing, an order's status. */
.theme-candan-saka .ng-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: var(--ng-radius-pill);
  background: var(--ng-color-bg-alt);
  font-size: 12px;
  color: var(--ng-color-text-soft);
  white-space: nowrap;
}
.theme-candan-saka .ng-badge--dark { background: var(--ng-color-text); color: var(--ng-color-on-primary); }

/* ── My orders ─────────────────────────────────────────────────────────────────────────── */

.theme-candan-saka .ng-order-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ng-color-line);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}
.theme-candan-saka .ng-order-row:hover .ng-order-row__num { color: var(--ng-color-primary); }
.theme-candan-saka .ng-order-row__num { font-size: 14px; font-weight: 600; transition: color 0.25s ease; }
.theme-candan-saka .ng-order-row__date { font-size: 13px; color: var(--ng-color-muted); }
.theme-candan-saka .ng-order-row__total { margin-left: auto; font-size: 14px; font-weight: 600; }

/* Where an order stands, tinted but inside the theme's palette. */
.theme-candan-saka .ng-status[data-status="0"] { background: var(--ng-color-bg-alt); color: var(--ng-color-text-soft); }
.theme-candan-saka .ng-status[data-status="1"] { background: var(--ng-color-text); color: var(--ng-color-on-primary); }
.theme-candan-saka .ng-status[data-status="2"] { background: rgba(236, 166, 28, 0.15); color: #a06f00; }
.theme-candan-saka .ng-status[data-status="3"] { background: rgba(31, 170, 82, 0.15); color: #157a3b; }
.theme-candan-saka .ng-status[data-status="4"] { background: rgba(219, 18, 21, 0.1); color: var(--ng-color-primary); }

.theme-candan-saka .ng-pager {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  font-size: 14px;
}

/* The order's own page: lines, addresses side by side, the journey's dates. */
.theme-candan-saka .ng-order-detail { display: grid; gap: 24px; }
.theme-candan-saka .ng-order-detail__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.theme-candan-saka .ng-order-detail__num { margin: 0; font-size: 20px; font-weight: 600; }
.theme-candan-saka .ng-order-detail__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.theme-candan-saka .ng-order-detail__box {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-md);
  font-size: 13px;
  line-height: 20px;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-order-detail__box-title { margin: 0 0 4px; font-size: 14px; font-weight: 600; color: var(--ng-color-text); }

.theme-candan-saka .ng-order-items { width: 100%; border-collapse: collapse; }
.theme-candan-saka .ng-order-items th {
  padding: 0 10px 12px 0;
  border-bottom: 1px solid var(--ng-color-line);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.theme-candan-saka .ng-order-items td {
  padding: 12px 10px 12px 0;
  border-bottom: 1px solid var(--ng-color-line);
  font-size: 13px;
  vertical-align: middle;
}
.theme-candan-saka .ng-order-items th:last-child,
.theme-candan-saka .ng-order-items td:last-child { text-align: right; padding-right: 0; }

.theme-candan-saka .ng-order-detail__totals {
  display: grid;
  gap: 8px;
  justify-self: end;
  min-width: 260px;
  font-size: 14px;
}
.theme-candan-saka .ng-order-detail__totalrow { display: flex; justify-content: space-between; gap: 20px; }
.theme-candan-saka .ng-order-detail__totalrow strong { font-size: 16px; }

.theme-candan-saka .ng-order-detail__timeline { display: grid; gap: 6px; font-size: 13px; color: var(--ng-color-text-soft); }

/* ── Checkout ───────────────────────────────────────────────────────────────────────────── */

.theme-candan-saka .ng-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
}
.theme-candan-saka .ng-checkout__main { display: grid; gap: 30px; min-width: 0; }
.theme-candan-saka .ng-checkout__section { display: grid; gap: 14px; justify-items: start; }
.theme-candan-saka .ng-checkout__heading { margin: 0; font-size: 16px; font-weight: 600; }
.theme-candan-saka .ng-checkout__section .ng-form,
.theme-candan-saka .ng-checkout__section .ng-textarea { justify-self: stretch; }
.theme-candan-saka .ng-checkout__lines { display: grid; gap: 6px; }
.theme-candan-saka .ng-checkout__line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  font-size: 13px;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-checkout__error { margin: 0; font-size: 14px; color: var(--ng-color-primary); }
/* What still has to be chosen before the order can go, listed above the press. */
.theme-candan-saka .ng-checkout__missing {
  margin: 0;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ng-color-text-soft);
  list-style: none;
  background: var(--ng-color-bg-alt);
  border-radius: var(--ng-radius-sm);
}
.theme-candan-saka .ng-checkout__missing li::before { content: "\2022"; margin-right: 8px; color: var(--ng-color-primary); }
/* The WhatsApp press on the confirmation, centred with the rest of it. */
.theme-candan-saka .ng-empty .ng-cart__whatsapp { margin: 16px auto 0; }

/* A guest at the checkout: the ways to order that need no account, under the sign-in
   notice. Empty when the shop installs none, and then this box never renders at all. */
.theme-candan-saka .ng-checkout__guest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  /* Capped, because a button in this slot sets its own width to 100% for the cart's narrow
     totals column - unbounded here it spans the page and reads as a banner, not a button. */
  max-width: 320px;
  margin-top: 16px;
}

@media (max-width: 991px) {
  .theme-candan-saka .ng-checkout { grid-template-columns: 1fr; gap: 24px; }
}

/* One pickable card — an address, a carrier. The active one wears the text-dark border. */
.theme-candan-saka .ng-option-list { display: grid; gap: 10px; justify-self: stretch; }
.theme-candan-saka .ng-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-md);
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.theme-candan-saka .ng-option:hover { border-color: var(--ng-color-muted); }
.theme-candan-saka .ng-option.is-active { border-color: var(--ng-color-text); }
.theme-candan-saka .ng-option .ng-check { margin-top: 2px; }
.theme-candan-saka .ng-option__body { display: grid; gap: 2px; min-width: 0; }
.theme-candan-saka .ng-option__title { font-size: 14px; font-weight: 500; }
.theme-candan-saka .ng-option__text { font-size: 13px; color: var(--ng-color-text-soft); }

/* ── The shelf's word on the product page ───────────────────────────────────────────────── */

.theme-candan-saka .ng-stock { margin: 0; font-size: 14px; font-weight: 500; }
.theme-candan-saka .ng-stock--out { color: var(--ng-color-primary); }
.theme-candan-saka .ng-stock--low { color: #a06f00; }

/* A size that cannot be had: struck through, still pressable to read its name. */
.theme-candan-saka .ng-product-picker__option.is-soldout {
  color: var(--ng-color-muted);
  text-decoration: line-through;
}

/* ── The narrow auth card (forgot / reset) ──────────────────────────────────────────────── */

.theme-candan-saka .ng-authbox {
  max-width: 380px;
  margin-inline: auto;
  display: grid;
  gap: 16px;
}
.theme-candan-saka .ng-authbox__form { display: grid; gap: 12px; }
.theme-candan-saka .ng-authbox__links { margin: 0; text-align: center; }

/* ── The cookie band ────────────────────────────────────────────────────────────────────── */

.theme-candan-saka .ng-cookie {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 14px var(--ng-container-pad);
  background: var(--ng-color-text);
  color: var(--ng-color-on-primary);
}
.theme-candan-saka .ng-cookie__text { margin: 0; font-size: 13px; }
.theme-candan-saka .ng-cookie__text a { color: inherit; text-decoration: underline; }
.theme-candan-saka .ng-cookie__actions { display: flex; gap: 8px; }
.theme-candan-saka .ng-cookie__actions .ng-btn { padding-block: 8px; }
.theme-candan-saka .ng-cookie__actions .ng-btn--ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }

/* ── Written pages (.ng-prose): the admin's HTML, read comfortably ──────────────────────── */

.theme-candan-saka .ng-prose {
  max-width: 820px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 26px;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-prose h1,
.theme-candan-saka .ng-prose h2,
.theme-candan-saka .ng-prose h3 { margin: 28px 0 10px; color: var(--ng-color-text); font-weight: 600; line-height: 1.3; }
.theme-candan-saka .ng-prose h1 { font-size: 26px; }
.theme-candan-saka .ng-prose h2 { font-size: 21px; }
.theme-candan-saka .ng-prose h3 { font-size: 17px; }
.theme-candan-saka .ng-prose p { margin: 0 0 14px; }
.theme-candan-saka .ng-prose ul,
.theme-candan-saka .ng-prose ol { margin: 0 0 14px; padding-inline-start: 22px; }
.theme-candan-saka .ng-prose li { margin-bottom: 6px; }
.theme-candan-saka .ng-prose a { color: var(--ng-color-text); text-decoration: underline; }
.theme-candan-saka .ng-prose table { width: 100%; border-collapse: collapse; margin: 0 0 14px; }
.theme-candan-saka .ng-prose th,
.theme-candan-saka .ng-prose td { border: 1px solid var(--ng-color-line); padding: 8px 12px; font-size: 14px; text-align: left; }
.theme-candan-saka .ng-prose blockquote {
  margin: 0 0 14px;
  padding: 10px 18px;
  border-inline-start: 3px solid var(--ng-color-line);
  color: var(--ng-color-muted);
}

/* Where a review's moderation stands: pending grey, published green, refused red. */
.theme-candan-saka .ng-rstatus[data-status="0"] { background: var(--ng-color-bg-alt); color: var(--ng-color-text-soft); }
.theme-candan-saka .ng-rstatus[data-status="1"] { background: rgba(31, 170, 82, 0.15); color: #157a3b; }
.theme-candan-saka .ng-rstatus[data-status="2"] { background: rgba(219, 18, 21, 0.1); color: var(--ng-color-primary); }

/* Where a return stands: requested grey, approved dark, received amber, refunded green, refused red. */
.theme-candan-saka .ng-retstatus[data-status="0"] { background: var(--ng-color-bg-alt); color: var(--ng-color-text-soft); }
.theme-candan-saka .ng-retstatus[data-status="1"] { background: var(--ng-color-text); color: var(--ng-color-on-primary); }
.theme-candan-saka .ng-retstatus[data-status="2"] { background: rgba(219, 18, 21, 0.1); color: var(--ng-color-primary); }
.theme-candan-saka .ng-retstatus[data-status="3"] { background: rgba(236, 166, 28, 0.15); color: #a06f00; }
.theme-candan-saka .ng-retstatus[data-status="4"] { background: rgba(31, 170, 82, 0.15); color: #157a3b; }

/* Where a support ticket stands: open amber, answered green, closed grey. */
.theme-candan-saka .ng-supstatus[data-status="1"] { background: rgba(236, 166, 28, 0.15); color: #a06f00; }
.theme-candan-saka .ng-supstatus[data-status="2"] { background: rgba(31, 170, 82, 0.15); color: #157a3b; }
.theme-candan-saka .ng-supstatus[data-status="3"] { background: var(--ng-color-bg-alt); color: var(--ng-color-text-soft); }

/* The support thread: the customer's words on the plain ground, staff's on the alternate. */
.theme-candan-saka .ng-support-thread { display: grid; gap: 10px; }
.theme-candan-saka .ng-support-msg {
  max-width: 640px;
  padding: 12px 16px;
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-md);
}
.theme-candan-saka .ng-support-msg--staff {
  background: var(--ng-color-bg-alt);
  justify-self: end;
}
.theme-candan-saka .ng-support-msg__meta { margin: 0 0 4px; font-size: 12px; color: var(--ng-color-muted); }
.theme-candan-saka .ng-support-msg__body { margin: 0; font-size: 14px; line-height: 22px; white-space: pre-wrap; }

/* The coupon field on checkout: the code and its press, side by side. */
.theme-candan-saka .ng-coupon-row { display: flex; gap: 8px; }
.theme-candan-saka .ng-coupon-row .ng-input { height: 40px; }
.theme-candan-saka .ng-coupon-row .ng-btn { padding-block: 9px; }

/* ── Blog ─────────────────────────────────────────────────────────────────────────────────
   blog-grid and blog-detail: the page band above, three cards across, and a reading column
   for the post. The cards' picture, title and summary are the home shelf's (base.css); what
   is here is the page-only furniture - crumbs, meta lines, the reading column, comments. */

.theme-candan-saka .ng-blog__crumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 5px;
  font-size: 14px;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-blog__crumbs a { color: inherit; text-decoration: none; }
.theme-candan-saka .ng-blog__crumbs a:hover { color: var(--ng-color-primary); }
.theme-candan-saka .ng-blog__crumbs-sep { display: inline-flex; }
.theme-candan-saka .ng-blog__crumbs-sep svg { width: 10px; height: 10px; stroke-width: 3; }
.theme-candan-saka .ng-blog-post .ng-blog__crumbs { margin: 0 0 14px; }

/* The listing's grid: the template's 30px gutters and 40px rows. */
.theme-candan-saka .ng-blog-grid--page { gap: 40px 30px; }
.theme-candan-saka .ng-blog-card { display: block; color: inherit; text-decoration: none; }
.theme-candan-saka .ng-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-blog-card__meta span + span::before { content: "\2022"; margin: 0 8px; color: var(--ng-color-muted); }
.theme-candan-saka .ng-blog-grid--page .ng-blog-card__title { font-size: 20px; font-weight: 500; line-height: 1.35; }
.theme-candan-saka .ng-blog-card:hover .ng-blog-card__title { color: var(--ng-color-primary); }
.theme-candan-saka .ng-blog-grid--page .ng-blog-card__summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 10px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-blog-card__more {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.theme-candan-saka .ng-pagination__gap { color: var(--ng-color-muted); }

/* The post: heading in the band with its meta beneath, then a reading column. */
.theme-candan-saka .ng-blog-post__heading { max-width: 900px; margin-inline: auto; }
.theme-candan-saka .ng-blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-blog-post__meta span + span::before { content: "\2022"; margin: 0 10px; color: var(--ng-color-muted); }
.theme-candan-saka .ng-blog-post__body { max-width: 900px; }
.theme-candan-saka .ng-blog-post__cover {
  overflow: hidden;
  margin: 0 0 30px;
  border-radius: 10px;
  background: var(--ng-color-bg-alt);
}
.theme-candan-saka .ng-blog-post__image { display: block; width: 100%; height: auto; }
.theme-candan-saka .ng-blog-post__summary {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-blog-post__back {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ng-color-text);
  text-decoration: none;
}
.theme-candan-saka .ng-blog-post__back:hover { color: var(--ng-color-primary); }
.theme-candan-saka .ng-blog-post__back svg { width: 14px; height: 14px; }

/* Comments: a list of quiet cards and the form beneath, in the review form's clothes. */
.theme-candan-saka .ng-blog-comments {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--ng-color-line);
}
.theme-candan-saka .ng-blog-comments__title { margin: 0 0 20px; font-size: 24px; font-weight: 500; }
.theme-candan-saka .ng-blog-comments__empty { margin: 0 0 20px; font-size: 14px; color: var(--ng-color-text-soft); }
.theme-candan-saka .ng-blog-comment {
  padding: 18px 20px;
  margin-bottom: 12px;
  border: 1px solid var(--ng-color-line);
  border-radius: var(--ng-radius-md);
}
.theme-candan-saka .ng-blog-comment__head { display: flex; gap: 12px; align-items: baseline; justify-content: space-between; }
.theme-candan-saka .ng-blog-comment__author { font-size: 14px; font-weight: 600; }
.theme-candan-saka .ng-blog-comment__date { font-size: 12px; color: var(--ng-color-muted); }
.theme-candan-saka .ng-blog-comment__body { margin: 8px 0 0; font-size: 14px; line-height: 1.6; color: var(--ng-color-text-soft); }
.theme-candan-saka .ng-blog-comment-form { display: grid; gap: 14px; margin-top: 24px; }
.theme-candan-saka .ng-blog-comment-form__title { margin: 0; font-size: 18px; font-weight: 500; }
.theme-candan-saka .ng-blog-comment-form__foot { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.theme-candan-saka .ng-blog-comment-form__note { font-size: 14px; color: var(--ng-color-text-soft); }

@media (max-width: 767px) {
  .theme-candan-saka .ng-blog-grid--page { gap: 28px 20px; }
  .theme-candan-saka .ng-blog-comments { margin-top: 36px; padding-top: 28px; }
}

/* A document the checkout must SHOW, not link to: its own box, its own scroll, so three long
   contracts do not turn the page into a scroll of legal text. */
.theme-candan-saka .ng-doc { margin-top: 14px; }
.theme-candan-saka .ng-doc__title { margin: 0 0 6px; font-size: 13px; font-weight: 600; }
.theme-candan-saka .ng-doc__body {
  max-height: 220px;
  overflow-y: auto;
  padding: 12px 14px;
  border: 1px solid var(--ng-color-border);
  border-radius: var(--ng-radius-sm, 6px);
  background: var(--ng-color-bg-alt);
  font-size: 12px;
  line-height: 1.7;
  color: var(--ng-color-text-soft);
}
.theme-candan-saka .ng-doc__body > :first-child { margin-top: 0; }
.theme-candan-saka .ng-doc__body > :last-child { margin-bottom: 0; }
.theme-candan-saka .ng-doc__body table { width: 100%; border-collapse: collapse; margin: 8px 0; }
.theme-candan-saka .ng-doc__body th,
.theme-candan-saka .ng-doc__body td {
  padding: 5px 8px;
  border: 1px solid var(--ng-color-border);
  text-align: start;
}

/* The one tick, beside the button it releases. */
.theme-candan-saka .ng-checkout__consent { align-items: flex-start; margin: 14px 0 10px; font-size: 13px; }
.theme-candan-saka .ng-checkout__consent .ng-check { margin-top: 2px; }
.theme-candan-saka .ng-checkout__obligation {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--ng-color-text-soft);
  text-align: center;
}

/* The shop's own words on a not-found page, when it has written them. */
.theme-candan-saka .ng-notfound__body {
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ng-color-text-soft);
}

/* ------------------------------------------------------------------------------------------
 * The cart drawer - the template's modal-shopping-cart, the basket that slides in from the
 * right when something is added.
 *
 * It sits in this file rather than with the catalogue because it IS the cart, drawn in a
 * different shape: the same lines, the same subtotal, and a way through to the page below it.
 * The page is never replaced by it - the cart.viewCart button is the first of the two at the
 * bottom, because a shopper checking totals or a coupon needs the full table.
 * ------------------------------------------------------------------------------------------ */

.theme-candan-saka .ng-cartdrawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  justify-content: flex-end;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(2px);
  animation: ng-cartdrawer-fade 0.2s ease;
}

.theme-candan-saka .ng-cartdrawer {
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100%;
  background: var(--ng-color-bg);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.14);
  animation: ng-cartdrawer-slide 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes ng-cartdrawer-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ng-cartdrawer-slide { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* A shopper who asked for no motion gets the drawer, just not the travel. */
@media (prefers-reduced-motion: reduce) {
  .theme-candan-saka .ng-cartdrawer-backdrop,
  .theme-candan-saka .ng-cartdrawer { animation: none; }
}

.theme-candan-saka .ng-cartdrawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--ng-color-line);
}
.theme-candan-saka .ng-cartdrawer__title {
  margin: 0;
  font-family: var(--ng-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--ng-color-text);
}
.theme-candan-saka .ng-cartdrawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: var(--ng-radius-pill);
  background: none;
  color: var(--ng-color-text);
  cursor: pointer;
  transition: background 0.15s ease;
}
.theme-candan-saka .ng-cartdrawer__close:hover { background: var(--ng-color-bg-alt); }
.theme-candan-saka .ng-cartdrawer__close svg { width: 18px; height: 18px; }

/* The list takes whatever height is left, and scrolls on its own so the footer's two buttons
   never leave the screen - the one thing a basket must always keep reachable. */
.theme-candan-saka .ng-cartdrawer__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 8px 24px;
}
.theme-candan-saka .ng-cartdrawer__note {
  padding: 24px 0;
  font-size: 14px;
  color: var(--ng-color-text-soft);
  text-align: center;
}

.theme-candan-saka .ng-cartdrawer__items { margin: 0; padding: 0; list-style: none; }
.theme-candan-saka .ng-cartdrawer__item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ng-color-line);
}
.theme-candan-saka .ng-cartdrawer__item:last-child { border-bottom: 0; }

.theme-candan-saka .ng-cartdrawer__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--ng-radius-sm);
  background: var(--ng-color-bg-alt);
}
.theme-candan-saka .ng-cartdrawer__thumb img { width: 100%; height: 100%; object-fit: cover; }

.theme-candan-saka .ng-cartdrawer__info { display: grid; gap: 6px; align-content: start; min-width: 0; }
.theme-candan-saka .ng-cartdrawer__name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ng-color-text);
  text-decoration: none;
}
.theme-candan-saka .ng-cartdrawer__name:hover { color: var(--ng-color-primary); }
.theme-candan-saka .ng-cartdrawer__price {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ng-color-text);
}

.theme-candan-saka .ng-cartdrawer__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
/* The stepper is the template's, one size down - a drawer column is narrower than a table cell. */
.theme-candan-saka .ng-cartdrawer__controls .ng-product-qty { width: 104px; }
.theme-candan-saka .ng-cartdrawer__controls .ng-product-qty button { width: 30px; height: 34px; }
.theme-candan-saka .ng-cartdrawer__controls .ng-product-qty button svg { width: 14px; height: 14px; }
.theme-candan-saka .ng-cartdrawer__controls .ng-product-qty span { height: 34px; font-size: 13px; }

.theme-candan-saka .ng-cartdrawer__remove {
  padding: 0;
  border: 0;
  background: none;
  font-size: 13px;
  color: var(--ng-color-text-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.theme-candan-saka .ng-cartdrawer__remove:hover { color: var(--ng-color-primary); }

.theme-candan-saka .ng-cartdrawer__foot {
  flex: 0 0 auto;
  display: grid;
  gap: 12px;
  padding: 20px 24px calc(20px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--ng-color-line);
  background: var(--ng-color-bg);
}
.theme-candan-saka .ng-cartdrawer__subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  color: var(--ng-color-text);
}
.theme-candan-saka .ng-cartdrawer__subtotal b { font-size: 17px; font-weight: 600; }
.theme-candan-saka .ng-cartdrawer__tax {
  margin: 0;
  font-size: 12px;
  color: var(--ng-color-muted);
}
.theme-candan-saka .ng-cartdrawer__actions { display: grid; gap: 10px; }
.theme-candan-saka .ng-cartdrawer__actions .ng-btn { width: 100%; justify-content: center; }

.theme-candan-saka .ng-cartdrawer__empty {
  flex: 1 1 auto;
  display: grid;
  gap: 14px;
  align-content: center;
  justify-items: center;
  padding: 40px 24px;
  text-align: center;
}
.theme-candan-saka .ng-cartdrawer__empty p { margin: 0; font-size: 14px; color: var(--ng-color-text-soft); }
.theme-candan-saka .ng-cartdrawer__empty-icon { width: 40px; height: 40px; color: var(--ng-color-muted); }

/* On a phone the drawer is the screen, minus a thumb's width of the page behind it. */
@media (max-width: 575px) {
  .theme-candan-saka .ng-cartdrawer { width: min(100%, calc(100vw - 32px)); }
  .theme-candan-saka .ng-cartdrawer__head,
  .theme-candan-saka .ng-cartdrawer__foot { padding-inline: 16px; }
  .theme-candan-saka .ng-cartdrawer__scroll { padding-inline: 16px; }
}
