/** Shopify CDN: Minification failed

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

**/
/* ===== KNOCKED OFF CO. — LUXURY THEME ===== */

/* Gold shimmer animation */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Import luxury fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500&display=swap");

/* Global overrides */
body {
  background-color: #0A0A0A;
  color: #F0EDE6;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Gold accent text */
.gold-text {
  background: linear-gradient(90deg, #C9A84C, #E8C96A, #C9A84C, #A8893C, #C9A84C);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}

/* Navigation */
.header__heading-link,
.header__menu-item {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

/* Header */
.header-wrapper {
  background: #0A0A0A;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

/* Announcement bar */
.announcement-bar {
  background: #C9A84C;
  color: #0A0A0A;
}

/* Buttons */
.button, .btn, button[type="submit"] {
  border-radius: 0 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: all 0.3s ease;
}

.button--primary {
  background: #C9A84C !important;
  color: #0A0A0A !important;
  border: 1px solid #C9A84C !important;
}

.button--primary:hover {
  background: transparent !important;
  color: #C9A84C !important;
  border-color: #C9A84C !important;
}

.button--secondary {
  background: transparent !important;
  color: #C9A84C !important;
  border: 1px solid #C9A84C !important;
}

/* Product cards */
.card-wrapper {
  transition: transform 0.3s ease;
}
.card-wrapper:hover {
  transform: translateY(-4px);
}

.card__heading {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.04em;
}

/* Price */
.price__regular, .price__sale {
  color: #C9A84C;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.06em;
}

/* Collection page */
.collection__title {
  font-family: "Playfair Display", serif;
}

/* Footer */
.footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer__heading {
  color: #C9A84C;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: "Jost", sans-serif;
}

/* Horizontal rule / dividers */
hr, .section-divider {
  border-color: rgba(201, 168, 76, 0.2);
}

/* Links */
a {
  color: inherit;
  transition: color 0.2s ease;
}
a:hover {
  color: #C9A84C;
}

/* Input fields */
.field__input, input, textarea, select {
  background: #111111 !important;
  border-color: rgba(201, 168, 76, 0.3) !important;
  color: #F0EDE6 !important;
  border-radius: 0 !important;
}

.field__input:focus, input:focus {
  border-color: #C9A84C !important;
  box-shadow: 0 0 0 1px #C9A84C !important;
}

/* Badge / sale tags */
.badge {
  border-radius: 0 !important;
  letter-spacing: 0.1em;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

/* Scrollbar luxury */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #C9A84C; }

/* ===== END KNOCKED OFF CO. ===== */