/** Shopify CDN: Minification failed

Line 1257:2 Expected ":"
Line 1258:2 Expected ":"
Line 1262:2 Expected ":"
Line 1263:2 Expected ":"
Line 1423:1 Expected "}" to go with "{"

**/
/* ============================================
   FOREVER INDUSTRIES - CUSTOM THEME
   ============================================ */

@font-face {
  font-family: 'CanelaText';
  src: url('canela-thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CanelaText';
  src: url('canela-thin-italic.woff2') format('woff2');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'CanelaText';
  src: url('canela-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5f3f0;
  --black: #111;
  --grey: #888;
  --gap: 0;
  --pad: 0;
}

html, body {
  background: var(--bg);
  color: var(--black);
  font-family: 'CanelaText', serif;
  font-size: 13px;
  font-weight: 100;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

main[role="main"] {
  padding-top: 200px;
}

@media (max-width: 900px) {
  main[role="main"] {
    padding-top: 140px;
  }
}

/* ============================================
   NAV / HEADER
   ============================================ */

nav.fi-nav {
  background: var(--bg);
  padding: 16px 10px 12px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: padding 0.3s ease;
}

nav.fi-nav .nav-logo img,
nav.fi-nav .nav-logo svg {
  transition: width 0.3s ease;
}

nav.fi-nav.is-scrolled .nav-logo img,
nav.fi-nav.is-scrolled .nav-logo svg {
  width: var(--logo-shrink-width, 300px) !important;
  max-width: none !important;
}

nav.fi-nav.is-scrolled {
  padding: 8px 10px 8px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.nav-cart {
  align-self: flex-start;
  padding: 4px 90px 0 0;
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: clamp(15px, 1.9vw, 26px);
}

.nav-logo { display: block; text-decoration: none; }
.nav-logo img,
.nav-logo svg { width: clamp(200px, 40vw, 520px); height: auto; display: block; }

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: clamp(20px, 3vw, 50px);
  width: fit-content;
  margin-top: 12px;
  padding: 0;
}

.nav-links li a {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: clamp(15px, 1.9vw, 26px);
  color: var(--black);
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.15s;
}

.nav-links li a:hover { opacity: 0.4; }

/* ============================================
   GRID (Object listing)
   ============================================ */

.grid {
  padding: var(--pad);
  columns: 3;
  column-gap: 0;
}

.item-card,
.item-card-wide {
  display: block;
  break-inside: avoid;
  margin-bottom: 0;
  text-decoration: none;
  color: var(--black);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.item-card-wide {
  column-span: all;
}

.item-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.item-img img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.item-card:hover .item-img img,
.item-card-wide:hover .item-img img {
  transform: scale(1.03);
}

.item-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #000;
}

@media (max-width: 900px) {
  .grid { columns: 2; column-gap: 0; padding: 8px; }

  .nav-links li a { font-size: 16px; }
  .nav-cart { font-size: 16px; }
  .product__title { font-size: 18px; }
  .product__description { font-size: 14px; }
  .product__price { font-size: 18px; }
  .item-text { font-size: 22px; }
  .studio-text-top__inner { font-size: clamp(16px, 4.2cqw, 28px); }
}

@media (max-width: 560px) {
  .grid {
    columns: auto;
    column-count: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .grid > .item-card,
  .grid > .item-card-wide {
    order: var(--mobile-order, 99);
  }

  .nav-links li a { font-size: 14px; }
  .nav-cart { font-size: 14px; }
  .nav-links {
    gap: 16px;
    justify-content: flex-start;
  }
  .nav-logo img,
  .nav-logo svg { width: 200px; }

  .product__title { font-size: 16px; }
  .product__description { font-size: 13px; }
  .product__price { font-size: 16px; }
  .product__buy {
    font-size: 13px;
    padding: 12px 20px;
    width: 100%;
    align-self: stretch;
  }
  .product__variant-select { font-size: 13px; }

  .item-text { font-size: 18px; }
  .studio-text-top__inner { font-size: clamp(15px, 5cqw, 22px); }

  .page__title { font-size: 26px; }
  .page__content { font-size: 14px; }

  .cart__title { font-size: 24px; }
  .cart__item-title { font-size: 14px; }
  .cart__total { font-size: 16px; }
  .cart__checkout { font-size: 13px; }

  .collection-title { font-size: 28px; }
}

/* ============================================
   PRODUCT PAGE
   ============================================ */

.product {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 20px;
  min-height: calc(100vh - 120px);
}

.product__media {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product__media img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

.product__info {
  padding: 60px 60px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 560px;
  position: sticky;
  top: 200px;
  align-self: start;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
}

.product__title {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 17.5px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.product__price {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 17.5px;
  margin-bottom: 0;
}

.product__description {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--black);
}

.product__description p { margin-bottom: 1em; }
.product__description p:last-child { margin-bottom: 0; }

.product__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product__variant-select {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 14px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--black);
  color: var(--black);
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 4.5l3 3 3-3' stroke='%23111' fill='none' stroke-width='1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

.product__buy {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 14px;
  padding: 14px 7ch;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  border-radius: 999px;
  align-self: flex-start;
  width: auto;
}

.product__buy:hover {
  background: var(--black);
  color: var(--bg);
}

.product__buy:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .product { 
    grid-template-columns: 1fr; 
  }
  .product__info { 
    max-width: 100%; 
    padding: 0 20px 40px; 
    order: 1;
    position: static;
    max-height: none;
    overflow: visible;
  }
  .product__media { 
    order: 2;
  }
  .product__media img { 
    width: 100%; 
  }
  .product__buy {
    width: 100%;
    align-self: stretch;
    padding: 14px 24px;
  }
}

/* ============================================
   PAGES
   ============================================ */

.page {
  padding: clamp(40px, 6vw, 100px) clamp(20px, 4vw, 60px);
  max-width: 800px;
}

.page__title {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: clamp(22px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.page__content {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.page__content p { margin-bottom: 1.2em; }
.page__content em { font-style: italic; }
.page__content strong { font-weight: 500; }
.page__content h2 {
  font-weight: 100;
  font-size: clamp(20px, 2vw, 26px);
  margin: 1.5em 0 0.5em;
}

/* ============================================
   COLLECTION PAGES
   ============================================ */

.collection-header {
  padding: 40px 20px 20px;
}

.collection-title {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: clamp(32px, 4vw, 56px);
}

/* ============================================
   CART
   ============================================ */

.cart {
  padding: clamp(20px, 4vw, 60px);
  max-width: 900px;
}

.cart__title {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 32px;
}

.cart__item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  align-items: center;
}

.cart__item img { width: 100%; height: auto; display: block; }

.cart__item-title { font-weight: 100; font-size: 16px; margin-bottom: 4px; }
.cart__item-variant { font-weight: 100; font-size: 13px; color: var(--grey); }
.cart__item-price { font-weight: 100; font-size: 16px; }

.cart__item-remove {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 12px;
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  text-decoration: underline;
  margin-top: 4px;
}

.cart__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 16px;
  border-top: 1px solid var(--black);
}

.cart__total {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 20px;
}

.cart__checkout {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 14px;
  padding: 14px 32px;
  background: var(--black);
  color: var(--bg);
  border: 1px solid var(--black);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
  border-radius: 999px;
}

.cart__checkout:hover {
  background: var(--bg);
  color: var(--black);
}

.cart__empty {
  text-align: left;
  font-size: 16px;
  color: var(--grey);
  padding: 40px 0;
}

/* ============================================
   FORMS
   ============================================ */

.fi-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.fi-form input,
.fi-form textarea {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 14px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--black);
  color: var(--black);
  border-radius: 0;
  width: 100%;
}

.fi-form textarea { min-height: 120px; resize: vertical; }

.fi-form button[type="submit"] {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 14px;
  padding: 14px 24px;
  background: var(--black);
  color: var(--bg);
  border: 1px solid var(--black);
  cursor: pointer;
  align-self: flex-start;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.fi-form button[type="submit"]:hover {
  background: var(--bg);
  color: var(--black);
}

/* ============================================
   FOOTER
   ============================================ */

footer.fi-footer {
  padding: 60px 20px 30px;
  margin-top: 80px;
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 13px;
  color: var(--grey);
}

.fi-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.fi-footer__social a {
  text-decoration: none;
}

.fi-footer a { color: var(--grey); }
.fi-footer a:hover { color: var(--black); }

/* ============================================
   SHOPIFY OVERRIDES
   ============================================ */

.shopify-section { background: var(--bg); }
.shopify-payment-button { width: 100%; margin-top: 8px; }

/* ============================================
   STUDIO GRID
   ============================================ */

.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows:
    calc(100vw / 3 * 1.25)
    calc(100vw / 3 * 1.25)
    calc(100vw / 3 * 1.25);
  gap: 0;
}

.studio-box {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.studio-split {
  display: grid;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
}

.studio-split > .studio-box {
  width: 100%;
  height: 100%;
}

.studio-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.studio-box .txt {
  position: absolute;
  inset: 0;
  padding: clamp(16px, 3vw, 40px);
  display: flex;
  align-items: flex-end;
  color: var(--black);
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 0;
  }
  .studio-grid > .studio-box,
  .studio-grid > .studio-split {
    grid-column: auto !important;
    grid-row: auto !important;
    height: calc(50vw * 1.25);
    order: var(--mobile-order, 99);
  }
  .studio-grid > .studio-box.is-mobile-full,
  .studio-grid > .studio-split.is-mobile-full,
  .studio-grid .studio-split > .studio-box.is-mobile-full {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    height: calc(100vw * 1.25) !important;
  }
  .studio-text-top {
    height: calc(50vw * 1.25) !important;
    min-height: 0 !important;
  }
  .studio-text-top.is-mobile-full {
    height: calc(100vw * 1.25) !important;
  }
  .studio-split {
    display: contents !important;
  }
  .studio-grid > .studio-split > .studio-box {
    grid-column: auto;
    height: calc(50vw * 1.25);
    order: var(--mobile-order, 99);
  }
  .studio-box.is-mobile-half {
    height: calc(50vw * 0.625) !important;
  }
  .studio-grid > .studio-box.is-mobile-full.is-mobile-half,
  .studio-grid > .studio-split.is-mobile-full.is-mobile-half,
  .studio-grid .studio-split > .studio-box.is-mobile-full.is-mobile-half,
  .studio-box.is-mobile-full.is-mobile-half {
    height: calc(100vw * 0.625) !important;
  }
}

/* Sold Out Label */
.sold-out-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #ffffff;
  color: var(--black);
  border: none;
  padding: 4px 12px;
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}

/* ============================================
   CANELA OVERRIDE
   ============================================ */

html, body,
input, textarea, select, button,
h1, h2, h3, h4, h5, h6,
p, a, span, div, label, li, ul, ol,
table, th, td, blockquote,
.shopify-section, .shopify-section *,
.product, .product *,
.cart, .cart *,
.page, .page *,
.collection, .collection *,
.cart-drawer, .cart-drawer *,
.search, .search *,
.account, .account *,
.modal, .modal *,
form, form *,
nav, nav *,
header, header *,
footer, footer *,
main, main * {
  font-family: 'CanelaText', serif !important;
}

.shopify-payment-button__button,
.shopify-challenge__button,
.shopify-buy__btn {
  font-family: 'CanelaText', serif !important;
}

/* Studio Top Text Box */
.studio-text-top {
    height: calc(50vw * 1.25) !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }
  .studio-text-top .studio-text-top__inner {
   font-size: 5.0cqmin;
    overflow: hidden;
  }

.studio-text-top__inner {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 5.2cqmin;
  line-height: 1.3;
  color: var(--black);
  max-width: 100%;
}

.studio-text-top__inner p {
  margin: 0;
}

/* Text Tile auf Startseite */
.item-card--text {
  cursor: default;
}

.item-img--text {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(20px, 3vw, 50px);
}

.item-text {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: clamp(20px, 1.8vw, 32px);
  line-height: 1.4;
  color: var(--black);
}

.item-text p {
  margin: 0;
}

/* Richtext-Override */
.studio-text-top__inner h1,
.studio-text-top__inner h2,
.studio-text-top__inner h3,
.studio-text-top__inner h4,
.studio-text-top__inner h5,
.studio-text-top__inner h6,
.studio-text-top__inner p,
.studio-text-top__inner span,
.item-text h1,
.item-text h2,
.item-text h3,
.item-text h4,
.item-text h5,
.item-text h6,
.item-text p,
.item-text span,
.product__description h1,
.product__description h2,
.product__description h3,
.product__description h4,
.product__description h5,
.product__description h6,
.product__description p,
.page__content h1,
.page__content h2,
.page__content h3,
.page__content h4,
.page__content h5,
.page__content h6,
.page__content p {
  font-family: 'CanelaText', serif !important;
  font-weight: 100 !important;
}
.studio-text-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 60px 25px 30px;
  background: #f0c8e8;
  container-type: size;
  overflow: hidden;
}

.studio-text-top__inner {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 5.2cqmin;
  line-height: 1.3;
  color: var(--black);
  max-width: 100%;
}

.studio-text-top__inner p {
  margin: 0;
}
/* ============================================
   SUSHI BUILDER
   ============================================ */

.sushi-builder {
  padding: 40px clamp(16px, 4vw, 60px);
  max-width: 1400px;
  margin: 40px auto;
  border: 1px solid #0000FF;
  border-radius: 8px;
  box-sizing: border-box;
  width: 100%;
}

.sushi-builder__intro {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.4;
  margin-bottom: 40px;
  max-width: 600px;
  color: #0000FF;
}

.sushi-builder__layout {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 20px;
  align-items: start;
}

.sushi-builder__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.sushi-card {
  background: var(--bg);
  border: 1px solid #0000FF;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  color: #0000FF;
}

.sushi-card--bonus {
  display: none;
}

.sushi-card--bonus.is-active {
  display: flex;
}

.sushi-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #ddd;
}

.sushi-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sushi-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'CanelaText', serif;
  font-weight: 100;
  color: #0000FF;
}

.sushi-card__info {
  padding: 12px 14px 4px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'CanelaText', serif;
  font-weight: 100;
  color: #0000FF;
}

.sushi-card__name {
  font-size: 16px;
}

.sushi-card__price {
  font-size: 14px;
  color: #0000FF;
  opacity: 0.6;
}

.sushi-card__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 14px;
}

.sushi-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #0000FF;
  background: transparent;
  color: #0000FF;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'CanelaText', serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.sushi-btn:hover {
  background: #0000FF;
  color: var(--bg);
}

.sushi-card__count {
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 18px;
  color: #0000FF;
}

.sushi-builder__summary {
  position: sticky;
  top: 200px;
  background: var(--bg);
  border: 1px solid #0000FF;
  border-radius: 8px;
  padding: 24px;
  font-family: 'CanelaText', serif;
  font-weight: 100;
  color: #0000FF;
}

.sushi-summary__title {
  font-size: 18px;
  margin-bottom: 4px;
}

.sushi-summary__count {
  font-size: 14px;
  color: #0000FF;
  opacity: 0.6;
  margin-bottom: 20px;
}

.sushi-summary__list {
  border-top: 1px solid #0000FF;
  padding-top: 16px;
  margin-bottom: 16px;
  min-height: 60px;
}

.sushi-summary__line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 4px 0;
  color: #0000FF;
}

.sushi-summary__empty {
  font-size: 14px;
  color: #0000FF;
  opacity: 0.6;
  font-style: italic;
}

.sushi-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  border-top: 1px solid #0000FF;
  padding-top: 12px;
  margin-bottom: 8px;
  color: #0000FF;
}

.sushi-summary__hint {
  font-size: 12px;
  color: #0000FF;
  opacity: 0.6;
  margin-bottom: 16px;
  text-align: center;
}

.sushi-checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--bg);
  color: #0000FF;
  border: 1px solid #0000FF;
  border-radius: 999px;
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.sushi-checkout-btn:hover:not(:disabled) {
  background: #0000FF;
  color: var(--bg);
}

.sushi-checkout-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .sushi-builder__layout {
    grid-template-columns: 1fr;
  }
  .sushi-builder__summary {
    position: static;
    order: 2;
  }
  .sushi-builder__grid {
    order: 1;
    grid-template-columns: repeat(2, 1fr);
  }
}
/* PP Frama Black */
@font-face {
  font-family: 'PPFrama';
  src: url('{{ "PPFrama-Black.otf" | asset_url }}') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Sushi Builder — overrides */
.sushi-builder__heading {
  font-family: 'PPFrama', serif;
  font-weight: 900;
  color: #0000FF;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Karten-Außenrahmen weg */
.sushi-builder .sushi-card {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Textfeld unter dem Bild — heller Hintergrund + Rahmen 3 Seiten */
.sushi-builder .sushi-card__info,
.sushi-builder .sushi-card__controls {
  background: #ffffff;
  border-left: 1px solid #0000FF;
  border-right: 1px solid #0000FF;
}
.sushi-builder .sushi-card__info {
  border-top: none;
}
.sushi-builder .sushi-card__controls {
  border-bottom: 1px solid #0000FF;
}

/* Falls ein gemeinsamer Wrapper außen war */
.sushi-builder__layout,
.sushi-builder__grid {
  border: none !important;
  background: transparent !important;
}
.sushi-builder,
.sushi-builder__layout {
  border: none !important;
}
.sushi-builder .sushi-card__info {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.sushi-builder .sushi-card__controls {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.sushi-builder .sushi-card__info {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.sushi-builder .sushi-card__controls {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}.sushi-builder .sushi-card__info {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-top: none !important;
  margin-top: 0 !important;
  padding-top: 14px;
}
.sushi-builder .sushi-card__media {
  margin-bottom: 0 !important;
}
.sushi-builder .sushi-card__media img {
  display: block;
  margin-bottom: 0;
}.sushi-builder .sushi-card__info,
.sushi-builder .sushi-card__controls {
  background: transparent !important;
}.sushi-builder .sushi-card--bonus .sushi-card__info {
  border-bottom: 1px solid #0000FF;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}/* Sushi Builder — text scale */
.sushi-builder .sushi-builder__heading {
  font-size: calc(clamp(40px, 6vw, 72px) * var(--sushi-scale, 1));
}
.sushi-builder .sushi-builder__intro,
.sushi-builder .sushi-builder__intro * {
  font-size: calc(1rem * var(--sushi-scale, 1));
}
.sushi-builder .sushi-card__name {
  font-size: calc(1.125rem * var(--sushi-scale, 1));
}
.sushi-builder .sushi-card__price {
  font-size: calc(0.875rem * var(--sushi-scale, 1));
}
.sushi-builder .sushi-card__count {
  font-size: calc(1rem * var(--sushi-scale, 1));
}
.sushi-builder .sushi-summary__title {
  font-size: calc(1.125rem * var(--sushi-scale, 1));
}
.sushi-builder .sushi-summary__list,
.sushi-builder .sushi-summary__line {
  font-size: calc(0.875rem * var(--sushi-scale, 1));
}
.sushi-builder .sushi-summary__total {
  font-size: calc(1rem * var(--sushi-scale, 1));
}
.sushi-builder .sushi-summary__hint {
  font-size: calc(0.75rem * var(--sushi-scale, 1));
}
.sushi-builder .sushi-checkout-btn {
  font-size: calc(0.875rem * var(--sushi-scale, 1));
}
.studio-grid-v2 .studio-block--text {
  padding: 0 !important;
}
.studio-grid-v2 .studio-block--text > div {
  width: 100%;
  height: 100%;
}.sushi-builder,
.sushi-builder * {
  color: rgb(54, 54, 54) !important;
  border-color: rgb(54, 54, 54) !important;
}
.sushi-builder .sushi-btn,
.sushi-builder .sushi-checkout-btn {
  border-color: rgb(54, 54, 54) !important;
}
.sushi-builder .sushi-btn:hover,
.sushi-builder .sushi-checkout-btn:hover {
  background: rgb(54, 54, 54) !important;
  color: var(--bg, #f5f3f0) !important;
}.sushi-builder__intro-card {
  border: 1px solid rgb(54, 54, 54);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: clamp(16px, 2vw, 28px);
  background: var(--bg, #f5f3f0);
  color: rgb(54, 54, 54);
  font-family: 'CanelaText', serif;
  font-weight: 100;
  font-size: calc(0.875rem * var(--sushi-scale, 1));
  line-height: 1.5;
}
.sushi-builder__intro-card p {
  margin: 0 0 0.5em;
}
.sushi-builder__intro-card p:last-child {
  margin: 0;
}.sushi-builder__intro-card {
  max-width: none !important;
  width: calc((100% - 20px) / 2) !important;
}
@media (min-width: 700px) {
  .sushi-builder__intro-card {
    width: calc((100% - 60px) / 4) !important;
  }
}
.sushi-builder__intro-card {
  max-width: 200px !important;
  width: 200px !important;
  align-self: start;
}.sushi-builder__intro-card {
  max-width: none !important;
  width: calc(200px * 2 + 20px) !important;
  align-self: start;
}.sushi-builder__intro-card {
  max-width: none !important;
  width: calc(200px * 2 + 20px) !important;
  align-self: start;
}@media (max-width: 700px) {
  .sushi-builder {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }
  .sushi-builder *,
  .sushi-builder *::before,
  .sushi-builder *::after {
    box-sizing: border-box;
  }
  .sushi-builder__grid,
  .sushi-builder__layout,
  .sushi-builder__main {
    width: 100%;
    max-width: 100%;
  }
@media (max-width: 700px) {
  .sushi-builder__intro-card {
    width: 100% !important;
    max-width: 100% !important;
  }
  .sushi-builder__main,
  .sushi-builder__grid {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
}.contact-grid .contact-block:first-child .contact-block--text,
.contact-grid > div:first-child {
  font-size: 40px !important;
  line-height: 1.1 !important;
}/* Inquire Link — looks like Buy Button */
a.product__buy {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
a.product__buy:hover {
  background: var(--black);
  color: var(--bg);
}/* ============================================
   POLICY PAGES (Refund, Privacy, Terms, Shipping)
   ============================================ */
.shopify-policy__container {
  max-width: 1200px !important;
  padding: 60px 32px !important;
  margin: 0 auto !important;
}
.shopify-policy__title h1 {
  font-family: 'CanelaText', serif !important;
  font-weight: 100 !important;
  font-size: 34px !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  margin-bottom: 32px !important;
  color: var(--black) !important;
}
.shopify-policy__body {
  font-family: 'CanelaText', serif !important;
  font-weight: 100 !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  line-height: 1.7 !important;
  color: var(--black) !important;
}/* ============================================
   POLICY PAGES (Refund, Privacy, Terms, Shipping)
   ============================================ */
.shopify-policy__container {
  max-width: 1200px !important;
  padding: 60px 32px !important;
  margin: 0 auto !important;
  display: block !important;
}
.shopify-policy__title {
  margin-bottom: 32px !important;
  text-align: left !important;
}
.shopify-policy__title h1 {
  font-family: 'CanelaText', serif !important;
  font-weight: 100 !important;
  font-size: 34px !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
  color: var(--black) !important;
  text-align: left !important;
}
.shopify-policy__body {
  font-family: 'CanelaText', serif !important;
  font-weight: 100 !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  line-height: 1.7 !important;
  color: var(--black) !important;
  max-width: 100% !important;
}
.shopify-policy__body .rte {
  max-width: 100% !important;
}/* ============================================
   POLICY PAGES — BRUTE FORCE
   ============================================ */
.shopify-policy__container,
main .shopify-policy__container,
body .shopify-policy__container {
  max-width: 1200px !important;
  width: 100% !important;
  padding: 80px 32px 80px !important;
  margin: 0 auto !important;
  display: block !important;
  box-sizing: border-box !important;
}

.shopify-policy__title,
.shopify-policy__container .shopify-policy__title {
  margin: 0 0 32px 0 !important;
  padding: 0 !important;
  text-align: left !important;
  width: 100% !important;
  max-width: 100% !important;
}

.shopify-policy__title h1,
.shopify-policy__container h1 {
  font-family: 'CanelaText', serif !important;
  font-weight: 100 !important;
  font-size: 34px !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--black) !important;
  text-align: left !important;
}

.shopify-policy__body,
.shopify-policy__container .shopify-policy__body,
.shopify-policy__body .rte {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'CanelaText', serif !important;
  font-weight: 100 !important;
  font-size: clamp(15px, 1.4vw, 18px) !important;
  line-height: 1.7 !important;
  color: var(--black) !important;
  text-align: left !important;
}