/* ChillLeaf My Account Orders v1.0.0 */
.clmo,
.clmo * {
  box-sizing: border-box;
}

.clmo {
  --clmo-bg: #050604;
  --clmo-card: rgba(8, 10, 6, .92);
  --clmo-card2: rgba(12, 15, 9, .94);
  --clmo-line: rgba(167, 255, 22, .22);
  --clmo-line2: rgba(247, 247, 239, .08);
  --clmo-green: #a7ff16;
  --clmo-green2: #74d915;
  --clmo-yellow: #f2c431;
  --clmo-red: #ff435d;
  --clmo-text: #f7f7ef;
  --clmo-muted: rgba(247,247,239,.64);

  width: min(100%, 1120px);
  margin: 0 auto 42px;
  padding: 0 0 34px;
  color: var(--clmo-text);
  font-family: inherit;
}

.clmo a {
  color: inherit;
  text-decoration: none !important;
}

.clmo-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 20px;
  align-items: center;
  min-height: 250px;
  overflow: hidden;
  margin-bottom: 18px;
  padding: 30px 36px;
  border: 1px solid var(--clmo-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 77% 40%, rgba(167,255,22,.18), transparent 26%),
    linear-gradient(120deg, rgba(167,255,22,.08), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 40px),
    linear-gradient(180deg, #10130c 0%, #050604 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,.36), inset 0 0 0 1px rgba(255,255,255,.03);
}

.clmo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(124deg, transparent 0 58%, rgba(167,255,22,.24) 59%, transparent 61%),
    linear-gradient(100deg, transparent 0 73%, rgba(167,255,22,.18) 74%, transparent 76%),
    radial-gradient(circle at 84% 26%, rgba(167,255,22,.28), transparent 9%);
  opacity: .78;
  pointer-events: none;
}

.clmo-hero__body,
.clmo-hero__art {
  position: relative;
  z-index: 2;
}

.clmo-crumb {
  margin: 0 0 15px !important;
  color: rgba(247,247,239,.68);
  font-size: 12px;
  font-weight: 850;
}

.clmo-crumb span {
  padding: 0 7px;
  color: var(--clmo-green);
}

.clmo h1 {
  margin: 0 0 16px !important;
  color: var(--clmo-text) !important;
  font-size: clamp(54px, 7vw, 88px) !important;
  line-height: .9 !important;
  font-weight: 950 !important;
  letter-spacing: -.065em !important;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(0,0,0,.34), 0 0 28px rgba(167,255,22,.22);
}

.clmo h1::first-letter {
  color: var(--clmo-green);
}

.clmo-hero__body > p:last-child {
  margin: 0 !important;
  color: var(--clmo-text);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 950;
  letter-spacing: .02em;
}

.clmo-hero__art {
  display: grid;
  justify-items: center;
  align-items: end;
}

.clmo-hero__art img {
  display: block;
  width: min(100%, 230px);
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.58));
}

.clmo-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.clmo-stat {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 100px;
  padding: 18px;
  border: 1px solid var(--clmo-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(167,255,22,.08), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--clmo-card);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.clmo-stat > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(167,255,22,.26);
  border-radius: 999px;
  color: var(--clmo-green);
  background: rgba(167,255,22,.055);
}

.clmo-stat svg,
.clmo-icon svg,
.clmo-contact svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clmo-stat > span svg {
  width: 27px;
  height: 27px;
}

.clmo-stat em {
  display: block;
  margin: 0 0 4px;
  color: var(--clmo-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.clmo-stat strong {
  display: block;
  color: var(--clmo-green);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.clmo-stat.is-money strong {
  font-size: clamp(20px, 1.9vw, 28px);
  letter-spacing: -.02em;
}

.clmo-stat strong .amount,
.clmo-stat strong bdi {
  color: inherit !important;
}

.clmo-total-band {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  min-height: 86px;
  padding: 20px 24px;
  border: 1px solid var(--clmo-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(167,255,22,.10), transparent 42%),
    linear-gradient(90deg, rgba(167,255,22,.075), rgba(255,255,255,.018)),
    var(--clmo-card);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.clmo-total-band > div {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.clmo-total-band span {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(167,255,22,.28);
  border-radius: 999px;
  color: var(--clmo-green);
  background: rgba(167,255,22,.055);
}

.clmo-total-band span svg {
  display: block;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clmo-total-band em {
  display: block;
  color: var(--clmo-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.clmo-total-band strong {
  display: block;
  min-width: 0;
  color: var(--clmo-green);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.04em;
  text-align: right;
  white-space: nowrap;
}

.clmo-total-band strong .amount,
.clmo-total-band strong bdi {
  color: inherit !important;
}

.clmo-stat.is-warn > span,
.clmo-stat.is-warn strong {
  color: var(--clmo-yellow);
}

.clmo-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.clmo-filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(167,255,22,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.30);
  color: rgba(247,247,239,.82) !important;
  font-size: 13px;
  font-weight: 950;
}

.clmo-filters a.is-active {
  border-color: transparent;
  background: linear-gradient(180deg, #d7ff25, #96e200);
  color: #071006 !important;
  box-shadow: 0 15px 28px rgba(116,217,21,.20);
}

.clmo-card {
  overflow: hidden;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--clmo-line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 14% 0%, rgba(167,255,22,.055), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--clmo-card);
  box-shadow: 0 24px 54px rgba(0,0,0,.30);
}

.clmo-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
}

.clmo-card__head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clmo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffe8a7;
  font-size: 25px;
}

.clmo-card__head strong {
  color: #fff7dc;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
}

.clmo-order-list {
  display: grid;
  gap: 8px;
}

.clmo-order-row {
  display: grid;
  grid-template-columns: 94px 134px 130px 138px minmax(110px, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid rgba(167,255,22,.12);
  border-radius: 12px;
  background: rgba(0,0,0,.25);
}

.clmo-order-row__number,
.clmo-order-row__date,
.clmo-order-row__total,
.clmo-order-row__items {
  min-width: 0;
  color: var(--clmo-text);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 950;
  white-space: nowrap;
}

.clmo-order-row__number {
  font-size: 18px;
}

.clmo-order-row__items,
.clmo-order-row__date {
  color: rgba(247,247,239,.78);
  font-size: 13px;
}

.clmo-order-row__items {
  white-space: normal;
  line-height: 1.25;
}

.clmo-order-row__total .amount,
.clmo-order-row__total bdi {
  color: inherit !important;
}

.clmo-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(167,255,22,.32);
  border-radius: 8px;
  color: var(--clmo-green);
  background: rgba(167,255,22,.08);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.clmo-status--processing,
.clmo-status--on-hold,
.clmo-status--pending,
.clmo-status--draft {
  border-color: rgba(242,196,49,.44);
  color: var(--clmo-yellow);
  background: rgba(242,196,49,.08);
}

.clmo-status--cancelled,
.clmo-status--failed,
.clmo-status--refunded {
  border-color: rgba(255,67,93,.42);
  color: #ff7084;
  background: rgba(255,67,93,.08);
}

.clmo-order-row__action {
  justify-self: end;
  min-width: 0;
}

.clmo-order-row__action a,
.clmo-btn,
.clmo-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid rgba(167,255,22,.42);
  border-radius: 9px;
  background: rgba(167,255,22,.04);
  color: var(--clmo-green) !important;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.clmo-order-row__action a::after,
.clmo-contact a::after,
.clmo-btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.clmo-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--clmo-line2);
}

.clmo-pagination a,
.clmo-pagination span {
  color: rgba(247,247,239,.76);
  font-size: 13px;
  font-weight: 950;
}

.clmo-pagination a {
  color: var(--clmo-green) !important;
}

.clmo-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 44px 18px;
  text-align: center;
}

.clmo-empty strong {
  color: var(--clmo-text);
  font-size: 20px;
  font-weight: 950;
}

.clmo-empty p {
  margin: 0 !important;
  color: var(--clmo-muted);
  font-size: 14px;
  font-weight: 850;
}

.clmo-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--clmo-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 100%, rgba(167,255,22,.08), transparent 28%),
    rgba(8,10,6,.92);
}

.clmo-contact > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.clmo-contact span {
  color: var(--clmo-green);
  font-size: 28px;
  line-height: 1;
}

.clmo-contact p {
  margin: 0 !important;
  color: rgba(247,247,239,.72);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

/* WooCommerce My Account shell support */
.woocommerce-account .woocommerce-MyAccount-content .clmo {
  max-width: 1120px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--downloads {
  display: none;
}

body:not(.clmo-hide-downloads) .woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--downloads {
  display: list-item;
}

@media (max-width: 1320px) {
  .clmo-order-row {
    grid-template-columns: 90px 120px 120px 120px minmax(120px, 1fr);
  }

  .clmo-order-row__action {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .clmo-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px 22px;
  }

  .clmo-hero__art {
    display: none;
  }

  .clmo-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clmo-order-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .clmo-order-row__action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .clmo {
    padding-bottom: 26px;
  }

  .clmo h1 {
    font-size: clamp(44px, 15vw, 62px) !important;
  }

  .clmo-hero {
    border-radius: 15px;
    margin-bottom: 14px;
  }

  .clmo-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .clmo-stat {
    min-height: 78px;
    padding: 14px;
    grid-template-columns: 44px 1fr;
  }

  .clmo-stat > span {
    width: 44px;
    height: 44px;
  }

  .clmo-filters {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
    scrollbar-width: auto;
  }

  .clmo-filters a {
    grid-column: span 2;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .clmo-filters a:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .clmo-filters a:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .clmo-card {
    padding: 16px 12px;
    border-radius: 15px;
  }

  .clmo-card__head strong {
    font-size: 19px;
  }

  .clmo-order-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px;
  }

  .clmo-order-row__number {
    font-size: 18px;
  }

  .clmo-order-row__status {
    justify-self: end;
  }

  .clmo-order-row__date,
  .clmo-order-row__total,
  .clmo-order-row__items {
    grid-column: 1 / -1;
  }

  .clmo-order-row__date::before {
    content: "注文日：";
    color: var(--clmo-muted);
    font-size: 11px;
    margin-right: 8px;
  }

  .clmo-order-row__total::before {
    content: "合計：";
    color: var(--clmo-muted);
    font-size: 11px;
    margin-right: 8px;
  }

  .clmo-order-row__action {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .clmo-order-row__action a {
    width: 100%;
  }

  .clmo-contact {
    display: grid;
    padding: 16px 14px;
  }

  .clmo-contact a {
    width: 100%;
  }
}


@media (max-width: 760px) {
  .clmo-stats {
    grid-template-columns: 1fr;
  }

  .clmo-total-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding: 18px;
  }

  .clmo-total-band strong {
    width: 100%;
    font-size: clamp(30px, 11vw, 42px);
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}



/* v1.0.7 total band final layout
   合計金額 is a single full-width flex bar. Amount is plain text, no WooCommerce price markup styling. */
.clmo .clmo-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
  min-width: 0 !important;
}

.clmo .clmo-stats > .clmo-stat {
  grid-column: auto !important;
  min-width: 0 !important;
}

.clmo .clmo-total-band {
  grid-column: 1 / -1 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 86px !important;
  margin: 0 !important;
  padding: 18px 20px !important;
  overflow: hidden !important;
}

.clmo .clmo-total-band__label,
.clmo .clmo-total-band > div {
  display: flex !important;
  flex: 1 1 auto !important;
  align-items: center !important;
  gap: 14px !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.clmo .clmo-total-band__label > span,
.clmo .clmo-total-band > div > span {
  position: static !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 52px !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  margin: 0 !important;
  transform: none !important;
}

.clmo .clmo-total-band__label > em,
.clmo .clmo-total-band > div > em {
  display: block !important;
  flex: 0 1 auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: var(--clmo-muted) !important;
  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.clmo .clmo-total-band__amount,
.clmo .clmo-total-band > strong {
  position: static !important;
  display: block !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: 62% !important;
  min-width: 0 !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: var(--clmo-green) !important;
  font-size: clamp(28px, 3.4vw, 40px) !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: -.035em !important;
  text-align: right !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  transform: none !important;
}

.clmo .clmo-order-row__total {
  justify-self: end !important;
  text-align: left !important;
  min-width: 96px !important;
  max-width: 100% !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

.clmo .clmo-order-row__total .amount,
.clmo .clmo-order-row__total bdi,
.clmo .clmo-order-row__total span,
.clmo .clmo-order-row__total .woocommerce-Price-amount,
.clmo .clmo-order-row__total .woocommerce-Price-currencySymbol {
  position: static !important;
  display: inline !important;
  float: none !important;
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  white-space: nowrap !important;
  transform: none !important;
}

@media (max-width: 920px) {
  .clmo .clmo-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .clmo .clmo-stats {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .clmo .clmo-total-band {
    flex-direction: row !important;
    align-items: center !important;
    min-height: 78px !important;
    padding: 14px !important;
    gap: 10px !important;
  }

  .clmo .clmo-total-band__label,
  .clmo .clmo-total-band > div {
    gap: 10px !important;
  }

  .clmo .clmo-total-band__label > span,
  .clmo .clmo-total-band > div > span {
    flex-basis: 44px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
  }

  .clmo .clmo-total-band__amount,
  .clmo .clmo-total-band > strong {
    max-width: 54% !important;
    font-size: clamp(24px, 7.2vw, 34px) !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .clmo .clmo-order-row__total {
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    min-width: 0 !important;
    width: 100% !important;
    text-align: right !important;
  }

  .clmo .clmo-order-row__total::before {
    flex: 0 0 auto !important;
  }

  .clmo .clmo-order-row__total .amount,
  .clmo .clmo-order-row__total bdi,
  .clmo .clmo-order-row__total .woocommerce-Price-amount {
    margin-left: auto !important;
    text-align: right !important;
  }
}

@media (max-width: 420px) {
  .clmo-filters {
    gap: 8px;
  }

  .clmo-filters a {
    min-height: 40px;
    padding: 0 6px;
    font-size: 11px;
  }

  .clmo .clmo-total-band {
    padding: 12px !important;
  }

  .clmo .clmo-total-band__label,
  .clmo .clmo-total-band > div {
    gap: 9px !important;
  }

  .clmo .clmo-total-band__label > span,
  .clmo .clmo-total-band > div > span {
    flex-basis: 38px !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
  }

  .clmo .clmo-total-band__label > em,
  .clmo .clmo-total-band > div > em {
    font-size: 12px !important;
  }

  .clmo .clmo-total-band__amount,
  .clmo .clmo-total-band > strong {
    max-width: 56% !important;
    font-size: clamp(22px, 6.8vw, 30px) !important;
  }
}


/* v1.0.9 order detail page */
.clmo-detail .clmo-detail-hero h1 {
  font-size: clamp(44px, 6.2vw, 76px) !important;
}

.clmo-detail-summary {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 14px;
}

.clmo-detail-summary__main,
.clmo-detail-summary__meta {
  border: 1px solid var(--clmo-line);
  border-radius: 15px;
  background:
    radial-gradient(circle at 12% 0%, rgba(167,255,22,.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--clmo-card);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.clmo-detail-summary__main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 104px;
  padding: 20px;
}

.clmo-detail-summary__main .clmo-icon {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(167,255,22,.28);
  border-radius: 999px;
  color: var(--clmo-green);
  background: rgba(167,255,22,.055);
}

.clmo-detail-summary em,
.clmo-detail-paymeta em,
.clmo-detail-total-row span {
  display: block;
  color: var(--clmo-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  line-height: 1.25;
}

.clmo-detail-summary strong,
.clmo-detail-paymeta strong {
  display: block;
  color: var(--clmo-text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 950;
  white-space: nowrap;
}

.clmo-detail-summary__main strong {
  color: var(--clmo-green);
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -.035em;
}

.clmo-detail-summary__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  min-width: 0;
}

.clmo-detail-summary__meta > div {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 104px;
  padding: 18px;
  background: rgba(0,0,0,.14);
}

.clmo-detail-total {
  color: var(--clmo-green) !important;
  font-size: clamp(22px, 2.7vw, 34px) !important;
  letter-spacing: -.035em;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clmo-detail-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid rgba(167,255,22,.16);
  border-radius: 15px;
  background:
    linear-gradient(90deg, rgba(167,255,22,.055), rgba(255,255,255,.012)),
    rgba(0,0,0,.22);
  overflow: hidden;
}

.clmo-detail-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(167,255,22,.11);
  border-radius: 12px;
  background: rgba(0,0,0,.22);
  color: rgba(247,247,239,.52);
}

.clmo-detail-step span {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(247,247,239,.16);
  border-radius: 999px;
  color: rgba(247,247,239,.62);
  font-size: 13px;
  font-weight: 950;
}

.clmo-detail-step strong {
  min-width: 0;
  color: inherit;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.clmo-detail-step.is-done,
.clmo-detail-step.is-current {
  border-color: rgba(167,255,22,.34);
  color: var(--clmo-green);
  background: rgba(167,255,22,.055);
}

.clmo-detail-step.is-done span,
.clmo-detail-step.is-current span {
  border-color: rgba(167,255,22,.38);
  color: #071006;
  background: linear-gradient(180deg, #d7ff25, #96e200);
}

.clmo-detail-progress__alert {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
}

.clmo-detail-progress__alert strong {
  color: rgba(247,247,239,.82);
  font-size: 14px;
  font-weight: 950;
}

.clmo-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: 18px;
  align-items: start;
}

.clmo-detail-item-list {
  display: grid;
  gap: 10px;
}

.clmo-detail-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(92px, auto);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(167,255,22,.12);
  border-radius: 13px;
  background: rgba(0,0,0,.25);
}

.clmo-detail-item__thumb {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  overflow: hidden;
  border: 1px solid rgba(167,255,22,.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 20%, rgba(167,255,22,.09), transparent 45%),
    rgba(255,255,255,.035);
}

.clmo-detail-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clmo-detail-item__body {
  min-width: 0;
}

.clmo-detail-item__body strong {
  display: block;
  margin: 0 0 6px;
  color: var(--clmo-text);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.clmo-detail-item__body em {
  display: block;
  color: rgba(247,247,239,.66);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.clmo-detail-item__body .wc-item-meta {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(247,247,239,.54);
  font-size: 12px;
  font-weight: 850;
}

.clmo-detail-item__body .wc-item-meta p {
  display: inline;
  margin: 0 !important;
}

.clmo-detail-item__price {
  color: var(--clmo-green);
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.clmo-detail-side {
  position: sticky;
  top: 18px;
}

.clmo-detail-totals {
  display: grid;
  gap: 10px;
}

.clmo-detail-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--clmo-line2);
}

.clmo-detail-total-row strong {
  color: var(--clmo-text);
  font-size: 14px;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.clmo-detail-total-row.is-grand {
  min-height: 48px;
  margin-top: 2px;
  padding-top: 4px;
  padding-bottom: 0;
  border-bottom: 0;
}

.clmo-detail-total-row.is-grand span {
  color: var(--clmo-text);
}

.clmo-detail-total-row.is-grand strong {
  color: var(--clmo-green);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.035em;
}

.clmo-detail-paymeta {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--clmo-line2);
}

.clmo-detail-paymeta > div {
  display: grid;
  gap: 5px;
}

.clmo-detail-paymeta strong {
  font-size: 13px;
  white-space: normal;
}

.clmo-detail-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.clmo-detail-address {
  margin-bottom: 0;
}

.clmo-detail-address__body {
  color: rgba(247,247,239,.78);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 850;
}

.clmo-detail-address__body p {
  margin: 8px 0 0 !important;
}

.clmo-detail-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.clmo-detail-actions .clmo-btn {
  min-width: 170px;
}

.clmo-detail-error {
  margin-top: 18px;
}

@media (max-width: 920px) {
  .clmo-detail-summary,
  .clmo-detail-layout,
  .clmo-detail-address-grid {
    grid-template-columns: 1fr;
  }

  .clmo-detail-side {
    position: static;
  }

  .clmo-detail-summary__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .clmo-detail .clmo-detail-hero h1 {
    font-size: clamp(36px, 12vw, 52px) !important;
  }

  .clmo-detail-summary {
    gap: 10px;
    margin-bottom: 10px;
  }

  .clmo-detail-summary__main {
    min-height: 82px;
    padding: 14px;
  }

  .clmo-detail-summary__main .clmo-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .clmo-detail-summary__main strong {
    font-size: clamp(24px, 9vw, 34px);
  }

  .clmo-detail-summary__meta {
    grid-template-columns: 1fr;
  }

  .clmo-detail-summary__meta > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 13px 14px;
  }

  .clmo-detail-total {
    font-size: clamp(22px, 8vw, 30px) !important;
  }

  .clmo-detail-progress {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    margin-bottom: 14px;
  }

  .clmo-detail-step {
    padding: 10px;
  }

  .clmo-detail-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .clmo-detail-item__thumb {
    width: 64px;
    height: 64px;
  }

  .clmo-detail-item__price {
    grid-column: 1 / -1;
    justify-self: end;
    font-size: 18px;
  }

  .clmo-detail-address-grid {
    gap: 14px;
    margin-top: 14px;
  }

  .clmo-detail-actions {
    display: grid;
  }

  .clmo-detail-actions .clmo-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .clmo-detail-summary__meta > div {
    padding: 12px;
  }

  .clmo-detail-step strong {
    font-size: 12px;
  }

  .clmo-detail-item__body strong {
    font-size: 14px;
  }
}


/* v1.1.0 address settings page */
.clmo-address .clmo-address-hero h1 {
  font-size: clamp(48px, 6.4vw, 86px) !important;
  letter-spacing: -.06em !important;
}

.clmo-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 18px;
}

.clmo-address-card {
  position: relative;
  min-width: 0;
  min-height: 210px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid var(--clmo-line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 7% 0%, rgba(167,255,22,.09), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--clmo-card);
  box-shadow: 0 22px 52px rgba(0,0,0,.30);
}

.clmo-address-card.is-active {
  border-color: rgba(167,255,22,.36);
  background:
    radial-gradient(circle at 8% 0%, rgba(167,255,22,.13), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.014)),
    var(--clmo-card);
}

.clmo-address-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.clmo-address-card__head > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.clmo-address-card__head .clmo-icon,
.clmo-address-edit .clmo-icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(167,255,22,.30);
  border-radius: 999px;
  color: var(--clmo-green);
  background: rgba(167,255,22,.055);
  font-size: 25px;
}

.clmo-address-card__head strong {
  color: var(--clmo-text);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 950;
  white-space: nowrap;
}

.clmo-address-card__head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 118px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(167,255,22,.42);
  border-radius: 10px;
  background: rgba(167,255,22,.035);
  color: var(--clmo-green) !important;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.clmo-address-card__head a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.clmo-address-card__rows {
  display: grid;
  gap: 11px;
  margin: 0;
}

.clmo-address-card__rows > div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.clmo-address-card__rows dt,
.clmo-address-card__rows dd {
  margin: 0;
  min-width: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
}

.clmo-address-card__rows dt {
  color: var(--clmo-muted);
}

.clmo-address-card__rows dd {
  color: var(--clmo-text);
  overflow-wrap: anywhere;
}

.clmo-address-card__empty {
  display: grid;
  gap: 8px;
  padding: 5px 0 0 59px;
}

.clmo-address-card__empty strong {
  color: var(--clmo-text);
  font-size: 15px;
  font-weight: 950;
}

.clmo-address-card__empty p {
  margin: 0 !important;
  color: var(--clmo-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 850;
}

.clmo-address-edit {
  margin-bottom: 18px;
  padding: 24px 26px 28px;
}

.clmo-address-edit .clmo-card__head {
  margin-bottom: 20px;
}

.clmo-address-form {
  margin: 0;
}

.clmo-address-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.clmo-address .form-row,
.clmo-address .woocommerce form .form-row {
  float: none !important;
  display: grid !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.clmo-address .form-row-wide {
  grid-column: span 2;
}

.clmo-address .form-row label {
  display: block;
  margin: 0 !important;
  color: var(--clmo-text);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.clmo-address .form-row label .required,
.clmo-address .form-row label abbr.required {
  color: var(--clmo-red) !important;
  text-decoration: none !important;
}

.clmo-address .form-row span.optional {
  color: var(--clmo-muted);
  font-size: 12px;
}

.clmo-address input.input-text,
.clmo-address input[type="text"],
.clmo-address input[type="email"],
.clmo-address input[type="tel"],
.clmo-address input[type="password"],
.clmo-address select,
.clmo-address textarea {
  width: 100% !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 15px !important;
  border: 1px solid rgba(167,255,22,.28) !important;
  border-radius: 9px !important;
  outline: none !important;
  background: rgba(0,0,0,.34) !important;
  color: var(--clmo-text) !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015) !important;
}

.clmo-address textarea {
  min-height: 110px !important;
  padding-top: 13px !important;
  line-height: 1.5 !important;
}

.clmo-address input:focus,
.clmo-address select:focus,
.clmo-address textarea:focus {
  border-color: rgba(167,255,22,.70) !important;
  box-shadow: 0 0 0 3px rgba(167,255,22,.10), inset 0 0 0 1px rgba(255,255,255,.02) !important;
}

.clmo-address .select2-container {
  width: 100% !important;
  min-height: 48px !important;
}

.clmo-address .select2-container .select2-selection--single {
  height: 48px !important;
  border: 1px solid rgba(167,255,22,.28) !important;
  border-radius: 9px !important;
  background: rgba(0,0,0,.34) !important;
}

.clmo-address .select2-container .select2-selection__rendered {
  padding-left: 15px !important;
  padding-right: 38px !important;
  color: var(--clmo-text) !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 48px !important;
}

.clmo-address .select2-container .select2-selection__arrow {
  height: 48px !important;
  right: 9px !important;
}

.clmo-address-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.clmo-address-save,
.clmo-address-cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  cursor: pointer;
}

.clmo-address-save {
  border: 0;
  background: linear-gradient(180deg, #d7ff25, #96e200);
  color: #071006 !important;
  box-shadow: 0 16px 30px rgba(116,217,21,.22);
}

.clmo-address-cancel {
  border: 1px solid rgba(167,255,22,.22);
  background: rgba(0,0,0,.24);
  color: rgba(247,247,239,.70) !important;
}

.clmo-address .woocommerce-Input,
.clmo-address .input-text {
  -webkit-appearance: none;
  appearance: none;
}

.clmo-address .woocommerce-invalid input,
.clmo-address .woocommerce-invalid select,
.clmo-address .woocommerce-invalid textarea {
  border-color: rgba(255,67,93,.68) !important;
}

@media (max-width: 920px) {
  .clmo-address-grid {
    grid-template-columns: 1fr;
  }

  .clmo-address-fields {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .clmo-address .form-row-wide,
  .clmo-address .form-row-first,
  .clmo-address .form-row-last {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .clmo-address .clmo-address-hero h1 {
    font-size: clamp(38px, 12vw, 54px) !important;
  }

  .clmo-address-grid {
    gap: 12px;
    margin-bottom: 14px;
  }

  .clmo-address-card {
    min-height: 0;
    padding: 16px 14px;
    border-radius: 15px;
  }

  .clmo-address-card__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  .clmo-address-card__head > div {
    gap: 10px;
  }

  .clmo-address-card__head .clmo-icon,
  .clmo-address-edit .clmo-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .clmo-address-card__head strong {
    font-size: 19px;
  }

  .clmo-address-card__head a {
    width: 100%;
  }

  .clmo-address-card__rows {
    gap: 10px;
  }

  .clmo-address-card__rows > div {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .clmo-address-card__rows dt,
  .clmo-address-card__rows dd {
    font-size: 13px;
  }

  .clmo-address-card__empty {
    padding-left: 0;
  }

  .clmo-address-edit {
    padding: 16px 12px 18px;
    border-radius: 15px;
  }

  .clmo-address input.input-text,
  .clmo-address input[type="text"],
  .clmo-address input[type="email"],
  .clmo-address input[type="tel"],
  .clmo-address input[type="password"],
  .clmo-address select,
  .clmo-address textarea {
    min-height: 48px !important;
    font-size: 16px !important;
  }

  .clmo-address-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .clmo-address-save,
  .clmo-address-cancel {
    width: 100%;
    min-width: 0;
  }
}

/* v1.1.1 address form one-line rows + postal-code autofill */
.clmo-address .clmo-address-fields {
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}

.clmo-address .form-row-wide,
.clmo-address .form-row-first,
.clmo-address .form-row-last {
  grid-column: 1 / -1 !important;
}

.clmo-address .form-row,
.clmo-address .woocommerce form .form-row {
  grid-template-columns: 150px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 14px !important;
}

.clmo-address .form-row label {
  align-self: center !important;
  padding-top: 0 !important;
}

.clmo-address .woocommerce-input-wrapper {
  display: block;
  min-width: 0;
  width: 100%;
}

.clmo-address .clmo-address-field--postcode .woocommerce-input-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: center;
  gap: 10px;
}

.clmo-address-autofill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(167,255,22,.42);
  border-radius: 9px;
  background: rgba(167,255,22,.055);
  color: var(--clmo-green);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  cursor: pointer;
}

.clmo-address-autofill-btn:disabled {
  opacity: .56;
  cursor: wait;
}

.clmo-address-autofill-status {
  grid-column: 1 / -1;
  display: block;
  min-height: 16px;
  margin-top: -2px;
  color: var(--clmo-muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

.clmo-address-autofill-status[data-state="success"] {
  color: var(--clmo-green);
}

.clmo-address-autofill-status[data-state="error"] {
  color: #ff7084;
}

.clmo-address-autofill-status[data-state="loading"] {
  color: var(--clmo-yellow);
}

@media (max-width: 620px) {
  .clmo-address .form-row,
  .clmo-address .woocommerce form .form-row {
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    gap: 8px !important;
  }

  .clmo-address .clmo-address-field--postcode .woocommerce-input-wrapper {
    grid-template-columns: 1fr;
  }

  .clmo-address-autofill-btn {
    width: 100%;
  }
}


/* v1.1.2 My Account side navigation
   Removes theme white borders, makes the left account menu sticky, and adds collapse support. */
body.clmo-account-shell.woocommerce-account .woocommerce.clmo-account-layout {
  display: grid !important;
  grid-template-columns: minmax(220px, 248px) minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: start !important;
  overflow: visible !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce.clmo-account-layout {
  grid-template-columns: 72px minmax(0, 1fr) !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce.clmo-account-layout::before,
body.clmo-account-shell.woocommerce-account .woocommerce.clmo-account-layout::after {
  content: none !important;
  display: none !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky !important;
  top: 92px !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 12px !important;
  overflow: hidden !important;
  border: 1px solid rgba(167,255,22,.20) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(167,255,22,.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.030), rgba(255,255,255,.010)),
    rgba(5,6,4,.92) !important;
  box-shadow: 0 22px 54px rgba(0,0,0,.28) !important;
  z-index: 20 !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation,
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation *,
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation ul,
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation li,
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation a {
  box-sizing: border-box !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid !important;
  gap: 7px !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation li::before,
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation li::after {
  content: none !important;
  display: none !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation a {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 42px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 13px 0 42px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 11px !important;
  outline: 0 !important;
  background: rgba(0,0,0,.20) !important;
  color: rgba(247,247,239,.72) !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation a::before {
  content: "" !important;
  position: absolute !important;
  left: 15px !important;
  top: 50% !important;
  width: 10px !important;
  height: 10px !important;
  border: 2px solid currentColor !important;
  border-top: 0 !important;
  border-left: 0 !important;
  opacity: .72 !important;
  transform: translateY(-50%) rotate(-45deg) !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link.is-active a,
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--orders.is-active a,
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-address.is-active a {
  background: linear-gradient(180deg, #d7ff25, #96e200) !important;
  color: #071006 !important;
  box-shadow: 0 14px 28px rgba(116,217,21,.18) !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation a:focus-visible {
  color: var(--clmo-green, #a7ff16) !important;
  background: rgba(167,255,22,.055) !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:hover,
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:focus-visible {
  color: #071006 !important;
  background: linear-gradient(180deg, #d7ff25, #96e200) !important;
}

body.clmo-account-shell.woocommerce-account .clmo-account-nav-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border: 1px solid rgba(167,255,22,.24) !important;
  border-radius: 12px !important;
  background: rgba(0,0,0,.24) !important;
  color: var(--clmo-green, #a7ff16) !important;
  box-shadow: none !important;
  cursor: pointer !important;
  font: inherit !important;
}

body.clmo-account-shell.woocommerce-account .clmo-account-nav-toggle__icon {
  position: relative !important;
  display: block !important;
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 12px !important;
}

body.clmo-account-shell.woocommerce-account .clmo-account-nav-toggle__icon::before,
body.clmo-account-shell.woocommerce-account .clmo-account-nav-toggle__icon::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  width: 18px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: currentColor !important;
  box-shadow: 0 5px 0 currentColor !important;
  transition: transform .18s ease, top .18s ease, box-shadow .18s ease !important;
}

body.clmo-account-shell.woocommerce-account .clmo-account-nav-toggle__icon::before {
  top: 0 !important;
}

body.clmo-account-shell.woocommerce-account .clmo-account-nav-toggle__icon::after {
  top: 10px !important;
  box-shadow: none !important;
}

body.clmo-account-shell.woocommerce-account .clmo-account-nav-toggle__text {
  min-width: 0 !important;
  overflow: hidden !important;
  color: inherit !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: .04em !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation {
  padding: 10px !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .clmo-account-nav-toggle {
  justify-content: center !important;
  padding: 0 !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .clmo-account-nav-toggle__text {
  display: none !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation a {
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0 !important;
  color: transparent !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation a::before {
  left: 50% !important;
  color: rgba(247,247,239,.76) !important;
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation li.is-active a::before {
  color: #071006 !important;
}

@media (max-width: 920px) {
  body.clmo-account-shell.woocommerce-account .woocommerce.clmo-account-layout,
  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce.clmo-account-layout {
    display: block !important;
  }

  body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation {
    position: sticky !important;
    top: 10px !important;
    width: 100% !important;
    margin: 0 0 16px !important;
    z-index: 60 !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation ul {
    display: none !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation {
    padding: 10px !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .clmo-account-nav-toggle {
    justify-content: flex-start !important;
    padding: 0 12px !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .clmo-account-nav-toggle__text {
    display: block !important;
  }
}

/* v1.1.3 draft order return-to-cart action */
.clmo-order-row__action a.clmo-draft-return,
.clmo .clmo-btn.clmo-draft-return {
  border-color: transparent !important;
  background: linear-gradient(180deg, #d7ff25, #96e200) !important;
  color: #071006 !important;
  box-shadow: 0 15px 28px rgba(116,217,21,.20) !important;
}

.clmo-order-row.is-draft {
  background:
    radial-gradient(circle at 0% 50%, rgba(242,196,49,.055), transparent 38%),
    rgba(0,0,0,.25);
}

/* v1.1.4 draft compatibility: WooCommerce may expose draft checkout orders as checkout-draft. */
.clmo-status--checkout-draft,
.clmo-detail-progress--checkout-draft .clmo-status {
  border-color: rgba(242,196,49,.44);
  color: var(--clmo-yellow);
  background: rgba(242,196,49,.08);
}


/* v1.1.7 account nav collapse hard fix
   Explicit grid placement prevents My Account content from being squeezed into the collapsed nav column.
   In collapsed desktop mode, hide the menu list completely instead of trying to show labels in a 72px rail. */
body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: start !important;
}

body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-content {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation ul {
  display: none !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation {
  width: 72px !important;
  min-width: 72px !important;
  max-width: 72px !important;
  overflow: hidden !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation a {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
}

body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation a::before {
  text-indent: 0 !important;
}

@media (max-width: 920px) {
  body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-navigation,
  body.clmo-account-shell.woocommerce-account .woocommerce-MyAccount-content {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }
}


/* v1.1.8 desktop account nav: no collapse on desktop.
   Desktop keeps the sticky full-width side menu. Collapse is mobile-only to avoid narrow-column text breaks. */
@media (min-width: 921px) {
  body.clmo-account-shell.woocommerce-account .clmo-account-nav-toggle {
    display: none !important;
  }

  body.clmo-account-shell.woocommerce-account .woocommerce.clmo-account-layout,
  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce.clmo-account-layout {
    display: grid !important;
    grid-template-columns: minmax(220px, 248px) minmax(0, 1fr) !important;
    gap: 22px !important;
    align-items: start !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation,
  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed-desktop .woocommerce-MyAccount-navigation {
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: sticky !important;
    top: 92px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 12px !important;
    overflow: hidden !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation ul,
  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed-desktop .woocommerce-MyAccount-navigation ul {
    display: grid !important;
    margin: 0 !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation a,
  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed-desktop .woocommerce-MyAccount-navigation a {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: 42px !important;
    width: 100% !important;
    padding: 0 13px 0 42px !important;
    color: rgba(247,247,239,.72) !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
    text-indent: 0 !important;
    white-space: nowrap !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation a::before,
  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed-desktop .woocommerce-MyAccount-navigation a::before {
    left: 15px !important;
    color: currentColor !important;
    transform: translateY(-50%) rotate(-45deg) !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation li.is-active a,
  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link.is-active a,
  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed-desktop .woocommerce-MyAccount-navigation li.is-active a,
  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed-desktop .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link.is-active a {
    background: linear-gradient(180deg, #d7ff25, #96e200) !important;
    color: #071006 !important;
  }

  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed .woocommerce-MyAccount-content,
  body.clmo-account-shell.woocommerce-account.clmo-account-nav-collapsed-desktop .woocommerce-MyAccount-content {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
}

/* v1.1.9 account details / profile page */
.clmo-profile .clmo-profile-hero h1 {
  font-size: clamp(46px, 6.2vw, 84px) !important;
  letter-spacing: -.06em !important;
}

.clmo-profile-hero__art {
  position: relative;
  min-height: 190px;
}

.clmo-profile-hero__art img {
  position: absolute;
  right: 0;
  bottom: -3px;
  width: min(48%, 116px);
  opacity: .92;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.56));
}

.clmo-profile-idcard {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 10px 20px;
  width: min(100%, 250px);
  min-height: 124px;
  margin: 0 auto 18px;
  padding: 24px 26px;
  border: 2px solid rgba(167,255,22,.42);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 10%, rgba(167,255,22,.16), transparent 34%),
    rgba(167,255,22,.045);
  color: var(--clmo-green);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 24px 42px rgba(0,0,0,.34);
}

.clmo-profile-idcard__user {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(167,255,22,.42);
  border-radius: 999px;
}

.clmo-profile-idcard__user svg {
  display: block;
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clmo-profile-idcard__line {
  display: block;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(167,255,22,.58);
  box-shadow: 0 0 16px rgba(167,255,22,.10);
}

.clmo-profile-idcard__line.is-short {
  width: 72%;
}

.clmo-profile-idcard__shield {
  position: absolute;
  right: -20px;
  bottom: -20px;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 2px solid rgba(167,255,22,.48);
  border-radius: 999px;
  background: #071006;
  color: var(--clmo-green);
  box-shadow: 0 16px 28px rgba(0,0,0,.42);
}

.clmo-profile-idcard__shield svg {
  display: block;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clmo-profile-form {
  display: grid;
  gap: 18px;
  margin: 0 0 18px;
}

.clmo-profile-section {
  padding: 26px 28px;
}

.clmo-profile-section__head {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--clmo-line2);
  margin-bottom: 22px;
}

.clmo-profile-section__head .clmo-icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(167,255,22,.30);
  border-radius: 999px;
  color: var(--clmo-green);
  background: rgba(167,255,22,.055);
  font-size: 24px;
}

.clmo-profile-section__head strong {
  color: var(--clmo-green);
}

.clmo-profile-fields {
  display: grid;
  gap: 14px;
}

.clmo-profile-field {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.clmo-profile-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  color: var(--clmo-text);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 950;
}

.clmo-profile-field label span {
  min-width: 0;
}

.clmo-profile-field label em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(167,255,22,.13);
  color: var(--clmo-green);
  font-size: 11px;
  line-height: 1;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.clmo-profile-field__control {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.clmo-profile input.input-text,
.clmo-profile input[type="text"],
.clmo-profile input[type="email"],
.clmo-profile input[type="password"] {
  width: 100% !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 1px solid rgba(167,255,22,.28) !important;
  border-radius: 10px !important;
  outline: none !important;
  background: rgba(0,0,0,.34) !important;
  color: var(--clmo-text) !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015) !important;
  -webkit-appearance: none;
  appearance: none;
}

.clmo-profile input:focus {
  border-color: rgba(167,255,22,.70) !important;
  box-shadow: 0 0 0 3px rgba(167,255,22,.10), inset 0 0 0 1px rgba(255,255,255,.02) !important;
}

.clmo-profile-field__control small {
  display: block;
  margin: 0;
  color: var(--clmo-muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 850;
}

.clmo-profile-password {
  background:
    radial-gradient(circle at 2% 0%, rgba(167,255,22,.07), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.030), rgba(255,255,255,.010)),
    var(--clmo-card);
}

.clmo-profile-savebox {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px;
}

.clmo-profile-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 680px);
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #d7ff25, #96e200);
  color: #071006 !important;
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 18px 32px rgba(116,217,21,.23);
  cursor: pointer;
}

.clmo-profile-save span,
.clmo-profile-savebox p span {
  display: inline-flex;
  color: currentColor;
}

.clmo-profile-save svg,
.clmo-profile-savebox p svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clmo-profile-savebox p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 !important;
  color: var(--clmo-muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 850;
  text-align: center;
}

.clmo-profile .woocommerce-invalid input {
  border-color: rgba(255,67,93,.68) !important;
}

@media (max-width: 920px) {
  .clmo-profile-field {
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .clmo-profile .clmo-profile-hero h1 {
    font-size: clamp(38px, 12vw, 54px) !important;
  }

  .clmo-profile-section {
    padding: 16px 12px 18px;
    border-radius: 15px;
  }

  .clmo-profile-section__head {
    margin-bottom: 16px;
  }

  .clmo-profile-section__head .clmo-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .clmo-profile-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .clmo-profile-field label {
    min-height: 0;
  }

  .clmo-profile input.input-text,
  .clmo-profile input[type="text"],
  .clmo-profile input[type="email"],
  .clmo-profile input[type="password"] {
    min-height: 50px !important;
    font-size: 16px !important;
  }

  .clmo-profile-savebox {
    padding: 18px 12px;
  }

  .clmo-profile-save {
    width: 100%;
    min-height: 52px;
  }
}

/* v1.2.0 ChillPoint page */
.clmo-points {
  --clmo-point-red: #ff315a;
}

.clmo-points-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  min-height: 230px;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 34px 44px;
  border: 1px solid rgba(167,255,22,.42);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 82%, rgba(167,255,22,.34), transparent 17%),
    radial-gradient(circle at 74% 48%, rgba(167,255,22,.15), transparent 26%),
    linear-gradient(115deg, rgba(167,255,22,.12), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.016) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #11180b 0%, #050604 100%);
  box-shadow: 0 30px 70px rgba(0,0,0,.40), inset 0 0 0 1px rgba(255,255,255,.025);
}

.clmo-points-hero::before {
  content: "";
  position: absolute;
  inset: auto -60px -95px auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(167,255,22,.18);
  border-radius: 54% 46% 52% 48%;
  background:
    linear-gradient(135deg, transparent 47%, rgba(167,255,22,.34) 48%, transparent 50%),
    radial-gradient(circle at 50% 70%, rgba(167,255,22,.22), transparent 37%);
  transform: rotate(-24deg);
  filter: drop-shadow(0 0 26px rgba(167,255,22,.22));
  pointer-events: none;
}

.clmo-points-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 46%, rgba(167,255,22,.28), transparent 1.5px),
    radial-gradient(circle at 76% 28%, rgba(167,255,22,.18), transparent 1.8px),
    radial-gradient(circle at 92% 18%, rgba(167,255,22,.26), transparent 1.7px),
    linear-gradient(122deg, transparent 0 64%, rgba(167,255,22,.22) 65%, transparent 67%);
  opacity: .72;
  pointer-events: none;
}

.clmo-points-hero__body,
.clmo-points-hero__art {
  position: relative;
  z-index: 2;
}

.clmo-points-kicker {
  margin: 0 0 10px !important;
  color: rgba(247,247,239,.82);
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.clmo-points-hero strong {
  display: block;
  margin: 0 0 16px;
  color: var(--clmo-green);
  font-size: clamp(72px, 10vw, 124px);
  line-height: .82;
  font-weight: 950;
  letter-spacing: -.075em;
  text-shadow: 0 0 30px rgba(167,255,22,.28), 0 12px 0 rgba(0,0,0,.28);
  white-space: nowrap;
}

.clmo-points-hero__body > p:last-child {
  max-width: 720px;
  margin: 0 !important;
  color: rgba(247,247,239,.82);
  font-size: clamp(14px, 1.55vw, 18px);
  line-height: 1.55;
  font-weight: 900;
}

.clmo-points-hero__art {
  display: grid;
  justify-items: end;
  align-items: end;
  min-height: 140px;
}

.clmo-points-hero__art span {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(167,255,22,.26);
  border-radius: 999px;
  background: rgba(167,255,22,.055);
  color: var(--clmo-green);
  opacity: .54;
  transform: rotate(-17deg);
}

.clmo-points-hero__art svg {
  display: block;
  width: 96px;
  height: 96px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clmo-points-history {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.clmo-points-title {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.clmo-points-title::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(167,255,22,.44), rgba(167,255,22,.06));
}

.clmo-points-title span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--clmo-green);
}

.clmo-points-title svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clmo-points-title h2 {
  margin: 0 !important;
  color: var(--clmo-text) !important;
  font-size: clamp(24px, 2.5vw, 34px) !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  letter-spacing: -.025em !important;
}

.clmo-points-table {
  overflow: hidden;
  border: 1px solid var(--clmo-line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 4% 0%, rgba(167,255,22,.075), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.030), rgba(255,255,255,.010)),
    var(--clmo-card);
  box-shadow: 0 24px 54px rgba(0,0,0,.30);
}

.clmo-points-table__head,
.clmo-points-row {
  display: grid;
  grid-template-columns: minmax(118px, .85fr) minmax(190px, 1.8fr) minmax(110px, .85fr) minmax(100px, .75fr);
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.clmo-points-table__head {
  min-height: 58px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(167,255,22,.20);
  color: var(--clmo-green);
  background: rgba(167,255,22,.035);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
}

.clmo-points-row {
  min-height: 58px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(167,255,22,.12);
  color: var(--clmo-text);
}

.clmo-points-row:last-child {
  border-bottom: 0;
}

.clmo-points-row > span,
.clmo-points-row > strong,
.clmo-points-row > em {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clmo-points-row > strong {
  color: var(--clmo-text);
  font-weight: 950;
}

.clmo-points-row > em {
  color: var(--clmo-green);
  font-style: normal;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.02em;
}

.clmo-points-row.is-minus > em {
  color: var(--clmo-point-red);
}

.clmo-points-row.is-zero > em {
  color: var(--clmo-muted);
}

.clmo-points-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 46px 22px;
  text-align: center;
}

.clmo-points-empty strong {
  color: var(--clmo-text);
  font-size: 20px;
  font-weight: 950;
}

.clmo-points-empty p {
  margin: 0 !important;
  color: var(--clmo-muted);
  font-size: 14px;
  font-weight: 850;
}

@media (max-width: 920px) {
  .clmo-points-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 30px 24px;
  }

  .clmo-points-hero__art {
    display: none;
  }

  .clmo-points-table__head,
  .clmo-points-row {
    grid-template-columns: minmax(106px, .85fr) minmax(150px, 1.5fr) minmax(92px, .75fr) minmax(82px, .65fr);
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 620px) {
  .clmo-points-hero {
    margin-bottom: 22px;
    padding: 26px 22px;
    border-radius: 15px;
  }

  .clmo-points-kicker {
    font-size: 12px;
  }

  .clmo-points-hero strong {
    font-size: clamp(62px, 22vw, 92px);
  }

  .clmo-points-title {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .clmo-points-title::after {
    grid-column: 1 / -1;
  }

  .clmo-points-table {
    display: grid;
    gap: 10px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .clmo-points-table__head {
    display: none;
  }

  .clmo-points-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    min-height: 0;
    padding: 15px;
    border: 1px solid rgba(167,255,22,.16);
    border-radius: 14px;
    background:
      radial-gradient(circle at 4% 0%, rgba(167,255,22,.07), transparent 36%),
      rgba(8,10,6,.92);
    box-shadow: 0 16px 34px rgba(0,0,0,.24);
  }

  .clmo-points-row > span,
  .clmo-points-row > strong,
  .clmo-points-row > em {
    white-space: normal;
  }

  .clmo-points-row > span:first-child {
    color: var(--clmo-muted);
    font-size: 12px;
  }

  .clmo-points-row > strong {
    grid-column: 1 / -1;
    font-size: 15px;
  }

  .clmo-points-row > em {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    font-size: 18px;
    white-space: nowrap;
  }

  .clmo-points-row > span:last-child {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--clmo-text);
  }

  .clmo-points-row > span:last-child::before {
    content: "残高";
    color: var(--clmo-muted);
    font-size: 12px;
    font-weight: 850;
  }
}


/* v1.2.3 address page break fix
   The previous v1.1.1 desktop address form forced label/input into one horizontal row.
   On some themes this made WooCommerce fields collapse and the MY ADDRESS hero title clipped.
   This override keeps the ChillLeaf design but makes the address page stable. */
.clmo.clmo-address {
  width: min(100%, 1120px) !important;
  margin-top: 0 !important;
}

.clmo-address .clmo-address-hero {
  min-height: 190px !important;
  padding: 26px 32px !important;
  grid-template-columns: minmax(0, 1fr) 190px !important;
  align-items: center !important;
  overflow: hidden !important;
}

.clmo-address .clmo-address-hero h1,
.clmo-address .clmo-address-hero .clmo-hero__body h1 {
  margin: 0 0 12px !important;
  font-size: clamp(42px, 5.2vw, 68px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
  white-space: normal !important;
  overflow: visible !important;
}

.clmo-address .clmo-address-hero .clmo-hero__body > p:last-child {
  font-size: clamp(16px, 1.6vw, 21px) !important;
  line-height: 1.45 !important;
}

.clmo-address .clmo-address-hero .clmo-hero__art img {
  width: min(100%, 170px) !important;
  max-height: 170px !important;
}

.clmo-address .clmo-address-grid {
  align-items: stretch !important;
}

.clmo-address .clmo-address-card {
  min-height: 0 !important;
}

.clmo-address .clmo-address-edit {
  overflow: visible !important;
}

.clmo-address .clmo-address-fields,
.clmo-address .woocommerce-address-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px 18px !important;
  align-items: start !important;
}

.clmo-address .form-row,
.clmo-address .woocommerce form .form-row,
.clmo-address .woocommerce-address-fields__field-wrapper .form-row {
  float: none !important;
  clear: none !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.clmo-address .form-row-wide {
  grid-column: 1 / -1 !important;
}

.clmo-address .form-row-first,
.clmo-address .form-row-last {
  grid-column: auto !important;
}

.clmo-address .form-row label,
.clmo-address .woocommerce form .form-row label {
  grid-column: 1 / -1 !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  white-space: normal !important;
}

.clmo-address .woocommerce-input-wrapper {
  grid-column: 1 / -1 !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
}

.clmo-address input.input-text,
.clmo-address input[type="text"],
.clmo-address input[type="email"],
.clmo-address input[type="tel"],
.clmo-address input[type="password"],
.clmo-address select,
.clmo-address textarea {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.clmo-address .clmo-address-field--postcode .woocommerce-input-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 150px !important;
  align-items: center !important;
  gap: 10px !important;
}

.clmo-address .select2-container {
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 920px) {
  .clmo-address .clmo-address-hero {
    grid-template-columns: minmax(0, 1fr) 130px !important;
    min-height: 168px !important;
    padding: 22px !important;
  }

  .clmo-address .clmo-address-hero .clmo-hero__art img {
    width: min(100%, 124px) !important;
    max-height: 124px !important;
  }

  .clmo-address .clmo-address-fields,
  .clmo-address .woocommerce-address-fields__field-wrapper {
    grid-template-columns: 1fr !important;
  }

  .clmo-address .form-row-first,
  .clmo-address .form-row-last {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 620px) {
  .clmo-address .clmo-address-hero {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    padding: 18px 16px !important;
  }

  .clmo-address .clmo-address-hero .clmo-hero__art {
    display: none !important;
  }

  .clmo-address .clmo-address-hero h1,
  .clmo-address .clmo-address-hero .clmo-hero__body h1 {
    font-size: clamp(34px, 11vw, 46px) !important;
    line-height: 1.04 !important;
  }

  .clmo-address .clmo-address-field--postcode .woocommerce-input-wrapper {
    grid-template-columns: 1fr !important;
  }
}
