/** Shopify CDN: Minification failed

Line 654:1 Expected "}" to go with "{"

**/
/*
  ============================================================
  ASSET FILE: after-trump-cart.css

  HOW TO USE:
  1. Shopify Admin → Online Store → Themes → Edit Code
  2. Assets → Add new asset → blank file
  3. Name it exactly: after-trump-cart.css
  4. Paste this content and Save
  ============================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── FORCE DARK BACKGROUND ── */
body,
html,
.cart-page,
main,
#MainContent,
[role="main"],
.shopify-section,
.section,
.page-width {
  background: #0A0A0A !important;
  background-color: #0A0A0A !important;
  color: #F9F6F0 !important;
}

/* ── ANNOUNCEMENT BAR ── */
.cart-announcement {
  background: #C9A84C;
  color: #0A0A0A;
  text-align: center;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ── CART WRAPPER ── */
.atk-cart-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #0A0A0A;
  min-height: 80vh;
}

/* ── CART HEADER ── */
.atk-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.atk-cart-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #F9F6F0;
  letter-spacing: 0.02em;
}

.atk-cart-title span {
  color: #C9A84C;
}

.atk-cart-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.4);
}

/* ── CART LAYOUT ── */
.atk-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ── CART ITEMS ── */
.atk-cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.atk-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 24px;
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.atk-cart-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #C9A84C;
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: bottom;
}

.atk-cart-item:hover {
  border-color: rgba(201,168,76,0.4);
}

.atk-cart-item:hover::before {
  transform: scaleY(1);
}

.atk-item-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #111;
  border: 1px solid rgba(201,168,76,0.15);
  padding: 8px;
}

.atk-item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.atk-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #F9F6F0;
  letter-spacing: 0.02em;
}

.atk-item-variant {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.35);
}

.atk-item-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.atk-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(201,168,76,0.3);
  height: 38px;
}

.atk-qty-btn {
  width: 36px;
  height: 100%;
  background: none;
  border: none;
  color: #C9A84C;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atk-qty-btn:hover {
  background: rgba(201,168,76,0.1);
}

.atk-qty-input {
  width: 40px;
  height: 100%;
  background: none;
  border: none;
  border-left: 1px solid rgba(201,168,76,0.2);
  border-right: 1px solid rgba(201,168,76,0.2);
  color: #F9F6F0;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
}

.atk-remove-btn {
  background: none;
  border: none;
  color: rgba(249,246,240,0.25);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.atk-remove-btn:hover {
  color: rgba(201,168,76,0.7);
}

.atk-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #C9A84C;
  text-align: right;
  white-space: nowrap;
}

/* ── CONTINUE SHOPPING ── */
.atk-continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(249,246,240,0.4);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}

.atk-continue:hover {
  color: #C9A84C;
}

/* ── ORDER SUMMARY ── */
.atk-order-summary {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 36px;
  position: sticky;
  top: 100px;
}

.atk-summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #F9F6F0;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.atk-summary-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.2);
}

.atk-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.atk-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(249,246,240,0.6);
  letter-spacing: 0.05em;
}

.atk-summary-row.shipping {
  color: #4CAF50;
}

.atk-summary-divider {
  height: 1px;
  background: rgba(201,168,76,0.15);
  margin: 8px 0;
}

.atk-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.atk-total-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.5);
}

.atk-total-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: #C9A84C;
}

.atk-tax-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: rgba(249,246,240,0.3);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  text-align: right;
}

/* ── DISCOUNT CODE ── */
.atk-discount {
  margin-bottom: 24px;
}

.atk-discount-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.4);
  margin-bottom: 10px;
  display: block;
}

.atk-discount-row {
  display: flex;
  gap: 0;
}

.atk-discount-input {
  flex: 1;
  height: 44px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.25);
  border-right: none;
  color: #F9F6F0;
  padding: 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  outline: none;
}

.atk-discount-input::placeholder {
  color: rgba(249,246,240,0.2);
}

.atk-discount-input:focus {
  border-color: rgba(201,168,76,0.5);
}

.atk-discount-apply {
  height: 44px;
  padding: 0 20px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: #C9A84C;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.atk-discount-apply:hover {
  background: rgba(201,168,76,0.25);
}

/* ── CHECKOUT BUTTON ── */
.atk-checkout-btn {
  display: block;
  width: 100%;
  height: 58px;
  background: #C9A84C;
  color: #0A0A0A;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 12px;
  text-decoration: none;
  text-align: center;
  line-height: 58px;
}

.atk-checkout-btn:hover {
  background: #E8C96A;
  transform: translateY(-1px);
  color: #0A0A0A;
}

/* ── TRUST BADGES ── */
.atk-trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.1);
  flex-wrap: wrap;
}

.atk-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.35);
}

.atk-badge-icon {
  font-size: 18px;
}

/* ── EMPTY CART ── */
.atk-empty-cart {
  text-align: center;
  padding: 100px 40px;
  grid-column: 1 / -1;
}

.atk-empty-icon {
  font-size: 64px;
  margin-bottom: 24px;
  opacity: 0.4;
}

.atk-empty-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #F9F6F0;
  margin-bottom: 12px;
}

.atk-empty-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(249,246,240,0.4);
  margin-bottom: 40px;
}

.atk-shop-btn {
  display: inline-block;
  background: #C9A84C;
  color: #0A0A0A;
  padding: 16px 48px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.atk-shop-btn:hover {
  background: #E8C96A;
  color: #0A0A0A;
}

/* ── OVERRIDE THEME CART STYLES ── */
.cart-page__title,
.cart__title,
h1.cart-page__title {
  font-family: 'Playfair Display', serif !important;
  color: #F9F6F0 !important;
}

.cart-item__name,
.cart-item__title {
  font-family: 'Playfair Display', sans-serif !important;
  color: #F9F6F0 !important;
}

.cart-item__price,
.price {
  color: #C9A84C !important;
  font-family: 'Playfair Display', serif !important;
}

.cart__checkout-button,
button[name="checkout"],
input[name="checkout"] {
  background: #C9A84C !important;
  background-color: #C9A84C !important;
  color: #0A0A0A !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  border: none !important;
  border-radius: 0 !important;
  transition: background 0.2s !important;
}

.cart__checkout-button:hover,
button[name="checkout"]:hover {
  background: #E8C96A !important;
  background-color: #E8C96A !important;
}

.totals__subtotal,
.totals__total-value {
  color: #C9A84C !important;
  font-family: 'Playfair Display', serif !important;
}

.cart-item__quantity-wrapper,
.quantity {
  border-color: rgba(201,168,76,0.3) !important;
}

.quantity__button {
  color: #C9A84C !important;
}

.cart__note,
.cart-note {
  background: rgba(255,255,255,0.03) !important;
  border-color: rgba(201,168,76,0.2) !important;
  color: #F9F6F0 !important;
}

/* Remove "You may also like" */
product-recommendations,
.product-recommendations,
.cart__recommendations {
  display: none !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .atk-cart-layout {
    grid-template-columns: 1fr;
  }

  .atk-order-summary {
    position: static;
  }

  .atk-cart-item {
    grid-template-columns: 80px 1fr;
  }

  .atk-item-price {
    grid-column: 2;
    text-align: left;
  }

  .atk-cart-wrapper {
    padding: 32px 20px;
  }
}
/* ── FORCE ALL TEXT VISIBLE ── */
.cart-item__name,
.cart-item__title,
.cart-item a,
.cart__title,
h1, h2, h3,
.totals__subtotal-label,
.totals__total,
.cart-item__details,
.cart-item__price-wrapper,
label,
p, span, td, th,
.cart__note-label {
  color: #F9F6F0 !important;
}

/* ── CART TITLE ── */
.cart__title-heading,
h1.cart__title {
  font-family: 'Playfair Display', serif !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  color: #F9F6F0 !important;
  letter-spacing: 0.05em !important;
}

/* ── CART ITEM ROW ── */
.cart-item {
  bord
  product-recommendations,
.product-recommendations,
.complementary-products,
.cart__recommendations,
.recommendations,
[data-section-type="product-recommendations"],
.cart-recommendations {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}
.resource-list,
.resource-list--grid,
.text-block--AUnJwbk42eFBmTXRnY__product_list_text_fifeh4 {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
}
/* Hide You May Also Like - targets the h3 and its entire parent section */
h3:has(+ div .resource-list),
.shopify-section:has(.resource-list),
product-recommendations,
.product-recommendations {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
}