/** Shopify CDN: Minification failed

Line 190:1 Unexpected "{"
Line 190:2 Expected identifier but found "%"
Line 191:2 Unexpected "{"
Line 191:3 Expected identifier but found "%"
Line 192:2 Unexpected "<"
Line 192:48 Unexpected "{"
Line 192:62 Expected ":"
Line 192:73 Unexpected "<"
Line 193:1 Expected identifier but found "%"

**/
/* Cart Drawer — Temple Mount Soil
 * Cream/gold canvas, turquoise reserved for the Secure Checkout CTA. */

cyl-cart-drawer.cyl-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms ease;
  font-family: var(--cyl-font-body, "Heebo", system-ui, sans-serif);
}
cyl-cart-drawer.cyl-cart-drawer[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

cyl-cart-drawer.cyl-cart-drawer .cyl-cart-scrim {
  position: absolute;
  inset: 0;
  background: rgba(62, 39, 35, 0.45);
  border: 0;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

cyl-cart-drawer.cyl-cart-drawer .cyl-cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: #FFFFFF;
  box-shadow: -12px 0 40px rgba(62, 39, 35, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
cyl-cart-drawer.cyl-cart-drawer[aria-hidden="false"] .cyl-cart-panel {
  transform: translateX(0);
}

/* ─── Header ─── */
cyl-cart-drawer.cyl-cart-drawer .cyl-cart-head {
  padding: 20px 24px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(217, 196, 161, 1);
  background: #FFFFFF;
}
.cyl-cart-title-row { display: flex; align-items: baseline; gap: 10px; }
.cyl-cart-title {
  margin: 0;
  font-family: var(--cyl-font-headline, "Merriweather", Georgia, serif);
  font-size: 26px; font-weight: 400;
  color: var(--tms-brown, #3E2723);
  letter-spacing: -0.01em; line-height: 1;
}
.cyl-cart-count {
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 12px;
  color: #5C3F3A;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cyl-cart-close {
  appearance: none; background: transparent; border: 0;
  padding: 6px; margin-right: -6px;
  color: var(--tms-brown, #3E2723);
  cursor: pointer;
  display: inline-flex;
}

/* ─── Scrollable body ─── */
.cyl-cart-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex; flex-direction: column;
}

/* Promo banner */
.cyl-cart-promo {
  margin: 16px 24px 12px;
  padding: 12px 14px;
  background: #FBF8F1;
  border: 1px solid rgba(217, 196, 161, 1);
  border-left: 3px solid var(--tms-gold, #B8956A);
  display: flex; align-items: center; gap: 12px;
}
.cyl-cart-promo-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--tms-brown, #3E2723);
  color: var(--tms-gold, #B8956A);
}
.cyl-cart-promo-text { min-width: 0; }
.cyl-cart-promo-title {
  font-family: var(--cyl-font-cta, "Montserrat", sans-serif);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tms-brown, #3E2723);
}
.cyl-cart-promo-body {
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 13px;
  color: #5C3F3A;
  line-height: 1.4;
  margin-top: 2px;
}

/* Items */
.cyl-cart-items {
  list-style: none;
  padding: 0 24px 20px;
  margin: 0;
}
.cyl-cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(217, 196, 161, 0.5);
}
.cyl-cart-item:first-child { padding-top: 4px; }
.cyl-cart-item-image {
  display: block;
  width: 84px; height: 84px;
  background: rgba(201, 184, 150, 0.4);
  overflow: hidden;
  flex-shrink: 0;
}
.cyl-cart-item-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cyl-cart-item-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.cyl-cart-item-top {
  display: flex; justify-content: space-between; gap: 12px; align-items: flex-start;
}
.cyl-cart-item-info { min-width: 0; }
.cyl-cart-item-name {
  font-family: var(--cyl-font-headline, "Merriweather", serif);
  font-weight: 700; font-size: 15px;
  color: var(--tms-brown, #3E2723);
  line-height: 1.25;
  letter-spacing: -0.005em;
  text-decoration: none;
  display: block;
}
.cyl-cart-item-variant {
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 11.5px;
  color: #5C3F3A;
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cyl-cart-item-price {
  text-align: right;
  white-space: nowrap;
}
.cyl-cart-item-price-now,
.cyl-cart-item-price-free {
  font-family: var(--cyl-font-headline, "Merriweather", serif);
  font-weight: 700; font-size: 15px;
  color: var(--tms-brown, #3E2723);
}
.cyl-cart-item-price-free { color: var(--tms-gold, #B8956A); margin-top: 3px; }
.cyl-cart-item-price-was {
  font-family: var(--cyl-font-headline, "Merriweather", serif);
  font-size: 13px;
  color: #5C3F3A;
  text-decoration: line-through;
  line-height: 1;
}{%- if item.variant.compare_at_price > item.variant.price -%}
  {%- assign item_savings = item.variant.compare_at_price | minus: item.variant.price | times: item.quantity -%}
  <div class="cyl-cart-item-savings">Economia: {{ item_savings | money }}</div>
{%- endif -%}


.cyl-cart-item-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2px;
}
.cyl-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--tms-gold, #B8956A);
  background: #FFFFFF;
  height: 32px;
}
.cyl-qty button {
  appearance: none; background: transparent; border: 0;
  width: 30px; height: 100%;
  display: grid; place-items: center;
  color: var(--tms-brown, #3E2723);
  cursor: pointer;
  padding: 0;
}
.cyl-qty-value {
  width: 32px; text-align: center;
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 14px; font-weight: 500;
  color: var(--tms-brown, #3E2723);
  border-left: 1px solid var(--tms-gold, #B8956A);
  border-right: 1px solid var(--tms-gold, #B8956A);
  height: 100%;
  display: grid; place-items: center;
}
.cyl-cart-item-remove {
  appearance: none; background: transparent; border: 0;
  display: inline-flex; align-items: center; gap: 6px;
  color: #5C3F3A;
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 12.5px;
  padding: 8px 4px;
  cursor: pointer;
}
.cyl-cart-item-remove span {
  border-bottom: 1px solid #5C3F3A;
  padding-bottom: 1px;
}

/* ─── Empty state ─── */
.cyl-cart-empty {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 32px;
  text-align: center;
  gap: 8px;
}
.cyl-cart-empty-illustration { margin-bottom: 12px; opacity: 0.85; }
.cyl-cart-empty-title {
  margin: 0;
  font-family: var(--cyl-font-headline, "Merriweather", serif);
  font-size: 22px; font-weight: 400;
  color: var(--tms-brown, #3E2723);
  line-height: 1.25;
}
.cyl-cart-empty-body {
  margin: 0;
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 14px;
  color: #5C3F3A;
  line-height: 1.55;
  max-width: 260px;
}
.cyl-cart-empty-cta {
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--tms-brown, #3E2723);
  color: var(--tms-cream, #F5F1E8);
  font-family: var(--cyl-font-cta, "Montserrat", sans-serif);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

/* ─── Footer ─── */
.cyl-cart-foot {
  border-top: 1px solid var(--tms-gold, #B8956A);
  background: #FFFFFF;
}
.cyl-cart-trust {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(217, 196, 161, 0.5);
  background: #FBF8F1;
}
.cyl-cart-trust-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 11px;
  color: var(--tms-brown, #3E2723);
  letter-spacing: 0.01em;
}
.cyl-cart-trust-item svg { color: var(--tms-gold, #B8956A); flex-shrink: 0; }
.cyl-cart-trust-item strong { font-weight: 700; }

.cyl-cart-total {
  padding: 14px 24px 14px;
}
.cyl-cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.cyl-cart-total-label {
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 11.5px;
  color: #5C3F3A;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.cyl-cart-total-values { display: flex; align-items: baseline; gap: 10px; }
.cyl-cart-total-was {
  font-family: var(--cyl-font-headline, "Merriweather", serif);
  font-size: 14px;
  color: #5C3F3A;
  text-decoration: line-through;
}
.cyl-cart-total-now {
  font-family: var(--cyl-font-headline, "Merriweather", serif);
  font-size: 22px; font-weight: 700;
  color: var(--tms-brown, #3E2723);
  letter-spacing: -0.01em;
}
.cyl-cart-total-note {
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 11px;
  color: #5C3F3A;
  line-height: 1.5;
  margin-top: 4px;
}
.cyl-cart-checkout {
  width: 100%;
  height: 52px;
  margin-top: 12px;
  background: var(--tms-turquoise, #4DBDC8);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-family: var(--cyl-font-cta, "Montserrat", sans-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  transition: background 200ms ease;
}
.cyl-cart-checkout:hover { background: #3FA6B0; }
.cyl-cart-checkout-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #FFFFFF;
  opacity: 0.9;
}

/* Body lock when drawer open */
body.cyl-cart-open { overflow: hidden; }

/* Loading state during AJAX updates */
.cyl-cart-drawer.is-loading .cyl-cart-body,
.cyl-cart-drawer.is-loading .cyl-cart-foot {
  opacity: 0.6;
  pointer-events: none;
}
.cyl-cart-item-savings {
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 11px;
  color: #2E7D32;
  font-weight: 600;
  margin-top: 3px;
}
.cyl-cart-item-savings {
  font-family: var(--cyl-font-body, "Heebo", sans-serif);
  font-size: 11px;
  color: #2E7D32;
  font-weight: 600;
  margin-top: 3px;
}
