/** Shopify CDN: Minification failed

Line 1863:31 Unexpected "*"

**/
/* ============================================
   RABEEA SIDDIQUI - V1 SHOPIFY THEME
   Gallery-First, Elegant Minimal
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --v1-color-bg: #faf9f7;
  --v1-color-bg-alt: #f0ebe3;
  --v1-color-text: #1a1a1a;
  --v1-color-text-muted: #6b6b6b;
  --v1-color-accent: #d4a853;
  --v1-font-heading: 'Cormorant Garamond', serif;
  --v1-font-body: 'Inter', sans-serif;
  --v1-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --v1-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Override Dawn heading variables */
  --font-heading-family: 'Cormorant Garamond', serif !important;
  --font-heading-weight: 300 !important;
  --font-heading-scale: 1 !important;
}

/* ---------- Global Reset ---------- */
.v1-hero-section *,
.v1-gallery-section *,
.v1-services-section *,
.v1-staging-section *,
.v1-about-section *,
.v1-contact-section *,
.v1-header-wrapper *,
.v1-footer-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- Reset Dawn Styles ---------- */
.shopify-section-group-header-group,
.shopify-section-group-footer-group {
  --header-height: 0px !important;
}

/* Hide Dawn's default header completely */
.shopify-section-group-header-group .header-wrapper,
.shopify-section-group-header-group .announcement-bar,
.shopify-section-group-header-group > section:not(.v1-header-wrapper) {
  display: none !important;
}

/* Hide Dawn's default footer completely */
.shopify-section-group-footer-group .footer,
.shopify-section-group-footer-group > section:not(.v1-footer-wrapper) {
  display: none !important;
}

/* Hide Dawn's cart drawer when using V1 theme */
.cart-drawer,
.cart-drawer__overlay {
  display: none !important;
}

/* Hide skip link */
.skip-to-content-link {
  display: none !important;
}

/* Reset Shopify section wrapper styles */
.v1-hero-section,
.v1-gallery-section,
.v1-services-section,
.v1-staging-section,
.v1-about-section,
.v1-contact-section,
.v1-header-wrapper,
.v1-footer-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}

/* ---------- Base Overrides ---------- */
html {
  scroll-behavior: smooth;
  font-size: 16px !important;
}

body {
  font-family: var(--v1-font-body) !important;
  font-weight: 300 !important;
  color: var(--v1-color-text) !important;
  background: var(--v1-color-bg) !important;
  background-color: var(--v1-color-bg) !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Override Dawn's body gradient class */
body.gradient {
  background: var(--v1-color-bg) !important;
}

/* Remove Dawn's main content margins */
.content-for-layout,
#MainContent {
  padding: 0 !important;
  margin: 0 !important;
}

/* Global link reset for V1 sections */
.v1-header-wrapper a,
.v1-hero-section a,
.v1-gallery-section a,
.v1-services-section a,
.v1-staging-section a,
.v1-about-section a,
.v1-contact-section a,
.v1-footer-wrapper a {
  color: inherit;
  text-decoration: none;
}

/* Global image reset for V1 sections */
.v1-header-wrapper img,
.v1-hero-section img,
.v1-gallery-section img,
.v1-services-section img,
.v1-staging-section img,
.v1-about-section img,
.v1-contact-section img,
.v1-footer-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

/* Override Dawn's font variables */
.v1-header-wrapper,
.v1-hero-section,
.v1-gallery-section,
.v1-services-section,
.v1-staging-section,
.v1-about-section,
.v1-contact-section,
.v1-footer-wrapper {
  --font-body-family: var(--v1-font-body) !important;
  --font-heading-family: var(--v1-font-heading) !important;
  font-family: var(--v1-font-body) !important;
}

/* Force heading fonts in V1 sections */
.v1-header-wrapper h1,
.v1-header-wrapper h2,
.v1-header-wrapper h3,
.v1-hero-section h1,
.v1-hero-section h2,
.v1-hero-section h3,
.v1-gallery-section h1,
.v1-gallery-section h2,
.v1-gallery-section h3,
.v1-services-section h1,
.v1-services-section h2,
.v1-services-section h3,
.v1-staging-section h1,
.v1-staging-section h2,
.v1-staging-section h3,
.v1-about-section h1,
.v1-about-section h2,
.v1-about-section h3,
.v1-contact-section h1,
.v1-contact-section h2,
.v1-contact-section h3,
.v1-footer-wrapper h1,
.v1-footer-wrapper h2,
.v1-footer-wrapper h3 {
  font-family: var(--v1-font-heading) !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
}

/* Force light text on dark sections */
.v1-services-section h3,
.v1-services-section p {
  color: var(--v1-color-bg) !important;
}

.v1-services-section .v1-services__text {
  color: rgba(255,255,255,0.6) !important;
}

.v1-services-section .v1-services__number {
  color: rgba(255,255,255,0.3) !important;
}

/* ---------- Loader ---------- */
.v1-loader {
  position: fixed;
  inset: 0;
  background: var(--v1-color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s var(--v1-ease-out), visibility 0.8s;
}

.v1-loader.v1-loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.v1-loader__text {
  font-family: var(--v1-font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: v1-loaderPulse 1.5s ease-in-out infinite;
}

@keyframes v1-loaderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- Header ---------- */
/* Ensure header wrapper doesn't create stacking context */
.shopify-section-group-header-group {
  position: relative !important;
  z-index: 1000 !important;
  background: transparent !important;
  isolation: auto !important;
}

.shopify-section-group-header-group .shopify-section {
  background: transparent !important;
}

.v1-header-wrapper {
  background: transparent !important;
  position: static !important;
}

.v1-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.4s var(--v1-ease-out), backdrop-filter 0.4s var(--v1-ease-out);
  background: transparent;
}

/* On homepage, header text is white (hero has dark background) */
body:has(.v1-hero) .v1-header {
  mix-blend-mode: normal;
}

body:has(.v1-hero) .v1-header .v1-header__logo,
body:has(.v1-hero) .v1-header .v1-header__link {
  color: #fff !important;
}

body:has(.v1-hero) .v1-header .v1-header__link::after,
body:has(.v1-hero) .v1-header .v1-header__menu-btn span {
  background: #fff !important;
}

.v1-header.v1-header--scrolled {
  background: rgba(26, 26, 26, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mix-blend-mode: normal !important;
}

.v1-header.v1-header--scrolled .v1-header__logo,
.v1-header.v1-header--scrolled .v1-header__link {
  color: #fff !important;
}

.v1-header.v1-header--scrolled .v1-header__link::after,
.v1-header.v1-header--scrolled .v1-header__menu-btn span {
  background: #fff !important;
}

.v1-header__logo {
  font-family: var(--v1-font-heading) !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #fff;
  text-decoration: none !important;
  background: none !important;
  transition: opacity 0.3s, color 0.3s;
}

.v1-header__logo:hover {
  opacity: 0.7;
}

.v1-header__nav {
  display: flex;
  gap: 3rem;
  margin-left: auto;
}

.v1-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}

.v1-header__link {
  font-family: var(--v1-font-body) !important;
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #fff;
  text-decoration: none !important;
  position: relative;
  padding: 0.5rem 0;
  background: none !important;
  border: none !important;
  transition: color 0.3s;
}

.v1-header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.4s var(--v1-ease-out);
}

.v1-header__link:hover::after {
  width: 100%;
}

.v1-header__cart {
  display: flex;
  align-items: center;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.v1-header__cart svg {
  stroke: currentColor;
}

.v1-header__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--v1-color-accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--v1-font-body);
}

body:has(.v1-hero) .v1-header .v1-header__cart {
  color: #fff !important;
}

.v1-header.v1-header--scrolled .v1-header__cart {
  color: #fff !important;
}

.v1-header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.v1-header__menu-btn span {
  width: 24px;
  height: 1px;
  background: #fff;
  transition: all 0.3s var(--v1-ease-out);
}

.v1-header__menu-btn.active span:first-child {
  transform: rotate(45deg) translate(2px, 4px);
}

.v1-header__menu-btn.active span:last-child {
  transform: rotate(-45deg) translate(2px, -4px);
}

@media (max-width: 768px) {
  .v1-header {
    padding: 1.2rem 1.5rem;
  }

  .v1-header__nav {
    display: none;
  }

  .v1-header__menu-btn {
    display: flex;
  }
}

/* ---------- Mobile Menu ---------- */
.v1-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--v1-color-text);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--v1-ease-out);
}

.v1-mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.v1-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.v1-mobile-menu__link {
  font-family: var(--v1-font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--v1-color-bg) !important;
  text-decoration: none !important;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s var(--v1-ease-out);
}

.v1-mobile-menu.active .v1-mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.v1-mobile-menu.active .v1-mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.v1-mobile-menu.active .v1-mobile-menu__link:nth-child(2) { transition-delay: 0.2s; }
.v1-mobile-menu.active .v1-mobile-menu__link:nth-child(3) { transition-delay: 0.3s; }
.v1-mobile-menu.active .v1-mobile-menu__link:nth-child(4) { transition-delay: 0.4s; }

/* ---------- Hero ---------- */
.v1-hero {
  min-height: 100vh;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--v1-color-text);
  overflow: hidden;
}

.v1-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  color: var(--v1-color-bg);
}

.v1-hero__title,
.v1-hero__title h1,
h1.v1-hero__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(3rem, 8vw, 7rem) !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  margin: 0 0 1.5rem 0 !important;
  overflow: hidden;
  color: var(--v1-color-bg) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.v1-hero__title-line {
  display: block;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  transform: translateY(100%);
  animation: v1-slideUp 1s var(--v1-ease-out) forwards;
}

.v1-hero__title-line:nth-child(2) {
  animation-delay: 0.15s;
}

@keyframes v1-slideUp {
  to { transform: translateY(0); }
}

.v1-hero__subtitle {
  font-family: var(--v1-font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--v1-color-bg) !important;
  margin: 0 0 3rem 0 !important;
  opacity: 0;
  animation: v1-fadeIn 1s var(--v1-ease-out) 0.5s forwards;
}

@keyframes v1-fadeIn {
  to { opacity: 1; }
}

.v1-hero__cta {
  align-self: flex-start;
  font-family: var(--v1-font-body) !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 1.2rem 3rem !important;
  border: 1px solid var(--v1-color-bg) !important;
  color: var(--v1-color-bg) !important;
  background: transparent !important;
  transition: all 0.4s var(--v1-ease-out);
  opacity: 0;
  animation: v1-fadeIn 1s var(--v1-ease-out) 0.7s forwards;
  cursor: pointer;
}

.v1-hero__cta:hover {
  background: var(--v1-color-bg);
  color: var(--v1-color-text) !important;
}

.v1-hero__image {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: 100%;
}

.v1-hero__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  animation: v1-heroImageReveal 1.5s var(--v1-ease-out) 0.3s forwards;
}

/* Placeholder SVG styling */
.v1-hero__image .placeholder-svg {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--v1-color-bg-alt) 0%, #e8e3db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v1-hero__image .placeholder-svg svg {
  opacity: 0.3;
  max-width: 200px;
}

@keyframes v1-heroImageReveal {
  to { transform: scale(1); }
}

@media (max-width: 968px) {
  .v1-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 50vh;
    min-height: auto;
  }

  .v1-hero__content {
    padding: 8rem 2rem 4rem;
    order: 1;
  }

  .v1-hero__image {
    order: 2;
    min-height: 50vh;
  }
}

/* ---------- Gallery ---------- */
.v1-gallery {
  padding: 6rem 3rem;
  background: var(--v1-color-bg);
}

.v1-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.v1-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s var(--v1-ease-out);
  text-decoration: none !important;
  display: block;
  background: var(--v1-color-bg-alt);
}

.v1-gallery__item.v1-animate {
  opacity: 1;
  transform: translateY(0);
}

.v1-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--v1-ease-out);
}

.v1-gallery__item .placeholder-svg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--v1-color-bg-alt) 0%, #e8e3db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v1-gallery__item .placeholder-svg svg {
  opacity: 0.3;
  max-width: 80px;
}

.v1-gallery__item:hover img {
  transform: scale(1.05);
}

.v1-gallery__tags {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.v1-gallery__tag {
  font-family: var(--v1-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  background: #fff;
  color: #1a1a1a;
}

.v1-gallery__tag--new {
  background: #1a1a1a;
  color: #fff;
}

.v1-gallery__tag--ready {
  background: #fff;
  color: #1a1a1a;
}

.v1-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s var(--v1-ease-out);
}

.v1-gallery__item:hover .v1-gallery__overlay {
  opacity: 1;
}

.v1-gallery__title {
  font-family: var(--v1-font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s var(--v1-ease-out);
}

.v1-gallery__item:hover .v1-gallery__title {
  transform: translateY(0);
}

.v1-gallery__price {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
  transform: translateY(20px);
  transition: transform 0.4s var(--v1-ease-out) 0.1s;
}

.v1-gallery__item:hover .v1-gallery__price {
  transform: translateY(0);
}

.v1-gallery__view-all {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--v1-color-text) !important;
  padding: 1rem;
  position: relative;
}

.v1-gallery__view-all::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--v1-color-text);
  transition: width 0.4s var(--v1-ease-out);
}

.v1-gallery__view-all:hover::after {
  width: 100px;
}

@media (max-width: 968px) {
  .v1-gallery {
    padding: 4rem 1.5rem;
  }

  .v1-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .v1-gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Services ---------- */
.v1-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--v1-color-text);
  color: var(--v1-color-bg);
}

.v1-services__item {
  padding: 5rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--v1-ease-out);
}

.v1-services__item.v1-animate {
  opacity: 1;
  transform: translateY(0);
}

.v1-services__item:last-child {
  border-right: none;
}

.v1-services__number {
  font-family: var(--v1-font-heading);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 2rem;
}

.v1-services__title {
  font-family: var(--v1-font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
  color: var(--v1-color-bg);
}

.v1-services__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

@media (max-width: 968px) {
  .v1-services {
    grid-template-columns: 1fr;
  }

  .v1-services__item {
    padding: 3rem 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .v1-services__item:last-child {
    border-bottom: none;
  }
}

/* ---------- Home Staging ---------- */
.v1-staging {
  padding: 8rem 3rem;
  background: var(--v1-color-bg);
  text-align: center;
}

.v1-staging__hero {
  max-width: 900px;
  margin: 0 auto 4rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--v1-ease-out);
}

.v1-staging__hero.v1-animate {
  opacity: 1;
  transform: translateY(0);
}

.v1-staging__hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.v1-staging__hero .placeholder-svg {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--v1-color-bg-alt) 0%, #e8e3db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.v1-staging__hero .placeholder-svg svg {
  opacity: 0.3;
  max-width: 120px;
}

.v1-staging__content {
  max-width: 600px;
  margin: 0 auto 4rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--v1-ease-out);
}

.v1-staging__content.v1-animate {
  opacity: 1;
  transform: translateY(0);
}

.v1-staging__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--v1-color-text-muted);
  display: block;
  margin-bottom: 1rem;
}

.v1-staging__title {
  font-family: var(--v1-font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin: 0 0 1.5rem 0;
}

.v1-staging__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--v1-color-text-muted);
  margin: 0;
}

.v1-staging__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.v1-staging__feature {
  padding: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--v1-ease-out);
}

.v1-staging__feature.v1-animate {
  opacity: 1;
  transform: translateY(0);
}

.v1-staging__feature-icon {
  margin-bottom: 1.5rem;
  color: var(--v1-color-accent);
}

.v1-staging__feature h3 {
  font-family: var(--v1-font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 0.75rem 0;
}

.v1-staging__feature p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--v1-color-text-muted);
  margin: 0;
}

.v1-staging__cta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--v1-color-text) !important;
  padding: 1.2rem 3rem;
  border: 1px solid var(--v1-color-text);
  background: transparent;
  transition: all 0.4s var(--v1-ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.v1-staging__cta.v1-animate {
  opacity: 1;
  transform: translateY(0);
}

.v1-staging__cta:hover {
  background: var(--v1-color-text);
  color: var(--v1-color-bg) !important;
}

@media (max-width: 968px) {
  .v1-staging {
    padding: 5rem 2rem;
  }

  .v1-staging__features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .v1-staging__feature {
    padding: 1.5rem;
  }
}

/* ---------- About ---------- */
.v1-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--v1-color-bg-alt);
}

.v1-about__image {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s var(--v1-ease-out);
}

.v1-about__image.v1-animate {
  opacity: 1;
  transform: translateX(0);
}

.v1-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v1-about__image .placeholder-svg {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, #e0dbd3 0%, #d4cfc5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v1-about__image .placeholder-svg svg {
  opacity: 0.3;
  max-width: 120px;
}

.v1-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s var(--v1-ease-out) 0.2s;
}

.v1-about__content.v1-animate {
  opacity: 1;
  transform: translateX(0);
}

.v1-about__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--v1-color-text-muted);
  margin-bottom: 1rem;
}

.v1-about__title {
  font-family: var(--v1-font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin: 0 0 2rem 0;
}

.v1-about__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--v1-color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 450px;
}

.v1-about__text p {
  margin: 0 0 1rem 0;
}

.v1-about__text p:last-child {
  margin-bottom: 0;
}

.v1-about__link {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--v1-color-text) !important;
  padding: 1rem 2.5rem;
  border: 1px solid var(--v1-color-text);
  background: transparent;
  margin-top: 1rem;
  transition: all 0.4s var(--v1-ease-out);
}

.v1-about__link:hover {
  background: var(--v1-color-text);
  color: var(--v1-color-bg) !important;
}

@media (max-width: 968px) {
  .v1-about {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .v1-about__image {
    aspect-ratio: 4/3;
  }

  .v1-about__content {
    padding: 3rem 2rem;
  }
}

/* ---------- Contact ---------- */
.v1-contact {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v1-color-bg);
  text-align: center;
  padding: 4rem 2rem;
}

.v1-contact__content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--v1-ease-out);
}

.v1-contact__content.v1-animate {
  opacity: 1;
  transform: translateY(0);
}

.v1-contact__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--v1-color-text-muted);
  display: block;
  margin-bottom: 1.5rem;
}

.v1-contact__title {
  font-family: var(--v1-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin: 0 0 2rem 0;
}

.v1-contact__email {
  font-family: var(--v1-font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
  text-decoration: none !important;
  color: var(--v1-color-text) !important;
}

.v1-contact__email::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--v1-color-text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--v1-ease-out);
}

.v1-contact__email:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.v1-contact__social {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.v1-contact__social-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--v1-color-text-muted) !important;
  transition: color 0.3s;
}

.v1-contact__social-link:hover {
  color: var(--v1-color-text) !important;
}

/* ---------- Footer ---------- */
.v1-footer {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  background: var(--v1-color-bg);
}

.v1-footer__copyright,
.v1-footer__credit {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--v1-color-text-muted);
}

@media (max-width: 768px) {
  .v1-footer {
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
  }
}

/* ---------- Scroll Animations ---------- */
[data-v1-animate] {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s var(--v1-ease-out);
}

[data-v1-animate].v1-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Custom Cursor (Desktop) ---------- */
.v1-custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  display: none;
}

@media (min-width: 968px) {
  .v1-custom-cursor {
    display: block;
  }
}

.v1-cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--v1-color-text);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.v1-cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--v1-color-text);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  transition: transform 0.2s var(--v1-ease-out), opacity 0.2s;
}

/* ---------- Selection ---------- */
::selection {
  background: var(--v1-color-text);
  color: var(--v1-color-bg);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--v1-color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--v1-color-text-muted);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--v1-color-text);
}

/* ---------- Non-Homepage Reset ---------- */
html {
  font-size: 16px !important;
}

body {
  --font-body-scale: 1 !important;
  --font-body-family: 'Inter', sans-serif !important;
  --font-heading-family: 'Cormorant Garamond', serif !important;
  --font-heading-scale: 1 !important;
  --font-heading-weight: 300 !important;
  --page-width: 1400px !important;
  /* Override Dawn grid spacing */
  --grid-mobile-vertical-spacing: 1.5rem !important;
  --grid-mobile-horizontal-spacing: 1.5rem !important;
  --grid-desktop-vertical-spacing: 1.5rem !important;
  --grid-desktop-horizontal-spacing: 1.5rem !important;
}

.page-width {
  max-width: 1200px !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

/* ---------- Product Page ---------- */
.product {
  background: var(--v1-color-bg) !important;
  padding-top: 100px !important;
  font-size: 1rem !important;
}

.product .page-width {
  max-width: 1400px !important;
}

.product__info-container {
  max-width: 450px !important;
}

.product__media-item {
  background: var(--v1-color-bg-alt) !important;
}

.product__info-wrapper {
  padding: 0 2rem !important;
  font-size: 1rem !important;
}

.product__title,
.product__title h1 {
  font-family: var(--v1-font-heading) !important;
  font-size: 2.2rem !important;
  font-weight: 300 !important;
  color: var(--v1-color-text) !important;
  margin-bottom: 0.75rem !important;
  line-height: 1.2 !important;
}

@media (min-width: 750px) {
  .product__title,
  .product__title h1 {
    font-size: 2.5rem !important;
  }
}

.product__text,
.product__description,
.product__description p {
  font-family: var(--v1-font-body) !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: var(--v1-color-text-muted) !important;
}

.price,
.price-item {
  font-family: var(--v1-font-heading) !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: var(--v1-color-text) !important;
}

.price__regular,
.price-item--regular {
  font-size: 1.4rem !important;
}

/* Product form buttons */
.product-form__submit,
.shopify-payment-button__button,
button[name="add"] {
  font-family: var(--v1-font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  background: var(--v1-color-text) !important;
  color: var(--v1-color-bg) !important;
  border: 1px solid var(--v1-color-text) !important;
  padding: 1rem 2rem !important;
  min-height: auto !important;
  height: auto !important;
  transition: all 0.4s var(--v1-ease-out) !important;
}

.product-form__submit:hover,
button[name="add"]:hover {
  background: transparent !important;
  color: var(--v1-color-text) !important;
}

/* Hide dynamic checkout buttons */
.shopify-payment-button {
  display: none !important;
}

/* Quantity selector */
.quantity {
  border-color: var(--v1-color-text) !important;
  min-height: auto !important;
  height: 44px !important;
}

.quantity__button {
  color: var(--v1-color-text) !important;
  width: 44px !important;
}

.quantity__input {
  font-family: var(--v1-font-body) !important;
  font-size: 0.9rem !important;
  color: var(--v1-color-text) !important;
  width: 50px !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}

.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Collapsible tabs */
.accordion,
.product__accordion {
  border-color: rgba(0,0,0,0.1) !important;
}

.accordion__title,
.product__accordion .accordion__title {
  font-family: var(--v1-font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--v1-color-text) !important;
  padding: 1rem 0 !important;
  min-height: auto !important;
}

.accordion__content {
  font-family: var(--v1-font-body) !important;
  font-size: 0.9rem !important;
  color: var(--v1-color-text-muted) !important;
  padding-bottom: 1rem !important;
}

/* Product media/gallery */
.product__media-wrapper {
  background: var(--v1-color-bg-alt) !important;
}

.product__media img {
  object-fit: contain !important;
}

/* Related products section */
.related-products,
.product-recommendations {
  background: var(--v1-color-bg) !important;
  padding: 4rem 0 !important;
}

.related-products .section-header__title,
.related-products h2,
.product-recommendations h2 {
  font-family: var(--v1-font-heading) !important;
  font-size: 1.8rem !important;
  font-weight: 300 !important;
  text-align: center !important;
  color: var(--v1-color-text) !important;
  margin-bottom: 2rem !important;
}

.related-products .card,
.product-recommendations .card {
  background: transparent !important;
}

.related-products .card__heading,
.product-recommendations .card__heading,
.card__heading a {
  font-family: var(--v1-font-heading) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--v1-color-text) !important;
}

.related-products .price,
.product-recommendations .price,
.card .price {
  font-size: 0.9rem !important;
}

/* Card styling */
.card-wrapper {
  color: var(--v1-color-text) !important;
}

.card__content {
  padding: 1rem 0 !important;
}

.card__information {
  padding: 0 !important;
}

/* Product grid */
.collection .grid,
.product-grid {
  gap: 1.5rem !important;
}

.grid__item {
  padding: 0 !important;
}

/* Share button */
.share-button {
  font-family: var(--v1-font-body) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--v1-color-text-muted) !important;
}

/* Breadcrumb if visible */
.breadcrumbs {
  font-family: var(--v1-font-body) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* ---------- Collection Page ---------- */
.collection {
  background: var(--v1-color-bg) !important;
  padding-top: 100px !important;
  min-height: 100vh;
}

/* Collection Header - match prototype */
.collection-hero,
.main-collection-banner,
section[class*="collection-banner"] {
  background: var(--v1-color-bg) !important;
  padding: 0 !important;
  margin: 0 !important;
}

.collection-hero__inner {
  background: var(--v1-color-bg) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  padding: 0 0 2rem 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  margin-bottom: 3rem !important;
}

.collection-hero__text-wrapper {
  flex: 1 !important;
}

/* Collection title */
.collection-hero__title,
.collection__title,
.collection__title h1,
h1.collection__title,
h1.collection-hero__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 2.5rem !important;
  font-weight: 300 !important;
  color: var(--v1-color-text) !important;
  text-align: left !important;
  margin: 0 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  line-height: 1.2 !important;
}

/* Hide visually hidden text prefix */
.collection-hero__title .visually-hidden {
  display: none !important;
}

.collection__description,
.collection__text,
.collection-hero__description {
  display: none !important;
}

/* Hide sort/filter bar - show only product count */
.facets-wrapper,
.facets-container,
.collection-filters,
.facets,
.active-facets,
.facet-filters,
.facets__form,
.facets__wrapper,
[id*="main-collection-filters"],
.collection .facets-vertical {
  display: none !important;
}

/* But allow product count to show */
.product-count,
.collection .product-count {
  display: block !important;
  font-family: var(--v1-font-body) !important;
  font-size: 0.8rem !important;
  color: var(--v1-color-text-muted) !important;
}

.product-count__text {
  font-family: var(--v1-font-body) !important;
  font-size: 0.8rem !important;
  color: var(--v1-color-text-muted) !important;
}

/* Collection Product Grid - FORCE 3 columns */
.collection .grid,
.collection-product-list,
.product-grid-container,
.collection .collection-product-list,
.collection product-grid,
product-grid .grid,
#product-grid,
.collection #product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Override any Dawn grid classes */
.collection .grid--2-col-tablet-down {
  grid-template-columns: repeat(3, 1fr) !important;
}

.collection .grid--4-col-desktop {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 990px) {
  .collection .grid,
  .collection-product-list,
  .collection #product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 575px) {
  .collection .grid,
  .collection-product-list,
  .collection #product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Collection Product Cards */
.collection .card-wrapper,
.collection .grid__item,
.collection .product-grid .grid__item {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Force grid item to take full width of column */
.collection .grid__item {
  grid-column: span 1 !important;
}

.collection .card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.collection .card__inner {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.collection .card__media,
.collection .media,
.collection .card .media {
  overflow: hidden !important;
  aspect-ratio: 3/4 !important;
  background: var(--v1-color-bg-alt) !important;
  border-radius: 0 !important;
}

.collection .card__media img,
.collection .media img,
.collection .card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s var(--v1-ease-out) !important;
}

.collection .card:hover .card__media img,
.collection .card:hover .media img,
.collection .card:hover img {
  transform: scale(1.05) !important;
}

.collection .card__content {
  padding: 1rem 0 0 0 !important;
  background: transparent !important;
}

.collection .card__information {
  padding: 0 !important;
  gap: 0 !important;
}

.collection .card__heading,
.collection .card__heading a,
.collection .card h3,
.collection .card h3 a,
.collection .card-information__text a,
.collection .full-unstyled-link {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: var(--v1-color-text) !important;
  text-decoration: none !important;
  margin: 0 0 0.25rem 0 !important;
  line-height: 1.3 !important;
}

.collection .card__heading a:hover,
.collection .card h3 a:hover,
.collection .full-unstyled-link:hover {
  opacity: 0.7;
  text-decoration: none !important;
}

.collection .price,
.collection .price-item,
.collection .card .price,
.collection .price__regular {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--v1-color-text-muted) !important;
}

/* Hide compare at price, badges, etc */
.collection .price__sale,
.collection .price--on-sale .price__regular,
.collection .badge,
.collection .card__badge {
  display: none !important;
}

/* Card hover effects */
.collection .card-wrapper:hover .card__heading a,
.collection .card:hover .card__heading a {
  opacity: 0.7 !important;
}

/* Hide badges and extra elements */
.collection .card__badge,
.collection .card__badge-top,
.collection .badge {
  display: none !important;
}

/* Pagination */
.pagination {
  margin-top: 4rem !important;
}

.pagination__list {
  font-family: var(--v1-font-body) !important;
}

.pagination__item a {
  font-size: 0.85rem !important;
  color: var(--v1-color-text) !important;
}

/* Collection page width */
.collection .page-width,
.collection-hero .page-width,
.collection section .page-width {
  max-width: 1400px !important;
  padding: 0 3rem !important;
}

@media (max-width: 768px) {
  .collection .page-width {
    padding: 0 1.5rem !important;
  }

  .product-count {
    right: 1.5rem !important;
  }
}

/* Fix Dawn's default section spacing */
.collection .section-template--*,
.collection section {
  padding-top: 0 !important;
}

/* Remove any max-width constraints on grid items */
.collection ul.grid {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.collection ul.grid li {
  list-style: none !important;
}

/* ========== DAWN GRID OVERRIDES ========== */
/* Dawn uses flexbox for .grid - override to CSS grid */
.collection .grid,
.collection ul.grid,
.collection .product-grid,
ul.product-grid,
#product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  flex-wrap: nowrap !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Force 3 columns on desktop for any Dawn grid classes */
.collection .grid--3-col-desktop,
.collection .grid--4-col-desktop,
.grid--3-col-desktop.product-grid,
.grid--4-col-desktop.product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Dawn grid item - override width calculations */
.collection .grid__item,
.collection ul.grid li,
.product-grid .grid__item,
#product-grid .grid__item,
#product-grid > li {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

@media screen and (max-width: 989px) {
  .collection .grid,
  .collection ul.grid,
  .collection .product-grid,
  ul.product-grid,
  #product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media screen and (max-width: 575px) {
  .collection .grid,
  .collection ul.grid,
  .collection .product-grid,
  ul.product-grid,
  #product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Product grid container */
.product-grid-container {
  width: 100% !important;
}

/* Card product styling for collection */
.card-wrapper,
.collection .card-wrapper {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.card-wrapper .card,
.collection .card {
  height: 100% !important;
  background: transparent !important;
}

.card--media {
  display: block !important;
}

.card--media .card__inner,
.card__inner {
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

/* Image wrapper in cards */
.card__media {
  padding: 0 !important;
  aspect-ratio: 3/4 !important;
  overflow: hidden !important;
}

.media--transparent,
.collection .media--transparent {
  background: var(--v1-color-bg-alt) !important;
}

/* Reset Dawn animations that might cause layout issues */
.scroll-trigger.animate--slide-in {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

[data-cascade] {
  --animation-order: 0 !important;
}

/* Loading overlay */
.loading-overlay {
  display: none !important;
}

/* Force card images to show */
.card__media img,
.card img,
.media img,
.collection .card img {
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ---------- Cart Page ---------- */
.cart,
.main-cart-items,
.main-cart-footer,
body:has(.cart-items) main {
  background: var(--v1-color-bg) !important;
}

.main-cart-items {
  padding-top: 120px !important;
}

.cart__empty-text,
.cart h1,
.main-cart-items h1,
.cart-items h1,
h1.title--primary {
  font-family: var(--v1-font-heading) !important;
  font-weight: 300 !important;
  font-size: 2rem !important;
  margin-bottom: 2rem !important;
}

.cart-item__name,
.cart-item__name a {
  font-family: var(--v1-font-heading) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--v1-color-text) !important;
  text-decoration: none !important;
}

.cart-item__price,
.cart__total,
.totals__subtotal-value,
.cart-item__totals,
.price {
  font-family: var(--v1-font-heading) !important;
  font-size: 1rem !important;
}

.cart-items thead th,
.cart-items .caption-with-letter-spacing {
  font-family: var(--v1-font-body) !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--v1-color-text-muted) !important;
}

/* Hide "Continue shopping" if too prominent */
.underlined-link {
  font-family: var(--v1-font-body) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
}

/* Checkout button styling */
.cart__ctas button,
.cart__checkout-button,
button[name="checkout"] {
  font-family: var(--v1-font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  background: var(--v1-color-text) !important;
  border: 1px solid var(--v1-color-text) !important;
  transition: all 0.4s var(--v1-ease-out) !important;
}

.cart__ctas button:hover,
.cart__checkout-button:hover,
button[name="checkout"]:hover {
  background: transparent !important;
  color: var(--v1-color-text) !important;
}

/* Totals section */
.totals,
.cart__footer {
  font-family: var(--v1-font-body) !important;
  font-size: 0.9rem !important;
}

.totals__subtotal {
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

/* Header override for cart page */
body:has(.cart-items) .v1-header,
body:has(.main-cart-items) .v1-header {
  mix-blend-mode: normal !important;
  background: transparent !important;
}

body:has(.cart-items) .v1-header .v1-header__logo,
body:has(.cart-items) .v1-header .v1-header__link,
body:has(.cart-items) .v1-header .v1-header__cart,
body:has(.main-cart-items) .v1-header .v1-header__logo,
body:has(.main-cart-items) .v1-header .v1-header__link,
body:has(.main-cart-items) .v1-header .v1-header__cart {
  color: #1a1a1a !important;
}

body:has(.cart-items) .v1-header .v1-header__link::after,
body:has(.cart-items) .v1-header__menu-btn span,
body:has(.main-cart-items) .v1-header .v1-header__link::after,
body:has(.main-cart-items) .v1-header__menu-btn span {
  background: #1a1a1a !important;
}

/* ---------- General Typography Fix ---------- */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5 {
  font-family: var(--v1-font-heading) !important;
  font-weight: 300 !important;
  color: var(--v1-color-text) !important;
}

p, span, a, li, label, input, textarea, select {
  font-family: var(--v1-font-body) !important;
}

/* ---------- Utility Classes ---------- */
.v1-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
