/** Shopify CDN: Minification failed

Line 2362:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about (INDEX:1, SCOPED:FALSE) */
.ff-about {
    scroll-margin-top: calc(var(--ff-header-height) + 1.5rem);
  }

  .ff-about__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
  }

  .ff-about__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1.5rem;
  }

  .ff-about__text {
    display: grid;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .ff-about__cta {
    margin-top: 2rem;
  }

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

  .ff-about__stat {
    padding: 1.5rem;
    text-align: center;
  }

  .ff-about__stat-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: hsl(var(--ff-primary));
    margin-bottom: 0.5rem;
  }

  .ff-about__stat-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: hsl(var(--ff-muted-foreground));
  }

  @media (max-width: 900px) {
    .ff-about__grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
/* END_SECTION:about */

/* START_SECTION:announcement-bar (INDEX:2, SCOPED:FALSE) */
.ff-announcement-bar {
    background: hsl(var(--ff-background) / 0.9);
    backdrop-filter: blur(12px);
    color: hsl(var(--ff-foreground));
    padding: 0.75rem 1rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    width: 100%;
    border-bottom: 1px solid hsl(var(--ff-border));
  }

  .ff-announcement-bar__container {
    max-width: var(--ff-max-width, 90rem);
    margin: 0 auto;
    padding: 0 var(--ff-page-margin, 1.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
  }

  .ff-announcement-bar__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
  }

  a.ff-announcement-bar__content:hover {
    opacity: 0.8;
  }

  .ff-announcement-bar__icon {
    flex-shrink: 0;
  }

  .ff-announcement-bar__text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .ff-announcement-bar__close {
    position: absolute;
    right: var(--ff-page-margin, 1.25rem);
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }

  .ff-announcement-bar__close:hover {
    opacity: 1;
  }

  @media (max-width: 640px) {
    .ff-announcement-bar {
      padding: 0.625rem 1rem;
    }

    .ff-announcement-bar__text {
      font-size: 0.8125rem;
    }

    .ff-announcement-bar__close {
      position: relative;
      right: auto;
    }
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:cart (INDEX:5, SCOPED:FALSE) */
.ff-cart-page {
    min-height: 60vh;
    padding: 3rem 0;
    background: hsl(var(--ff-background));
  }

  .ff-cart-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .ff-cart-page__header {
    margin-bottom: 3rem;
    text-align: center;
  }

  .ff-cart-page__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--ff-foreground));
    margin: 0 0 0.5rem;
  }

  .ff-cart-page__count {
    font-size: 0.875rem;
    color: hsl(var(--ff-muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
  }

  .ff-cart-page__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
  }

  @media (max-width: 768px) {
    .ff-cart-page__content {
      grid-template-columns: 1fr;
    }
  }

  .ff-cart-page__items {
    background: hsl(var(--ff-card));
    border: 1px solid hsl(var(--ff-border));
    border-radius: 1rem;
    padding: 2rem;
  }

  .ff-cart-page__form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .ff-cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid hsl(var(--ff-border));
  }

  .ff-cart-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  @media (max-width: 640px) {
    .ff-cart-item {
      grid-template-columns: 80px 1fr;
      gap: 1rem;
    }

    .ff-cart-item__price {
      grid-column: 2;
      text-align: right;
    }
  }

  .ff-cart-item__image {
    width: 120px;
    height: 120px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: hsl(var(--ff-muted) / 0.2);
  }

  @media (max-width: 640px) {
    .ff-cart-item__image {
      width: 80px;
      height: 80px;
    }
  }

  .ff-cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ff-cart-item__details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .ff-cart-item__title {
    font-family: 'Cinzel', serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
  }

  .ff-cart-item__title a {
    color: hsl(var(--ff-foreground));
    text-decoration: none;
    transition: color 0.2s;
  }

  .ff-cart-item__title a:hover {
    color: hsl(var(--ff-primary));
  }

  .ff-cart-item__variant {
    font-size: 0.875rem;
    color: hsl(var(--ff-muted-foreground));
    margin: 0;
  }

  .ff-cart-item__properties {
    font-size: 0.875rem;
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-cart-item__properties p {
    margin: 0.25rem 0;
  }

  .ff-cart-item__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
  }

  .ff-cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .ff-cart-item__quantity label {
    font-size: 0.875rem;
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-cart-item__quantity input {
    width: 80px;
    padding: 0.5rem 0.75rem;
    border: 1px solid hsl(var(--ff-border));
    border-radius: 0.5rem;
    background: hsl(var(--ff-background));
    color: hsl(var(--ff-foreground));
    font-size: 1rem;
    text-align: center;
  }

  .ff-cart-item__remove {
    font-size: 0.875rem;
    color: hsl(var(--ff-destructive));
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
  }

  .ff-cart-item__remove:hover {
    opacity: 0.7;
  }

  .ff-cart-item__price {
    text-align: right;
  }

  .ff-cart-item__price-label {
    font-size: 0.75rem;
    color: hsl(var(--ff-muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.25rem;
  }

  .ff-cart-item__price-amount {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--ff-primary));
    margin: 0;
  }

  .ff-cart-page__update {
    display: flex;
    justify-content: flex-end;
  }

  /* Cart Summary */
  .ff-cart-page__summary {
    position: sticky;
    top: 2rem;
  }

  .ff-cart-summary {
    background: hsl(var(--ff-card));
    border: 1px solid hsl(var(--ff-border));
    border-radius: 1rem;
    padding: 2rem;
  }

  .ff-cart-summary__title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--ff-border));
  }

  .ff-cart-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid hsl(var(--ff-border));
  }

  .ff-cart-summary__line span:first-child {
    font-size: 1rem;
    color: hsl(var(--ff-foreground));
  }

  .ff-cart-summary__price {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--ff-primary));
  }

  .ff-cart-summary__discounts {
    border-bottom: 1px solid hsl(var(--ff-border));
  }

  .ff-cart-summary__discount {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: hsl(var(--ff-success));
  }

  .ff-cart-summary__note {
    font-size: 0.875rem;
    color: hsl(var(--ff-muted-foreground));
    text-align: center;
    margin: 1.5rem 0;
  }

  .ff-cart-summary__checkout {
    margin-bottom: 1rem;
  }

  .ff-cart-summary__continue {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    color: hsl(var(--ff-muted-foreground));
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }

  .ff-cart-summary__continue:hover {
    color: hsl(var(--ff-foreground));
  }

  /* Empty Cart */
  .ff-cart-page__empty {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }

  .ff-cart-page__empty-text {
    font-size: 1.125rem;
    color: hsl(var(--ff-muted-foreground));
    max-width: 400px;
    margin: 0;
  }

  /* Button Styles */
  .ff-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    background: hsl(var(--ff-primary));
    color: hsl(var(--ff-primary-foreground));
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .ff-button:hover {
    opacity: 0.9;
  }

  .ff-button--outline {
    background: transparent;
    border: 1px solid hsl(var(--ff-border));
    color: hsl(var(--ff-foreground));
  }

  .ff-button--outline:hover {
    background: hsl(var(--ff-muted) / 0.1);
  }

  .ff-button--full {
    width: 100%;
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:6, SCOPED:FALSE) */
.ff-collection-index,
  .ff-collection-single {
    background: hsl(var(--ff-background));
    padding: 0rem 0;
  }

  .ff-collection-index__header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .ff-collection-index__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
  }

  .ff-collection-index__description {
    color: hsl(var(--ff-muted-foreground));
    max-width: 720px;
    margin: 0 auto;
  }

  .ff-collection-block {
    padding: 1.5rem 0;
  }

  .ff-collection-block:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .ff-collection-block__header {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .ff-collection-block__title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin-bottom: 0.5rem;
  }

  .ff-collection-block__description {
    color: hsl(var(--ff-muted-foreground));
    max-width: 720px;
    margin: 0 auto;
  }

  .ff-collection-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .ff-collection-index__empty {
    text-align: center;
    color: hsl(var(--ff-muted-foreground));
    margin: 1.5rem 0 0;
  }

  @media (max-width: 900px) {
    .ff-collection-block__grid {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.25rem;
    }
  }

  @media (max-width: 640px) {
    .ff-collection-index,
    .ff-collection-single {
      padding: 0rem 0;
    }

    .ff-collection-index__header {
      margin-bottom: 1.5rem;
    }

    .ff-collection-block {
      padding: 1.25rem 0;
    }

    .ff-collection-block__header {
      margin-bottom: 1rem;
    }

    .ff-collection-block__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:7, SCOPED:FALSE) */
.ff-collection-index {
    background: hsl(var(--ff-background));
    padding: 2rem 0;
  }

  .ff-collection-index__header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .ff-collection-index__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
  }

  .ff-collection-block {
    padding: 0;
  }

  .ff-collection-block:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .ff-collection-block__header {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .ff-collection-block__title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin-bottom: 0.5rem;
  }

  .ff-collection-block__description {
    color: hsl(var(--ff-muted-foreground));
    max-width: 720px;
    margin: 0 auto;
  }

  .ff-collection-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .ff-collection-index__empty {
    text-align: center;
    color: hsl(var(--ff-muted-foreground));
    margin: 1.5rem 0 0;
  }

  @media (max-width: 900px) {
    .ff-collection-block__grid {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.25rem;
    }
  }

  @media (max-width: 640px) {
    .ff-collection-index {
      padding: 0rem 0;
    }

    .ff-collection-index__header {
      margin-bottom: 1.5rem;
    }

    .ff-collection-block {
      padding: 1.25rem 0;
    }

    .ff-collection-block__header {
      margin-bottom: 1rem;
    }

    .ff-collection-block__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }
  }
/* END_SECTION:collections */

/* START_SECTION:contact (INDEX:8, SCOPED:FALSE) */
.ff-contact {
    padding: 4rem 0;
  }

  .ff-contact__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .ff-contact__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
  }

  .ff-contact__subtitle {
    color: hsl(var(--ff-muted-foreground));
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .ff-contact__section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--ff-foreground));
  }

  /* Form Styles */
  .ff-contact__form-wrapper {
    background: hsl(var(--ff-card));
    border: 1px solid hsl(var(--ff-border));
    border-radius: var(--ff-radius);
    padding: 2rem;
  }

  .ff-contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .ff-contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .ff-contact__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--ff-foreground));
  }

  .ff-contact__textarea {
    resize: vertical;
    min-height: 120px;
  }

  .ff-contact__submit {
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .ff-contact__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

  /* Hide loading elements by default */
  .ff-contact__submit-loading,
  .ff-contact__submit-spinner {
    display: none;
  }

  /* Show loading elements when form is submitting */
  .ff-contact__submit.is-loading .ff-contact__submit-text,
  .ff-contact__submit.is-loading .ff-contact__submit-icon {
    display: none;
  }

  .ff-contact__submit.is-loading .ff-contact__submit-loading,
  .ff-contact__submit.is-loading .ff-contact__submit-spinner {
    display: inline-block;
  }

  .ff-contact__submit-spinner {
    animation: ff-spin 1s linear infinite;
  }

  @keyframes ff-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .ff-contact__form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-contact__form-note svg {
    color: hsl(142 76% 40%);
  }

  .ff-contact__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    color: hsl(142 76% 50%);
  }

  .ff-contact__success svg {
    width: 48px;
    height: 48px;
  }

  .ff-contact__success p {
    font-size: 1.1rem;
    color: hsl(var(--ff-foreground));
  }

  .ff-contact__error {
    background: hsl(0 70% 50% / 0.1);
    border: 1px solid hsl(0 70% 50% / 0.3);
    border-radius: var(--ff-radius);
    padding: 1rem;
    margin-bottom: 1rem;
    color: hsl(0 70% 60%);
  }

  /* Info & Social Styles */
  .ff-contact__info {
    padding: 1rem 0;
  }

  .ff-contact__info-text {
    color: hsl(var(--ff-muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .ff-contact__channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .ff-contact__channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsl(var(--ff-card));
    border: 1px solid hsl(var(--ff-border));
    border-radius: var(--ff-radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, transform 0.2s ease;
  }

  .ff-contact__channel:hover {
    border-color: hsl(var(--ff-primary));
    transform: translateX(4px);
  }

  .ff-contact__channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: hsl(var(--ff-primary) / 0.1);
    border-radius: 50%;
    color: hsl(var(--ff-primary));
    flex-shrink: 0;
  }

  .ff-contact__channel-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .ff-contact__channel-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-contact__channel-value {
    font-size: 0.95rem;
    color: hsl(var(--ff-foreground));
  }

  .ff-contact__response-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem;
    background: hsl(var(--ff-muted) / 0.3);
    border-radius: var(--ff-radius);
    color: hsl(var(--ff-muted-foreground));
    font-size: 0.9rem;
  }

  .ff-contact__response-time svg {
    color: hsl(var(--ff-primary));
    flex-shrink: 0;
  }

  @media (max-width: 900px) {
    .ff-contact__grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }

  @media (max-width: 640px) {
    .ff-contact {
      padding: 3rem 0;
    }

    .ff-contact__header {
      margin-bottom: 2rem;
    }

    .ff-contact__form-wrapper {
      padding: 1.5rem;
    }

    .ff-contact__channel {
      padding: 0.875rem;
    }

    .ff-contact__channel-icon {
      width: 40px;
      height: 40px;
    }

    .ff-contact__channel-icon svg {
      width: 20px;
      height: 20px;
    }
  }
/* END_SECTION:contact */

/* START_SECTION:custom-section (INDEX:9, SCOPED:FALSE) */
.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:features (INDEX:10, SCOPED:FALSE) */
.ff-features {
    scroll-margin-top: calc(var(--ff-header-height) + 1.5rem);
  }

  .ff-features__header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .ff-features__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
  }

  .ff-features__subtitle {
    max-width: 520px;
    margin: 0 auto;
    font-size: 1rem;
  }

  .ff-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .ff-features__card {
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .ff-features__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--ff-primary) / 0.12);
    color: hsl(var(--ff-primary));
    margin-bottom: 1.5rem;
  }

  .ff-features__icon svg,
  .ff-features__icon img {
    width: 2rem;
    height: 2rem;
  }

  .ff-features__name {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }

  .ff-features__text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  @media (max-width: 960px) {
    .ff-features__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    .ff-features__grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
/* END_SECTION:features */

/* START_SECTION:footer (INDEX:11, SCOPED:FALSE) */
.ff-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid hsl(var(--ff-border));
  }

  .ff-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .ff-footer__logo {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
  }

  .ff-footer__heading {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }

  .ff-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
  }

  .ff-footer__list a {
    color: hsl(var(--ff-muted-foreground));
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .ff-footer__list a:hover {
    color: hsl(var(--ff-primary));
  }

  .ff-footer__social {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .ff-footer__social a {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid hsl(var(--ff-border));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--ff-muted-foreground));
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  .ff-footer__social a:hover {
    color: hsl(var(--ff-primary));
    border-color: hsl(var(--ff-primary));
  }

  .ff-footer__social svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .ff-footer__bottom {
    border-top: 1px solid hsl(var(--ff-border));
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .ff-footer__legal {
    display: flex;
    gap: 1.5rem;
  }

  .ff-footer__legal a {
    color: hsl(var(--ff-muted-foreground));
    text-decoration: none;
    font-size: 0.75rem;
  }

  @media (max-width: 900px) {
    .ff-footer__top {
      grid-template-columns: minmax(0, 1fr);
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:12, SCOPED:FALSE) */
.ff-header {
    position: fixed;
    top: var(--ff-announcement-height, 2.5rem);
    left: 0;
    right: 0;
    z-index: 100;
    background: hsl(var(--ff-background) / 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--ff-border));
    width: 100%;
    transition: top 0.3s ease;
  }

  /* When announcement bar is dismissed, move header to top */
  .ff-announcement-dismissed .ff-header {
    top: 0;
  }

  .ff-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    gap: 2rem;
  }

  .ff-header__logo a {
    display: flex;
    align-items: center;
  }

  .ff-header__logo img {
    height: 3rem;
    width: auto;
  }

  .ff-header__text {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--ff-foreground));
  }

  .ff-header__nav {
    display: none;
    align-items: center;
    gap: 2rem;
  }

  .ff-header__link {
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--ff-muted-foreground));
    transition: color 0.3s;
    white-space: nowrap;
    text-decoration: none;
  }

  .ff-header__link:hover {
    color: hsl(var(--ff-primary));
    text-decoration: none;
  }

  .ff-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .ff-header__cart {
    position: relative;
    color: hsl(var(--ff-foreground));
    padding: 0.5rem;
    transition: color 0.2s;
    cursor: pointer;
    background: none;
    border: none;
  }

  .ff-header__cart:hover {
    color: hsl(var(--ff-primary));
  }

  .ff-header__cart svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
  }

  .ff-header__badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: hsl(var(--ff-primary));
    color: hsl(var(--ff-primary-foreground));
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
  }

  .ff-header__badge.is-hidden {
    display: none;
  }

  .ff-header__mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: hsl(var(--ff-foreground));
    cursor: pointer;
    padding: 0.5rem;
  }

  .ff-header__mobile-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .ff-header__mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.5rem 0;
    border-top: 1px solid hsl(var(--ff-border));
  }

  .ff-header__mobile-nav[open] {
    display: flex;
  }

  .ff-header__mobile-nav a {
    padding: 0.875rem 0;
    color: hsl(var(--ff-foreground));
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
  }

  .ff-header__mobile-nav a:hover {
    color: hsl(var(--ff-primary));
    text-decoration: none;
  }

  @media (min-width: 768px) {
    .ff-header__nav {
      display: flex;
    }

    .ff-header__mobile-btn {
      display: none;
    }

    .ff-header__mobile-nav {
      display: none !important;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hero (INDEX:13, SCOPED:FALSE) */
.ff-hero {
    position: relative;
    min-height: calc(100vh - var(--ff-header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .ff-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .ff-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      hsl(var(--ff-background) / calc(var(--overlay-opacity) * 1%)),
      hsl(var(--ff-background) / 0.6),
      hsl(var(--ff-background))
    );
  }

  .ff-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, hsl(32 90% 55% / 0.12), transparent 60%);
  }

  .ff-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 0 4rem;
  }

  .ff-hero__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, hsl(var(--ff-background) / 0.8), transparent);
    backdrop-filter: blur(8px);
  }

  .ff-hero__logo img {
    height: var(--hero-logo-height);
    width: auto;
    display: block;
  }

  .ff-hero__tagline {
    margin: 2rem 0 1.5rem;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: hsl(var(--ff-cream));
  }

  .ff-hero__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
  }

  .ff-hero__feature {
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-hero__dot {
    color: hsl(var(--ff-primary));
  }

  .ff-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .ff-hero__scroll a {
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-hero__scroll svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  @media (max-width: 700px) {
    .ff-hero__logo-wrap {
      padding: 1.2rem 1.4rem;
    }

    .ff-hero__tagline {
      letter-spacing: 0.2em;
    }

    .ff-hero__features {
      letter-spacing: 0.12em;
    }
  }
/* END_SECTION:hero */

/* START_SECTION:newsletter (INDEX:14, SCOPED:FALSE) */
.ff-social-connect__content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .ff-social-connect__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .ff-social-connect__subtitle {
    margin-bottom: 3rem;
    font-size: 1.125rem;
  }

  .ff-social-connect__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
  }

  @media (max-width: 640px) {
    .ff-social-connect__links {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .ff-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: hsl(var(--ff-card));
    border: 1px solid hsl(var(--ff-border));
    border-radius: 0.75rem;
    color: hsl(var(--ff-foreground));
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .ff-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(var(--ff-primary) / 0.1), hsl(var(--ff-primary) / 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .ff-social-link:hover {
    transform: translateY(-4px);
    border-color: hsl(var(--ff-primary));
    box-shadow: 0 8px 20px hsl(var(--ff-primary) / 0.2);
  }

  .ff-social-link:hover::before {
    opacity: 1;
  }

  .ff-social-link svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .ff-social-link:hover svg {
    transform: scale(1.1);
    stroke: hsl(var(--ff-primary));
  }

  .ff-social-link span {
    font-family: 'Cinzel', serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
  }
/* END_SECTION:newsletter */

/* START_SECTION:product (INDEX:17, SCOPED:FALSE) */
.ff-product__back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: hsl(var(--ff-muted-foreground));
    text-decoration: none;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
  }

  .ff-product__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem;
  }

  .ff-product__main {
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    overflow: hidden;
    background: hsl(var(--ff-muted) / 0.2);
    position: relative;
  }

  .ff-product__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .ff-product__badge--preorder {
    background: hsl(var(--ff-primary));
    color: hsl(var(--ff-primary-foreground));
    box-shadow: 0 2px 8px hsl(var(--ff-primary) / 0.3);
  }

  .ff-product__badge--bundle {
    background: hsl(var(--ff-ternary));
    color: hsl(var(--ff-ternary-foreground));
    box-shadow: 0 2px 8px hsl(var(--ff-ternary) / 0.3);
  }

  .ff-product__thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
  }

  .ff-product__thumb {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    background: hsl(var(--ff-card));
    cursor: pointer;
  }

  .ff-product__thumb.is-active {
    border-color: hsl(var(--ff-primary));
  }

  .ff-product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ff-product__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .ff-product__bundle-notice {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: hsl(var(--ff-ternary) / 0.1);
    border: 1px solid hsl(var(--ff-ternary) / 0.3);
    border-radius: 0.5rem;
    color: hsl(var(--ff-ternary));
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .ff-product__bundle-notice svg {
    flex-shrink: 0;
  }

  .ff-product__preorder-notice {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: hsl(var(--ff-primary) / 0.1);
    border: 1px solid hsl(var(--ff-primary) / 0.3);
    border-radius: 0.5rem;
    color: hsl(var(--ff-primary));
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .ff-product__preorder-notice svg {
    flex-shrink: 0;
  }

  .ff-product__price {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: hsl(var(--ff-primary));
    margin-bottom: 1.5rem;
  }

  .ff-product__description {
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .ff-product__form {
    display: grid;
    gap: 1.5rem;
  }

  .ff-product__select {
    display: none;
  }

  .ff-product__option-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .ff-product__option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .ff-product__option-value {
    background: transparent;
    border: 1px solid hsl(var(--ff-border));
    color: hsl(var(--ff-foreground));
    padding: 0.6rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  }

  .ff-product__option-value.is-active {
    border-color: hsl(var(--ff-primary));
    color: hsl(var(--ff-primary));
    background: hsl(var(--ff-primary) / 0.08);
  }

  .ff-product__quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }

  .ff-product__qty-btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--ff-border));
    background: transparent;
    color: hsl(var(--ff-foreground));
    cursor: pointer;
  }

  .ff-product__qty-input {
    width: 3rem;
    text-align: center;
    border: 1px solid hsl(var(--ff-border));
    border-radius: 0.5rem;
    background: hsl(var(--ff-card));
    color: hsl(var(--ff-foreground));
    padding: 0.3rem 0.4rem;
    -moz-appearance: textfield;
  }

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

  .ff-product__submit {
    width: 100%;
    border: none;
    cursor: pointer;
  }

  .ff-product__submit[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
  }

  @media (max-width: 900px) {
    .ff-product__grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  .ff-product-related__header {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .ff-product-related__title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin-bottom: 0.5rem;
  }

  .ff-product-related__subtitle {
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-product-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  @media (max-width: 900px) {
    .ff-product-related__grid {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.25rem;
    }
  }

  @media (max-width: 640px) {
    .ff-product-related__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }
  }
/* END_SECTION:product */

/* START_SECTION:products (INDEX:18, SCOPED:FALSE) */
.ff-products {
    scroll-margin-top: calc(var(--ff-header-height) + 1.5rem);
  }

  .ff-products__header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .ff-products__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
  }

  .ff-products__subtitle {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
  }

  .ff-products__hero {
    margin-bottom: 4rem;
  }

  .ff-products__hero-frame {
    border-radius: 1rem;
    overflow: hidden;
  }

  .ff-products__hero-frame img {
    width: 100%;
    height: auto;
    display: block;
  }

  .ff-products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .ff-products__card {
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
  }

  .ff-products__card:hover {
    transform: translateY(-6px);
    border-color: hsl(var(--ff-primary) / 0.6);
  }

  .ff-products__image {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: hsl(var(--ff-muted) / 0.2);
    position: relative;
  }

  .ff-products__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: hsl(var(--ff-primary));
    color: hsl(var(--ff-primary-foreground));
    box-shadow: 0 2px 8px hsl(var(--ff-primary) / 0.3);
  }

  .ff-products__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .ff-products__card:hover .ff-products__image img {
    transform: scale(1.05);
  }

  .ff-products__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--ff-muted-foreground));
    font-family: 'Cinzel', serif;
    font-size: 2rem;
  }

  .ff-products__info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .ff-products__name {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    text-decoration: none;
    color: hsl(var(--ff-foreground));
    transition: color 0.3s ease;
  }

  .ff-products__name:hover {
    color: hsl(var(--ff-primary));
  }

  .ff-products__description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .ff-products__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .ff-products__price {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: hsl(var(--ff-primary));
  }

  .ff-products__empty {
    padding: 3rem;
    text-align: center;
  }

  .ff-products__empty-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  @media (max-width: 980px) {
    .ff-products__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 680px) {
    .ff-products__grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .ff-products__meta {
      flex-direction: column;
      align-items: flex-start;
    }
  }
/* END_SECTION:products */

/* START_SECTION:search (INDEX:19, SCOPED:FALSE) */
.ff-search {
    padding-top: calc(var(--ff-header-height) + 2rem);
    min-height: 60vh;
  }

  .ff-search__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    text-align: center;
  }

  .ff-search__form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
  }

  .ff-search__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--ff-border));
    border-radius: 0.5rem;
    background: hsl(var(--ff-background));
    color: hsl(var(--ff-foreground));
    font-size: 1rem;
  }

  .ff-search__input:focus {
    outline: none;
    border-color: hsl(var(--ff-primary));
  }

  .ff-search__count {
    text-align: center;
    margin-bottom: 2rem;
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-search__empty {
    text-align: center;
    padding: 3rem;
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-search__results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }

  .ff-search__results .pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .ff-search__result {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .ff-search__result-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: hsl(var(--ff-muted) / 0.2);
    margin-bottom: 1rem;
  }

  .ff-search__result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .ff-search__result:hover .ff-search__result-image img {
    transform: scale(1.05);
  }

  .ff-search__result-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .ff-search__result-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    text-decoration: none;
    color: hsl(var(--ff-foreground));
    transition: color 0.3s ease;
  }

  .ff-search__result-title:hover {
    color: hsl(var(--ff-primary));
  }

  .ff-search__result-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  @media (max-width: 640px) {
    .ff-search__form {
      flex-direction: column;
    }

    .ff-search__results {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:20, SCOPED:FALSE) */
.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:21, SCOPED:FALSE) */
.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:cart-drawer (INDEX:22, SCOPED:FALSE) */
.ff-cart {
      position: fixed;
      inset: 0;
      z-index: 70;
      display: flex;
      align-items: stretch;
      justify-content: flex-end;
    }

    .ff-cart[hidden] {
      display: none;
    }

    .ff-cart__overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }

    .ff-cart__panel {
      position: relative;
      width: min(420px, 90vw);
      height: 100%;
      background: hsl(var(--ff-card));
      border-left: 1px solid hsl(var(--ff-border));
      padding: 1.5rem;
      padding-top: 8.5rem; /* announcement (~2.5rem) + header (~4rem) + spacing */
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      overflow: hidden;
    }

    /* When announcement is dismissed, reduce top padding */
    .ff-announcement-dismissed .ff-cart__panel {
      padding-top: 5rem; /* header (~4rem) + spacing */
    }

    .ff-cart__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }

    .ff-cart__title {
      margin: 0;
      font-size: 1.2rem;
      line-height: 1.3;
    }

    .ff-cart__subtitle {
      margin: 0.3rem 0 0;
      font-size: 0.8rem;
      color: hsl(var(--ff-muted-foreground));
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .ff-cart__close {
      border: 1px solid hsl(var(--ff-border));
      background: transparent;
      color: hsl(var(--ff-foreground));
      width: 2rem;
      height: 2rem;
      border-radius: 999px;
      font-size: 1.4rem;
      cursor: pointer;
    }

    .ff-cart__body {
      flex: 1;
      overflow-y: auto;
      padding-right: 0.5rem;
    }

    .ff-cart__items {
      display: grid;
      gap: 1rem;
    }

    .ff-cart__item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 1rem;
      padding: 0.8rem;
      background: hsl(var(--ff-muted) / 0.15);
      border-radius: 0.75rem;
      border: 1px solid hsl(var(--ff-border));
    }

    .ff-cart__image {
      width: 80px;
      height: 80px;
      border-radius: 0.6rem;
      overflow: hidden;
      background: hsl(var(--ff-muted) / 0.2);
    }

    .ff-cart__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ff-cart__details {
      display: grid;
      gap: 0.4rem;
    }

    .ff-cart__name {
      text-decoration: none;
      font-family: 'Cinzel', serif;
      color: hsl(var(--ff-foreground));
    }

    .ff-cart__price {
      color: hsl(var(--ff-primary));
      font-family: 'Cinzel', serif;
      display: flex;
      align-items: baseline;
      gap: 0.35rem;
    }

    .ff-cart__price-compare {
      color: hsl(var(--ff-muted-foreground));
      text-decoration: line-through;
      font-size: 0.9em;
    }

    .ff-cart__price-final {
      color: inherit;
    }

    .ff-cart__discounts {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.25rem;
      font-size: 0.8rem;
      color: hsl(var(--ff-muted-foreground));
    }

    .ff-cart__discounts--cart {
      margin-top: 0.35rem;
    }

    .ff-cart__discount {
      display: flex;
      justify-content: space-between;
      gap: 0.75rem;
    }

    .ff-cart__qty {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .ff-cart__qty button {
      width: 1.8rem;
      height: 1.8rem;
      border-radius: 0.5rem;
      border: 1px solid hsl(var(--ff-border));
      background: transparent;
      color: hsl(var(--ff-foreground));
      cursor: pointer;
    }

    .ff-cart__qty input {
      width: 2.4rem;
      text-align: center;
      border-radius: 0.4rem;
      border: 1px solid hsl(var(--ff-border));
      background: hsl(var(--ff-card));
      color: hsl(var(--ff-foreground));
      -moz-appearance: textfield;
    }

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

    .ff-cart__remove {
      border: none;
      background: transparent;
      color: hsl(var(--ff-muted-foreground));
      cursor: pointer;
      text-align: left;
      padding: 0;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .ff-cart__footer {
      border-top: 1px solid hsl(var(--ff-border));
      padding-top: 1rem;
      display: grid;
      gap: 1rem;
    }

    .ff-cart__total {
      display: flex;
      justify-content: space-between;
      font-family: 'Cinzel', serif;
      font-size: 1.1rem;
    }

    .ff-cart__discount-total {
      display: flex;
      justify-content: space-between;
      font-size: 0.95rem;
      color: hsl(var(--ff-muted-foreground));
      margin-bottom: 0.35rem;
    }

    .ff-cart__note {
      margin: 0;
      font-size: 0.8rem;
      color: hsl(var(--ff-muted-foreground));
    }

    .ff-cart__actions {
      display: grid;
      gap: 0.75rem;
    }

    .ff-cart__actions .ff-button {
      width: 100%;
    }

    body.ff-cart-open {
      overflow: hidden;
    }
/* END_SNIPPET:cart-drawer */

/* START_SNIPPET:forge-flame-styles (INDEX:24, SCOPED:FALSE) */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

  :root {
    --ff-background: 20 10% 8%;
    --ff-foreground: 40 20% 92%;
    --ff-card: 20 8% 12%;
    --ff-muted: 20 8% 20%;
    --ff-muted-foreground: 30 10% 55%;
    --ff-primary: 32 90% 55%;
    --ff-primary-foreground: 20 10% 8%;
    --ff-border: 25 12% 22%;
    --ff-cream: 40 30% 90%;
    --ff-header-height: 5rem;
    --ff-radius: 0.5rem;
    --ff-shadow-flame: 0 0 40px hsl(32 90% 55% / 0.3), 0 0 80px hsl(32 90% 55% / 0.1);
  }

  :root {
    --color-background: hsl(var(--ff-background));
    --color-foreground: hsl(var(--ff-foreground));
  }

  body {
    background: hsl(var(--ff-background));
    color: hsl(var(--ff-foreground));
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    padding-top: 8.25rem;
    transition: padding-top 0.3s ease;
  }

  /* When announcement bar is dismissed, reduce body padding */
  body.ff-announcement-dismissed {
    padding-top: 5rem;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.08em;
    font-weight: 600;
  }

  a {
    color: inherit;
  }

  .ff-container {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
  }

  .ff-section {
    padding: 2rem 0;
    margin: 0rem 0;
  }

  .ff-collection-section {
    padding: 0;
    padding-bottom: 2rem;
  }

  .ff-collection-container {
    padding-bottom: 3rem;
  }

  .ff-section--muted {
    background: hsl(var(--ff-muted) / 0.3);
  }

  .ff-card {
    background: hsl(var(--ff-card));
    border: 1px solid hsl(var(--ff-border));
    border-radius: var(--ff-radius);
  }

  .ff-text-muted {
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-text-gradient {
    background: linear-gradient(135deg, hsl(32 90% 55%), hsl(45 100% 65%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .ff-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    background: hsl(var(--ff-primary));
    color: hsl(var(--ff-primary-foreground));
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.24em;
    font-size: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }

  .ff-button:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: var(--ff-shadow-flame);
  }

  .ff-button--outline {
    background: transparent;
    color: hsl(var(--ff-primary));
    border: 1px solid hsl(var(--ff-primary));
    box-shadow: none;
  }

  .ff-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--ff-radius);
    border: 1px solid hsl(var(--ff-border));
    background: hsl(var(--ff-card));
    color: hsl(var(--ff-foreground));
  }

  .ff-input::placeholder {
    color: hsl(var(--ff-muted-foreground));
  }

  .ff-glow {
    box-shadow: var(--ff-shadow-flame);
  }

  .ff-animate-fade-in {
    animation: ff-fade-in 0.9s ease forwards;
    opacity: 0;
  }

  .ff-animate-fade-up {
    animation: ff-fade-up 0.8s ease forwards;
    opacity: 0;
  }

  .ff-animate-scale-in {
    animation: ff-scale-in 0.9s ease forwards;
    opacity: 0;
  }

  .ff-animate-float {
    animation: ff-float 6s ease-in-out infinite;
  }

  @keyframes ff-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes ff-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes ff-scale-in {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
  }

  @keyframes ff-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @media (max-width: 900px) {
    .ff-container {
      width: min(720px, calc(100% - 2rem));
    }
  }

  @media (max-width: 700px) {

    body {
      padding-top: calc(var(--ff-header-height) + 0.5rem);
    }

    .ff-section {
      padding: 4rem 0;
    }
  }
/* END_SNIPPET:forge-flame-styles */

/* START_SNIPPET:image (INDEX:25, SCOPED:FALSE) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

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

/* START_SNIPPET:product-card (INDEX:27, SCOPED:FALSE) */
.ff-product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
  }

  .ff-product-card--with-cart {
    border: 1px solid hsl(var(--ff-border));
    border-radius: 1rem;
    overflow: hidden;
    background: hsl(var(--ff-card));
    transition: transform 0.4s ease, border-color 0.4s ease;
  }

  .ff-product-card--with-cart:hover {
    transform: translateY(-6px);
    border-color: hsl(var(--ff-primary) / 0.6);
  }

  .ff-product-card:not(.ff-product-card--with-cart):hover {
    transform: translateY(-4px);
  }

  .ff-product-card__image {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: hsl(var(--ff-muted) / 0.2);
    position: relative;
  }

  .ff-product-card--with-cart .ff-product-card__image {
    border-radius: 0;
  }

  .ff-product-card:not(.ff-product-card--with-cart) .ff-product-card__image {
    border-radius: 1rem;
    margin-bottom: 1rem;
  }

  .ff-product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .ff-product-card__badge--preorder {
    background: hsl(var(--ff-primary));
    color: hsl(var(--ff-primary-foreground));
    box-shadow: 0 2px 8px hsl(var(--ff-primary) / 0.3);
  }

  .ff-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .ff-product-card:hover .ff-product-card__image img {
    transform: scale(1.05);
  }

  .ff-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--ff-muted-foreground));
    font-family: 'Cinzel', serif;
    font-size: 2rem;
  }

  .ff-product-card__info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .ff-product-card:not(.ff-product-card--with-cart) .ff-product-card__info {
    padding: 0;
    text-align: center;
  }

  .ff-product-card__name {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    text-decoration: none;
    color: hsl(var(--ff-foreground));
    transition: color 0.3s ease;
  }

  .ff-product-card:not(.ff-product-card--with-cart) .ff-product-card__name {
    font-size: 1.1rem;
  }

  .ff-product-card__name:hover {
    color: hsl(var(--ff-primary));
  }

  .ff-product-card__description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .ff-product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .ff-product-card:not(.ff-product-card--with-cart) .ff-product-card__meta {
    justify-content: center;
  }

  .ff-product-card__price {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: hsl(var(--ff-primary));
  }

  .ff-product-card--with-cart .ff-product-card__meta .ff-button {
    flex-shrink: 0;
  }
/* END_SNIPPET:product-card */