/** Shopify CDN: Minification failed

Line 12:0 Unexpected "{"
Line 12:1 Unexpected "{"
Line 12:3 Expected identifier but found "'theme-variables.css'"

**/
/* ========================================================
   NANHE SITARAY — Premium Luxury Overhaul (theme-wide skin)
   ======================================================== */

{{ 'theme-variables.css' | asset_url | stylesheet_tag }}

body {
  background: var(--ns-ivory);
  color: var(--ns-charcoal);
  font-family: var(--ns-font-body);
}

h1, h2, h3, .h1, .h2, .h3,
.collection-hero__title,
.section-title {
  font-family: var(--ns-font-display);
  font-weight: 600;
  letter-spacing: 0.005em;
}

.card__heading {
  font-family: var(--ns-font-body);
  font-weight: 500;
}

.header__heading-link .h2,
.header__heading-link {
  white-space: nowrap;
  min-width: max-content;
  overflow: visible;
}
.header__heading-link .h2 {
  font-size: clamp(1rem, 5vw, 1.5rem);
}

@media (max-width: 749px) {
  .header {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .header__icons {
    flex-shrink: 0;
  }
}

.card__content,
.card__information,
.product-card-wrapper,
.card-wrapper,
.header__inline-menu,
.header__menu-item,
.list-menu__item,
.footer-block,
.footer-block__heading,
.disclosure__button {
  min-width: 0;
}

.announcement-bar-section,
.announcement-bar-section .utility-bar,
.announcement-bar-section slideshow-component,
.announcement-bar-section .slideshow,
.announcement-bar-section [class*="slider"],
.announcement-bar-section [class*="slideshow"],
.announcement-bar-section ul,
.announcement-bar-section li {
  min-height: 0 !important;
  height: auto !important;
  max-height: 34px !important;
}
.announcement-bar-section .utility-bar {
  background: #000000 !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.announcement-bar-section .announcement-bar__message,
.announcement-bar-section .announcement-bar__message span {
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.2 !important;
  margin: 0 !important;
}
.announcement-bar-section .announcement-bar__link:hover .announcement-bar__message {
  color: #E8E8E8 !important;
}

.banner { background: var(--ns-stone); }
.banner__content { padding: var(--ns-space-lg) var(--ns-space-xl); }
.banner__heading { font-size: var(--ns-fs-h1); line-height: 1.05; }

.product-form .button--primary,
.newsletter-form .button,
.hero-buttons .button {
  border: 1px solid var(--ns-charcoal);
  background: var(--ns-charcoal);
  color: var(--ns-ivory);
  letter-spacing: var(--ns-tracking-label);
  text-transform: uppercase;
  font-family: var(--ns-font-body);
  transition: background var(--ns-duration-fast) var(--ns-ease),
              border-color var(--ns-duration-fast) var(--ns-ease);
}
.product-form .button--primary:hover,
.newsletter-form .button:hover,
.hero-buttons .button:hover {
  background: var(--ns-accent);
  border-color: var(--ns-accent);
}

.card { border-radius: var(--ns-radius); box-shadow: none; }
.card__media img,
.card__inner img {
  transition: transform var(--ns-duration-zoom) var(--ns-ease);
}
.card:hover .card__media img,
.card:hover .card__inner img {
  transform: scale(1.05);
}
.card__heading { font-size: var(--ns-fs-h3); font-weight: 600; }
.price { font-family: var(--ns-font-body); color: var(--ns-charcoal); }

.card__badge,
.badge {
  background: #C9A15D !important;
  color: #2B2420 !important;
  border: none !important;
  border-radius: 20px !important;
  font-family: var(--ns-font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  padding: 5px 12px !important;
}

cart-drawer .drawer__inner,
.cart-drawer {
  background: var(--ns-ivory) !important;
  box-shadow: -8px 0 30px rgba(34,32,29,0.08);
  transition: transform var(--ns-duration-slow) var(--ns-ease);
}
.cart-drawer__heading,
.drawer__heading {
  font-family: var(--ns-font-display);
  font-weight: 600;
}
.cart-item__name { font-family: var(--ns-font-body); color: var(--ns-charcoal); }
.cart-drawer .button,
.cart-drawer .button--primary {
  background: var(--ns-charcoal);
}
.cart-drawer .button:hover {
  background: var(--ns-accent);
}

input, select, textarea, .field__input {
  border-radius: var(--ns-radius) !important;
  border-color: var(--ns-border) !important;
  font-family: var(--ns-font-body);
}
input:focus, select:focus, textarea:focus, .field__input:focus {
  border-color: var(--ns-charcoal) !important;
  box-shadow: none !important;
}

.sticky-atc-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border-top: 1px solid var(--ns-border);
  box-shadow: 0 -8px 24px rgba(26,26,26,0.08);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 300ms var(--ns-ease), opacity 300ms var(--ns-ease);
}
.sticky-atc-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 750px) {
  .sticky-atc-bar { display: none; }
}
.sticky-atc-bar__info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.sticky-atc-bar__title {
  font-family: var(--ns-font-body);
  font-size: 0.7rem;
  color: var(--ns-charcoal-70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-atc-bar__price {
  font-family: var(--ns-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ns-charcoal);
}
.sticky-atc-bar__button {
  flex-shrink: 0;
  background: var(--ns-charcoal);
  color: #fff;
  border: none;
  font-family: var(--ns-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 12px 22px;
  min-height: 44px;
  border-radius: 4px;
}
.sticky-atc-bar__button:hover { background: var(--ns-accent); }
.sticky-atc-bar__button[disabled] { background: #ccc; }

.ns-promo-banner__img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 750px) {
  .ns-promo-banner__img { aspect-ratio: 21 / 9; }
}

product-info .product__title,
.product__title h1 {
  font-family: var(--ns-font-display);
  font-weight: 600;
  line-height: 1.15;
}

product-info .price--on-sale .price-item--regular {
  color: var(--ns-charcoal-70);
  font-weight: 400;
}

.ns-pdp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ns-border);
}
.ns-pdp-trust__item {
  font-family: var(--ns-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ns-charcoal-70);
  white-space: nowrap;
}

/* ============================================================
   LAMTAR-MATCH OVERHAUL — exact reference-site parity pass
   ============================================================ */

.header-wrapper,
.header {
  background-color: #FFFFFF !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid var(--ns-border);
}
.shopify-section-header-sticky,
.section-header {
  position: sticky !important;
  top: 0;
  z-index: 50;
  background: #FFFFFF !important;
}
.header__heading-link .h2 {
  color: var(--ns-charcoal) !important;
  font-weight: 700;
}
.header__inline-menu .header__menu-item {
  font-family: var(--ns-font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ns-cat__grid {
  gap: 16px !important;
}
.ns-cat__tile,
.card,
.card__inner {
  border-radius: 20px !important;
  overflow: hidden;
}
.ns-cat__img-wrap img,
.card__media img {
  border-radius: 20px;
  transition: transform 0.4s ease;
}
.ns-cat__tile:hover img,
.card:hover .card__media img {
  transform: scale(1.04);
}
.ns-cat__title {
  color: var(--ns-charcoal) !important;
  text-shadow: none !important;
  background: none !important;
  font-family: var(--ns-font-body);
  font-weight: 700;
  text-align: center;
  position: static !important;
  padding-top: 8px !important;
}

product-info .price {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
}
product-info .price--on-sale .price-item--sale {
  color: #E31E24 !important;
  font-weight: 800;
}
variant-selects .product-form__input .button,
.product-form__input input[type="radio"] + label {
  border-radius: 24px !important;
  border: 1.5px solid var(--ns-border) !important;
  font-weight: 600;
}
variant-selects .product-form__input input:checked + label {
  border-color: var(--ns-charcoal) !important;
  background: var(--ns-charcoal) !important;
  color: #fff !important;
}
.product-form__submit.button--primary,
.product-form__submit.button {
  background: #C9A15D !important;
  color: #2B2420 !important;
  border: none !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  min-height: 54px;
  border-radius: 6px;
}
.product-form__submit.button--primary:hover,
.product-form__submit.button:hover {
  background: #B8904E !important;
}
.shopify-payment-button__button {
  border-radius: 6px !important;
}
.product__media-wrapper img,
.product__media img {
  border-radius: 8px;
}

/* Quantity stepper + Add to Cart on ONE row (Lamtar layout), instead of
   Dawn's default stacked rows. Buy it now stays full-width below. */
product-info .product-form__buttons {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
product-info quantity-input.quantity {
  flex-shrink: 0;
  width: auto;
  border-radius: 6px;
  border: 1.5px solid var(--ns-border);
}
product-info .product-form__submit.button--primary {
  flex: 1;
}
product-info .product-form__buttons .shopify-payment-button {
  width: 100%;
  margin-top: 10px;
}
product-info .shopify-payment-button__button--unbranded {
  background: #C9A15D !important;
  color: #2B2420 !important;
  font-weight: 800 !important;
  min-height: 54px;
}

.footer,
.footer__content-bottom,
.color-scheme-navy-footer,
.color-navy-footer {
  background: #141210 !important;
}
.footer-block__heading {
  font-family: var(--ns-font-display);
  font-weight: 600;
  color: #FFFFFF !important;
  margin-bottom: 14px;
}
.footer-block .list-menu__item,
.footer-block a {
  color: rgba(255,255,255,0.82) !important;
  font-family: var(--ns-font-body);
  font-size: 0.85rem;
  line-height: 2;
}
.footer-block a:hover { color: #C9A15D !important; }
.footer__copyright,
.footer__localization {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.75rem;
}

.related-products .title,
.related-products__heading,
section[id^="related-products"] .title {
  font-family: var(--ns-font-display) !important;
  font-weight: 500 !important;
  font-style: italic;
  font-size: 2rem !important;
  text-align: left !important;
  color: var(--ns-charcoal);
}

@media (max-width: 749px) {
  .ns-cat__tile, .card, .card__inner { border-radius: 14px !important; }
  product-info .price { font-size: 1.15rem !important; }
  .footer-block { padding-bottom: 24px; }
  .related-products .title,
  .related-products__heading { font-size: 1.5rem !important; }
  product-info .product-form__buttons { flex-wrap: wrap; }
}
