/** Shopify CDN: Minification failed

Line 267:20 Unexpected "<"

**/
/* ===================================================
   NOOKLY — Custom Design Upgrade for Helio Theme
   Paste this into: Shopify Admin > Online Store > Themes 
   > Edit code > Assets > find/create "custom.css"
   Then in "theme.liquid" (inside Edit code), add this
   line just before </head>:
   <link rel="stylesheet" href="{{ 'custom.css' | asset_url }}">
   =================================================== */

:root {
  --nookly-primary: #2f3e34;   /* deep sage green — change to your brand color */
  --nookly-accent: #d98e5f;    /* warm terracotta accent */
  --nookly-bg-soft: #f6f4f0;   /* warm off-white */
  --nookly-text: #1f1f1f;
  --nookly-radius: 10px;
}

/* ---- Global typography polish ---- */
body {
  color: var(--nookly-text);
  letter-spacing: 0.01em;
}

h1, h2, h3, .h1, .h2, .h3 {
  letter-spacing: -0.01em;
  font-weight: 600;
}

/* ---- Buttons ---- */
.button, button[type="submit"], .shopify-payment-button__button {
  background-color: var(--nookly-primary) !important;
  border-radius: var(--nookly-radius) !important;
  border: none !important;
  padding: 14px 28px !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.button:hover, button[type="submit"]:hover {
  background-color: var(--nookly-accent) !important;
  transform: translateY(-1px);
}

/* ---- Sale / badge styling ---- */
.badge, .price__badge-sale, [class*="badge--sale"] {
  background-color: var(--nookly-accent) !important;
  color: #fff !important;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---- Product cards ---- */
.card, .product-card, [class*="card-wrapper"] {
  border-radius: var(--nookly-radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.card:hover, .product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.price__regular, .price-item--regular {
  color: #8a8a8a;
  text-decoration: line-through;
}

.price__sale .price-item--sale, .price-item--sale {
  color: var(--nookly-accent);
  font-weight: 700;
}

/* ---- Hero section ---- */
.banner__content, .hero__content {
  background: rgba(255,255,255,0.85);
  border-radius: var(--nookly-radius);
  padding: 32px !important;
}

.banner__heading, .hero__heading {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  color: var(--nookly-primary);
}

/* ---- Trust bar (add the HTML block below via a Custom Liquid section) ---- */
.nookly-trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 18px 20px;
  background: var(--nookly-bg-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--nookly-primary);
}

.nookly-trust-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- Newsletter block ---- */
.newsletter, [class*="newsletter"] {
  background-color: var(--nookly-primary) !important;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0;
}

.newsletter input[type="email"] {
  border-radius: var(--nookly-radius) 0 0 var(--nookly-radius);
  border: none;
  padding: 14px 18px;
}

.newsletter button {
  border-radius: 0 var(--nookly-radius) var(--nookly-radius) 0 !important;
}

/* ---- Mobile tightening ---- */
@media (max-width: 749px) {
  .banner__content, .hero__content {
    padding: 20px !important;
  }
  .nookly-trust-bar {
    gap: 20px;
    font-size: 11px;
  }
}/* ===================================================
   NOOKLY — Part 3: Header, Footer & Collection Polish
   Add this to the BOTTOM of your existing assets/custom.css
   (same file as Part 1 and Part 2 — don't create a new file)
   =================================================== */

/* ---- Header ---- */
header, .header, [class*="header-wrapper"] {
  border-bottom: 1px solid #eee;
}

.header__heading-logo, .header__heading-link {
  letter-spacing: 0.02em;
}

.header a, .header__menu-item {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header__icon, [class*="header__icon"] {
  transition: opacity 0.15s ease;
}

.header__icon:hover {
  opacity: 0.6;
}

/* Cart count bubble */
.cart-count-bubble, [class*="cart-count"] {
  background-color: var(--nookly-accent) !important;
  color: #fff !important;
}

/* ---- Footer ---- */
.footer, footer {
  background-color: var(--nookly-bg-soft);
  border-top: 1px solid #ececec;
}

.footer h2, .footer h3, .footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nookly-primary);
}

.footer a {
  color: #555;
  font-size: 13px;
}

.footer a:hover {
  color: var(--nookly-primary);
}

.footer__copyright, [class*="copyright"] {
  font-size: 12px;
  color: #999;
}

/* ---- Collection page filters/sort ---- */
.facets, [class*="facets"] {
  border-radius: var(--nookly-radius);
}

.facets__summary, select.facets__sort {
  border-radius: var(--nookly-radius);
  border: 1px solid #e2e2e2;
  font-size: 13px;
}

.active-facets__button, [class*="filter-pill"] {
  background: var(--nookly-bg-soft);
  border-radius: 20px;
  font-size: 12px;
}

/* ---- Empty states (cart, search) ---- */
.cart__empty-text, .empty-state {
  color: #777;
  font-size: 15px;
}

/* ---- Product "New" / "Bestseller" style badges (manual use via product tags) ---- */
.nookly-tag-new {
  display: inline-block;
  background: var(--nookly-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
}

/* ---- General spacing rhythm between sections ---- */
.shopify-section + .shopify-section {
  margin-top: 0;
}

.page-width, .container {
  max-width: 1280px;
}

/* ---- Smooth scroll + selection color for a polished feel ---- */
html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--nookly-accent);
  color: #fff;
}

/* ---- Focus states for accessibility (looks intentional, not default browser blue) ---- */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--nookly-primary);
  outline-offset: 2px;
}
.cormorant-garamond-<uniquifier> {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}/* ---- Custom font (Playfair Display) ---- */
h1, h2, h3,
.nookly-video-hero__heading,
.nookly-tabs__heading,
.nookly-selective__heading,
.nookly-compare__heading,
.nookly-recently-viewed__heading,
.banner__heading, .hero__heading {
  font-family: 'Playfair Display', serif !important;
  font-weight: 600;
}