/** Shopify CDN: Minification failed

Line 511:0 Expected "}" to go with "{"

**/
/* world-landing.css
 * Shared styles for cosmere, mistborn, stormlight, elantris landing sections.
 * Extracted from sections/cosmere-landing.liquid on 2026-05-18.
 */

  .cos-landing {
    background-color: #1A1612;
    color: #B8B0A0;
    position: relative;
    overflow-x: hidden;
  }

  .cos-landing__texture {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.20;
    pointer-events: none;
    z-index: 0;
  }

  .cos-landing > *:not(.cos-landing__texture) {
    position: relative;
    z-index: 1;
  }

  /* ---- HERO ---- */
  .cos-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #1A1A1A;
  }

  .cos-hero__bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
  }

  .cos-hero__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.7) 100%);
  }

  .cos-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 24px;
  }

  @keyframes cos-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }

  .cos-hero__title {
    font-family: 'Cinzel Decorative', serif !important;
    font-size: 3.6em;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.1;
    background: linear-gradient(90deg, #7A7A7A 0%, #C0C0C0 15%, #EFEFEF 30%, #C0C0C0 45%, #8A8A8A 55%, #E0E0E0 65%, #C0C0C0 80%, #7A7A7A 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: cos-shimmer 8s ease-in-out infinite;
  }

  .cos-hero__logo {
    max-width: 350px;
    max-height: 150px;
    width: auto; height: auto;
    object-fit: contain;
    margin: 0 auto 24px;
    display: block;
    mix-blend-mode: screen;
    filter: brightness(1.5) drop-shadow(0 2px 15px rgba(0,0,0,0.5));
  }

  .cos-hero__subtitle {
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Cormorant Garamond', Garamond, serif;
    font-size: 1.5em;
    color: #D0C8B8;
    margin: 0;
  }

  /* ---- SECTIONS ---- */
  .cos-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cos-section__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #998A6E;
    text-align: center;
    margin: 0 0 12px;
  }

  .cos-section__title {
    font-family: 'Cinzel Decorative', serif !important;
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin: 0 0 16px;
    background: linear-gradient(90deg, #7A7A7A 0%, #C0C0C0 15%, #EFEFEF 30%, #C0C0C0 45%, #8A8A8A 55%, #E0E0E0 65%, #C0C0C0 80%, #7A7A7A 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: cos-shimmer 8s ease-in-out infinite;
  }

  .cos-section__desc {
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Cormorant Garamond', Garamond, serif;
    color: #B8AB8A;
    text-align: center;
    font-size: 1.35em;
    line-height: 1.6;
    margin: 0 0 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  /* B-Seal forge mark replaces the previous flat-line mini divider */
  .cos-divider {
    color: #C0C0C0;
    text-align: center;
    margin: 0 auto 50px;
    line-height: 1;
  }

  .cos-divider .brand-mark--forge {
    display: inline-block;
    opacity: 0.85;
  }

  /* ---- PRODUCT / CARD GRID ---- */
  .cos-grid {
    display: grid;
    gap: 24px;
  }

  .cos-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; }
  .cos-grid--3 { grid-template-columns: repeat(3, 1fr); }

  .cos-card {
    text-align: center;
    text-decoration: none;
    display: block;
    transition: opacity 0.5s ease;
    opacity: 0.9;
  }

  .cos-card:hover { opacity: 1; }

  .cos-card__image {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #2A2A2A 0%, #1A1A1A 70%, #141414 100%);
    margin-bottom: 16px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.04);
  }

  .cos-card__image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 8%;
    transition: all 0.5s ease;
  }

  .cos-card__image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 80px 35px rgba(0, 0, 0, 0.65);
    pointer-events: none;
    border-radius: 4px;
  }

  .cos-card__name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.2em;
    color: #C0C0C0;
    margin: 0 0 6px;
  }

  .cos-card__lore {
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Cormorant Garamond', Garamond, serif;
    color: #C8BFAF;
    font-size: 1.25em;
    line-height: 1.6;
    margin: 0 8px 12px;
    min-height: 3em;
  }

  .cos-card__price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05em;
    color: #B8AB8A;
    margin: 0 0 10px;
  }

  .cos-card__rating {
    display: flex;
    justify-content: center;
    margin: 0 0 12px;
    min-height: 18px;
  }
  .cos-card__rating .rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .cos-card__rating .rating-badge__stars {
    color: #D4AF37;
    display: inline-flex;
  }
  .cos-card__rating .rating-badge__stars svg {
    width: 14px;
    height: 14px;
  }

  .cos-feature__rating {
    margin: 0 0 18px;
  }
  .cos-feature__rating .rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .cos-feature__rating .rating-badge__stars {
    color: #D4AF37;
  }
  .cos-feature__rating .rating-badge__stars svg {
    width: 16px;
    height: 16px;
  }

  .cos-card__btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #C0C0C0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border: 1px solid rgba(192, 192, 192, 0.3);
    transition: all 0.5s ease;
  }

  .cos-card:hover .cos-card__btn {
    background: rgba(192, 192, 192, 0.08);
    border-color: #C0C0C0;
  }

  /* ---- HERO ARTIFACT (single feature card) ---- */
  .cos-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  .cos-feature__image {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #2A2A2A 0%, #1A1A1A 70%, #141414 100%);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.06);
  }

  .cos-feature__image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 10%;
    display: block;
  }

  .cos-feature__image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 100px 40px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    border-radius: 4px;
  }

  .cos-feature__content p {
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Cormorant Garamond', Garamond, serif;
    color: #C8BFAF;
    font-size: 1.25em;
    line-height: 1.85;
    margin: 0 0 16px;
  }

  .cos-feature__content .cos-feature__price {
    font-family: 'Montserrat', sans-serif;
    color: #B8AB8A;
    font-size: 1.1em;
    margin: 24px 0 16px;
  }

  .cos-feature__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }

  .cos-feature__content .cos-feature__price {
    font-family: 'Montserrat', sans-serif;
    color: #998A6E;
    font-size: 0.95em;
    margin: 24px 0 16px;
  }

  /* ---- VIALS BANNER IMAGE ---- */
  .cos-vials-banner {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 24px;
  }

  .cos-vials-banner__inner {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #2A2A2A 0%, #1A1A1A 70%, #141414 100%);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
  }

  .cos-vials-banner__inner img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7;
    object-fit: contain;
    padding: 4%;
    display: block;
  }

  .cos-vials-banner__inner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 120px 50px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    border-radius: 8px;
  }

  /* ---- SIXTEEN METALS LIST ---- */
  .cos-metals {
    columns: 2;
    column-gap: 64px;
    max-width: 760px;
    margin: 0 auto 32px;
    list-style: none;
    padding: 0;
  }

  .cos-metals li {
    break-inside: avoid;
    padding: 10px 0;
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Cormorant Garamond', Garamond, serif;
    color: #B8B0A0;
    font-size: 1.05em;
    line-height: 1.55;
  }

  .cos-metals strong {
    font-family: 'Cinzel Decorative', serif;
    color: #C0C0C0;
    margin-right: 6px;
    font-weight: 700;
  }

  .cos-metals__closing {
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Cormorant Garamond', Garamond, serif;
    color: #998A6E;
    text-align: center;
    margin: 24px auto 0;
    max-width: 540px;
  }

  /* ---- LINK CARDS (Starter Pairings / Beyond Scadrial) ---- */
  .cos-link-card {
    display: block;
    text-align: center;
    text-decoration: none;
    background: rgba(192,192,192,0.03);
    border: 1px solid rgba(192,192,192,0.12);
    border-radius: 8px;
    padding: 36px 28px;
    transition: all 0.5s ease;
  }

  .cos-link-card:hover {
    border-color: rgba(192,192,192,0.4);
    background: rgba(192,192,192,0.06);
  }

  .cos-link-card__title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.15em;
    color: #C0C0C0;
    margin: 0 0 10px;
  }

  .cos-link-card__desc {
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Cormorant Garamond', Garamond, serif;
    color: #998A6E;
    font-size: 0.98em;
    line-height: 1.65;
    margin: 0;
  }

  /* ---- TRIBUTE ---- */
  .cos-tribute {
    padding: 110px 24px !important;
    text-align: center !important;
    max-width: none !important;
    margin: 0 !important;
    background: rgba(15, 13, 11, 0.55) !important;
    background-color: rgba(15, 13, 11, 0.55) !important;
    background-image: none !important;
    position: relative !important;
    z-index: 5 !important;
  }
  .cos-tribute__inner {
    max-width: 740px;
    margin: 0 auto;
    position: relative;
    z-index: 6;
  }

  .cos-tribute__seal {
    color: rgba(192,192,192,0.55);
    margin: 0 auto 28px;
    width: max-content;
  }

  .cos-tribute__text {
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Cormorant Garamond', Garamond, serif;
    color: #B8B0A0;
    font-size: 1.1em;
    line-height: 1.85;
    margin: 0 0 18px;
  }

  .cos-tribute__quote {
    font-family: 'Bodoni Moda', 'Bodoni 72', 'Didot', 'Cormorant Garamond', Garamond, serif;
    color: #C0C0C0;
    font-size: 1.2em;
    line-height: 1.7;
    border: none;
    margin: 36px 0 0;
    padding: 0;
    font-style: italic;
  }

  /* Quiet expandable licensing credits at the bottom of the tribute */
  .cos-tribute__legals {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 171, 110, 0.10);
    text-align: center;
  }
  .cos-tribute__legals summary {
    list-style: none;
    cursor: pointer;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(184, 171, 110, 0.45);
