/** Shopify CDN: Minification failed

Line 23:0 All "@import" rules must come first

**/
/* =========================================================
   ARKAI – MINIMALIST ELEGANT
   Black background (#0D0D0D) + Gold accents (#D4AF37)
   Shopify 2.0 safe – single-file drop-in
   ========================================================= */

/* 1.  CSS VARIABLES (easy to tweak) */
:root {
  --black: #0D0D0D;
  --gold:  #D4AF37;   /* change this hex for any other shade */
  --white: #F5F5F5;
  --gray:  #A0A0A0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* 2.  GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500&display=swap');

/* 3.  GLOBAL STYLES */
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
}

h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* 4.  LINKS & BUTTONS */
a,
.link {
  color: var(--gold);
  transition: opacity 0.25s;
}
a:hover,
.link:hover {
  opacity: 0.7;
}

button,
.button,
.btn,
.shopify-payment-button__button--unbranded {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 0;
  transition: background 0.3s, color 0.3s;
}
button:hover,
.button:hover,
.btn:hover,
.shopify-payment-button__button--unbranded:hover {
  background: var(--gold);
  color: var(--black);
}

/* 5.  HEADER & FOOTER */
.header-wrapper,
.footer {
  background: var(--black);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: none;
}

/* 6.  CARDS & GRID */
.card,
.card-wrapper {
  background: #111;
  border: 1px solid #222;
  transition: border-color 0.3s;
}
.card:hover,
.card-wrapper:hover {
  border-color: var(--gold);
}

/* 7.  ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--black);
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

/* 8.  UTILITY CLASSES */
.text-gold   { color: var(--gold) !important; }
.bg-black    { background: var(--black) !important; }
.border-gold { border-color: var(--gold) !important; }