/** Shopify CDN: Minification failed

Line 3900:15 Expected identifier but found whitespace
Line 3900:17 Unexpected "{"
Line 3900:26 Expected ":"
Line 3900:51 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:404 (INDEX:0) */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--padding-top, 80px);
    padding-bottom: var(--padding-bottom, 80px);
    background-color: var(--color-flame-black, #000000);
  }

  .error-404__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .error-404__content {
    text-align: center;
  }

  .error-404__code {
    display: block;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
  }

  .error-404__heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .error-404__message {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-flame-cream, #F5F1E8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
  }

  .error-404__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .error-404__button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
  }

  @media (max-width: 749px) {
    .error-404 {
      min-height: 60vh;
    }

    .error-404__button {
      padding: 0.875rem 2rem;
      font-size: 0.875rem;
    }
  }
/* END_SECTION:404 */

/* START_SECTION:about-founder (INDEX:1) */
.about-founder {
    background-color: var(--founder-bg, var(--color-flame-dark-gray, #1A1A1A));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .about-founder__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    position: relative;
    z-index: 1;
  }
  
  .about-founder__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  
  .about-founder__quote-mark {
    font-size: 12rem;
    font-weight: 700;
    color: var(--color-brushed-gold);
    opacity: 0.15;
    line-height: 0.5;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    pointer-events: none;
  }
  
  .about-founder__quote {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.9);
    margin: 0 0 3rem 0;
    font-style: italic;
    position: relative;
    z-index: 1;
  }
  
  .about-founder__quote p {
    margin-bottom: 1rem;
  }
  
  .about-founder__quote p:last-child {
    margin-bottom: 0;
  }
  
  .about-founder__signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
  }
  
  .about-founder__image-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-brushed-gold);
    flex-shrink: 0;
  }
  
  .about-founder__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about-founder__info {
    text-align: left;
  }
  
  .about-founder__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-flame-cream, #F5F1E8);
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.5px;
  }
  
  .about-founder__title {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245, 241, 232, 0.72);
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .about-founder__tagline {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--color-flame-orange, #FFFFFF);
    margin: 0;
  }
  
  .about-founder__decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--color-brushed-gold) 20%,
      var(--color-brushed-gold) 80%,
      transparent 100%
    );
  }
  
  @media (max-width: 749px) {
    .about-founder {
      padding: 4rem 0;
    }
    
    .about-founder__quote-mark {
      font-size: 8rem;
      top: -1rem;
    }
    
    .about-founder__signature {
      flex-direction: column;
      text-align: center;
    }
    
    .about-founder__info {
      text-align: center;
    }
  }
/* END_SECTION:about-founder */

/* START_SECTION:about-hero (INDEX:2) */
.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .about-hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  
  .about-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(28, 28, 28, 0.85) 0%,
      rgba(28, 28, 28, 0.7) 50%,
      rgba(28, 28, 28, 0.5) 100%
    );
  }
  
  .about-hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 6rem var(--page-margin);
    width: 100%;
  }
  
  .about-hero__content {
    max-width: 800px;
  }
  
  .about-hero__subheading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-brushed-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }
  
  .about-hero__heading {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--color-sweet-cream);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.4s;
  }
  
  .about-hero__text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-sweet-cream);
    opacity: 0.9;
    max-width: 600px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.6s;
  }
  
  .about-hero__text p {
    margin-bottom: 1rem;
  }
  
  .about-hero__text strong {
    color: var(--color-brushed-gold);
    font-weight: 600;
  }
  
  .about-hero__cta {
    margin-top: 3rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.8s;
  }
  
  .about-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background-color: var(--color-brushed-gold);
    color: var(--color-bitter-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .about-hero__button::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-sweet-cream);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .about-hero__button:hover::before {
    transform: translateX(0);
  }
  
  .about-hero__button span,
  .about-hero__button svg {
    position: relative;
    z-index: 1;
  }
  
  .about-hero__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(200, 170, 110, 0.3);
  }
  
  .about-hero__button svg {
    transition: transform 0.3s ease;
  }
  
  .about-hero__button:hover svg {
    transform: translateX(4px);
  }
  
  .about-hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sweet-cream);
    opacity: 0.6;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
  }
  
  .about-hero__scroll-indicator svg {
    animation: scrollBounce 1.5s infinite;
  }
  
  @keyframes fadeSlideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes scrollBounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(8px);
    }
  }
  
  @media (max-width: 749px) {
    .about-hero {
      min-height: 70vh;
    }
    
    .about-hero__container {
      padding: 4rem var(--page-margin);
    }
    
    .about-hero__scroll-indicator {
      display: none;
    }
  }
/* END_SECTION:about-hero */

/* START_SECTION:about-kofe (INDEX:3) */
.about-kofe {
    background-color: var(--kofe-bg, var(--color-sweet-cream));
    padding: 6rem 0;
    position: relative;
  }
  
  .about-kofe__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }
  
  .about-kofe__header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .about-kofe__subheading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-charcoal-steel);
    margin-bottom: 1rem;
    opacity: 0.7;
  }
  
  .about-kofe__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-bitter-black);
    line-height: 1.2;
    letter-spacing: -1px;
  }
  
  .about-kofe__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .about-kofe__pillar {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .about-kofe__pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  }
  
  .about-kofe__pillar-letter {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-brushed-gold);
    background: linear-gradient(135deg, rgba(200, 170, 110, 0.1) 0%, rgba(200, 170, 110, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid var(--color-brushed-gold);
    transition: all 0.3s ease;
  }
  
  .about-kofe__pillar:hover .about-kofe__pillar-letter {
    background: var(--color-brushed-gold);
    color: var(--color-bitter-black);
    transform: scale(1.1);
  }
  
  .about-kofe__pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-bitter-black);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
  }
  
  .about-kofe__pillar-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-charcoal-steel);
    margin: 0;
  }
  
  .about-kofe__pillar-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-brushed-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .about-kofe__pillar:hover .about-kofe__pillar-accent {
    transform: scaleX(1);
  }
  
  @media (max-width: 1023px) {
    .about-kofe__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 749px) {
    .about-kofe {
      padding: 4rem 0;
    }
    
    .about-kofe__header {
      margin-bottom: 3rem;
    }
    
    .about-kofe__grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .about-kofe__pillar {
      padding: 2rem 1.5rem;
    }
  }
/* END_SECTION:about-kofe */

/* START_SECTION:about-mission (INDEX:4) */
.about-mission {
    background-color: var(--mission-bg, #fff);
    padding: 6rem 0;
  }
  
  .about-mission__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }
  
  .about-mission__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .about-mission__card {
    padding: 3rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .about-mission__card:hover {
    transform: translateY(-4px);
  }
  
  .about-mission__card--mission {
    background: linear-gradient(135deg, var(--color-bitter-black) 0%, #2a2a2a 100%);
    color: var(--color-sweet-cream);
  }
  
  .about-mission__card--vision {
    background: linear-gradient(135deg, var(--color-brushed-gold) 0%, #a88a50 100%);
    color: var(--color-bitter-black);
  }
  
  .about-mission__icon {
    margin-bottom: 1.5rem;
    opacity: 0.8;
  }
  
  .about-mission__heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  
  .about-mission__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    opacity: 0.9;
  }
  
  .about-mission__text p {
    margin: 0;
  }
  
  @media (max-width: 849px) {
    .about-mission__grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .about-mission__card {
      padding: 2rem;
    }
  }
  
  @media (max-width: 749px) {
    .about-mission {
      padding: 4rem 0;
    }
  }
/* END_SECTION:about-mission */

/* START_SECTION:about-narrative (INDEX:5) */
.about-narrative {
    background-color: var(--narrative-bg, #fff);
    padding: 6rem 0;
  }
  
  .about-narrative__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  @media (min-width: 990px) {
    .about-narrative__container {
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
    }
    
    .about-narrative--image-right .about-narrative__media {
      order: 2;
    }
    
    .about-narrative--image-right .about-narrative__content {
      order: 1;
    }
  }
  
  .about-narrative__media {
    position: relative;
  }
  
  .about-narrative__image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
  }
  
  .about-narrative__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
  
  .about-narrative__image-accent {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    border: 3px solid var(--color-brushed-gold);
    border-radius: 8px;
    z-index: 0;
  }
  
  .about-narrative--image-right .about-narrative__image-accent {
    left: -1.5rem;
    right: 1.5rem;
  }
  
  .about-narrative__content {
    max-width: 560px;
  }
  
  @media (min-width: 990px) {
    .about-narrative--image-right .about-narrative__content {
      margin-left: auto;
    }
  }
  
  .about-narrative__heading {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .about-narrative__heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-brushed-gold);
    margin-top: 1.25rem;
  }
  
  .about-narrative__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(245, 241, 232, 0.86);
  }
  
  .about-narrative__text p {
    margin-bottom: 1.25rem;
  }
  
  .about-narrative__text p:last-child {
    margin-bottom: 0;
  }
  
  .about-narrative__text strong {
    color: var(--color-flame-orange, #FFFFFF);
    font-weight: 600;
  }
  
  @media (max-width: 749px) {
    .about-narrative {
      padding: 4rem 0;
    }
    
    .about-narrative__image-accent {
      display: none;
    }
  }
/* END_SECTION:about-narrative */

/* START_SECTION:about-story (INDEX:6) */
.about-story {
    background-color: var(--about-bg, var(--color-flame-black, #000000));
    padding-top: var(--padding-top, 80px);
    padding-bottom: var(--padding-bottom, 80px);
  }

  .about-story__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }

  @media (min-width: 990px) {
    .about-story__container {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }

    .about-story--image-right .about-story__image-wrapper {
      order: 2;
    }

    .about-story--image-right .about-story__content {
      order: 1;
    }
  }

  .about-story__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }

  .about-story__image,
  .about-story__placeholder {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .about-story__placeholder {
    opacity: 0.2;
    filter: grayscale(100%);
  }

  .about-story__content-inner {
    max-width: 600px;
  }

  @media (min-width: 990px) {
    .about-story--image-right .about-story__content-inner {
      margin-left: auto;
    }
  }

  .about-story__heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .about-story__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.8;
    margin-bottom: 2rem;
  }

  .about-story__text p {
    margin-bottom: 1rem;
  }

  .about-story__text p:last-child {
    margin-bottom: 0;
  }

  .about-story__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .about-story__button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
  }
/* END_SECTION:about-story */

/* START_SECTION:about-values (INDEX:7) */
.about-values {
    background-color: var(--values-bg, var(--color-bitter-black));
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .about-values::before {
    content: 'IRON RAIL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 25vw, 20rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 0.1em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
  }
  
  .about-values__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    position: relative;
    z-index: 1;
  }
  
  .about-values__header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .about-values__subheading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-brushed-gold);
    margin-bottom: 1rem;
  }
  
  .about-values__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-sweet-cream);
    line-height: 1.2;
    letter-spacing: -1px;
  }
  
  .about-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .about-values__card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.6s ease forwards;
  }
  
  .about-values__card:hover {
    transform: translateY(-4px);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 100%
    );
    border-color: var(--color-brushed-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .about-values__letter {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-brushed-gold) 0%, #a88a50 100%);
    color: var(--color-bitter-black);
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: 4px;
    transition: transform 0.3s ease;
  }
  
  .about-values__card:hover .about-values__letter {
    transform: scale(1.1) rotate(-3deg);
  }
  
  .about-values__card-content {
    flex: 1;
  }
  
  .about-values__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-sweet-cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
  }
  
  .about-values__description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(245, 241, 232, 0.7);
    margin: 0;
  }
  
  @keyframes cardFadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 749px) {
    .about-values {
      padding: 4rem 0;
    }
    
    .about-values__header {
      margin-bottom: 3rem;
    }
    
    .about-values__grid {
      grid-template-columns: 1fr;
    }
    
    .about-values__card {
      padding: 1.5rem;
    }
  }
/* END_SECTION:about-values */

/* START_SECTION:announcement-bar (INDEX:8) */
.announcement-bar {
    background-color: var(--announcement-bg, #000000);
    color: var(--announcement-text, #FFFFFF);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    font-weight: 600;
  }

  .announcement-bar__content {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .announcement-bar__text,
  .announcement-bar__link {
    margin: 0;
    color: inherit;
    text-decoration: none;
    display: inline-block;
  }

  .announcement-bar__link {
    transition: opacity 0.2s ease;
  }

  .announcement-bar__link:hover {
    opacity: 0.8;
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:article (INDEX:9) */
.article-page {
    background-color: var(--color-flame-black, #000000);
    color: var(--color-flame-cream, #F5F1E8);
    padding-bottom: 5rem;
  }

  .article-page__hero {
    background: linear-gradient(180deg, rgba(74, 15, 20, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
    border-bottom: 1px solid rgba(192, 192, 192, 0.35);
  }

  .article-page__hero-inner,
  .article-page__body-wrap,
  .article-comments__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .article-page__hero-inner {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }

  .article-page__back-link {
    display: inline-block;
    color: var(--color-flame-orange, #FFFFFF);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .article-page__back-link:hover {
    color: var(--color-flame-gradient-bottom, #7A2530);
  }

  .article-page__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--color-flame-orange, #FFFFFF);
    line-height: 1.15;
    margin: 0;
  }

  .article-page__meta {
    margin-top: 1rem;
    color: rgba(245, 241, 232, 0.7);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1px;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .article-page__feature-media {
    max-width: var(--page-width);
    margin: 2rem auto 0;
    padding: 0 var(--page-margin);
  }

  .article-page__feature-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border: 1px solid rgba(192, 192, 192, 0.25);
  }

  .article-page__body-wrap {
    padding-top: 2.5rem;
  }

  .article-page__body {
    color: rgba(245, 241, 232, 0.92);
    line-height: 1.8;
    font-size: 1.0625rem;
  }

  .article-page__body p,
  .article-page__body ul,
  .article-page__body ol,
  .article-page__body blockquote,
  .article-page__body h2,
  .article-page__body h3 {
    margin-bottom: 1.25rem;
  }

  .article-page__body h2,
  .article-page__body h3,
  .article-page__body h4 {
    color: var(--color-flame-orange, #FFFFFF);
  }

  .article-page__body a {
    color: var(--color-flame-orange, #FFFFFF);
  }

  .article-page__body blockquote {
    border-left: 3px solid var(--color-flame-orange, #FFFFFF);
    padding-left: 1rem;
    color: rgba(245, 241, 232, 0.78);
  }

  .article-page__tags {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .article-page__tags li {
    border: 1px solid rgba(192, 192, 192, 0.35);
    color: var(--color-flame-orange, #FFFFFF);
    padding: 0.35rem 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
  }

  .article-comments {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(192, 192, 192, 0.35);
  }

  .article-comments__heading,
  .article-comments__form-title {
    color: var(--color-flame-orange, #FFFFFF);
    margin-bottom: 1rem;
  }

  .article-comments__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
  }

  .article-comments__item {
    padding: 1rem;
    background-color: var(--color-flame-dark-gray, #1A1A1A);
    border: 1px solid rgba(192, 192, 192, 0.25);
  }

  .article-comments__author {
    font-weight: 700;
    margin-bottom: 0.4rem;
  }

  .article-comments__date {
    font-size: 0.8rem;
    color: rgba(245, 241, 232, 0.65);
    margin-bottom: 0.75rem;
  }

  .article-comments__content {
    color: rgba(245, 241, 232, 0.85);
  }

  .article-comments__form {
    margin-top: 2rem;
  }

  .article-comments__moderation-note {
    color: rgba(245, 241, 232, 0.75);
    margin-bottom: 0.8rem;
  }

  .article-comments__form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 750px) {
    .article-comments__form-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .article-comments label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(245, 241, 232, 0.75);
  }

  .article-comments input,
  .article-comments textarea {
    width: 100%;
    border: 1px solid rgba(192, 192, 192, 0.35);
    background-color: #0f0f0f;
    color: var(--color-flame-cream, #F5F1E8);
    padding: 0.8rem 0.9rem;
  }

  .article-comments input:focus,
  .article-comments textarea:focus {
    outline: none;
    border-color: var(--color-flame-orange, #FFFFFF);
  }

  .article-comments__submit {
    margin-top: 1rem;
    border: 0;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
  }

  .article-comments__submit:hover {
    filter: brightness(1.08);
  }
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:10) */
.blog-catalog {
    background:
      radial-gradient(circle at top right, rgba(222, 116, 0, 0.2) 0, rgba(0, 0, 0, 0) 35%),
      var(--color-flame-black, #000000);
    color: var(--color-flame-cream, #F5F1E8);
    padding-bottom: 5rem;
  }

  .blog-catalog__hero {
    border-bottom: 1px solid rgba(192, 192, 192, 0.35);
    background: linear-gradient(180deg, rgba(74, 15, 20, 0.28) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .blog-catalog__hero-inner,
  .blog-catalog__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .blog-catalog__hero-inner {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .blog-catalog__eyebrow {
    color: var(--color-flame-orange, #FFFFFF);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }

  .blog-catalog__title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    line-height: 1.1;
    color: var(--color-flame-orange, #FFFFFF);
  }

  .blog-catalog__subtitle {
    margin-top: 1rem;
    max-width: 48ch;
    color: rgba(245, 241, 232, 0.8);
    font-size: 1.0625rem;
  }

  .blog-catalog__container {
    padding-top: 3rem;
  }

  .blog-catalog__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
  }

  @media (min-width: 750px) {
    .blog-catalog__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (min-width: 1100px) {
    .blog-catalog__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  .blog-card {
    background-color: var(--color-flame-dark-gray, #1A1A1A);
    border: 1px solid rgba(192, 192, 192, 0.25);
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .blog-card__image-link {
    display: block;
  }

  .blog-card__media {
    aspect-ratio: 16 / 10;
    background: #0f0f0f;
    overflow: hidden;
  }

  .blog-card__image,
  .blog-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .blog-card__placeholder {
    opacity: 0.2;
  }

  .blog-card:hover .blog-card__image {
    transform: scale(1.03);
  }

  .blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    flex: 1;
  }

  .blog-card__meta {
    font-size: 0.8125rem;
    color: rgba(245, 241, 232, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .blog-card__title {
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 0;
    text-transform: none;
  }

  .blog-card__title a {
    color: var(--color-flame-cream, #F5F1E8);
    text-decoration: none;
  }

  .blog-card__title a:hover {
    color: var(--color-flame-orange, #FFFFFF);
  }

  .blog-card__excerpt {
    font-size: 0.975rem;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.8);
    margin: 0;
  }

  .blog-card__tags {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .blog-card__tags li {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(222, 116, 0, 0.45);
    color: var(--color-flame-orange, #FFFFFF);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .blog-card__read-more {
    margin-top: auto;
    color: var(--color-flame-orange, #FFFFFF);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8125rem;
    font-weight: 700;
  }

  .blog-card__read-more:hover {
    color: var(--color-flame-gradient-bottom, #7A2530);
  }

  .blog-catalog__pagination {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-catalog__page-link {
    min-width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.85rem;
    border: 1px solid rgba(192, 192, 192, 0.35);
    color: var(--color-flame-cream, #F5F1E8);
    text-decoration: none;
    font-size: 0.875rem;
  }

  .blog-catalog__page-link.is-active,
  .blog-catalog__page-link:hover {
    border-color: var(--color-flame-orange, #FFFFFF);
    color: var(--color-flame-orange, #FFFFFF);
  }

  .blog-catalog__empty {
    border: 1px solid rgba(192, 192, 192, 0.35);
    padding: 2rem;
    text-align: center;
    background-color: var(--color-flame-dark-gray, #1A1A1A);
  }

  .blog-catalog__empty h2 {
    color: var(--color-flame-orange, #FFFFFF);
    margin-bottom: 0.75rem;
  }

  .blog-catalog__empty p {
    color: rgba(245, 241, 232, 0.8);
  }
/* END_SECTION:blog */

/* START_SECTION:cart-drawer (INDEX:11) */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
  }

  .cart-drawer.is-open {
    pointer-events: auto;
  }

  .cart-drawer__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .cart-drawer.is-open .cart-drawer__overlay {
    opacity: 1;
  }

  .cart-drawer__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: var(--color-flame-cream, #F5F1E8);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  }

  .cart-drawer.is-open .cart-drawer__content {
    transform: translateX(0);
  }

  /* Header */
  .cart-drawer__header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    background: var(--color-flame-black, #000000);
    color: var(--color-flame-orange, #FFFFFF);
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .cart-drawer__close {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--color-flame-orange, #FFFFFF);
    transition: opacity 0.2s ease;
  }

  .cart-drawer__close:hover {
    opacity: 0.7;
  }

  .cart-drawer__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
  }

  /* Items */
  .cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
  }

  .cart-drawer__item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  }

  .cart-drawer__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .cart-drawer__item-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-flame-gray, #E5E0D8);
  }

  .cart-drawer__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-drawer__item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cart-drawer__item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cart-drawer__item-info {
    flex: 1;
  }

  .cart-drawer__item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-flame-black, #000000);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease;
    display: block;
  }

  .cart-drawer__item-title:hover {
    color: var(--color-flame-orange, #FFFFFF);
  }

  .cart-drawer__item-remove {
    background: transparent;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--color-flame-gray, #666666);
    transition: all 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }

  .cart-drawer__item-remove:hover {
    color: var(--color-flame-black, #000000);
    background: rgba(192, 192, 192, 0.1);
  }

  .cart-drawer__item-variant {
    font-size: 0.875rem;
    color: var(--color-flame-gray, #666666);
    margin: 0;
  }

  .cart-drawer__item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }

  .cart-drawer__item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--color-flame-black, #000000);
    border-radius: 8px;
    padding: 0.25rem;
  }

  .cart-drawer__qty-btn {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-flame-black, #000000);
    transition: background 0.2s ease;
    border-radius: 6px;
  }

  .cart-drawer__qty-btn:hover {
    background: rgba(192, 192, 192, 0.1);
  }

  .cart-drawer__qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-flame-black, #000000);
  }

  .cart-drawer__qty-input::-webkit-outer-spin-button,
  .cart-drawer__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-drawer__item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
  }

  /* Empty State */
  .cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-flame-gray, #666666);
  }

  .cart-drawer__empty svg {
    color: var(--color-flame-orange, #FFFFFF);
    margin-bottom: 1.5rem;
  }

  .cart-drawer__empty p {
    font-size: 1.125rem;
    margin: 0 0 1.5rem;
  }

  .cart-drawer__empty-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.2s ease;
  }

  .cart-drawer__empty-link:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
  }

  /* Footer */
  .cart-drawer__footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(28, 28, 28, 0.1);
    background: white;
  }

  .cart-drawer__promo-toggle {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--color-flame-orange, #FFFFFF);
    border-radius: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-flame-orange, #FFFFFF);
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
  }

  .cart-drawer__promo-toggle:hover {
    background: var(--color-flame-orange, #FFFFFF);
    color: #FFFFFF;
  }

  .cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }

  .cart-drawer__subtotal-label {
    font-weight: 600;
    color: var(--color-flame-black, #000000);
  }

  .cart-drawer__subtotal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
  }

  .cart-drawer__checkout-btn {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.2s ease;
  }

  .cart-drawer__checkout-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
  }

  @media (max-width: 480px) {
    .cart-drawer__content {
      max-width: 100%;
    }
  }
/* END_SECTION:cart-drawer */

/* START_SECTION:collection (INDEX:13) */
.collection-page {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 1.75rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
  }

  @media (max-width: 990px) {
    .collection-page {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  /* Left Column */
  .collection-left {
    display: flex;
    flex-direction: column;
  }

  .collection-page__title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
    margin: 0 0 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .collection-page__description {
    font-size: 0.9375rem;
    color: var(--color-flame-cream, #F5F1E8);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    opacity: 0.8;
  }

  @media (min-width: 991px) {
    .collection-page__title {
      margin-bottom: 0.75rem;
    }

    .collection-page__description {
      margin-bottom: 2rem;
    }
  }

  @media (min-width: 991px) {
    .collection-left {
      position: sticky;
      top: 2rem;
      align-self: start;
      max-height: calc(100vh - 4rem);
      display: flex;
      flex-direction: column;
    }

    .collection-filters {
      flex: 1;
      overflow-y: auto;
      min-height: 0;
    }
  }

  @media (max-width: 990px) {
    .collection-page__description {
      margin-bottom: 1.5rem;
    }
  }

  /* Filters Sidebar */
  .collection-filters {
    background: #1A1A1A;
    border-radius: 0;
    padding: 1.5rem;
    border: 1px solid rgba(192, 192, 192, 0.2);
  }

  .collection-filters__title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-flame-orange, #FFFFFF);
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
  }

  .filter-group {
    margin-bottom: 2rem;
  }

  .filter-group__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-flame-cream, #F5F1E8);
    margin: 0 0 1rem;
  }

  .filter-group__options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.8;
    transition: all 0.2s ease;
  }

  .filter-checkbox:hover {
    color: var(--color-flame-orange, #FFFFFF);
    opacity: 1;
  }

  .filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-flame-orange, #FFFFFF);
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--color-flame-orange, #FFFFFF);
  }

  .filter-checkbox__label {
    flex: 1;
  }

  .filter-clear {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid var(--color-flame-orange, #FFFFFF);
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-flame-orange, #FFFFFF);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .filter-clear:hover {
    background: var(--color-flame-orange, #FFFFFF);
    color: #FFFFFF;
  }

  /* Collection Main */
  .collection-main {
    min-width: 0;
    max-width: 100%;
  }

  .collection-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 2rem;
    min-height: 40px;
  }

  @media (min-width: 991px) {
    .collection-filters {
      margin-top: calc(40px + 2rem);
    }
  }

  .collection-header__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
  }

  /* Sort Dropdown */
  .collection-sort {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .collection-sort__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-flame-cream, #F5F1E8);
    white-space: nowrap;
  }

  @media (max-width: 990px) {
    .collection-header {
      justify-content: flex-start;
    }
  }

  .collection-sort__select {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: #1A1A1A;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-flame-cream, #F5F1E8);
    cursor: pointer;
    appearance: none;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .collection-sort__select:hover {
    border-color: var(--color-flame-orange, #FFFFFF);
  }

  .collection-sort__select:focus {
    outline: none;
    border-color: var(--color-flame-orange, #FFFFFF);
  }

  .collection-sort__icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-flame-cream, #F5F1E8);
  }

  /* Product Grid - Reuse from featured collection */
  .collection-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile, 1), 1fr);
    gap: 2rem 1.5rem;
  }

  @media (min-width: 750px) {
    .collection-grid {
      grid-template-columns: repeat(var(--columns-desktop, 3), 1fr);
      gap: 2rem 1.75rem;
    }
  }

  .product-card {
    display: flex;
    flex-direction: column;
    background: #1A1A1A;
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(192, 192, 192, 0.2);
    position: relative;
  }

  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-flame-gradient-top, #4A0F14), var(--color-flame-gradient-bottom, #7A2530));
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .product-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .product-card:hover::before {
    opacity: 1;
  }

  .product-card__image-link {
    display: block;
    text-decoration: none;
  }

  .product-card__image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card__image,
  .product-card__placeholder {
    width: auto;
    height: auto;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .product-card__placeholder {
    opacity: 0.15;
    filter: grayscale(100%);
  }

  .product-card__image-link:hover .product-card__image {
    transform: scale(1.03);
  }

  .product-card__content {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    flex: 1;
    background: #1A1A1A;
  }

  /* Star Rating */
  .product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
  }

  .product-card__stars {
    display: flex;
    gap: 1px;
    color: var(--color-flame-orange, #FFFFFF);
    font-size: 0.875rem;
    letter-spacing: -1px;
  }

  .product-card__stars .star {
    line-height: 1;
  }

  .product-card__reviews {
    font-size: 0.75rem;
    color: var(--color-flame-cream, #F5F1E8);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    opacity: 0.7;
  }

  /* Title */
  .product-card__title-link {
    text-decoration: none;
    color: inherit;
  }

  .product-card__title {
    font-size: 1.375rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-flame-cream, #F5F1E8);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.25px;
    transition: color 0.3s ease;
  }

  .product-card__title-link:hover .product-card__title {
    color: var(--color-flame-orange, #FFFFFF);
  }

  /* Description */
  .product-card__description {
    font-size: 0.875rem;
    color: var(--color-flame-cream, #F5F1E8);
    line-height: 1.65;
    margin: 0;
    letter-spacing: 0.1px;
    opacity: 0.7;
  }

  /* Variant Selector */
  .product-card__variant-selector {
    position: relative;
    margin-top: 0.25rem;
  }

  .product-card__variant-select {
    width: 100%;
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    background: #0A0A0A;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-flame-cream, #F5F1E8);
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product-card__variant-select:hover {
    border-color: var(--color-flame-orange, #FFFFFF);
    background: #111;
  }

  .product-card__variant-select:focus {
    outline: none;
    border-color: var(--color-flame-orange, #FFFFFF);
    box-shadow: inset 0 0 0 1px var(--color-flame-orange, #FFFFFF);
  }

  .product-card__select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-flame-cream, #F5F1E8);
    transition: color 0.3s ease;
  }

  .product-card__variant-selector:hover .product-card__select-icon {
    color: var(--color-flame-orange, #FFFFFF);
  }

  /* Price */
  .product-card__price-wrapper {
    margin-top: auto;
    padding-top: 0.75rem;
  }

  .product-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  .product-card__price-main {
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--color-flame-orange, #FFFFFF);
    line-height: 1;
    letter-spacing: -0.5px;
  }

  .product-card__price-compare {
    font-size: 1rem;
    color: var(--color-flame-cream, #F5F1E8);
    text-decoration: line-through;
    font-weight: 400;
    opacity: 0.5;
  }

  .product-card__price-per {
    font-size: 0.75rem;
    color: var(--color-flame-orange, #FFFFFF);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Add to Cart Button */
  .product-card__add-to-cart {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }

  .product-card__add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }

  .product-card__add-to-cart:hover:not(:disabled)::before {
    left: 100%;
  }

  .product-card__add-to-cart:hover:not(:disabled) {
    filter: brightness(1.1);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
  }

  .product-card__add-to-cart:active:not(:disabled) {
    transform: scale(0.98);
  }

  .product-card__add-to-cart:disabled {
    background: #333;
    color: rgba(245, 241, 232, 0.5);
    cursor: not-allowed;
  }

  .product-card__add-to-cart.adding {
    background: var(--color-flame-orange, #FFFFFF);
    color: #FFFFFF;
  }

  /* Pagination */
  .collection-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0 1rem;
  }

  .collection-pagination__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--color-flame-orange, #FFFFFF);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 0;
    border: 1px solid var(--color-flame-orange, #FFFFFF);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .collection-pagination__link:hover {
    background: var(--color-flame-orange, #FFFFFF);
    color: #FFFFFF;
  }

  .collection-pagination__current {
    font-size: 0.9375rem;
    color: var(--color-flame-cream, #F5F1E8);
    font-weight: 600;
    opacity: 0.7;
  }

  /* Empty State */
  .collection-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-flame-cream, #F5F1E8);
    font-size: 1.125rem;
    opacity: 0.7;
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:14) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:contact-form (INDEX:15) */
.contact-section {
    padding-top: var(--padding-top, 80px);
    padding-bottom: var(--padding-bottom, 80px);
    background: var(--color-flame-black, #000000);
  }

  .contact-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  @media (min-width: 990px) {
    .contact-section__inner {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }
  }

  /* Content Side */
  .contact-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-section__subheading {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-flame-gradient-bottom, #7A2530);
    margin: 0;
  }

  .contact-section__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .contact-section__description {
    font-size: 1rem;
    color: var(--color-flame-cream, #F5F1E8);
    line-height: 1.6;
    opacity: 0.8;
  }

  .contact-section__description p {
    margin: 0 0 0.5rem;
  }

  .contact-section__description p:last-child {
    margin-bottom: 0;
  }

  /* Info Cards */
  .contact-section__info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  @media (min-width: 600px) {
    .contact-section__info-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  @media (min-width: 990px) {
    .contact-section__info-cards {
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }
  }

  @media (min-width: 1200px) {
    .contact-section__info-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  .contact-info-card {
    background: #1A1A1A;
    padding: 1.25rem 1.25rem;
    border-radius: 0;
    border: 1px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .contact-info-card:hover {
    border-color: var(--color-flame-orange, #FFFFFF);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(192, 192, 192, 0.2);
  }

  a.contact-info-card {
    cursor: pointer;
  }

  .contact-info-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 0.875rem;
    flex-shrink: 0;
  }

  .contact-info-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-info-card__title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.7;
    margin: 0 0 0.5rem;
  }

  .contact-info-card__text {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
    margin: 0;
    line-height: 1.5;
    white-space: pre-line;
    word-break: break-word;
  }

  /* Form Wrapper */
  .contact-section__form-wrapper {
    background: #1A1A1A;
    padding: 2.5rem;
    border-radius: 0;
    border: 1px solid rgba(192, 192, 192, 0.2);
  }

  @media (min-width: 990px) {
    .contact-section__form-wrapper {
      position: sticky;
      top: 2rem;
      align-self: start;
    }
  }

  @media (max-width: 750px) {
    .contact-section__form-wrapper {
      padding: 1.5rem;
    }
  }

  /* Success Message */
  .contact-form__success {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-botanical-green);
    color: white;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

  .contact-form__success svg {
    flex-shrink: 0;
  }

  .contact-form__success p {
    margin: 0;
    font-weight: 600;
  }

  /* Error Messages */
  .contact-form__errors {
    padding: 1.25rem 1.5rem;
    background: #FEE;
    border: 2px solid #C33;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

  .contact-form__errors h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #C33;
    margin: 0 0 0.75rem;
  }

  .contact-form__errors ul {
    margin: 0;
    padding-left: 1.25rem;
  }

  .contact-form__errors li {
    color: #C33;
    margin-bottom: 0.5rem;
  }

  .contact-form__errors li:last-child {
    margin-bottom: 0;
  }

  /* Form */
  .contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 750px) {
    .contact-form {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-form__field--full {
    grid-column: 1 / -1;
  }

  .contact-form__field label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-flame-cream, #F5F1E8);
  }

  .contact-form__field .required {
    color: var(--color-flame-orange, #FFFFFF);
  }

  .contact-form__field input,
  .contact-form__field textarea {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-flame-cream, #F5F1E8);
    background: #0A0A0A;
    transition: all 0.2s ease;
  }

  .contact-form__field input:focus,
  .contact-form__field textarea:focus {
    outline: none;
    border-color: var(--color-flame-orange, #FFFFFF);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.1);
  }

  .contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-form__field input::placeholder,
  .contact-form__field textarea::placeholder {
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.5;
  }

  .contact-form__submit {
    grid-column: 1 / -1;
    margin-top: 1rem;
  }

  .contact-form__button {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .contact-form__button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
  }

  .contact-form__button:active {
    transform: translateY(0);
  }

  @media (min-width: 750px) {
    .contact-form__button {
      width: auto;
      min-width: 250px;
    }
  }
/* END_SECTION:contact-form */

/* START_SECTION:custom-section (INDEX:16) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:featured-collection (INDEX:17) */
.featured-collection {
    padding-top: var(--padding-top, 60px);
    padding-bottom: var(--padding-bottom, 60px);
    background-color: var(--color-flame-black, #000000);
  }

  .featured-collection__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
  }

  .featured-collection__heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .featured-collection__description {
    font-size: 1.125rem;
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.7;
    line-height: 1.6;
  }

  .featured-collection__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .featured-collection__grid .product-card {
    width: 100%;
  }

  @media (min-width: 750px) {
    .featured-collection__grid .product-card {
      width: calc((100% - 3rem) / var(--columns-desktop, 3));
      max-width: 400px;
    }
  }

  .product-card {
    display: flex;
    flex-direction: column;
    background: #1A1A1A;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(192, 192, 192, 0.15);
    position: relative;
  }

  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-flame-gradient-top, #4A0F14), var(--color-flame-gradient-bottom, #7A2530));
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .product-card:hover {
    box-shadow: 0 12px 40px rgba(28, 28, 28, 0.15), 0 4px 12px rgba(28, 28, 28, 0.08);
  }

  .product-card:hover::before {
    opacity: 1;
  }

  .product-card__image-link {
    display: block;
    text-decoration: none;
  }

  .product-card__image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-flame-black, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-card__image,
  .product-card__placeholder {
    width: auto;
    height: auto;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .product-card__placeholder {
    opacity: 0.15;
    filter: grayscale(100%);
  }

  .product-card__image-link:hover .product-card__image {
    transform: scale(1.03);
  }


  .product-card__content {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    flex: 1;
    background: #1A1A1A;
  }

  /* Star Rating */
  .product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
  }

  .product-card__stars {
    display: flex;
    gap: 1px;
    color: var(--color-flame-orange, #FFFFFF);
    font-size: 0.875rem;
    letter-spacing: -1px;
  }

  .product-card__stars .star {
    line-height: 1;
  }

  .product-card__reviews {
    font-size: 0.75rem;
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.6;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  /* Title */
  .product-card__title-link {
    text-decoration: none;
    color: inherit;
  }

  .product-card__title {
    font-size: 1.375rem;
    font-weight: 600;
    font-style: normal;
    color: var(--color-flame-cream, #F5F1E8);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.25px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.375rem * 1.25);
  }

  .product-card__title-link:hover .product-card__title {
    color: var(--color-flame-orange, #FFFFFF);
  }

  /* Description */
  .product-card__description {
    font-size: 0.875rem;
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.7;
    line-height: 1.65;
    margin: 0;
    letter-spacing: 0.1px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(0.875rem * 1.65 * 3);
  }

  /* Variant Selector */
  .product-card__variant-selector {
    position: relative;
    margin-top: 0.25rem;
  }

  .product-card__variant-select {
    width: 100%;
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    background: white;
    border: 1px solid var(--color-bitter-black);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-bitter-black);
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product-card__variant-select:hover {
    border-color: var(--color-flame-orange, #FFFFFF);
    background: rgba(255, 255, 255, 0.9);
  }

  .product-card__variant-select:focus {
    outline: none;
    border-color: var(--color-flame-orange, #FFFFFF);
    box-shadow: inset 0 0 0 1px var(--color-flame-orange, #FFFFFF);
  }

  .product-card__select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-flame-black, #000000);
    transition: color 0.3s ease;
  }

  .product-card__variant-selector:hover .product-card__select-icon {
    color: var(--color-flame-orange, #FFFFFF);
  }

  /* Price */
  .product-card__price-wrapper {
    margin-top: auto;
    padding-top: 0.75rem;
  }

  .product-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .product-card__price-main {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
    line-height: 1;
    letter-spacing: -0.5px;
  }

  .product-card__price-compare {
    font-size: 1rem;
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.5;
    text-decoration: line-through;
    font-weight: 400;
  }

  .product-card__price-per {
    font-size: 0.75rem;
    color: var(--color-flame-orange, #FFFFFF);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Add to Cart Button — slim ghost style */
  .product-card__add-to-cart {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    color: var(--color-rail-silver, #C0C0C0);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .product-card__add-to-cart:hover:not(:disabled) {
    background: var(--color-rail-oxblood, #4A0F14);
    border-color: var(--color-rail-oxblood, #4A0F14);
    color: #FFFFFF;
  }

  .product-card__add-to-cart:active:not(:disabled) {
    background: var(--color-rail-oxblood-light, #7A2530);
    border-color: var(--color-rail-oxblood-light, #7A2530);
  }

  .product-card__add-to-cart:disabled {
    border-color: rgba(192, 192, 192, 0.15);
    color: rgba(192, 192, 192, 0.3);
    cursor: not-allowed;
  }

  .product-card__add-to-cart.added {
    background: #2d6a2e;
    border-color: #2d6a2e;
    color: #FFFFFF;
  }

  .featured-collection__footer {
    text-align: center;
    margin-top: 3rem;
  }

  .featured-collection__button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    color: var(--color-flame-orange, #FFFFFF);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    border: 2px solid var(--color-flame-orange, #FFFFFF);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .featured-collection__button:hover {
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    border-color: var(--color-flame-gradient-bottom, #7A2530);
  }

  .featured-collection__empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.6;
  }
/* END_SECTION:featured-collection */

/* START_SECTION:footer (INDEX:18) */
.footer {
    margin-top: auto;
  }

  /* Light theme */
  .footer--light {
    --footer-bg: #F5F5F5;
    --footer-text: #1A1A1A;
    --footer-text-muted: #666666;
    --footer-border: rgba(0, 0, 0, 0.1);
    --footer-hover: var(--color-rail-oxblood, #4A0F14);
    background-color: var(--footer-bg);
    color: var(--footer-text);
  }

  /* Dark theme - default for Iron Rail Coffee */
  .footer--dark {
    --footer-bg: #111111;
    --footer-text: #FFFFFF;
    --footer-text-muted: var(--color-rail-silver, #C0C0C0);
    --footer-border: rgba(192, 192, 192, 0.15);
    --footer-hover: var(--color-rail-silver, #C0C0C0);
    background-color: var(--footer-bg);
    color: var(--footer-text);
  }

  .footer__main {
    padding: 4rem 0 3rem;
  }

  .footer__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .footer__content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 4rem;
    align-items: start;
  }

  /* Logo section - Left */
  .footer__logo-section {
    flex-shrink: 0;
  }

  .footer__logo-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .footer__logo-link:hover {
    opacity: 0.85;
  }

  .footer__logo-image {
    max-width: var(--footer-logo-size, 180px);
    height: auto;
  }

  .footer__shop-name {
    font-family: var(--font-heading--family);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--footer-text);
  }

  /* Links grid - Center */
  .footer__links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 3rem;
    flex: 1;
  }

  .footer__column {
    min-width: 130px;
  }

  .footer__column-heading {
    font-family: var(--font-heading--family);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: var(--footer-hover);
  }

  .footer__placeholder {
    font-size: 0.8125rem;
    color: var(--footer-text-muted);
    opacity: 0.6;
    font-style: italic;
  }

  .footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }

  .footer__menu-link {
    color: var(--footer-text);
    text-decoration: none;
    font-family: var(--font-body--family);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    display: inline-block;
  }

  .footer__menu-link:hover {
    color: var(--footer-hover);
  }

  /* Social section - Right */
  .footer__social-section {
    flex-shrink: 0;
  }

  .footer__social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--footer-border);
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer__social-link:hover {
    background-color: var(--footer-hover);
    border-color: var(--footer-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
  }

  .footer__social-link svg {
    width: 22px;
    height: 22px;
  }

  /* Bottom bar */
  .footer__bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--footer-border);
  }

  .footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer__copyright {
    font-family: var(--font-body--family);
    font-size: 0.8125rem;
    color: var(--footer-text-muted);
  }

  .footer__payment {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer__payment-icon {
    height: 22px;
    width: auto;
    opacity: 0.6;
  }

  .footer--dark .footer__payment-icon {
    filter: brightness(0) invert(1);
    opacity: 0.5;
  }

  .footer__bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer__bottom-link {
    font-family: var(--font-body--family);
    font-size: 0.8125rem;
    color: var(--footer-text-muted);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .footer__bottom-link:hover {
    color: var(--footer-hover);
  }

  /* Responsive */
  @media (max-width: 990px) {
    .footer__content {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
    }

    .footer__logo-section {
      display: flex;
      justify-content: center;
    }

    .footer__links-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .footer__social-section {
      display: flex;
      justify-content: center;
    }

    .footer__bottom-content {
      flex-direction: column;
      text-align: center;
    }

    .footer__bottom-left {
      flex-direction: column;
      gap: 1rem;
    }

    .footer__bottom-links {
      justify-content: center;
    }
  }

  @media (max-width: 749px) {
    .footer__main {
      padding: 3rem 0 2rem;
    }

    .footer__links-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .footer__menu {
      gap: 0.625rem;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:19) */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease;
  }

  /* Light theme */
  .header--light {
    --header-bg: #F5F5F5;
    --header-text: #1A1A1A;
    --header-text-muted: #666666;
    --header-border: rgba(0, 0, 0, 0.1);
    --header-hover: var(--color-rail-oxblood, #4A0F14);
    --header-badge-bg: var(--color-rail-oxblood, #4A0F14);
    --header-badge-text: #FFFFFF;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
  }

  /* Dark theme (dark background with white/silver text, oxblood accents) - default for Iron Rail Coffee */
  .header--dark {
    --header-bg: var(--color-rail-black, #1A1A1A);
    --header-text: #FFFFFF;
    --header-text-muted: var(--color-rail-silver, #C0C0C0);
    --header-border: rgba(192, 192, 192, 0.2);
    --header-hover: var(--color-rail-silver, #C0C0C0);
    --header-badge-bg: var(--color-rail-oxblood, #4A0F14);
    --header-badge-text: #FFFFFF;
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
  }

  .header__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    height: var(--header-height, 80px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
  }

  /* Left side: Hamburger + Shop All */
  .header__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .header__hamburger {
    background: none;
    border: none;
    color: var(--header-text);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
  }

  .header__hamburger:hover {
    color: var(--header-hover);
  }

  .header__shop-all {
    font-family: var(--font-body--family);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--header-text);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .header__shop-all:hover {
    color: var(--header-hover);
  }

  /* Center: Logo */
  .header__center {
    display: flex;
    justify-content: center;
  }

  .header__logo-link {
    display: block;
    text-decoration: none;
    line-height: 1;
  }

  .header__logo-link:hover {
    opacity: 0.9;
  }

  .header__logo-image {
    max-height: var(--logo-height, 50px);
    width: auto;
  }

  .header__shop-name {
    font-family: var(--font-heading--family);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--header-text);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* Right side: Icons */
  .header__right {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: flex-end;
  }

  .header__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--header-text);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .header__icon:hover {
    color: var(--header-hover);
  }

  .header__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .header__cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--header-badge-bg);
    color: var(--header-badge-text);
    font-family: var(--font-body--family);
    font-size: 0.625rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
  }

  /* Mobile menu drawer - Iron Rail dark theme */
  .header__nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 320px;
    max-width: 85vw;
    background-color: #1A1A1A;
    color: #FFFFFF;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .header__nav-drawer.active {
    transform: translateX(0);
  }

  .header__nav-drawer-inner {
    padding: 2rem;
  }

  .header__nav-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(192, 192, 192, 0.25);
  }

  .header__nav-drawer-header span {
    font-family: var(--font-header--family, "Raleway", sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
  }

  .header__nav-close {
    background: none;
    border: none;
    color: #C0C0C0;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
  }

  .header__nav-close:hover {
    color: #FFFFFF;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__menu-item {
    margin: 0;
  }

  .header__menu-link {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: #FFFFFF;
    font-family: var(--font-body--family, "Raleway", sans-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(192, 192, 192, 0.15);
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .header__menu-link:hover {
    color: var(--color-rail-silver, #C0C0C0);
    padding-left: 0.5rem;
  }

  .header__menu-link.active {
    color: #FFFFFF;
    padding-left: 0.5rem;
    border-left: 3px solid var(--color-rail-oxblood, #4A0F14);
  }

  /* Menu footer with utility links and social */
  .header__menu-footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
  }

  .header__utility-links {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
  }

  .header__utility-links li {
    margin: 0;
  }

  .header__utility-link {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    color: var(--color-rail-silver, #C0C0C0);
    font-family: var(--font-body--family, "Raleway", sans-serif);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .header__utility-link:hover {
    color: #FFFFFF;
  }

  .header__social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(192, 192, 192, 0.3);
    background-color: transparent;
    color: var(--color-rail-silver, #C0C0C0);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .header__social-link:hover {
    background-color: var(--color-rail-oxblood, #4A0F14);
    border-color: var(--color-rail-oxblood, #4A0F14);
    color: #FFFFFF;
    transform: translateY(-2px);
  }

  .header__social-link svg {
    width: 20px;
    height: 20px;
  }

  .header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .header__overlay.active {
    opacity: 1;
    visibility: visible;
  }

  @media (max-width: 749px) {
    .header__shop-all {
      display: none;
    }

    .header__hamburger {
      padding: 0.25rem;
    }

    .header__hamburger svg {
      width: 28px;
      height: 28px;
    }

    .header__shop-name {
      font-size: 1.125rem;
      letter-spacing: 1px;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:20) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-slider (INDEX:21) */
.hero-slider {
    position: relative;
    background-color: var(--color-flame-black, #000000);
    min-height: {{ section.settings.min_height }}px;
    height: 90vh;
    overflow: hidden;
  }

  .hero-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
  }

  .hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    min-height: inherit;
    display: flex;
    align-items: center;
  }

  .hero-slider__slide--active {
    opacity: 1;
    visibility: visible;
    position: relative;
    height: 100%;
  }

  .hero-slider__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-slider__bg-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
  }

  .hero-slider__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, var(--overlay-opacity, 0.3));
    z-index: 1;
  }

  .hero-slider__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 4rem var(--page-margin);
    display: flex;
  }

  .hero-slider__content--left {
    justify-content: flex-start;
  }

  .hero-slider__content--center {
    justify-content: center;
    text-align: center;
  }

  .hero-slider__content--right {
    justify-content: flex-end;
  }

  .hero-slider__text {
    max-width: 650px;
  }

  .hero-slider__content--center .hero-slider__text {
    text-align: center;
  }

  .hero-slider__subheading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-rail-silver, #C0C0C0);
    margin-bottom: 1rem;
  }

  .hero-slider__heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .hero-slider__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
  }

  .hero-slider__description p {
    margin-bottom: 1rem;
  }

  .hero-slider__description p:last-child {
    margin-bottom: 0;
  }

  .hero-slider__button {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
  }

  .hero-slider__button:hover {
  transform: translateY(-2px);
  background-color: var(--color-rail-oxblood-light, #7A2530);
  box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
  filter: brightness(1.1);
}
  /* Navigation */
  .hero-slider__nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-slider__arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .hero-slider__arrow:hover {
    background: var(--color-rail-oxblood, #4A0F14);
    border-color: var(--color-rail-oxblood, #4A0F14);
    color: #FFFFFF;
  }

  .hero-slider__dots {
    display: flex;
    gap: 0.75rem;
  }

  .hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .hero-slider__dot--active,
  .hero-slider__dot:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
  }

  /* Tablet adjustments */
  @media (max-width: 989px) {
    .hero-slider {
      height: 75vh;
    }

    .hero-slider__heading {
      font-size: clamp(2rem, 5vw, 3.5rem);
    }
  }

  /* Mobile adjustments */
  @media (max-width: 749px) {
    .hero-slider {
      height: 80vh;
    }

    .hero-slider__content {
      padding: 3rem var(--page-margin);
      align-items: flex-end;
      padding-bottom: 6rem;
    }

    .hero-slider__text {
      max-width: 100%;
      text-align: center;
    }

    .hero-slider__content--left,
    .hero-slider__content--right {
      justify-content: center;
    }

    .hero-slider__heading {
      font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero-slider__description {
      font-size: 1rem;
    }

    .hero-slider__nav {
      bottom: 1.5rem;
    }

    .hero-slider__arrow {
      width: 40px;
      height: 40px;
    }
  }
/* END_SECTION:hero-slider */

/* START_SECTION:hero (INDEX:22) */
.hero-split {
    background-color: var(--color-flame-black, #000000);
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    min-height: 500px;
  }

  /* Desktop background image */
  @media (min-width: 750px) {
    .hero-split {
      min-height: var(--hero-min-height, 600px);
      display: flex;
      align-items: center;
    }

    .hero-split::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-image: var(--hero-bg-desktop);
      background-size: cover;
      background-position: var(--hero-bg-position, center center);
      background-repeat: no-repeat;
      z-index: 0;
    }

    /* Optional overlay for better text readability */
    .hero-split::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, var(--hero-overlay-opacity, 0));
      z-index: 1;
    }

    .hero-split__container {
      position: relative;
      z-index: 2;
      width: 100%;
    }
  }

  .hero-split__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .hero-split__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }

  /* Content positioning */
  .hero-split--left .hero-split__text {
    margin-right: auto;
  }

  .hero-split--center .hero-split__content {
    text-align: center;
  }

  .hero-split--center .hero-split__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-split--center .hero-split__badges {
    justify-content: center;
  }

  .hero-split--right .hero-split__text {
    margin-left: auto;
  }

  /* Text content */
  .hero-split__text {
    max-width: 600px;
  }

  /* Light text on dark backgrounds */
  .hero-split--light .hero-split__heading {
    color: #ffffff;
  }

  .hero-split--light .hero-split__subheading,
  .hero-split--light .hero-split__description {
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-split--light .hero-split__badge span {
    color: #ffffff;
  }

  .hero-split--light .hero-split__button {
    background-color: #ffffff;
    color: var(--color-bitter-black);
  }

  .hero-split--light .hero-split__button:hover {
    background-color: var(--color-brushed-gold);
    color: var(--color-bitter-black);
  }

  .hero-split__subheading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-flame-orange, #FFFFFF);
    margin-bottom: 1rem;
  }

  .hero-split__heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-flame-orange, #FFFFFF);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .hero-split__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.85;
    margin-bottom: 2rem;
  }

  .hero-split__description p {
    margin-bottom: 1rem;
  }

  .hero-split__description p:last-child {
    margin-bottom: 0;
  }

  .hero-split__button-wrapper {
    margin-bottom: 2rem;
  }

  .hero-split__button {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
  }

  .hero-split__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
    filter: brightness(1.1);
  }

  /* Quality badges section */
  .hero-split__badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .hero-split__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-split__check {
    flex-shrink: 0;
    color: var(--color-flame-orange, #FFFFFF);
    stroke-width: 2.5;
  }

  .hero-split__badge span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-flame-cream, #F5F1E8);
    white-space: nowrap;
  }

  /* Mobile image */
  .hero-split__mobile-image {
    display: none;
  }

  /* Tablet and smaller */
  @media (max-width: 989px) {
    .hero-split {
      min-height: 400px;
    }

    .hero-split__text {
      max-width: 100%;
    }
  }

  /* Mobile */
  @media (max-width: 749px) {
    /* Hide background and overlay on mobile */
    .hero-split::before,
    .hero-split::after {
      display: none;
    }

    .hero-split {
      padding: 2rem 0;
      min-height: auto;
      display: block;
    }

    .hero-split__content {
      gap: 2rem;
    }

    /* Center text on mobile regardless of desktop setting */
    .hero-split__text {
      max-width: 100%;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-split__badges {
      justify-content: center;
    }

    /* Reset text colors on mobile (use dark theme) */
    .hero-split--light .hero-split__heading {
      color: var(--color-bitter-black);
    }

    .hero-split--light .hero-split__subheading,
    .hero-split--light .hero-split__description {
      color: var(--color-charcoal-steel);
    }

    .hero-split--light .hero-split__badge span {
      color: var(--color-bitter-black);
    }

    .hero-split--light .hero-split__button {
      background-color: var(--color-bitter-black);
      color: var(--color-sweet-cream);
    }

    /* Show mobile image */
    .hero-split__mobile-image {
      display: block;
      order: -1;
    }

    .hero-split__mobile-img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
      max-height: 400px;
    }

    .hero-split__heading {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .hero-split__description {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    .hero-split__button {
      padding: 1rem 2rem;
      font-size: 0.875rem;
    }
  }
/* END_SECTION:hero */

/* START_SECTION:newsletter (INDEX:23) */
.newsletter {
    background-color: var(--newsletter-bg, var(--color-flame-black, #000000));
    color: var(--newsletter-text, var(--color-flame-orange, #FFFFFF));
    padding-top: var(--padding-top, 80px);
    padding-bottom: var(--padding-bottom, 80px);
  }

  .newsletter__container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .newsletter__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter__subheading {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
  }

  .newsletter__heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .newsletter__form {
    margin-top: 2rem;
  }

  .newsletter__input-wrapper {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--newsletter-text);
    font-size: 1rem;
    border-radius: var(--style-border-radius-inputs, 2px);
    transition: all 0.3s ease;
  }

  .newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .newsletter__input:focus {
    outline: none;
    border-color: var(--color-flame-orange, #FFFFFF);
    background-color: rgba(255, 255, 255, 0.15);
  }

  .newsletter__button {
    padding: 1rem 2rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .newsletter__button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
  }

  .newsletter__success {
    padding: 1.5rem;
    background-color: rgba(78, 107, 95, 0.2);
    border: 2px solid var(--color-botanical-green);
    border-radius: var(--style-border-radius-inputs, 2px);
    color: inherit;
  }

  .newsletter__success p {
    margin: 0;
    font-weight: 500;
  }

  .newsletter__error {
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: var(--style-border-radius-inputs, 2px);
    color: inherit;
    text-align: left;
  }

  @media (max-width: 749px) {
    .newsletter__input-wrapper {
      flex-direction: column;
    }

    .newsletter__button {
      width: 100%;
    }
  }
/* END_SECTION:newsletter */

/* START_SECTION:policy (INDEX:26) */
.policy-page {
    padding-top: var(--padding-top, 60px);
    padding-bottom: var(--padding-bottom, 60px);
    background: linear-gradient(to bottom, var(--color-sweet-cream) 0%, rgba(245, 242, 235, 0.5) 100%);
  }

  .policy-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Header */
  .policy-page__header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(28, 28, 28, 0.15);
  }

  .policy-page__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-bitter-black);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .policy-page__updated {
    font-size: 0.9375rem;
    color: var(--color-charcoal-steel);
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  /* Content Wrapper */
  .policy-page__content-wrapper {
    display: grid;
    gap: 3rem;
    align-items: start;
  }

  @media (min-width: 990px) {
    .policy-page__content-wrapper {
      grid-template-columns: 250px 1fr;
    }
  }

  /* Table of Contents */
  .policy-page__toc {
    position: sticky;
    top: 100px;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(28, 28, 28, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }

  @media (max-width: 989px) {
    .policy-page__toc {
      position: relative;
      top: 0;
      border-radius: 8px;
    }
  }

  .policy-page__toc-title {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-bitter-black);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-brushed-gold);
  }

  .policy-page__toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }

  .policy-page__toc-link {
    display: block;
    font-size: 0.875rem;
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin-left: -0.75rem;
  }

  .policy-page__toc-link:hover {
    color: var(--color-bitter-black);
    background-color: rgba(218, 165, 32, 0.08);
    padding-left: 1rem;
  }

  /* Main Content */
  .policy-page__content {
    background-color: #FFFFFF;
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(28, 28, 28, 0.06);
  }

  @media (max-width: 749px) {
    .policy-page__content {
      padding: 2rem;
      border-radius: 8px;
    }
  }

  .policy-page__intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
  }

  /* Sections */
  .policy-page__section {
    margin-bottom: 3.5rem;
    scroll-margin-top: 100px;
  }

  .policy-page__section:last-of-type {
    margin-bottom: 2rem;
  }

  .policy-page__section-heading {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--color-bitter-black);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
  }

  .policy-page__section-content {
    font-size: 1rem;
    line-height: 1.75;
    color: #4a4a4a;
  }

  /* Content Typography */
  .policy-page__section-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-bitter-black);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
  }

  .policy-page__section-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-bitter-black);
    margin-top: 2rem;
    margin-bottom: 0.875rem;
  }

  .policy-page__section-content p {
    margin-bottom: 1.25rem;
  }

  .policy-page__section-content p:last-child {
    margin-bottom: 0;
  }

  .policy-page__section-content p + ul,
  .policy-page__section-content p + ol {
    margin-top: -0.25rem;
  }

  .policy-page__section-content ul,
  .policy-page__section-content ol {
    margin: 1.25rem 0 1.5rem;
    padding-left: 1.75rem;
  }

  .policy-page__section-content ul {
    list-style-type: none;
  }

  .policy-page__section-content ul li {
    position: relative;
    padding-left: 1.5rem;
  }

  .policy-page__section-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-brushed-gold);
    font-weight: 700;
    font-size: 1.25em;
  }

  .policy-page__section-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
  }

  .policy-page__section-content li:last-child {
    margin-bottom: 0;
  }

  .policy-page__section-content strong {
    font-weight: 700;
    color: var(--color-bitter-black);
  }

  .policy-page__section-content a {
    color: var(--color-brushed-gold);
    text-decoration: underline;
    transition: color 0.2s ease;
  }

  .policy-page__section-content a:hover {
    color: var(--color-bitter-black);
  }

  .policy-page__section-content code {
    background-color: var(--color-sweet-cream);
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
  }

  /* Footer */
  .policy-page__footer {
    margin-top: 4rem;
    padding: 2rem;
    background-color: rgba(218, 165, 32, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(218, 165, 32, 0.1);
  }

  .policy-page__contact {
    font-size: 1rem;
    color: #4a4a4a;
    text-align: center;
    line-height: 1.6;
  }

  .policy-page__contact-link {
    color: var(--color-brushed-gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    border-bottom: 2px solid var(--color-brushed-gold);
    padding-bottom: 2px;
  }

  .policy-page__contact-link:hover {
    color: var(--color-bitter-black);
    border-bottom-color: var(--color-bitter-black);
  }
/* END_SECTION:policy */

/* START_SECTION:product (INDEX:27) */
/* Hero Section */
  .product__hero {
    background-color: var(--color-flame-black, #000000);
    padding-block: 2rem;
    position: relative;

    --hero-text-color: var(--color-flame-orange, #FFFFFF);
    --hero-text-muted: rgba(192, 192, 192, 0.75);
    --hero-border-color: rgba(192, 192, 192, 0.3);
    --hero-card-bg: rgba(192, 192, 192, 0.1);
    --hero-button-bg: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    --hero-button-text: #FFFFFF;
  }

  .product__hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 1.5rem;
  }

  @media (min-width: 768px) {
    .product__hero {
      padding-block: 3rem;
    }

    .product__hero-inner {
      grid-template-columns: 400px 1fr;
      gap: 3rem;
      align-items: start;
    }
  }

  /* Media Gallery with Arrow Navigation */
  .product__media {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
  }

  .product__media-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product__image-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .product__image-slide--active {
    opacity: 1;
    pointer-events: auto;
  }

  .product__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .product__image--placeholder {
    width: 100%;
    height: 100%;
  }

  /* Arrow Navigation Controls */
  .product__media-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .product__arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--hero-border-color);
    background: var(--hero-card-bg);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
  }

  .product__arrow:hover {
    background: var(--hero-border-color);
    border-color: var(--hero-text-color);
  }

  .product__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .product__arrow svg {
    color: var(--hero-text-color);
  }

  .product__image-counter {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hero-text-color);
    min-width: 60px;
    text-align: center;
  }

  /* Product Callouts Bar */
  .product__callouts {
    background: #1A1A1A;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    padding-block: 2rem;
  }

  .product__callouts-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: var(--page-width);
    margin: 0 auto;
    padding-inline: var(--page-margin);
  }

  .product__callout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(192, 192, 192, 0.15);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-flame-cream, #F5F1E8);
  }

  .product__callout-icon {
    flex-shrink: 0;
    color: var(--color-flame-orange, #FFFFFF);
    width: 20px;
    height: 20px;
  }

  @media (min-width: 768px) {
    .product__callout {
      font-size: 0.813rem;
    }
  }

  /* Product Info */
  .product__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product__type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hero-text-muted);
    margin: 0;
  }

  .product__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: var(--hero-text-color);
  }

  @media (min-width: 768px) {
    .product__title {
      font-size: 2.5rem;
    }
  }

  .product__price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    color: var(--hero-text-color);
  }

  .product__price-amount {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .product__price-compare {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--hero-text-muted);
  }

  /* Tasting Notes */
  .product__tasting-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .product__tasting-note {
    padding: 0.4rem 0.875rem;
    background: var(--hero-card-bg);
    border: 1px solid var(--hero-border-color);
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--hero-text-color);
  }

  .product__short-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--hero-text-muted);
  }

  /* Quick Specs - Origin and Roast Level */
  .product__quick-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: var(--hero-card-bg);
    border-radius: 8px;
  }

  .product__quick-spec {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .product__quick-spec-icon {
    flex-shrink: 0;
    color: var(--color-flame-orange, #FFFFFF);
    opacity: 0.8;
  }

  .product__quick-spec div {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }

  .product__quick-spec strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--hero-text-muted);
  }

  .product__quick-spec span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hero-text-color);
  }

  /* Product Form */
  #product-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .product__label {
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--hero-text-muted);
  }

  /* Options Row - Grind Type & Quantity on Same Line */
  .product__options-row {
    display: flex;
    gap: 1rem;
    align-items: end;
  }

  @media (max-width: 767px) {
    .product__options-row {
      flex-direction: column;
      align-items: stretch;
    }
  }

  /* Variant Selection */
  .product__variants {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .product__variant-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .product__variant-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .product__variant-label {
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--hero-border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 0.875rem;
    background: var(--hero-card-bg);
    color: var(--hero-text-color);
  }

  .product__variant-label:hover {
    border-color: var(--color-rail-silver, #C0C0C0);
  }

  .product__variant-input:checked + .product__variant-label {
    border-color: var(--color-rail-oxblood, #4A0F14);
    background: var(--color-rail-oxblood, #4A0F14);
    color: #FFFFFF;
  }

  .product__variant-input:disabled + .product__variant-label {
    opacity: 0.4;
    cursor: not-allowed;
  }

  /* Quantity Selector */
  .product__quantity {
    display: flex;
    flex-direction: column;
  }

  .product__quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--hero-border-color);
    border-radius: 6px;
    overflow: hidden;
    background: var(--hero-card-bg);
    width: fit-content;
  }

  .product__quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--hero-text-color);
    transition: background 0.2s;
  }

  .product__quantity-btn:hover {
    background: var(--hero-border-color);
  }

  .product__quantity-btn:active {
    background: var(--color-rail-oxblood, #4A0F14);
    color: #FFFFFF;
  }

  .product__quantity-input {
    width: 50px;
    height: 44px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--hero-text-color);
    -moz-appearance: textfield;
  }

  .product__quantity-input::-webkit-outer-spin-button,
  .product__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Add to Cart */
  .product__add-to-cart {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  }

  .product__add-to-cart:hover:not(:disabled) {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
  }

  .product__add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Freshness Guide Dropdown */
  .product__freshness-guide {
    margin-top: 1rem;
    border: 1px solid var(--hero-border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--hero-card-bg);
  }

  .product__freshness-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hero-text-color);
    transition: background 0.2s;
  }

  .product__freshness-toggle:hover {
    background: var(--hero-border-color);
  }

  .product__freshness-toggle-text {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }

  .product__freshness-icon {
    color: var(--color-flame-orange, #FFFFFF);
    flex-shrink: 0;
  }

  .product__freshness-chevron {
    transition: transform 0.3s ease;
    color: var(--hero-text-muted);
    flex-shrink: 0;
  }

  .product__freshness-toggle[aria-expanded="true"] .product__freshness-chevron {
    transform: rotate(180deg);
  }

  .product__freshness-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
  }

  .product__freshness-content[aria-hidden="false"] {
    grid-template-rows: 1fr;
  }

  .product__freshness-inner {
    overflow: hidden;
  }

  .product__freshness-section {
    padding: 0 1.25rem 1.25rem;
  }

  .product__freshness-section:first-child {
    padding-top: 0.5rem;
    border-top: 1px solid var(--hero-border-color);
  }

  .product__freshness-section:last-child {
    padding-bottom: 1.25rem;
  }

  .product__freshness-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--hero-text-color);
    margin: 1rem 0 0.75rem;
  }

  .product__freshness-heading svg {
    color: var(--color-flame-orange, #FFFFFF);
  }

  .product__freshness-list {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
  }

  .product__freshness-list li {
    position: relative;
    font-size: 0.813rem;
    line-height: 1.6;
    color: var(--hero-text-muted);
    padding-left: 0.75rem;
    margin-bottom: 0.375rem;
  }

  .product__freshness-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 4px;
    background: var(--color-flame-orange, #FFFFFF);
    border-radius: 50%;
  }

  .product__freshness-list li:last-child {
    margin-bottom: 0;
  }

  /* Content Sections */
  .product__flavor-profile,
  .product__description,
  .product__reviews {
    padding-block: 4rem;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    background: var(--color-flame-black, #000000);
  }

  .product__reviews {
    background: #1A1A1A;
  }

  .product__reviews-content {
    padding-inline: 1.5rem;
  }

  @media (min-width: 768px) {
    .product__reviews-content {
      padding-inline: 4rem;
    }
  }

  @media (min-width: 1024px) {
    .product__reviews-content {
      padding-inline: 6rem;
    }
  }

  .product__section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    padding-inline: 1.5rem;
    color: var(--color-flame-orange, #FFFFFF);
  }

  @media (min-width: 768px) {
    .product__section-title {
      padding-inline: 4rem;
    }
  }

  @media (min-width: 1024px) {
    .product__section-title {
      padding-inline: 6rem;
    }
  }

  /* Flavor Profile Layout */
  .product__flavor-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-inline: 1.5rem;
  }

  @media (min-width: 768px) {
    .product__flavor-content {
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      align-items: start;
      padding-inline: 4rem;
    }
  }

  @media (min-width: 1024px) {
    .product__flavor-content {
      padding-inline: 6rem;
    }
  }

  /* Left Side: Intro */
  .product__flavor-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product__flavor-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: var(--color-flame-orange, #FFFFFF);
  }

  @media (min-width: 768px) {
    .product__flavor-title {
      font-size: 2.5rem;
    }
  }

  .product__flavor-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .product__flavor-note-label {
    padding: 0.5rem 1rem;
    background: rgba(192, 192, 192, 0.15);
    border: 2px solid var(--color-flame-orange, #FFFFFF);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-flame-orange, #FFFFFF);
  }

  .product__flavor-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-soft-stone);
    margin: 0;
  }

  /* Right Side: Flavor Sliders */
  .product__flavor-sliders {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product__slider {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product__slider-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-flame-orange, #FFFFFF);
  }

  .product__slider-track {
    position: relative;
    height: 4px;
    background: rgba(100, 100, 100, 0.4);
    border-radius: 3px;
  }

  .product__slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(192, 192, 192, 0.7);
    border-radius: 3px;
  }

  .product__slider-indicator {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--color-flame-orange, #FFFFFF);
    border: 2px solid #000000;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }

  .product__slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-soft-stone);
  }

  .product__slider-labels span:last-child {
    text-align: right;
  }

  /* Description */
  .product__description-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding-inline: 1.5rem;
  }

  @media (min-width: 768px) {
    .product__description-wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      padding-inline: 4rem;
    }
  }

  @media (min-width: 1024px) {
    .product__description-wrapper {
      gap: 4rem;
      padding-inline: 6rem;
    }
  }

  .product__description-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product__description-image img,
  .product__description-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product__description-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product__description-text .product__section-title {
    color: var(--color-flame-orange, #FFFFFF);
  }

  @media (min-width: 768px) {
    .product__description-text {
      align-items: flex-end;
    }
    
    .product__description-text .product__section-title {
      text-align: right;
    }
  }

  .product__description-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-soft-stone);
  }

  @media (min-width: 768px) {
    .product__description-content {
      text-align: right;
      max-width: 100%;
    }
  }

  /* Utility Classes */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:28) */
.search-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  /* Header */
  .search-page__header {
    margin-bottom: 2.5rem;
  }

  .search-page__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  /* Search Form */
  .search-form__wrapper {
    display: flex;
    gap: 0.75rem;
    max-width: 600px;
  }

  .search-form__input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: #1A1A1A;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 0;
    font-size: 1rem;
    color: var(--color-flame-cream, #F5F1E8);
    transition: all 0.2s ease;
  }

  .search-form__input:focus {
    outline: none;
    border-color: var(--color-flame-orange, #FFFFFF);
    background: #0A0A0A;
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.1);
  }

  .search-form__input::placeholder {
    color: var(--color-flame-cream, #F5F1E8);
    opacity: 0.5;
  }

  .search-form__button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .search-form__button:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
  }

  .search-form__button svg {
    flex-shrink: 0;
  }

  @media (max-width: 550px) {
    .search-form__button-text {
      display: none;
    }
    
    .search-form__button {
      padding: 1rem;
    }
  }

  /* Results Header */
  .search-results-header {
    margin-bottom: 2rem;
  }

  .search-results-header__text {
    font-size: 1.125rem;
    color: var(--color-flame-cream, #F5F1E8);
    margin: 0;
    opacity: 0.8;
  }

  .search-results-header__text--empty {
    font-size: 1.25rem;
    color: var(--color-flame-orange, #FFFFFF);
    padding: 3rem 1rem;
    text-align: center;
    background: #1A1A1A;
    border-radius: 0;
    border: 1px solid rgba(192, 192, 192, 0.2);
  }

  /* Results Grid */
  .search-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 550px) {
    .search-results {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 990px) {
    .search-results {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  /* Result Card */
  .search-result-card {
    display: flex;
    flex-direction: column;
    background: #1A1A1A;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.2);
  }

  .search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(192, 192, 192, 0.2);
    border-color: var(--color-flame-orange, #FFFFFF);
  }

  .search-result-card__image-link {
    display: block;
    text-decoration: none;
  }

  .search-result-card__image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: rgba(28, 28, 28, 0.05);
  }

  .search-result-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .search-result-card__image-link:hover .search-result-card__image {
    transform: scale(1.05);
  }

  .search-result-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-result-card__placeholder-svg {
    width: 50%;
    height: 50%;
    opacity: 0.2;
  }

  .search-result-card__content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
  }

  .search-result-card__type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(180deg, var(--color-flame-gradient-top, #4A0F14) 0%, var(--color-flame-gradient-bottom, #7A2530) 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    width: fit-content;
  }

  .search-result-card__title-link {
    text-decoration: none;
    color: inherit;
  }

  .search-result-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-flame-cream, #F5F1E8);
    margin: 0;
    line-height: 1.3;
    transition: color 0.2s ease;
  }

  .search-result-card__title-link:hover .search-result-card__title {
    color: var(--color-flame-orange, #FFFFFF);
  }

  .search-result-card__description {
    font-size: 0.9375rem;
    color: var(--color-flame-cream, #F5F1E8);
    line-height: 1.6;
    margin: 0;
    opacity: 0.7;
  }

  .search-result-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
  }

  .search-result-card__price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-flame-orange, #FFFFFF);
  }

  .search-result-card__price-compare {
    font-size: 1.125rem;
    color: var(--color-flame-cream, #F5F1E8);
    text-decoration: line-through;
    font-weight: 500;
    opacity: 0.5;
  }

  /* Pagination */
  .search-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0 1rem;
  }

  .search-pagination__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--color-flame-orange, #FFFFFF);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0;
    border: 1px solid var(--color-flame-orange, #FFFFFF);
    transition: all 0.2s ease;
  }

  .search-pagination__link:hover {
    background: var(--color-flame-orange, #FFFFFF);
    color: #FFFFFF;
    transform: translateY(-2px);
  }

  .search-pagination__current {
    font-size: 0.9375rem;
    color: var(--color-flame-cream, #F5F1E8);
    font-weight: 600;
    opacity: 0.7;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:36) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:37) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:39) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:product-reviews (INDEX:41) */
.product-reviews {
    width: 100%;
  }

  .product-reviews__no-js {
    text-align: center;
    color: var(--color-charcoal-steel, #4A4A4A);
    padding: 2rem;
  }

  /* Style overrides for Shopify Product Reviews app */
  #shopify-product-reviews {
    margin-top: 1.5rem;
  }

  .spr-container {
    border: none;
    padding: 0;
  }

  .spr-header {
    border-bottom: 2px solid var(--color-soft-stone, #D3CCC4);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
  }

  .spr-header-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .spr-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .spr-review {
    border-bottom: 1px solid var(--color-soft-stone, #D3CCC4);
    padding-block: 2rem;
  }

  .spr-review:last-child {
    border-bottom: none;
  }

  .spr-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .spr-review-header-title {
    font-weight: 600;
    font-size: 1.125rem;
  }

  .spr-review-header-byline {
    color: var(--color-charcoal-steel, #4A4A4A);
    font-size: 0.875rem;
  }

  .spr-review-content-body {
    line-height: 1.6;
    color: var(--color-charcoal-steel, #4A4A4A);
  }

  /* Star ratings */
  .spr-icon {
    color: var(--color-brushed-gold, #BFA87A);
  }

  .spr-icon-star-empty {
    color: var(--color-soft-stone, #D3CCC4);
  }

  /* Form styling */
  .spr-form {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
  }

  .spr-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .spr-form-input,
  .spr-form-input-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--color-soft-stone, #D3CCC4);
    border-radius: 4px;
    font-family: inherit;
    margin-top: 0.5rem;
  }

  .spr-form-input:focus,
  .spr-form-input-textarea:focus {
    border-color: var(--color-brushed-gold, #BFA87A);
    outline: none;
  }

  .spr-button {
    background: var(--color-bitter-black, #1C1C1C);
    color: var(--color-sweet-cream, #F5F1E8);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }

  .spr-button:hover {
    background: var(--color-charcoal-steel, #4A4A4A);
  }
/* END_SNIPPET:product-reviews */