/** Shopify CDN: Minification failed

Line 603:27 Unexpected "*"
Line 614:27 Unexpected "*"
Line 625:27 Unexpected "*"
Line 637:27 Unexpected "*"
Line 645:27 Unexpected "*"
Line 654:27 Unexpected "*"
Line 663:29 Unexpected "*"
Line 666:29 Unexpected "*"
Line 674:0 Unexpected "<"
Line 686:27 Unexpected "*"
... and 8 more hidden warnings

**/
/* ============================= */
/* UrbanNestCo – Custom Styles   */
/* ============================= */

/* --- Hero Section --- */
.un-hero {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.un-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.un-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.un-hero__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.un-hero__sub {
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.un-hero a.btn {
  background: #111;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.un-hero a.btn:hover {
  background: #e63946;
  transform: translateY(-2px);
}

/* --- USP Cards --- */
.un-usp {
  background: #fff;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.un-usp:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.un-usp__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.un-usp__sub {
  font-size: 13px;
  opacity: 0.7;
}

/* --- Section Headings --- */
.un-heading {
  font-size: 32px;
  text-align: center;
  margin: 40px 0 20px;
  font-weight: 700;
  position: relative;
}
.un-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e63946;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* --- Collection Tiles --- */
.un-collection {
  display: block;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform .3s, box-shadow .3s;
}
.un-collection img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s;
}
.un-collection:hover img {
  transform: scale(1.05);
}
.un-collection:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.un-collection__title {
  display: block;
  padding: 12px;
  font-weight: 600;
  font-size: 16px;
}

/* --- Product Cards (Bestsellers) --- */
.un-product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  transition: transform .3s, box-shadow .3s;
}
.un-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.un-product-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
}
.un-product-card__price {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
.un-product-card button {
  width: 100%;
  padding: 10px 16px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  margin-top: 8px;
  transition: .3s;
}
.un-product-card button:hover {
  background: #e63946;
}

/* --- About Section --- */
.un-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}
.un-about img {
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.un-about h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}
.un-about p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* --- Newsletter --- */
.un-newsletter {
  background: #111;
  color: #fff;
  border-radius: 16px;
  margin: 40px 0;
  padding: 30px 20px;
}
.un-newsletter__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.un-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
}
.un-newsletter button {
  background: #e63946;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}
.un-newsletter button:hover {
  background: #d62828;
}

/* --- Sticky Add-to-Cart --- */
.un-satc {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -8px 24px rgba(0,0,0,.06);
}
.un-satc__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.un-satc__media img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
}
.un-satc__title {
  font-weight: 600;
  font-size: 14px;
}
.un-satc__price {
  font-size: 13px;
  opacity: .8;
}
.un-satc__form { margin-left: auto; }
.un-satc__btn {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  transition: .3s;
}
.un-satc__btn:hover {
  background: #e63946;
}

/* --- Cart Perks --- */
.un-cart-perks {
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
}
.un-progress__text {
  font-size: 13px;
  margin-bottom: 6px;
}
.un-progress__bar {
  height: 8px;
  background: #f0f0f0;
  border-radius: 999px;
  overflow: hidden;
}
.un-progress__bar span {
  display: block;
  height: 100%;
  background: #111;
}
.un-perks {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.un-perks li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.un-perks svg {
  width: 16px;
  height: 16px;
}
/* --- Fix Newsletter Section --- */
.un-newsletter {
  background: #111 !important;   /* force solid dark background */
  color: #fff !important;
  padding: 40px 24px;
  border-radius: 16px;
  text-align: center;
}
.un-newsletter h2,
.un-newsletter h3,
.un-newsletter__title {
  color: #fff !important;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.un-newsletter p {
  color: #ddd !important;
  margin-bottom: 18px;
  font-size: 15px;
}
.un-newsletter__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.un-newsletter input {
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  flex: 1;
  min-width: 220px;
  max-width: 320px;
}
.un-newsletter button {
  background: #e63946;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: .3s;
}
.un-newsletter button:hover {
  background: #d62828;
}
/* Force newsletter full-width dark band */
.section--newsletter,
.un-newsletter {
  background: #111 !important;
  color: #fff !important;
  padding: 50px 20px !important;
  border-radius: 0 !important;
}

.section--newsletter h2,
.section--newsletter h3,
.section--newsletter p,
.un-newsletter h2,
.un-newsletter h3,
.un-newsletter p {
  color: #fff !important;
  text-shadow: none !important;
}

.un-newsletter__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
/* Force newsletter block full dark style */
.section--newsletter,
.section--newsletter .newsletter,
.section--newsletter .newsletter__wrapper,
.un-newsletter {
  background: #111 !important;
  color: #fff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.section--newsletter h2,
.section--newsletter h3,
.section--newsletter p,
.section--newsletter label,
.un-newsletter h2,
.un-newsletter p {
  color: #fff !important;
  text-shadow: none !important;
}

.section--newsletter input[type="email"] {
  background: #fff !important;
  color: #111 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  border: none !important;
}

.section--newsletter button,
.un-newsletter button {
  background: #e63946 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  border: none !important;
  font-weight: 600;
  transition: .3s;
}

.section--newsletter button:hover,
.un-newsletter button:hover {
  background: #d62828 !important;
}
/* === Newsletter Text Fix === */
.section--newsletter h2,
.section--newsletter h3,
.section--newsletter p,
.section--newsletter .newsletter__subheading {
  color: #000 !important;   /* force black text */
  opacity: 1 !important;    /* cancel Shopify faded opacity */
  text-shadow: none !important;
}
/* === Newsletter Section – White Card with Black Text === */
.section--newsletter,
.section--newsletter .newsletter,
.section--newsletter .newsletter__wrapper,
.un-newsletter {
  background: #fff !important;   /* white card */
  color: #000 !important;        /* black text */
  border-radius: 16px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.08) !important;
  padding: 40px 24px !important;
  max-width: 900px;
  margin: 40px auto;   /* centers the card */
  text-align: center;
}

.section--newsletter h2,
.section--newsletter h3,
.section--newsletter p,
.section--newsletter label,
.un-newsletter h2,
.un-newsletter p {
  color: #000 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.section--newsletter input[type="email"] {
  background: #f8f8f8 !important;
  color: #111 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  border: 1px solid #ddd !important;
  width: 280px;
  max-width: 100%;
}

.section--newsletter button,
.un-newsletter button {
  background: #111 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  border: none !important;
  font-weight: 600;
  transition: all .3s ease;
}

.section--newsletter button:hover,
.un-newsletter button:hover {
  background: #e63946 !important;
}
/* === Newsletter Section – White Card with Black Text === */
.section--newsletter,
.section--newsletter .newsletter,
.section--newsletter .newsletter__wrapper,
.un-newsletter {
  background: #fff !important;   /* white card */
  color: #000 !important;        /* black text */
  border-radius: 16px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.08) !important;
  padding: 40px 24px !important;
  max-width: 900px;
  margin: 40px auto;   /* centers the card */
  text-align: center;
}

.section--newsletter h2,
.section--newsletter h3,
.section--newsletter p,
.section--newsletter label,
.un-newsletter h2,
.un-newsletter p {
  color: #000 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.section--newsletter input[type="email"] {
  background: #f8f8f8 !important;
  color: #111 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  border: 1px solid #ddd !important;
  width: 280px;
  max-width: 100%;
}

.section--newsletter button,
.un-newsletter button {
  background: #111 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  border: none !important;
  font-weight: 600;
  transition: all .3s ease;
}

.section--newsletter button:hover,
.un-newsletter button:hover {
  background: #e63946 !important;
}
/* Force newsletter heading to black */
.section--newsletter h2,
.un-newsletter h2,
.newsletter__title,
.newsletter h2 {
  color: #000 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
/* === Newsletter Section – White Card with Black Text === */
.section--newsletter,
.section--newsletter .newsletter,
.section--newsletter .newsletter__wrapper,
.un-newsletter {
  background: #fff !important;   /* white card */
  color: #000 !important;        /* black text */
  border-radius: 16px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.08) !important;
  padding: 40px 24px !important;
  max-width: 900px;
  margin: 40px auto;   /* centers the card */
  text-align: center;
}
.section--newsletter h2,
.section--newsletter h3,
.section--newsletter p,
.section--newsletter label,
.un-newsletter h2,
.un-newsletter p {
  color: #000 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.section--newsletter input[type="email"] {
  background: #f8f8f8 !important;
  color: #111 !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  border: 1px solid #ddd !important;
  width: 280px;
  max-width: 100%;
}
.section--newsletter button,
.un-newsletter button {
  background: #111 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  border: none !important;
  font-weight: 600;
  transition: all .3s ease;
}
.section--newsletter button:hover,
.un-newsletter button:hover {
  background: #e63946 !important;
}
/* === New Arrivals & Selling Fast Styling === */

/* Section headings */
#shopify-section-template--* h2,
h2.section-heading,
h2:has(+ .media) {
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0 14px;
  text-align: center;
  color: #111;
}

/* Grid layout for product/media blocks */
#shopify-section-template--* .media,
#shopify-section-template--* .product-card,
.custom-media-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 20px auto;
  max-width: 1200px;
}

/* Product card / media styling */
#shopify-section-template--* .media img,
#shopify-section-template--* .product-card img,
.custom-media-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

#shopify-section-template--* .media img:hover,
#shopify-section-template--* .product-card img:hover,
.custom-media-block img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Text under products */
#shopify-section-template--* .media-title,
#shopify-section-template--* .product-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  color: #222;
}

#shopify-section-template--* .product-card__price {
  text-align: center;
  font-size: 14px;
  color: #444;
  opacity: .9;
}

/* Mobile tweaks */
@media(max-width: 680px) {
  #shopify-section-template--* h2 {
    font-size: 22px;
  }
  #shopify-section-template--* .media img,
  #shopify-section-template--* .product-card img {
    height: 200px;
  }
}
/* === New Arrivals & Selling Fast Enhanced Styling === */

/* Section headings */
<a href="/collections/all" class="btn shop-now-btn">Shop Now</a>
#shopify-section-template--* h2,
h2.section-heading,
h2:has(+ .media) {
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0 14px;
  text-align: center;
  color: #111;
}

/* Grid layout for product/media blocks */
#shopify-section-template--* .media,
#shopify-section-template--* .product-card,
.custom-media-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 20px auto;
  max-width: 1200px;
}

/* Product card / media styling */
#shopify-section-template--* .media img,
#shopify-section-template--* .product-card img,
.custom-media-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

#shopify-section-template--* .media img:hover,
#shopify-section-template--* .product-card img:hover,
.custom-media-block img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Titles & pricing */
#shopify-section-template--* .media-title,
#shopify-section-template--* .product-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
  color: #222;
}

#shopify-section-template--* .product-card__price {
  text-align: center;
  font-size: 14px;
  color: #444;
  opacity: .9;
  margin-bottom: 10px;
}

/* Add-to-Cart button */
#shopify-section-template--* .product-card .btn--atc {
  display: block;
  width: 100%;
  text-align: center;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
}

#shopify-section-template--* .product-card .btn--atc:hover {
  background: #e63946;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Mobile tweaks */
@media(max-width: 680px) {
  #shopify-section-template--* h2 {
    font-size: 22px;
  }
  #shopify-section-template--* .media img,
  #shopify-section-template--* .product-card img {
    height: 200px;
  }
}
/* Shop Now Buttons in Sections */
.shop-now-btn {
  display: inline-block;
  margin: 20px auto;
  background: #111;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.shop-now-btn:hover {
  background: #e63946;
  transform: translateY(-2px);
}
/* === Collections Section Styling === */
.collection-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  gap: 20px !important;
  margin: 40px 0 !important;
}

.collection-list .collection-item {
  border: 1px solid #eee !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.collection-list .collection-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

.collection-list .collection-item img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-bottom: 1px solid #eee !important;
}

.collection-list .collection-item__title,
.collection-list .card__heading {
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin: 12px 0 !important;
  color: #111 !important;
}

.collection-list .card__content {
  padding: 12px 14px !important;
}
/* === Fix Collection List Styling to Match Homepage Aesthetic === */
.collection-list,
.collection-list__item {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  gap: 20px !important;
  margin: 40px 0 !important;
}

.collection-list__item,
.card--collection {
  border: 1px solid #eee !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.collection-list__item:hover,
.card--collection:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

.collection-list__item img,
.card--collection img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-bottom: 1px solid #eee !important;
}

.collection-list__item .card__heading,
.card--collection .card__heading {
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin: 12px 0 !important;
  color: #111 !important;
}

.collection-list__item .card__content,
.card--collection .card__content {
  padding: 12px 14px !important;
}
/* Force styling for Collection List */
.collection-list,
.collection-list .grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  gap: 24px !important;
  margin: 40px 0 !important;
}

/* Individual collection items */
.collection-list .grid__item,
.collection-card {
  border: 1px solid #eee !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.collection-list .grid__item:hover,
.collection-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

/* Images inside collection cards */
.collection-list .grid__item img,
.collection-card img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  display: block !important;
}

/* Collection titles */
.collection-list .card__heading,
.collection-card__title {
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin: 12px 0 !important;
  color: #111 !important;
}
