@charset "utf-8";
/* CSS Document */

/* Cascade order: reset < base < utilities < components < pages < overrides */
@layer reset, base, utilities, components, pages, overrides;

/* ==========================
   FONTS
   ========================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat');

/* ==========================
   UTILITIES: TOKENS + CLASSES
   ========================== */
@layer utilities {
  :root {
    --gold-trim: #ffec80;
    --dark-purp: #660066;

    /* Motion */
    --fx-fast: 0.3s ease-in-out;

    /* Raised surface system (shared everywhere) */
    --raised-shadow:
      0 6px 12px rgba(0, 0, 0, 0.4),
      0 0 0 2px rgba(255, 255, 255, 0.05);

    --raised-bg:
      linear-gradient(145deg, var(--dark-purp), #7a007a);

    /* Gold variant (for things like .cart-thumb on a gold background) */
    --raised-bg--gold:
      linear-gradient(145deg, var(--gold-trim), #ffe25a);

    /* Frosted glass */
    --glass-blur: blur(8px);
  }

  /* Utility classes */
  .raised-surface {
    box-shadow: var(--raised-shadow);
    background: var(--raised-bg);
  }

  /* Same raised shadow, but gold surface */
  .raised-surface--gold {
    box-shadow: var(--raised-shadow);
    background: var(--raised-bg--gold);
  }

  /* Shared frosted-glass blur application (one rule) */
  :where(
    header div.nav-bar a,
    #contact-us input[type=text],
    #contact-us input[type=email],
    #contact-us textarea
  ) {
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
  }
}

/* ==========================
   RESET / GLOBAL
   ========================== */
@layer reset {
  html {
    font-size: 16px;
  }

  /* Reset and global box-sizing */
  *, html, body, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
}

/* ==========================
   BASE (elements/typography)
   ========================== */
@layer base {
  html, body {
    width: 100%;
    overflow-x: hidden; /* Hide horizontal overflow */
    font-family: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
  }

  body.no-scroll {
    overflow: hidden;
  }

  h1, h2, h3 {
    color: var(--gold-trim);
    text-shadow: 0.5px 0.5px var(--gold-trim);
    font-family: 'Times New Roman', serif;
  }

  i {
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: bold;
  }

  /* ==========================
     BASE BUTTON STYLING
     ========================== */
  button {
    min-width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;

    color: var(--dark-purp);
    outline: 1px solid #FFF;
    text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF; 
    font-weight: bold;
    border: 2px solid silver;
    border-radius: 999px;
    cursor: pointer;

    /* raised surface baseline (buttons don't REQUIRE class) */
    box-shadow: var(--raised-shadow);
    background: var(--raised-bg--gold);
  }

  /* Make SVGs inside controls not steal hover/click */
  button svg,
  .cart-remove-x svg {
    pointer-events: none;
  }
}

/* ==========================
   COMPONENTS (UI pieces)
   ========================== */
@layer components {
  /* ==========================
     UNIFIED HOVER / FOCUS FX
     ========================== */

  :where(
    .logo a, 
    header .nav-bar a, 
    .cart, 
    #closeCart, 
    .cart-summary button, 
    .cart-remove-x, 
    form button, 
    footer img.social-link
  ) {
    border: 4px solid transparent;
    border-radius: 999px !important;
    overflow: visible;

    will-change: transform, box-shadow, text-shadow, color;

    transition:
      transform var(--fx-fast),
      box-shadow var(--fx-fast),
      text-shadow var(--fx-fast),
      color var(--fx-fast),
      border-color var(--fx-fast),
      background-color var(--fx-fast),
      opacity var(--fx-fast);
  }

  :where(
    .logo a, 
    header .nav-bar a, 
    #closeCart, 
    .cart-summary button, 
    .cart-remove-x, 
    form button, 
    footer img.social-link
  ):is(:hover, :active, :focus-visible, :focus-within) {
    animation:
      flameText 0.62s infinite alternate ease-in-out 0s,
      flameBox 0.53s infinite alternate ease-in-out 0.2s,
      emberPulse 1.7s infinite alternate ease-in-out 0.4s;

    background: rgba(255, 255, 255, 0.75) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    border-radius: 999px !important;
    color: #FFFFFF !important;

    opacity: 1 !important;
  }

  .cart:is(:hover, :active, :focus-visible, :focus-within) {
    animation:
      flameBox 0.53s infinite alternate ease-in-out 0.2s,
      emberPulse 1.7s infinite alternate ease-in-out 0.4s;

    border-color: rgba(255, 255, 255, 0.75) !important;
    /* border-color: rgba(255, 255, 255, 0.3) !important; */
    border-radius: 999px !important;
    color: #FFFFFF !important;

    opacity: 1 !important;
  }

  /* ==========================
    NAVIGATION
    ========================== */
  header {
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gold-trim);
  }

  /* Shared header/footer bar */
  :where(header, footer) {
    width: 100%;
    height: 80px;
    background-color: var(--dark-purp);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
    padding: 0 10%;
  }

  :where(.logo, .cart) {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  /* Keep logo/cart images looking “raised” in both header + footer */
  :where(header, footer) img {
    display: block;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: var(--raised-shadow);
    background: var(--raised-bg);
  }

  /* Logo + cart images share the same size in both header + footer */
  :where(header, footer) :is(.logo img, .cart img) {
    width: 50px;
    height: 50px;
  }

  /* Nav links base styling (keep this) */
  header .nav-bar a {
    padding: 0.25rem;
    font-size: 1rem;
    color: var(--gold-trim);
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;

    border: 4px solid transparent;
    box-shadow: 0 0 5px transparent, 0 0 10px transparent;
  }

  /* Cart icon container */
  .cart {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    overflow: visible;

    box-shadow: var(--raised-shadow);
    background: var(--raised-bg);
  }

  .cart svg {
    width: 80%;
    height: 80%;
    fill: var(--gold-trim);
  }

  .cart-amount {
  position: absolute;
  top: -8px;
  right: -12px;

  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;

  font-size: 1rem;
  font-weight: bold;

  background-color: var(--gold-trim);
  color: var(--dark-purp);

  padding: 2px 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: Arial, Helvetica, sans-serif;
  z-index: 999;
}

  /* ============================
     FOOTER - SOCIAL MEDIA LINKS
     ============================ */
  footer {
    border-top: 1px solid var(--gold-trim);
  }

  footer div.nav-bar,
  footer div.nav-bar a,
  footer div.nav-bar img.social-link {
    width: 25px;
    border-radius: 50%;
  }

  footer div.nav-bar a,
  footer div.nav-bar img.social-link {
    height: 25px;
  }

  footer img.social-link:hover{
    animation:
      flameText 0.62s infinite alternate ease-in-out,
      flameBox 0.53s infinite alternate ease-in-out 0.2s,
      emberPulse 1.7s infinite alternate ease-in-out 0.4s;

    border-radius: 50%;
  }

  div#cr-info {
    height: 1.5rem;
    text-align: center;
    vertical-align: center;
    background-color: var(--dark-purp);
    color: var(--gold-trim);
    font-size: 0.75rem;
    padding-bottom: 0.5rem;
  }

  /* =================
     VIEW CART DRAWER
     ================= */
  #cartDrawer {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 350px;
    max-width: 90%;
    height: 100%;
    background: var(--dark-purp);
    color: var(--gold-trim);
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    transition: right var(--fx-fast);
    z-index: 2000;
    display: flex;
    flex-direction: column;
  }

  #cartDrawer.no-animate {
    transition: none !important;
  }

  #cartDrawer.open {
    right: 0;
  }

  #closeCart {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }

  .cart-header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: var(--dark-purp);
    border-bottom: 1px solid var(--gold-trim);
  }

  .cart-header h2 {
    color: var(--gold-trim) !important;
    text-shadow: none !important;
    font-family: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
    font-size: 1.5rem;
    margin: 0;
  }

  /* ======================
     CART CARD REMOVE (X)
     ====================== */
  .cart-title-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
  }

  .cart-remove-x {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
    border-radius: 0 !important;
    cursor: pointer;
    color: var(--dark-purp);
  }

  .cart-remove-x svg {
    display: block;
  }

  .cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
  }

  .cart-summary button {
    width: 100%;
  }

  .cart-footer {
    border-top: 1px solid var(--gold-trim);
    padding: 2rem;
  }

  .cart-total-row {
    text-align: center;
    margin-block: 1rem;
  }

  /* ======================
     CART ITEM CARDS
     ====================== */
  .cart-card {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: var(--gold-trim);
    border-bottom: 1px solid var(--gold-trim);
    border-radius: 12px;
    margin-bottom: 0.5rem;
  }

  /* gold background variant but same raised shadow */
  .cart-thumb {
    width: 70px;
    height: 98px; /* maintain 5:7 ratio */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--raised-shadow);
    background: var(--raised-bg--gold);
  }

  .cart-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-purp);
  }

  .cart-title {
    font-size: 1rem;
    margin: 0;
    color: var(--dark-purp);
    text-decoration: underline;
  }

  .cart-price {
    margin: 5px 0;
    font-weight: bold;
    font-size: 1.25rem;
  }

  .cart-qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
  }

  .qty-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid var(--dark-purp);
    color: var(--dark-purp);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .qty-value {
    min-width: 20px;
    text-align: center;
  }

  /* ==================
     ACCORDION FEATURE
     ================== */
  .accordion {
    width: 100%;
    margin: 0 auto;
  }

  .accordion-item {
    background-color: rgba(0, 0, 0, 0.25);
    color: var(--gold-trim);
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .accordion-item-header {
    min-height: 3.5rem;
    line-height: 1.5rem;
    font-weight: bold;
    display: grid;
    grid-template-columns: 40% auto 40%;
    place-items: center;
    position: relative;
    cursor: pointer;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, transparent, var(--gold-trim), transparent) 1;
    flex: 0 0 auto;
  }

  .accordion-item-header::before,
  .accordion-item-header::after {
    content: "\25BC";
    font-size: 2rem;
    cursor: pointer;
    transition: transform var(--fx-fast);
  }

  .accordion-item-header.active::before { transform: rotate(-180deg); }
  .accordion-item-header.active::after  { transform: rotate(180deg); }

  .accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--fx-fast);
  }

  .accordion-item-body-content {
    padding-block: .25rem;
  }

  .panel-view { position: relative; }

  #contact-us.active-panel,
  #about-us.active-panel {
    min-height: calc(100vh - 80px);
    margin: 0;
  }

  .panel-view.active-panel .accordion-item {
    height: 100%;
    margin: 0;
  }

  #contact-us.active-panel .accordion-item-body {
    max-height: none;
    overflow: hidden;
  }

  #about-us.active-panel .accordion-item-body {
    flex: 1 1 auto;
    max-height: none;
    overflow-y: auto;
  }

  #shop-now.active-panel .accordion-item-body {
    max-height: none;
    overflow: hidden;
  }

  /* ==========================
     BOOK SHOP GALLERY SECTION
     ========================== */
  .gallery-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  div.gallery-wrap:first-of-type { margin-bottom: 2rem; }

  .gallery, .track, .track * { user-select: none; }

  .gallery {
    width: 80%;
    overflow: hidden;
    position: relative;
    cursor: grab;
    -webkit-mask: linear-gradient(90deg, transparent, #FFF 20%, #FFF 80%, transparent);
    mask: linear-gradient(90deg, transparent, #FFF 20%, #FFF 80%, transparent);
  }

  .gallery:active { cursor: grabbing; }

  .track {
    height: 300px;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;

    will-change: transform;

    pointer-events: auto;
  }

  .track span { display: inline-flex; }

  .track img {
    display: block;
    width: 200px;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100);
    transition: transform 0.5s;
  }

  .gallery::-webkit-scrollbar { display: none; }

  .backBtn, .nextBtn {
    height: auto;
    width: 50px;
    margin: 40px;
    cursor: pointer;
  }

  .gallery div img:hover {
    filter: grayscale(0);
    cursor: pointer;
    transform: scale(1.1);
  }

  /* ========================
     CONTACT US FORM SECTION
     ======================== */
  #contact-us {
    background-color: transparent;
    text-align: center;
  }

  #contact-us form {
    height: 100%;
    min-width: 200px;
    margin: 0 10%;
    padding-block: 5rem;
    text-align: center;
  }

  #contact-us fieldset {
    display: grid;
    grid-template-columns: 20% 70%;
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    margin-block: 1rem;
    border: none;
  }

  #contact-us label { color: var(--gold-trim); }

  #contact-us input[type=text],
  #contact-us input[type=email],
  #contact-us textarea {
    line-height: 2rem;
    background-color: transparent;
    color: #FFF;
    padding-left: 0.5rem;
    cursor: pointer;
  }

  #contact-us textarea { margin-top: 3rem; }

  #contact-us fieldset,
  #contact-us textarea {
    border-radius: 15px;
  }

  #contact-us input[type=text],
  #contact-us input[type=email] {
    border-radius: 10px;
  }

  #contact-us-form #disclaimer {
    -webkit-appearance: none !important;
    appearance: none !important;

    width: 20px;
    height: 20px;

    border: 2px solid #FFF;
    border-radius: 4px !important;
    background-color: transparent;

    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
  }

  #contact-us-form #disclaimer:checked {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffec80' d='M9 16.17 4.83 12 3.41 13.41 9 19 21 7 19.59 5.59z'/%3E%3C/svg%3E");
  }

  .disclaimer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    text-align: left;
  }

  .disclaimer-row label {
    line-height: 1.3;
    margin: 0;
  }

  #contact-us div.flex-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-block: 2rem;
  }

  #contact-us button { width: 5rem; }

  /* ======================
     ABOUT US SECTION
     ====================== */
  #about-us {
    width: 100%;
    background-color: transparent;
    color: var(--gold-trim);
    text-align: center;
  }

  #about-us h2,
  p#about-us-ending {
    padding-block: 0.5rem;
    font-size: 5rem;
    font-style: italic;
    font-weight: bold;
    text-shadow: 3px 3px 5px #FFF;
    text-align: center;
  }

  #about-us h3 {
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
    letter-spacing: 0.75px;
  }

  #about-us p {
    line-height: 1.25;
    margin: 1rem auto;
    padding: 0 20%;
    text-align: justify;
  }
}

/* ==========================
   PAGES (page layouts/sections)
   ========================== */
@layer pages {
  /* ==============================================================
     GENERAL STYLING for EACH PAGE (Home, Product, Msg-Rcvd, etc.)
     ============================================================== */
  .body-style {
    position: relative;
    margin-top: 80px;
    width: 100%;
    min-height: calc(100vh - 160px);
    background-image: url("/static/images/sunset.jpg");
    background-size: cover;
    text-align: center;
    color: var(--dark-purp);
    padding-top: 1rem;
  }

  /* =================
     CAROUSEL FEATURE
     ================= */
  #carousel-section {
    width: 60%;
    margin: 0 auto 1rem auto;
  }

  #carousel-img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 1rem;
    border: 4px solid #FFF;
    box-shadow: var(--raised-shadow);
    background: var(--raised-bg);
  }

  /* ==============
     PRODUCT PAGES
     ============== */
  #product-page #product-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    border-radius: 1rem;
  }

  .tile, .product-image, .product-image img {
    width: 100%;
    height: auto;
  }  

  .tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    border-radius: 1rem;
  }

  .product-image img {
    aspect-ratio: 5 / 7;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
    box-shadow: var(--raised-shadow);
    background: var(--raised-bg);
  }

  #product-page h1 {
    color: var(--dark-purp);
    text-shadow: 2px 2px 4px #FFF;
    text-decoration: underline;
    font-size: clamp(0.75rem, 1vw, 1.75rem);
    margin-block: 1rem;
  }

  #product-page h1.no-margin { margin-bottom: 0; }

  #product-page h2 {
    color: var(--gold-trim);
    text-shadow: 1px 1px 2px var(--dark-purp);
    font-size: clamp(0.75rem, 1vw, 1.5rem);
    font-weight: normal;
    font-family: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
    margin: 1rem auto 0.25rem auto;
  }

  #product-page p {
    text-align: justify;
    margin-bottom: 1rem;
    font-size: clamp(0.75rem, 1vw, 1.25rem);
  }

  /* ==========================
     PRODUCT SPECS
     ========================== */
  #product-page .specs {
    width: 100%;
    margin: auto;
    border: 1px solid rgba(102, 0, 102, 0.25);
    border-radius: 1rem;
    padding: 1rem;
  }

  #product-page .specs-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    row-gap: 0.35rem;
    column-gap: 0;
    align-items: end;
  }

  #product-page .specs-list > dt { grid-row: 1; }
  #product-page .specs-list > dd {
    grid-row: 2;
    margin: 0;
  }

  #product-page .specs-label {
    font-family: "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: underline;
    text-shadow: 0.5px 0.5px #FFF;
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
    text-align: center;
    opacity: 0.95;
  }

  #product-page .specs-value {
    font-family: "Times New Roman", serif;
    font-weight: 800;
    color: var(--dark-purp);
    text-shadow: 2px 2px 4px #FFF;
    font-size: clamp(1.05rem, 1.7vw, 1.6rem);
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;
  }

  #product-page .specs-list > dt:nth-of-type(-n + 3),
  #product-page .specs-list > dd:nth-of-type(-n + 3) {
    border-right: 1px solid rgba(102, 0, 102, 0.25);
  }

  #product-page .specs-list > dt,
  #product-page .specs-list > dd {
    padding: 0 1rem;
  }

  .coming-soon { visibility: hidden; }

  /* Add-to-Cart Button Wrap */
  .btn-wrap {
    margin: 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .product-page-btn {
    width: 7.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1rem;
  }

  .product-qty-controls{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }

  .product-page-btn .qty-btn {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
  }

  .product-page-btn .qty-btn:focus { outline: none; }

  .product-page-btn .qty-btn svg { transition: opacity 0.15s ease; }
  .product-page-btn .qty-btn.icon-swap svg { opacity: 0; }
  .product-page-btn .qty-btn.icon-swap.show svg { opacity: 1; }

  #product-page h1.tinyFont { font-size: 1.5rem; }

  #product-page p.tinyFont {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  /* ======================
     MESSAGE RECEIVED PAGE
     ====================== */
  #form-submit #carousel-section { height: 75px; }
  #form-submit h1 { margin-top: 1rem; }
  #form-submit h2 { margin-bottom: 1rem; }
}

/* ==========================
   OVERRIDES (responsive + motion + keyframes)
   ========================== */
@layer overrides {
  /* ======================
     MOBILE RESPONSIVENESS
     ====================== */

  @media screen and (max-width: 400px) {
    .tinyHide { display: none; }

    #home-page h1, #home-page h2, .banner {
      font-size: .75em;
    }

    #contact-us fieldset {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, 1fr);
      gap: 1rem;
      padding: 1rem;
      margin-block: 0.5rem;
    }

    #contact-us input,
    #contact-us textarea {
      line-height: 1rem;
    }

    #contact-us textarea { margin-top: 1.5rem; }

    #contact-us div.flex-wrap {
      gap: 1rem;
      margin-block: 1rem;
    }

    #contact-us button {
      width: 2.5rem;
      height: 1rem;
    }
  }

  @media (max-width: 480px) {
    #product-page .specs-list > dt,
    #product-page .specs-list > dd {
      padding: 0 0.5rem;
    }
  }

  @media screen and (min-width: 700px) {
    #carousel-section {
      width: 80%;
      height: 300px;
    }
  }

  @media screen and (min-width: 1000px) {
    #carousel-section {
      width: 50%;
      height: 500px;
    }
  }

  /* ===========================================
     KEYFRAMES (Fire Effects)
     =========================================== */
  @keyframes flameText {
    0% {
      text-shadow:
        0 0 3px #ffcc00,
        0 0 8px #ff6600,
        0 0 12px #cc0000,
        0 0 16px #990000,
        0 0 20px var(--dark-purp);
    }
    100% {
      text-shadow:
        0 0 5px #fffec0,
        0 0 10px #ff3300,
        0 0 15px #cc0000,
        0 0 20px #990000,
        0 0 25px var(--dark-purp);
    }
  }

  @keyframes flameBox {
    0% {
      box-shadow:
        0 0 2px #FFFF35,
        0 0 6px var(--gold-trim),
        0 0 10px rgba(255, 236, 128, 0.3),
        /* inset 0 0 2px var(--dark-purp); */
    }
    100% {
      box-shadow:
        0 0 4px #FFFF35,
        0 0 12px var(--gold-trim),
        0 0 18px rgba(255, 236, 128, 0.5),
        /* inset 0 0 4px var(--dark-purp); */
    }
  }

  @keyframes emberPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.025); }
    100% { transform: scale(1.05); }
  }

  /* ==============================
     ACCESSIBILITY: REDUCED MOTION
     ============================== */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }
}

/* End of CSS File */