/** Shopify CDN: Minification failed

Line 284:19 Unexpected "*"

**/
/* ============================================================
   elfStudio — Vistaprint-inspired Clean & Premium Design
   Applied on Dawn v15 theme
   ============================================================ */

/* === 1. GLOBAL RESET & TYPOGRAPHY === */
*,
*::before,
*::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: 0.005em;
  line-height: 1.55;
  color: #1a1a1a;
}

h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* === 2. HEADER — Clean with subtle shadow === */
.section-header {
  border-bottom: none !important;
}

.header-wrapper {
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  background: #fff;
}

.header {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

/* Header nav links */
.header__menu-item,
.header__menu-item span {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.header__menu-item:hover span {
  text-decoration: none;
  opacity: 0.7;
}

/* Logo */
.header__heading-link {
  transition: opacity 0.2s ease;
}
.header__heading-link:hover {
  opacity: 0.8;
}

/* Header icons (cart, search, account) */
.header__icon {
  transition: opacity 0.2s ease;
}
.header__icon:hover {
  opacity: 0.65;
}

/* === 3. ANNOUNCEMENT BAR === */
.utility-bar,
.announcement-bar-section {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* === 4. IMAGE BANNER (Hero) === */
.banner {
  position: relative;
}

.banner__content {
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.banner__heading {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

/* === 4b. BANNER FRAMED (contained, not edge-to-edge) === */
.banner__media {
  border-radius: 16px;
  overflow: hidden;
}

#shopify-section-image_banner,
[id*="shopify-section"] .banner:first-child {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
}

#shopify-section-image_banner .banner,
.shopify-section:first-of-type .banner {
  border-radius: 16px;
  overflow: hidden;
}

@media screen and (max-width: 749px) {
  #shopify-section-image_banner,
  [id*="shopify-section"] .banner:first-child {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    padding-top: 0.8rem;
  }
  #shopify-section-image_banner .banner {
    border-radius: 12px;
  }
}

/* === 5. PRODUCT CARDS — Premium hover with lift + shadow === */
.card-wrapper {
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  border-radius: var(--card-corner-radius);
}

.card-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1),
              0 4px 10px rgba(0,0,0,0.06);
}

/* Card image zoom on hover */
.card__media,
.card .media {
  overflow: hidden;
  border-radius: var(--card-corner-radius) var(--card-corner-radius) 0 0;
}

.card__media img,
.card .media img {
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.card-wrapper:hover .card__media img,
.card-wrapper:hover .card .media img {
  transform: scale(1.05);
}

/* Card text area */
.card__content {
  padding: 1rem 0.8rem 0.6rem;
}

.card__information .card__heading {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
}

/* Cleaner price display */
.price-item--regular,
.price-item--sale {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.price__regular .price-item--regular {
  color: #1a1a1a;
}

/* === 6. COLLECTION CARDS === */
.collection-card-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.collection-card-wrapper .card__media,
.collection-card-wrapper .card .media {
  overflow: hidden;
}

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

/* Collection titles */
.card__heading a {
  text-decoration: none;
}

/* === 7. BUTTONS — Vistaprint style === */
.button,
.shopify-challenge__button,
button.button {
  border-radius: 8px !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  transition: all 0.2s ease;
  border: none !important;
  position: relative;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0.92;
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.button--secondary {
  border: 2px solid currentColor !important;
  background: transparent;
}

.button--secondary:hover {
  background: rgba(0,0,0,0.04);
}

/* === 8. SECTION HEADINGS & "View all" links === */
.section-header__title,
.collection-list-title,
.title--primary {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

/* "Alle anzeigen" / "View all" links */
.view-all a,
.full-unstyled-link,
a.full-unstyled-link {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.view-all a:hover,
a.full-unstyled-link:hover {
  opacity: 0.6;
}

/* === 9. SECTION SPACING & SEPARATORS === */
.shopify-section + .shopify-section {
  border-top: none;
}

.section-template--*-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* === 10. INPUT FIELDS — Clean focus states === */
.field__input,
.select__select,
.customer input,
textarea {
  border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,0.15);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field__input:focus,
.select__select:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26,26,26,0.08);
  outline: none;
}

/* === 11. FOOTER — Clean & spacious === */
.footer {
  border-top: 1px solid rgba(0,0,0,0.08) !important;
  padding-top: 3rem;
}

.footer__content-top {
  padding-bottom: 2rem;
}

.footer-block__heading {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-block__details-content a {
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(26,26,26,0.7);
  transition: color 0.2s ease;
}

.footer-block__details-content a:hover {
  color: #1a1a1a;
}

/* Payment icons */
.footer__content-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* === 12. NEWSLETTER / EMAIL SIGNUP === */
.newsletter-form__field-wrapper {
  max-width: 400px;
  margin: 0 auto;
}

/* === 13. RICH TEXT SECTIONS === */
.rich-text__wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.rich-text__text p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26,26,26,0.75);
}

/* === 14. PRODUCT PAGE ENHANCEMENTS === */
.product__title h1 {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.product__description {
  line-height: 1.7;
  color: rgba(26,26,26,0.8);
}

.product__description h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}

.product__description ul {
  padding-left: 1.2rem;
}

.product__description li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.product__description strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* Product form variants */
variant-selects .product-form__input label,
.product-form__input label {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* === 15. CART === */
.cart-notification__heading {
  font-weight: 700;
}

/* === 16. BREADCRUMBS (if any) === */
.breadcrumbs a {
  font-size: 0.82rem;
  color: rgba(26,26,26,0.6);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #1a1a1a;
}

/* === 17. BADGES === */
.badge {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

/* === 18. MOBILE OPTIMIZATIONS === */
@media screen and (max-width: 749px) {
  /* Disable hover effects on mobile */
  .card-wrapper:hover {
    transform: none;
    box-shadow: none;
  }
  .collection-card-wrapper:hover {
    transform: none;
    box-shadow: none;
  }
  .card-wrapper:hover .card__media img,
  .card-wrapper:hover .card .media img,
  .collection-card-wrapper:hover .card__media img {
    transform: none;
  }
  .button:hover {
    transform: none;
    box-shadow: none;
  }

  /* Tighter mobile header */
  .header {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  /* Smaller mobile section headings */
  .section-header__title,
  .title--primary {
    font-size: 1.3rem;
  }

  .banner__heading {
    font-size: 1.5rem;
  }
}

/* === 19. SCROLL ANIMATIONS (subtle fade-in) === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shopify-section {
  animation: fadeInUp 0.5s ease forwards;
}

/* === 20. SELECTION COLOR === */
::selection {
  background: rgba(26,26,46,0.12);
  color: #1a1a1a;
}

/* === 21. SCROLLBAR (subtle) === */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f7f7f7;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* === USP MULTICOLUMN SECTION === */
.multicolumn .multicolumn-list__item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.multicolumn .multicolumn-list__item h3,
.multicolumn .multicolumn-list__item .inline-richtext {
  font-size: 1.3rem !important;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.multicolumn .multicolumn-list__item .rte p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 750px) {
  .multicolumn .multicolumn-list__item {
    padding: 2rem 1.5rem;
  }
  .multicolumn .multicolumn-list__item h3,
  .multicolumn .multicolumn-list__item .inline-richtext {
    font-size: 1.45rem !important;
  }
  .multicolumn .multicolumn-list__item .rte p {
    font-size: 1.1rem;
  }
}


/* === TRUST BADGES (product page) === */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fafafa;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-badge svg {
  flex-shrink: 0;
  color: #2563eb;
}

.trust-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

@media screen and (max-width: 749px) {
  .trust-badges {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 1rem;
  }
  .trust-badge svg {
    width: 22px;
    height: 22px;
  }
  .trust-badge span {
    font-size: 0.78rem;
  }
}


/* === HERO SLOGAN (text-only) === */
.section-slogan_hero .rich-text__wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.section-slogan_hero .rich-text__text.rte p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.01em;
}

@media screen and (min-width: 750px) {
  .section-slogan_hero .rich-text__text.rte p {
    font-size: 1.25rem;
  }
}

