/** Shopify CDN: Minification failed

Line 17:7 Unexpected "@media"

**/
/* ================================================ */
/* SHADOWLESS VAULT â€” Custom UX & Animation Layer   */
/* Dawn Theme v15 â€” Full CRO + Design Enhancement   */
/* ================================================ */


/* ------------------------------------------------ */
/* 1. PRODUCT CARD â€” Dark Cosmic Treatment          */
/* ------------------------------------------------ */

.card-wrapper .card,
.card-w@media
rmax-width: 749apper .card--standard {
  background: linear-gradient(145deg, #1a1040 0%, #0d0820 100%);
  border: 1px solid rgba(128, 90, 213, 0.25);
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  
  
}

.card-wrapper .card:hover,
.card-wrapper .card--standard:hover {
    transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(128, 90, 213, 0.35),
              0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(128, 90, 213, 0.6);
}

.card__media img {
  transition: transform 0.5s ease;
}

.card-wrapper:hover .card__media img {
  transform: scale(1.04);
}

/* Card inner padding — breathing room on edges */
.card-wrapper .card .card__inner {
  padding: 12px;
}

.card-wrapper .card .card__content {
  padding: 10px 14px 14px;
}


/* ------------------------------------------------ */
/* 2. SCROLL FADE-IN                                */
/* ------------------------------------------------ */

.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ------------------------------------------------ */
/* 3. GRADIENT HEADINGS â€” Collection Titles         */
/* ------------------------------------------------ */

.collection-hero__title,
.section-header__title,
.featured-collection .collection__title,
h2.h1,
.featured-collection h2 {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ------------------------------------------------ */
/* 4. SHIMMER CTA BUTTONS                           */
/* ------------------------------------------------ */

.btn--primary,
.button--primary,
button[name="add"],
.product-form__submit {
  position: relative;
  overflow: hidden;
}

.btn--primary::after,
.button--primary::after,
button[name="add"]::after,
.product-form__submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
}

.btn--primary:hover::after,
.button--primary:hover::after,
button[name="add"]:hover::after,
.product-form__submit:hover::after {
  left: 160%;
  transition: left 0.6s ease;
}


/* ------------------------------------------------ */
/* 5. SCARCITY BADGE                                */
/* ------------------------------------------------ */

.sv-scarcity-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(128,90,213,0.85), rgba(91,33,182,0.9));
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 6px;
  animation: sv-pulse-badge 2s ease-in-out infinite;
  width: fit-content;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}

@keyframes sv-pulse-badge {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0);
  }
}


/* ------------------------------------------------ */
/* 6. TRUST SIGNAL STRIP                            */
/* ------------------------------------------------ */

.sv-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  background: linear-gradient(
    135deg,
    rgba(26, 16, 64, 0.95),
    rgba(13, 8, 32, 0.95)
  );
  border: 1px solid rgba(128, 90, 213, 0.3);
  border-radius: 10px;
  margin: 24px 0;
}

.sv-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c4b5fd;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sv-trust-item svg {
  width: 16px;
  height: 16px;
  fill: #a78bfa;
  flex-shrink: 0;
}


/* ------------------------------------------------ */
/* 7. DROP ALERT â€” Email Capture Section            */
/* ------------------------------------------------ */

.sv-drop-alert {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(160deg, #0d0820 0%, #1a1040 100%);
  border-top: 1px solid rgba(128, 90, 213, 0.3);
}

.sv-drop-alert__heading {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ede9fe;
  margin-bottom: 8px;
}

.sv-drop-alert__sub {
  color: #a78bfa;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.sv-drop-alert__form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.sv-drop-alert__input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(128, 90, 213, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #ede9fe;
  font-size: 0.9rem;
  outline: none;
}

.sv-drop-alert__input::placeholder {
  color: #6d5fa6;
}

.sv-drop-alert__btn {
  padding: 12px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.sv-drop-alert__btn:hover {
  opacity: 0.88;
}


/* ------------------------------------------------ */
/* 8. URGENCY BANNER â€” Grails / Live Breaks         */
/* ------------------------------------------------ */

.sv-urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #5b21b6, #7c3aed, #5b21b6);
  background-size: 200% auto;
  animation: sv-banner-shift 4s linear infinite;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 20px;
}

@keyframes sv-banner-shift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.sv-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f87171;
  animation: sv-dot-blink 1s ease-in-out infinite;
}

@keyframes sv-dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}


/* ------------------------------------------------ */
/* 9. ADD-TO-CART PULSE ANIMATION                   */
/* ------------------------------------------------ */

@keyframes sv-cta-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.55);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }
}

.product-form__submit {
  animation: sv-cta-pulse 2.4s ease-in-out infinite;
}


/* ------------------------------------------------ */
/* 10. STICKY MOBILE CTA                            */
/* ------------------------------------------------ */

@media (max-width: 749px) {
  .sv-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 12px 16px;
    background: linear-gradient(135deg, #1a1040, #0d0820);
    border-top: 1px solid rgba(128, 90, 213, 0.4);
    display: flex;
    gap: 10px;
  }

  .sv-sticky-cta .button {
    flex: 1;
    text-align: center;
  }
}


/* ------------------------------------------------ */
/* 11. BUTTON HOVER LIFT                            */
/* ------------------------------------------------ */

.button:not(.button--tertiary) {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:not(.button--tertiary):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}


/* ------------------------------------------------ */
/* 12. PAGE ENTRANCE FADE                           */
/* ----------------------------------------------- */

@keyframes sv-page-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shopify-section:first-of-type {
  animation: sv-page-in 0.6s ease both;
}

/* ==========================================
 * 13. MOBILE RESPONSIVE (max-width: 749px)
  * ========================================== */

  @media (max-width: 749px) {

    /* Scarcity badge - smaller on mobile */
      .sv-scarcity-badge {
          font-size: 0.6rem;
              padding: 2px 6px;
                  margin-top: 4px;
                    }

                      /* Trust signal strip - stack items vertically */
                        .sv-trust-strip {
                            flex-direction: column;
                                gap: 10px;
                                    padding: 12px 16px;
                                        margin: 12px 0;
                                          }

                                            .sv-trust-item {
                                                justify-content: center;
                                                  }

                                                    /* Drop alert - full-width stacked form on mobile */
                                                      .sv-drop-alert form {
                                                          flex-direction: column !important;
                                                              align-items: stretch !important;
                                                                }

                                                                  .sv-drop-alert input[type="email"] {
                                                                      min-width: unset !important;
                                                                          width: 100% !important;
                                                                              box-sizing: border-box;
                                                                                }

                                                                                  .sv-drop-alert button[type="submit"] {
                                                                                      width: 100% !important;
                                                                                        }

 .sv-drop-alert__input {
                                                                                                min-width: unset !important;
                                                                                                    width: 100%;
                                                                                                        box-sizing: border-box;
                                                                                                          }

                                                                                                            .sv-drop-alert__btn {
                                                                                                                width: 100%;
                                                                                                                  }

                                                                                                                  }