/** Shopify CDN: Minification failed

Line 354:10 Unexpected "{"
Line 354:19 Expected ":"

**/
/* ============================================
   DUPPY ART — HOMEPAGE STYLES
   Dark immersive gallery aesthetic
   ============================================ */

/* ---- HERO SECTION ---- */
/* Force dark background on entire homepage */
body {
  background: #0a0a0a !important;
}
.duppy-hero {
  background: #0a0a0a !important;
}
.duppy-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: calc(-50vw + 50%);
}

.duppy-hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.duppy-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.duppy-hero__placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, #1a1028 0%, #0a0a0a 60%, #000 100%);
}

.duppy-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.duppy-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.duppy-hero__subtitle {
  font-family: var(--font-body-family);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 1.5rem 0;
}

.duppy-hero__title {
  font-family: var(--font-heading-family);
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: #e8e8e8;
  margin: 0 0 1rem 0;
  line-height: 1.1;
}

.duppy-hero__tagline {
  font-family: var(--font-body-family);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 2.5rem 0;
}

.duppy-hero__button {
  display: inline-block;
  font-family: var(--font-body-family);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  color: #e8e8e8;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.4s ease;
}

.duppy-hero__button:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* Scroll hint */
.duppy-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.duppy-hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: duppy-scroll-fade 2s ease-in-out infinite;
}

@keyframes duppy-scroll-fade {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ---- BRAND STRIP ---- */

.duppy-brand-strip {
  background: #0a0a0a;
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.duppy-brand-strip__inner {
  max-width: 650px;
  margin: 0 auto;
}

.duppy-brand-strip__sanskrit {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.25);
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.1em;
}

.duppy-brand-strip__heading {
  font-family: var(--font-heading-family);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: #e8e8e8;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.duppy-brand-strip__body {
  font-family: var(--font-body-family);
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin: 0 0 2rem 0;
  letter-spacing: 0.02em;
}

.duppy-brand-strip__translations {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}


/* ---- COLLECTION SHOWCASE ---- */

.duppy-collection-showcase {
  background: #0a0a0a;
  padding: 5rem 2rem 4rem;
}

.duppy-collection-showcase__header {
  text-align: center;
  margin-bottom: 3rem;
}

.duppy-collection-showcase__subtitle {
  font-family: var(--font-body-family);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 0.8rem 0;
}

.duppy-collection-showcase__title {
  font-family: var(--font-heading-family);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: #e8e8e8;
  margin: 0;
}

.duppy-collection-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}

.duppy-collection-showcase__item {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  background: #111;
}

.duppy-collection-showcase__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.duppy-collection-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.duppy-collection-showcase__item:hover .duppy-collection-showcase__image img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.duppy-collection-showcase__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.duppy-collection-showcase__product-title {
  font-family: var(--font-heading-family);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #e8e8e8;
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
}

.duppy-collection-showcase__price {
  font-family: var(--font-body-family);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  letter-spacing: 0.08em;
}

.duppy-collection-showcase__footer {
  text-align: center;
  padding: 3rem 0 1rem;
}

.duppy-collection-showcase__empty {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}


/* ---- MOBILE ---- */

@media screen and (max-width: 749px) {
  .duppy-hero__title {
    font-size: 2.8rem;
  }

  .duppy-hero__subtitle {
    font-size: 0.7rem;
  }

  .duppy-hero__tagline {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .duppy-collection-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .duppy-collection-showcase__product-title {
    font-size: 0.75rem;
  }

  .duppy-brand-strip {
    padding: 3.5rem 1.5rem;
  }

  .duppy-brand-strip__heading {
    font-size: 1.5rem;
  }

  .duppy-brand-strip__translations {
    font-size: 0.65rem;
    gap: 0.5rem;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .duppy-collection-showcase__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .duppy-hero__title {
    font-size: 3.5rem;
  }
}


/* ---- GLOBAL OVERRIDES ---- */

/* Kill Dawn's default section padding on homepage */
.section-{{ section.id }}-padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Force dark header */
.section-header,
.header-wrapper,
.header {
  background: #0a0a0a !important;
  color: #e8e8e8 !important;
}

.header__heading-link,
.header__menu-item,
.header__icon,
.list-menu__item {
  color: #e8e8e8 !important;
}

/* Transparent header over hero */
body:has(.duppy-hero) .section-header {
  background: transparent !important;
  position: absolute !important;
  width: 100%;
  z-index: 20;
}

body:has(.duppy-hero) .header {
  background: transparent !important;
}

/* Force dark footer and newsletter */
.newsletter,
.footer,
.footer-block,
.section-footer,
.footer__content-top,
.footer__content-bottom,
.newsletter__wrapper {
  background: #0a0a0a !important;
  color: #e8e8e8 !important;
}

.footer-block__heading,
.footer a,
.copyright__content {
  color: #d4d4d4 !important;
}