/** Shopify CDN: Minification failed

Line 960:0 Unexpected "{"
Line 960:1 Expected identifier but found "%"
Line 962:0 Unexpected "{"
Line 962:1 Expected identifier but found "%"
Line 963:0 Unexpected "<"
Line 968:5 Expected identifier but found "%"
Line 969:6 Unexpected "<"
Line 971:11 Expected identifier but found "%"
Line 972:12 Unexpected "<"
Line 977:11 Expected identifier but found "%"
... and 15 more hidden warnings

**/
/* Kaido Script font hookup
   ---------------------------------------------
   Drop your own old-style Japanese cursive font
   files into /assets named:
     - kaido-script.woff2
     - kaido-script.woff
   and this theme will use them automatically.
*/
@font-face {
  font-family: 'KaidoScript';
  src: url('{{ "kaido-script.woff2" | asset_url }}') format('woff2'),
       url('{{ "kaido-script.woff"  | asset_url }}') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --kaido-bg: #050505;
  --kaido-panel: #111111;
  --kaido-panel-alt: #191919;
  --kaido-yellow: #ffd800;
  --kaido-yellow-soft: #f5d34a;
  --kaido-border: #333333;
  --kaido-text: #f7f7f7;
  --kaido-muted: #a0a0a0;
}

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

body.kaido-body {
  margin: 0;
  font-family: 'KaidoScript', -apple-system, BlinkMacSystemFont,
    'Hiragino Kaku Gothic ProN', 'Meiryo', 'Yu Gothic', system-ui, cursive;
  background: radial-gradient(circle at top, #111111 0, #050505 55%, #000 100%);
  color: var(--kaido-text);
  -webkit-font-smoothing: antialiased;
}

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

.kaido-page-frame {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.kaido-main {
  flex: 1 0 auto;
  padding: 1.5rem clamp(1.5rem, 4vw, 3.5rem);
  max-width: 1200px;
  margin: 0 auto 3rem;
}

/* HEADER */
.kaido-header {
  border-bottom: 1px solid var(--kaido-border);
  padding: 1.25rem clamp(1.5rem, 4vw, 3.5rem) 2rem;
  background: linear-gradient(135deg, #000000 0, #111111 45%, #000000 100%);
  position: sticky;
  top: 0;
  z-index: 20;
}

.kaido-header__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.kaido-logo-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.kaido-logo-main {
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--kaido-yellow);
  border-radius: 999px;
  text-transform: none;
  background: #000;
}

.kaido-logo-sub {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--kaido-yellow-soft);
}

.kaido-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.kaido-pill {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: none;
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  border: 1px solid var(--kaido-yellow);
  background: #000000;
}

.kaido-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #252525;
  border-bottom: 1px solid #252525;
  margin-bottom: 1.5rem;
}

.kaido-nav__list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.kaido-nav__list a {
  position: relative;
  padding: 0.4rem 0 0.5rem;
}

.kaido-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #ffe069, #ffd800);
  transition: width 160ms ease-out;
}

.kaido-nav__list a:hover::after {
  width: 100%;
}

.kaido-nav__icons {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.kaido-icon-link {
  opacity: 0.8;
}

.kaido-icon-link:hover {
  opacity: 1;
}

/* HERO */
.kaido-header__hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.kaido-hero-copy {
  max-width: 32rem;
}

.kaido-hero-tag {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--kaido-yellow-soft);
  margin: 0 0 0.6rem;
}

.kaido-hero-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

.kaido-hero-sub {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: var(--kaido-muted);
}

.kaido-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.7rem;
  border-radius: 999px;
  border: 1px solid #000;
  background: linear-gradient(135deg, var(--kaido-yellow) 0, #fff39b 50%, var(--kaido-yellow) 100%);
  color: #000;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: none;
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out, filter 120ms ease-out;
}

.kaido-cta-button--small {
  padding: 0.45rem 1.2rem;
  font-size: 0.8rem;
}

.kaido-cta-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 0.9rem 1.5rem rgba(0, 0, 0, 0.45);
}

/* Stylized hero "car" card */
.kaido-hero-art {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.kaido-hero-car-card {
  position: relative;
  width: 260px;
  height: 140px;
}

.kaido-hero-car-body {
  position: absolute;
  inset: 0.8rem 0.3rem 0.5rem;
  background: radial-gradient(circle at 0 0, #fff39b 0, #ffd800 25%, #b38b00 85%);
  border-radius: 1.8rem;
  box-shadow:
    0 0.9rem 1.6rem rgba(0, 0, 0, 0.6),
    0 0 0 2px #000000;
  overflow: hidden;
}

.kaido-hero-car-stripe {
  position: absolute;
  left: -15%;
  width: 130%;
  height: 18%;
  background: repeating-linear-gradient(
    135deg,
    #000000,
    #000000 6px,
    transparent 6px,
    transparent 10px
  );
  opacity: 0.9;
}

.kaido-hero-car-stripe--top {
  top: 22%;
}

.kaido-hero-car-stripe--bottom {
  bottom: 10%;
}

.kaido-hero-car-tag {
  position: absolute;
  top: 10%;
  right: 8%;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #000000;
  color: var(--kaido-yellow);
}

.kaido-hero-car-exhaust {
  position: absolute;
  right: -0.6rem;
  bottom: 0.8rem;
  width: 1.2rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #cccccc;
  box-shadow:
    0 0 0 2px #000,
    inset 0 0 0.1rem rgba(0, 0, 0, 0.7);
}

.kaido-hero-car-cloud {
  position: absolute;
  bottom: 0.4rem;
  background: radial-gradient(circle at 30% 0, #ffffff 0, #f7f7f7 40%, #c2c2c2 100%);
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.5);
  border-radius: 999px;
}

.kaido-hero-car-cloud--front {
  left: -0.6rem;
  width: 4.8rem;
  height: 1.6rem;
}

.kaido-hero-car-cloud--rear {
  right: 0.4rem;
  width: 3.2rem;
  height: 1.2rem;
}

/* HOME SECTION */
.kaido-home {
  margin-top: 2.5rem;
}

.kaido-home__header {
  margin-bottom: 1.2rem;
}

.kaido-home__tagline {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--kaido-yellow-soft);
  margin: 0 0 0.4rem;
}

.kaido-home__title {
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}

.kaido-home__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--kaido-muted);
}

.kaido-home__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
  margin-top: 1.2rem;
}

.kaido-home-card {
  background: radial-gradient(circle at top left, #242424 0, #111111 50%, #050505 100%);
  border-radius: 0.9rem;
  border: 1px solid #262626;
  box-shadow: 0 0.45rem 1rem rgba(0, 0, 0, 0.55);
  overflow: hidden;
  position: relative;
}

.kaido-home-card__thumb {
  position: relative;
  height: 180px;
  background: #000000;
  overflow: hidden;
}

.kaido-home-card__thumb-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.1);
  transform: scale(1.02);
}

.kaido-home-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  color: var(--kaido-yellow);
}

.kaido-home-card__sticker {
  position: absolute;
  bottom: 0.5rem;
  left: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.3rem;
  background: var(--kaido-yellow);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
}

.kaido-home-card__meta {
  padding: 0.7rem 0.8rem 0.8rem;
}

.kaido-home-card__title {
  font-size: 0.98rem;
  margin: 0 0 0.1rem;
}

.kaido-home-card__count {
  font-size: 0.85rem;
  color: var(--kaido-muted);
  margin: 0;
}

/* PRODUCT */
.kaido-product {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
}

.kaido-product__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.kaido-product__image-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #000;
  border: 1px solid #262626;
}

.kaido-product__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.kaido-product__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  font-size: 1.5rem;
  letter-spacing: 0.32em;
  color: var(--kaido-yellow);
  border-radius: 0.75rem;
  border: 1px dashed #333;
}

.kaido-product__info {
  padding-top: 0.4rem;
}

.kaido-product__tag {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--kaido-yellow-soft);
  margin: 0 0 0.4rem;
}

.kaido-product__title {
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}

.kaido-product__price {
  font-size: 1.2rem;
  margin: 0 0 0.9rem;
}

.kaido-product__options {
  margin-bottom: 1rem;
}

.kaido-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.kaido-select,
.kaido-input {
  width: 100%;
  padding: 0.5rem 0.7rem;
  border-radius: 0.45rem;
  border: 1px solid #333333;
  background: #050505;
  color: var(--kaido-text);
  font-size: 0.9rem;
}

.kaido-product__desc {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--kaido-muted);
}

/* COLLECTION */
.kaido-collection__header {
  margin-bottom: 1.4rem;
}

.kaido-collection__tag {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--kaido-yellow-soft);
  margin: 0 0 0.4rem;
}

.kaido-collection__title {
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}

.kaido-collection__desc {
  color: var(--kaido-muted);
  font-size: 0.95rem;
}

.kaido-collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.1rem;
}

.kaido-collection-card {
  background: var(--kaido-panel);
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid #262626;
  position: relative;
}

.kaido-collection-card__thumb {
  background: #000000;
  height: 180px;
}

.kaido-collection-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kaido-collection-card__thumb-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--kaido-yellow);
}

.kaido-collection-card__meta {
  padding: 0.6rem 0.8rem 0.7rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: baseline;
}

.kaido-collection-card__title {
  font-size: 0.98rem;
  margin: 0;
}

.kaido-collection-card__price {
  font-size: 0.98rem;
}

/* FOOTER */
.kaido-footer {
  margin-top: auto;
  padding: 2rem clamp(1.5rem, 4vw, 3.5rem) 1.6rem;
  background: #020202;
  border-top: 1px solid #262626;
}

.kaido-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr) minmax(0, 2.2fr);
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.kaido-footer__heading {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.kaido-footer__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--kaido-muted);
}

.kaido-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.kaido-footer__list li + li {
  margin-top: 0.25rem;
}

.kaido-footer__newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.kaido-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--kaido-muted);
  border-top: 1px solid #1a1a1a;
  padding-top: 0.9rem;
}

.kaido-footer__madeby {
  letter-spacing: 0.18em;
}

/* UTILITIES */
.rte {
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .kaido-header__hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .kaido-hero-art {
    justify-content: flex-start;
  }

  .kaido-home__grid,
  .kaido-collection__grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .kaido-product {
    grid-template-columns: minmax(0, 1fr);
  }

  .kaido-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .kaido-header {
    position: static;
  }

  .kaido-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.4rem;
  }

  .kaido-nav__list {
    flex-wrap: wrap;
    row-gap: 0.2rem;
  }

  .kaido-main {
    padding-inline: 1.1rem;
  }
}


  /* CART */
  .kaido-cart__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .kaido-cart__table th,
  .kaido-cart__table td {
    padding: 0.6rem 0.4rem;
    border-bottom: 1px solid #262626;
    text-align: left;
  }
  .kaido-cart__product {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .kaido-cart__product img {
    border-radius: 0.4rem;
  }
  .kaido-cart__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .kaido-cart__total {
    font-size: 1rem;
  }
  .kaido-cart__actions {
    display: flex;
    gap: 0.6rem;
  }
/* === MAKE HEADER PURE TEXT - NO BUTTONS, NO PILLS === */

.header a,
.header button,
.header .button,
.header .badge,
.header .pill,
.header .kaido-button,
.header .kaido-pill {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Make navigation links look like clean text */
.header a {
  color: var(--kaido-text) !important;
  font-weight: 500 !important;
  text-transform: none !important;
}

/* Reduce header height for a more minimal look */
header.header,
.header-wrapper {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Make the SAS RACING logo text-only if it's still showing as a pill */
.header__heading a {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
header.header,
.header-wrapper {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
/* === KILL HEADER PILLS / BUTTON LOOK === */

/* Target the whole header section */
.shopify-section-header,
header,
.header-wrapper,
.kaido-header {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Make every link/button in the HEADER look like plain text */
.shopify-section-header a,
.shopify-section-header button {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Flatten SAS RACING logo pill to just text */
.shopify-section-header .header__heading,
.shopify-section-header .header__heading a {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Hide any special yellow badge on the right (夜走り専用 etc.) */
.shopify-section-header [class*="badge"],
.shopify-section-header [class*="pill"],
.shopify-section-header [class*="night"],
.shopify-section-header [class*="kaido-badge"] {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Ensure text is visible */
.shopify-section-header a,
.shopify-section-header button {
  color: var(--kaido-text) !important;
  font-weight: 500 !important;
  text-transform: none !important;
}
/* Center cart page content */
.template-cart .kaido-cart,
.template-cart .cart,
.template-cart main {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center the yellow cart button too */
.template-cart .kaido-button,
.template-cart a.kaido-button {
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Center everything inside the cart page */

.template-cart .kaido-cart,
.template-cart .kaido-cart__wrap,
.template-cart .kaido-cart__inner,
.template-cart .kaido-cart__details,
.template-cart main,
.template-cart .kaido-hero-simplified {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

/* Center the headings inside cart page hero */
.template-cart h1,
.template-cart h2,
.template-cart h3,
.template-cart p {
    text-align: center !important;
}

/* Center button (until you remove it) */
.template-cart .kaido-button {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Fix header alignment: logo left, nav center, cart right */
.kaido-header,
.kaido-header__topbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

/* Make sure icons align right */
.kaido-nav__icons {
    margin-left: auto !important;
    display: flex !important;
    gap: 20px !important;
}
/* Reduce huge space above products on homepage */
.kaido-collection {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.kaido-collection_header {
    margin-top: 0 !important;
    padding-top: 5px !important;
}

.kaido-collection_tag {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.kaido-collection_title {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.kaido-collection_grid {
    margin-top: 10px !important;
}
/* REMOVE BIG GAP ABOVE PRODUCT GRID */
.kaido-collection {
    padding-top: 0px !important;
    margin-top: 0px !important;
}

.kaido-collection_header {
    padding-top: 0px !important;
    margin-top: 0px !important;
}

.kaido-collection_tag,
.kaido-collection_title {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

/* Sometimes the theme uses generic section spacing */
section {
    padding-top: 0px !important;
    margin-top: 0px !important;
}
/* Hide the hero block above products on collection pages */
body.template-collection .shopify-section:first-of-type,
body.collection .shopify-section:first-of-type {
  display: none !important;
}

/* Optional: tiny padding under header so it's not glued */
body.template-collection main,
body.collection main {
  padding-top: 10px !important;
}
/* Pull the KAIDO LINEUP grid up closer to the hero on collection pages */
body.collection .kaido-collection,
body.template-collection .kaido-collection {
  margin-top: -160px !important;  /* adjust this number if needed */
  padding-top: 0 !important;
}
{% assign collection = collections['stickers'] %}

{% if collection %}
<section class="homepage-stickers" style="max-width: 1200px; margin: 40px auto 60px auto;">
  <h2 class="collection-subtitle">超極秘</h2>
  <p class="collection-title">特製ステッカー</p>

  <div style="display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;">
    {% for product in collection.products %}
      <div style="width: 200px; text-align: center;">
        <a href="{{ product.url }}" style="text-decoration: none; color: #ffffff;">
          {% if product.featured_image %}
            <img
              src="{{ product.featured_image | img_url: '400x400' }}"
              alt="{{ product.title }}"
              style="width: 100%; height: auto; display: block; margin-bottom: 8px;"
            >
          {% endif %}

          <div style="font-size: 14px; margin-bottom: 4px;">
            {{ product.title }}
          </div>

          <div class="nytimes-price">
    {{ product.price | money }}
</div>
        </a>
      </div>
    {% endfor %}
  </div>
</section>
{% endif %}
/* Override KAIDO LINEUP / stickers text on stickers section */
.collection-subtitle {
  position: relative;
  visibility: hidden;      /* hide original English text */
}

.collection-subtitle::after {
  content: "超極秘";        /* SUPER SECRET */
  position: absolute;
  left: 0;
  top: 0;
  visibility: visible;
}

/* bottom line */
.collection-title,
.collection-title,
.collection-title {
  position: relative;
  visibility: hidden;      /* hide original "stickers" */
}

.collection-title::after {
  content: "特製ステッカー";  /* SPECIAL STICKERS */
  position: absolute;
  left: 0;
  top: 0;
  visibility: visible;
}
/* REMOVE YELLOW KAIDO LINEUP LABEL */
.kaido-collection::before,
.kaido-collection::after,
.kaido-collection-title::before,
.kaido-collection-title::after,
.kaido-collection-subtitle::before,
.kaido-collection-subtitle::after {
    content: "" !important;
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* FINAL DELETE — Remove the yellow KAIDO LINEUP label everywhere */
.kaido-collection_title,
.kaido-home-subtitle,
.kaido-home_header .kaido-home_subtitle,
.kaido-collection_title::after,
.kaido-home-subtitle::after {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
}
.kaido-qty-input {
    background-color: #f7d642 !important;
    border-radius: 40px !important;
    width: 80px !important;
    height: 50px !important;
    text-align: center;
    font-size: 24px;
    border: none;
    outline: none;
    color: black;
}
  -webkit-appearance: none;
  margin: 0;
}
/* Make all English text cursive */
body {
  font-family: "YourCursiveFontName", cursive !important;
}
/* Force cursive on all buttons and inputs */
button,
input,
select,
.kaido-cta-button,
.kaido-product-button,
.kaido-qty-wrapper,
.kaido-qty-btn,
.kaido-qty-input {
  font-family: "YourCursiveFontName", cursive !important;
}
//* English text – edgy cursive marker */
body :not(:lang(ja)),
button:not(:lang(ja)),
input:not(:lang(ja)),
select:not(:lang(ja)),
.kaido-cta-button:not(:lang(ja)),
.kaido-product-button:not(:lang(ja)),
.kaido-qty-input:not(:lang(ja)),
.kaido-qty-btn:not(:lang(ja)),
.product-title:not(:lang(ja)),
footer :not(:lang(ja)) {
  font-family: "Permanent Marker", cursive !important;
  font-weight: 400 !important;
}

/* English (A-Z) = thick cursive */
body :not(:lang(ja)),
button:not(:lang(ja)),
input:not(:lang(ja)),
select:not(:lang(ja)),
a:not(:lang(ja)),
p:not(:lang(ja)),
span:not(:lang(ja)),
h1:not(:lang(ja)),
h2:not(:lang(ja)),
h3:not(:lang(ja)),
h4:not(:lang(ja)),
h5:not(:lang(ja)),
h6:not(:lang(ja)) {
  font-family: "Pacifico", cursive !important;
  font-weight: 400 !important;
}

/* Global expressive cursive */
body,
button,
input,
select,
a,
p,
span,
h1,h2,h3,h4,h5,h6 {
  font-family: "Dancing Script", cursive !important;
  font-weight: 700 !important;
}

body,
button,
input,
select,
.kaido-cta-button,
.kaido-product-button,
.kaido-qty-wrapper,
.kaido-qty-btn,
.kaido-qty-input {
  font-family: "Rock Salt", cursive !important;
  font-weight: 600 !important;
}
/* Global SAS Racing font */
:root {
  --sas-rocksalt: "Rock Salt", cursive;
}

body,
button,
input,
select,
textarea,
a,
p,
span,
li,
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sas-rocksalt) !important;
  font-weight: 600 !important;
}
/* Make price look like classic newspaper serif */
.product-price,
.kaido-product__price,
.collection-price,
.price-item,
.price {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}
.nytimes-price {
    font-family: "Times New Roman", Georgia, serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    color: #ffffff !important;
}
/* Times / newspaper style ONLY for prices */
.sas-price,
.sas-price * {
  font-family: "Times New Roman", Georgia, "Times", serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}
/* MOBILE FIX — make product cards wider + scale text */
@media (max-width: 600px) {

  /* Make each card take full width on phone */
  .homepage-stickers div[style*="width: 200px"],
  .kaido-collection-card {
    width: 90% !important;
    margin: 0 auto 24px auto !important;
  }

  /* Make the cursive text slightly smaller on mobile */
  .homepage-stickers p,
  .kaido-collection-card_meta,
  .kaido-collection-card_price,
  .kaido-collection-card_title {
    font-size: 14px !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
  }
}
/* ----- MOBILE FIX FOR CARD TEXT / PRICE ----- */
@media (max-width: 600px) {

  /* Make each card take almost full width on phone */
  .kaido-collection-card {
    width: 90% !important;
    margin: 0 auto 24px auto !important;
  }

  /* Put title and price on their own lines so nothing gets cut */
  .kaido-collection-card__meta {
    display: block !important;
    padding: 8px 10px !important;
    text-align: left !important;
  }

  .kaido-collection-card__title {
    display: block !important;
    margin-bottom: 4px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
  }

  .kaido-collection-card__price {
    display: block !important;
    font-size: 14px !important;  /* smaller so it fits */
    line-height: 1.2 !important;
  }
}
/* Improve spacing + alignment for product page buttons */
.kaido-product-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;           /* space between each button */
  margin-top: 20px;    /* space above the whole group */
}

/* For the big Continue Shopping button */
.kaido-cta-button {
  width: 100%;
  margin: 0 auto;
}

/* For the ADD TO CART button */
.kaido-product-button {
  margin: 0 auto;
}
/* --- PRODUCT PAGE LAYOUT: KAIDO STYLE --- */

/* Price sits a little above the controls */
.kaido-product__price {
  display: block;
  margin-top: 8px;
  margin-bottom: 18px;
}

/* Vertical stack: qty, big button, small button */
.kaido-product-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;        /* left-aligned, Kaido/flyer vibe */
  gap: 14px;                      /* even spacing between rows */
  max-width: 360px;
}

/* Quantity row */

/* Make both yellow buttons same width & pill-y */
.kaido-cta-button,
.kaido-product-button {
  display: block;
  width: 100%;
  max-width: 360px;
  text-align: center;
  padding: 10px 20px;
}

/* Slightly smaller “Add To Cart” so hierarchy feels right */
.kaido-product-button {
  max-width: 220px;
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 700px) {
  .kaido-product-buttons {
    align-items: center;
    max-width: 100%;
  }

  .kaido-cta-button,
  .kaido-product-button {
    max-width: 90%;
  }
}
/* PRODUCT PAGE BUTTON GROUP */
/* Make Add To Cart match the yellow Kaido buttons */
.kaido-product-button {
    background-color: #ffd800;
    color: #000000;
    border: none;
    border-radius: 999px;
    padding: 10px 30px;
    display: inline-flex;          /* was inline-block */
    align-items: center;
    justify-content: center;
    font: inherit;
    cursor: pointer;
}
}

.kaido-product-button:hover {
  opacity: 0.9;
}
/* Make all Kaido yellow buttons match the same gradient */
.kaido-qty-btn,
.kaido-qty-wrapper,
.kaido-cta-button,
.kaido-product-button {
    background: linear-gradient(90deg, #f7e033, #f2c700);
    border-radius: 40px;
    border: none !important;
    color: black !important;
    font-weight: 600;
}

/* Put the number back inside the quantity box */
.kaido-qty-input {
    background: transparent;
    border: none !important;
    color: black !important;
    font-size: 20px;
    width: 40px;
    text-align: center;
}

/* Ensure - and + look consistent */
.kaido-qty-btn-minus,
.kaido-qty-btn-plus {
    padding: 12px 20px;
    font-size: 22px;
}
/* Fix quantity number visibility */
.kaido-qty-input {
  color: #000 !important;       /* Make the number black */
  font-size: 22px !important;   /* Adjust size so it’s readable */
  font-weight: 600 !important;  /* Slightly bold */
  text-align: center !important;
}
/* Make qty buttons match yellow gradient */
.kaido-qty-btn,
.kaido-qty-input,
/* Yellow quantity pill wrapper */
.kaido-qty-wrapper {
    display: inline-flex;                /* shrink to content */
    align-items: center;
    justify-content: center;             /* keep - 1 + centered */
    gap: 20px;
    background: linear-gradient(180deg, #ffe84a, #e6c300) !important;
    padding: 10px 25px;
    border-radius: 40px !important;
}
/* Remove default number input arrows (Chrome, Safari, Edge) */
.kaido-qty-input::-webkit-inner-spin-button,
.kaido-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows for Firefox */
.kaido-qty-input {
  -moz-appearance: textfield;
}

/* Hide the ugly white input box */
.kaido-qty-input {
  width: 40px;
  background: transparent !important;
  border: none !important;
  color: white;
  font-size: 22px;
  font-family: "Rock Salt", cursive;
  text-align: center;
}
/* Minus / Plus buttons matching your yellow gradient */
.kaido-qty-btn {
  background: transparent;
  border: none;
  color: black;
  font-size: 24px;
  font-family: "Rock Salt", cursive;
  cursor: pointer;
}

.kaido-qty-btn:active {
  transform: scale(0.9);
}
/* Make quantity input match Kaido yellow pill buttons */
.kaido-qty-input {
  background-color: #f7d642;          /* SAME yellow */
  border: none;
  border-radius: 40px;                /* Round pill shape */
  width: 80px;                        /* Adjust to match your buttons */
  height: 50px;
  text-align: center;
  font-size: 24px;
  font-family: 'Times New Roman', Georgia, serif;
  color: black;
  outline: none;
  -moz-appearance: textfield;
}

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

/* Match button height + center contents */
.kaido-qty-btn {
  background-color: #f7d642 !important;
  border-radius: 40px !important;
  height: 50px !important;
  width: 80px !important;
  font-size: 32px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kaido-qty-wrapper {
    display: inline-flex;      /* <— SHRINK TO FIT CONTENT */
    align-items: center;
    justify-content: center;   /* <— CENTER MINUS / NUMBER / PLUS */
    background: #f6d436;
    border-radius: 40px;
    padding: 10px 20px;
}
.kaido-qty-input {
    width: 40px;
    text-align: center;
    font-size: 24px;
    background: transparent;
    border: none;
}
/* Make ALL quantity elements the same yellow as your Add to Cart button */
.kaido-qty-wrapper,
.kaido-qty-btn {
    background: linear-gradient(180deg, #FFD83B, #F7C319) !important;
    border-radius: 40px !important;
}

/* Remove transparency from the - and + buttons */
.kaido-qty-btn {
    border: none !important;
    color: black !important;
}

/* Make the input match the inside */
.kaido-qty-input {
    background: transparent !important;
    border: none !important;
    color: black !important;
    font-size: 24px !important;
    text-align: center !important;
}
/* Quantity wrapper: shrink to content, center inner items */
.kaido-qty-wrapper {
    display: inline-flex;          /* was: flex */
    align-items: center;
    justify-content: center;       /* was: space-between */
    padding: 0 24px;
}

/* - and + buttons: no background, just text, same font size */
.kaido-qty-btn {
  background: transparent !important;
  border: none !important;
  font-size: 32px !important;
  cursor: pointer;
  color: black !important;
}

/* Number in the middle */
.kaido-qty-input {
  width: 40px;
  text-align: center;
  font-size: 24px;
  background: transparent !important;
  border: none !important;
  color: black !important;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
/* Keep the yellow pill look for the quantity wrapper if needed */
/* ==== FORCE QTY + ADD TO CART ON ONE LINE ==== */
form[action="/cart/add"] {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 24px !important;        /* space between qty and button */
}

/* Make sure each piece behaves nicely as a flex item */
form[action="/cart/add"] .kaido-qty-wrapper,
form[action="/cart/add"] button[type="submit"] {
  display: inline-flex !important;
  width: auto !important;
  margin: 0 !important;
  white-space: nowrap !important;
}
/* === SAS: product controls row === */
.sas-controls-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;              /* space between qty pill and Add to Cart */
}

/* Yellow quantity pill layout (uses your existing colors via kaido classes) */
.sas-qty-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Make sure Add To Cart behaves as a compact pill */
.sas-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
/* === SAS: product controls row (qty + add to cart) === */
.sas-controls-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 24px !important;        /* space between qty pill and button */
  margin-top: 20px;
}

/* Yellow quantity pill */
.sas-qty-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  padding: 10px 24px;
  border-radius: 40px;
  background: linear-gradient(90deg, #f7e64c 0%, #ebbf1a 100%);
}

/* Minus / plus buttons inside pill */
.sas-qty-pill .kaido-qty-btn {
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: black;
}

/* Number in the middle */
.sas-qty-pill .kaido-qty-input {
  width: 40px;
  text-align: center;
  font-size: 22px;
  border: none;
  background: transparent;
  color: black;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
/* Force the quantity number to be visible in the pill */
.sas-qty-pill input.kaido-qty-input {
  color: black !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  text-align: center !important;
  min-width: 32px;
  opacity: 1 !important;
}
/* SAS: completely reset and restyle the quantity number */
.sas-qty-pill input.kaido-qty-input[type="number"] {
  all: unset;                           /* wipe every previous style */
  display: inline-block;
  box-sizing: border-box;

  width: 40px;
  min-width: 40px;
  height: 24px;

  text-align: center;
  font-size: 22px;
  font-weight: 600;
  font-family: "Rock Salt", cursive;

  color: black;
  background: transparent;
  cursor: text;

  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

/* make sure there are no hidden spin buttons */
.sas-qty-pill input.kaido-qty-input[type="number"]::-webkit-inner-spin-button,
.sas-qty-pill input.kaido-qty-input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Fix quantity number getting cut off */
.sas-qty-pill input.kaido-qty-input {
  height: 50px !important;        /* same as the yellow pill */
  line-height: 50px !important;   /* centers the number vertically */
  padding: 0 !important;          /* no weird spacing */
  margin: 0 !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  color: black !important;
  text-align: center !important;
  box-sizing: border-box !important;
}
/* Make quantity input NOT shrink */
.sas-qty-pill input.kaido-qty-input {
  min-width: 40px !important;
  width: 40px !important;
}
/* Size text positioning and style */
.sas-size-text {
  font-family: "Rock Salt", cursive !important;
  font-size: 18px !important;
  color: white !important;
  margin-top: 12px !important;
  margin-bottom: 18px !important;
  text-align: left !important;
}
