/** Shopify CDN: Minification failed

Line 19:48 Expected identifier but found whitespace
Line 113:0 Unexpected "}"
Line 735:0 Unexpected "}"

**/
.shopify-section,
main,
.main-content,
#MainContent,
[role="main"],
.page-width,
.container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #0A0A0A !important;
}→ Add this to after-trump-kit.css at the top:
     body { background: #0A0A0A !important; color: #F9F6F0 !important; }
     /*
  ============================================================
  ASSET FILE: after-trump-kit.css
  
  HOW TO USE:
  1. In Shopify Admin → Online Store → Themes → Edit Code
  2. Under "Assets", click "Add a new asset"
  3. Choose "Create a blank file", name it "after-trump-kit.css"
  4. Paste this file's contents in and Save
  ============================================================
*/

/* ── CSS VARIABLES ── */
.atk-page-wrapper,
.atk-announcement,
.atk-hero,
.atk-features-bar,
.atk-countdown-section,
.atk-details-section,
.atk-reviews-section,
.atk-cta-section {
  --atk-gold: #C9A84C;
  --atk-gold-light: #E8C96A;
  --atk-gold-pale: #F5E6B8;
  --atk-black: #0A0A0A;
  --atk-off-white: #F9F6F0;
}

/* Force dark background on the page body for this template */
body.template-page--after-trump-kit {
  background: #0A0A0A !important;
  color: #F9F6F0 !important;
}

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

/* ── HERO ── */
.atk-hero {
min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
}

.atk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.atk-hero-media {
  position: relative;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 600px;
}

.atk-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.atk-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  position: relative;
  z-index: 1;
  padding: 40px;
}
}

/* ── PRODUCT MOCKUP FALLBACK ── */
.atk-product-mockup {
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.atk-mockup-box {
  width: 300px;
  height: 360px;
  background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(201,168,76,0.2);
  animation: atk-float 4s ease-in-out infinite;
}

@keyframes atk-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.atk-mockup-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: #C9A84C;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.atk-strikethrough {
  text-decoration: line-through;
  text-decoration-color: #F9F6F0;
  text-decoration-thickness: 2px;
}

.atk-mockup-divider {
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}

.atk-mockup-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: #F9F6F0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.atk-mockup-items { display: flex; gap: 12px; margin-top: 10px; }

.atk-item-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.4));
  animation: atk-bounce 2s ease-in-out infinite;
}
.atk-item-icon:nth-child(2) { animation-delay: 0.3s; }
.atk-item-icon:nth-child(3) { animation-delay: 0.6s; }

@keyframes atk-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── CONFETTI ── */
.atk-confetti-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.atk-confetti-piece {
  position: absolute;
  width: 6px;
  height: 6px;
  opacity: 0;
  animation: atk-confetti-fall 3s ease-in infinite;
}

@keyframes atk-confetti-fall {
  0% { opacity: 1; transform: translateY(-20px) rotate(0deg); }
  100% { opacity: 0; transform: translateY(420px) rotate(720deg); }
}

/* ── PRODUCT INFO ── */
.atk-hero-info {
  padding: 30px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  background: #0A0A0A;
}

.atk-product-tag {
  display: inline-block;
  border: 1px solid #C9A84C;
  color: #C9A84C;
  padding: 6px 16px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
  font-family: 'Montserrat', sans-serif;
}

.atk-product-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #F9F6F0;
  margin: 0;
}

.atk-gold { color: #C9A84C; }

.atk-crossed {
  text-decoration: line-through;
  text-decoration-color: #F9F6F0;
  text-decoration-thickness: 3px;
}

.atk-title-sub {
  font-size: 0.6em;
  font-weight: 400;
  color: rgba(249,246,240,0.5);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.atk-product-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(249,246,240,0.6);
  letter-spacing: 0.05em;
  margin: 0;
}

.atk-product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.atk-price-main {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #C9A84C;
}

.atk-price-note {
  font-size: 12px;
  color: rgba(249,246,240,0.5);
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
}

.atk-product-description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(249,246,240,0.7);
  max-width: 440px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.atk-kit-includes {
  background: rgba(201,168,76,0.05);
  border-left: 2px solid #C9A84C;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.atk-kit-includes-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9A84C;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.atk-kit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(249,246,240,0.85);
  letter-spacing: 0.05em;
  font-family: 'Montserrat', sans-serif;
}

.atk-kit-dot {
  width: 6px;
  height: 6px;
  background: #C9A84C;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── ADD TO CART ── */
.atk-product-form { display: contents; }

.atk-qty-atc {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

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

.atk-qty-btn {
  width: 44px;
  height: 100%;
  background: none;
  border: none;
  color: #C9A84C;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
}

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

.atk-qty-num {
  width: 44px;
  text-align: center;
  font-size: 16px;
  color: #F9F6F0;
  font-family: 'Playfair Display', serif;
}

.atk-atc-btn {
  flex: 1;
  height: 52px;
  background: #C9A84C;
  color: #0A0A0A;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  min-width: 160px;
}

.atk-atc-btn:hover { background: #E8C96A; transform: translateY(-1px); }
.atk-atc-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.atk-buy-now-btn {
  display: block;
  width: 100%;
  height: 52px;
  background: transparent;
  color: #F9F6F0;
  border: 1px solid rgba(249,246,240,0.3);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  text-align: center;
  line-height: 52px;
}

.atk-buy-now-btn:hover { border-color: #C9A84C; color: #C9A84C; }

.atk-trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.atk-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(249,246,240,0.5);
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
}

.atk-trust-icon { color: #C9A84C; font-size: 14px; }

/* ── FEATURES BAR ── */
.atk-features-bar {
  background: rgba(201,168,76,0.08);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px 60px;
  gap: 20px;
  background-color: #0A0A0A;
}

.atk-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.atk-feature-icon { font-size: 24px; }

.atk-feature-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.6);
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

/* ── COUNTDOWN ── */
.atk-countdown-section {
  padding: 80px 60px;
  background: #0A0A0A;
  background-image: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, transparent 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.atk-countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.atk-countdown-eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #C9A84C;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
}

.atk-countdown-eyebrow::before,
.atk-countdown-eyebrow::after {
  content: '';
  width: 60px;
  height: 1px;
  background: rgba(201,168,76,0.4);
}

.atk-countdown-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  color: #F9F6F0;
}

.atk-countdown-subtext {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(249,246,240,0.5);
  margin-bottom: 52px;
}

.atk-countdown-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.atk-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.atk-countdown-box {
  width: 110px;
  height: 110px;
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201,168,76,0.15);
}

.atk-countdown-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: rgba(201,168,76,0.04);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.atk-countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: #C9A84C;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.15s ease, opacity 0.15s ease;
  text-shadow: 0 0 30px rgba(201,168,76,0.3);
}

.atk-countdown-number.atk-flip {
  transform: translateY(-6px);
  opacity: 0.6;
}

.atk-countdown-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.45);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.atk-countdown-sep {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: rgba(201,168,76,0.4);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1;
}

.atk-countdown-date-note {
  margin-top: 40px;
  font-size: 12px;
  color: rgba(249,246,240,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.atk-countdown-date-note span { color: rgba(201,168,76,0.6); }

/* ── DETAILS ── */
.atk-details-section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: #0A0A0A;
}

.atk-section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #C9A84C;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
}

.atk-section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.3);
}

.atk-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #F9F6F0;
}

.atk-section-body {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(249,246,240,0.65);
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.atk-items-grid { display: flex; flex-direction: column; gap: 20px; }

.atk-item-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.atk-item-card::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-item-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.05); }
.atk-item-card:hover::before { transform: scaleY(1); }

.atk-item-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.atk-item-content { flex: 1; }

.atk-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #F9F6F0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.atk-item-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(249,246,240,0.55);
  font-family: 'Montserrat', sans-serif;
}

/* ── REVIEWS ── */
.atk-reviews-section {
  padding: 80px 60px;
  background: #0A0A0A !important;
  background-color: #0A0A0A !important;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.atk-reviews-section * {
  color: inherit;
}

.atk-review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(249,246,240,0.75) !important;
  margin-bottom: 20px;
}
}

.atk-reviews-header { text-align: center; margin-bottom: 60px; }

.atk-stars {
  color: #C9A84C;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.atk-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.atk-review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 28px;
}

.atk-review-quote {
  font-size: 48px;
  color: rgba(201,168,76,0.2);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: -10px;
}

.atk-review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(249,246,240,0.75);
  margin-bottom: 20px;
}

.atk-review-author {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.atk-review-stars { color: #C9A84C; font-size: 12px; margin-bottom: 12px; }

/* ── CTA ── */
.atk-cta-section {
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
}

.atk-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.atk-cta-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(249,246,240,0.55);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.atk-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.atk-cta-primary {
  background: #C9A84C;
  color: #0A0A0A;
  border: none;
  padding: 18px 52px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
}

.atk-cta-primary:hover { background: #E8C96A; transform: translateY(-2px); color: #0A0A0A; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .atk-hero { grid-template-columns: 1fr; }
  .atk-hero-media { min-height: 400px; }
  .atk-hero-info { padding: 48px 24px; }
  .atk-features-bar { grid-template-columns: repeat(2, 1fr); padding: 32px 24px; }
  .atk-details-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .atk-reviews-grid { grid-template-columns: 1fr; }
  .atk-reviews-section { padding: 60px 24px; }
  .atk-cta-section { padding: 60px 24px; }
  .atk-countdown-section { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .atk-countdown-box { width: 72px; height: 72px; }
  .atk-countdown-number { font-size: 34px; }
  .atk-countdown-sep { font-size: 28px; }
}
product-recommendations,
.product-recommendations {
  display: none !important;
}
.atk-two-images {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: stretch;
}

.atk-two-images img {
  width: 50%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  padding: 12px;
  background: #111;
  border-right: 1px solid rgba(201,168,76,0.15);

}

.atk-two-images img:last-child {
  border-right: none;
}
.atk-two-images {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.atk-two-images img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #111;
  border-right: none;
  border-bottom: 2px solid rgba(201,168,76,0.3);
}

.atk-two-images img:last-child {
  border-bottom: none;
}

.atk-hero-media {
  position: relative;
  min-height: unset;
}
.atk-two-images {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #111;
}

.atk-two-images img {
  width: 100%;
  height: 50%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  background: #111;
  border-right: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.atk-two-images img:last-child {
  border-bottom: none;
}
.atk-two-images img {
  width: 70%;
  height: 50%;
  object-fit: cover;
  object-position: center top;
  padding: 0;
  background: #111;
  border-right: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.atk-two-images img:first-child {
  object-position: center center;
}

.atk-two-images img:last-child {
  object-position: center top;
  border-bottom: none;
}
.atk-hero-media {
  position: relative;
  min-height: unset !important;
  height: auto !important;
  align-self: stretch;
}

.atk-two-images {
  position: relative !important;
  inset: unset !important;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.atk-two-images img {
  width: 100% !important;
  height: 50% !important;
  min-height: 250px;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  border-right: none !important;
}

.atk-two-images img:last-child {
  border-bottom: none !important;
}

.atk-hero {
  align-items: stretch !important;
}
.atk-two-images img {
  width: 100% !important;
  height: auto !important;
  min-height: unset !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 8px !important;
  background: #111 !important;
  border-bottom: 1px solid rgba(201,168,76,0.2) !important;
}

.atk-hero-media {
  min-height: unset !important;
  height: auto !important;
}

.atk-two-images {
  position: relative !important;
  inset: unset !important;
  height: auto !important;
}