/** Shopify CDN: Minification failed

Line 668:2 Unexpected "}"

**/
:root {
  --black: #050505;
  --ink: #111111;
  --gold: #c9a14a;
  --gold2: #f4d47a;
  --cream: #f8f3e7;
  --muted: #8d8371;
  --line: rgba(201, 161, 74, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--cream);
  background: var(--black);
}

h1,
h2,
h3 {
  font-family: Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  padding: 8px;
  z-index: 99;
  background: #ffffff;
  color: #000000;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #100b02;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn.dark {
  border: 1px solid var(--line);
  background: #080808;
  color: var(--cream);
}

.promo {
  padding: 8px;
  background: var(--gold);
  color: #100b02;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.brand svg {
  width: 58px;
}

.brand span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 26px;
  letter-spacing: 0.12em;
}

.menu {
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icons {
  display: flex;
  gap: 16px;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 720px;
  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(201, 161, 74, 0.24),
      transparent 30%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.98),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.92)
    ),
    url(//cloud-9-fashion-fragrance-co.myshopify.com/cdn/shop/t/15/assets/banner-gold.svg?v=165225022901872516021783802391);
  background-position: center;
  background-size: cover;
}

.eyebrow {
  color: var(--gold2);
  font-family: Georgia, serif;
  font-size: 24px;
}

.hero h1 {
  max-width: 750px;
  margin: 12px 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.9;
}

.hero p {
  max-width: 520px;
  color: #e3dac8;
  font-size: 18px;
  line-height: 1.7;
}

.trust-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
}

.trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust b {
  display: block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.trust small {
  color: #cfc5b1;
}

.section {
  padding: 76px 0;
}

.section.light {
  background: #ffffff;
  color: #151515;
}

.center {
  text-align: center;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 58px);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.collection-card {
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  padding: 24px;
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.1)
    ),
    var(--img);
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.collection-card h3 {
  margin: 0;
  font-size: 30px;
}

.brands {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #030303, #15100a, #030303);
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 28px;
}

/* Collection product grid */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #eeeeee;
  background: #ffffff;
  color: #111111;
}

.product-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Prevent collection product images from stretching or cropping */

.product-card img,
.product-card__image {
  display: block;
  width: 100%;
  height: 300px;
  padding: 12px;
  background: #f6f3ee;
  object-fit: contain;
  object-position: center;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  margin: 0 0 8px;
}

.product-info p {
  margin: 5px 0;
}

.price {
  color: #8a6520;
  font-weight: 800;
}

.badge {
  position: absolute;
  padding: 6px 8px;
  background: #080808;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

/* Collection card variant and add-to-cart controls */

.product-card__form {
  padding: 0 16px 16px;
}

.product-card__form label,
.product-card__variant-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
}

.product-card__variant-select {
  width: 100%;
  min-height: 42px;
  margin-bottom: 10px;
  padding: 9px 10px;
  border: 1px solid #cccccc;
  background: #ffffff;
  color: #111111;
}

.product-card__add-button {
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.product-card__add-button:hover {
  background: #333333;
}

.product-card__add-button:disabled,
.product-card__add-button--sold-out {
  border-color: #cccccc;
  background: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}

/* Older product-page layout */

.product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 70px 0;
}

.product-media img {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
  object-fit: contain;
}

.product-form select,
.product-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 8px 0;
  padding: 14px;
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #111111;
}

.quantity {
  max-width: 120px;
}

/* Main product section */

.main-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: start;
  gap: 50px;
  padding: 70px 0;
}

.main-product__media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.main-product__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
}

.main-product__information {
  min-width: 0;
}

.main-product__vendor {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-product__price {
  margin: 16px 0 6px;
  color: #8a6520;
  font-size: 22px;
  font-weight: 700;
}

.main-product__compare-price {
  margin: 0 0 16px;
  opacity: 0.65;
}

.main-product__form {
  margin-top: 24px;
}

.main-product__label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 600;
}

.main-product__variant-select,
.main-product__quantity {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cccccc;
  background: #ffffff;
  color: #111111;
}

.main-product__quantity {
  max-width: 110px;
}

.main-product__add-button {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
}

.main-product__add-button:hover {
  background: #333333;
}

.main-product__add-button:disabled {
  border-color: #cccccc;
  background: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}

.main-product__description {
  margin-top: 30px;
}

/* Pages */

.page-card {
  padding: 44px;
  background: #ffffff;
  color: #111111;
  line-height: 1.8;
}

.policy-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 22px;
}

.policy-layout h1 {
  font-size: 54px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.logo-page svg {
  width: 100%;
  max-width: 460px;
}

/* Cart */

.cart-page {
  padding: 70px 0;
  background: #ffffff;
  color: #111111;
}

.cart-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
  padding: 14px;
  background: #ffffff;
  color: #111111;
}

.cart-row__image {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.cart-row__information input {
  max-width: 90px;
  padding: 8px;
}

.cart-row__remove {
  display: inline-block;
  margin-top: 8px;
  text-decoration: underline;
}

/* Footer */

.footer {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  background: #020202;
  color: #d8cfbd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer h3 {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.newsletter input {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
}

/* Mobile */

@media (max-width: 850px) {
  .menu {
    display: none;
  }

  .trust-grid,
  .grid-4,
  .product-grid,
  .footer-grid,
  .product-wrap,
  .contact-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .nav {
    height: 68px;
  }

  .brand span {
    font-size: 20px;
  }

  .product-card img,
  .product-card__image {
    height: 320px;
    padding: 10px;
    object-fit: contain;
  }

  .main-product__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }

  .main-product__media {
    width: 100%;
  }

  .main-product__image {
    width: auto;
    max-width: 100%;
    max-height: 500px;
  }

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

  .cart-row__price {
    grid-column: 2;
  }
}
  }
}
