/** Shopify CDN: Minification failed

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

**/
/* ==========================================================================
   PERSONA 5 THEME — SunStitch
   Core design system: color, type, angular UI, motion.
   ========================================================================== */

:root {
  --p5-red: #ff0022;
  --p5-red-dark: #b3001b;
  --p5-black: #0a0a0a;
  --p5-black-soft: #161616;
  --p5-white: #f5f2e9;
  --p5-yellow: #ffe000;
  --p5-cut: 18px;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Archivo+Black&family=Rajdhani:wght@500;600;700&display=swap');

/* ---- global surface ---- */
body {
  background-color: var(--p5-black) !important;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 6px 6px;
}

body,
.color-scheme-1,
.color-scheme-2,
.color-scheme-3,
.color-scheme-4,
.color-scheme-5 {
  --color-background: 10, 10, 10;
  --color-foreground: 245, 242, 233;
  --color-button: 255, 0, 34;
  --color-button-text: 245, 242, 233;
  --color-secondary-button: 10, 10, 10;
  --color-secondary-button-text: 245, 242, 233;
  --color-link: 255, 0, 34;
  --gradient-background: #0a0a0a;
}

/* Dawn paints most section/card wrappers with this class directly from
   --gradient-background, which we don't otherwise control everywhere it's used. */
.gradient {
  background: var(--p5-black) !important;
}

::selection {
  background: var(--p5-red);
  color: var(--p5-white);
}

/* ---- typography ---- */
h1, h2, h3, h4, h5,
.h0, .h1, .h2, .h3, .h4, .h5,
.title,
.card__heading,
.product__title h1 {
  font-family: 'Bebas Neue', 'Archivo Black', var(--font-heading-family), sans-serif !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-style: italic;
}

.button,
button,
.header__icon,
.list-menu__item--link,
.card__badge .badge {
  font-family: 'Rajdhani', var(--font-body-family), sans-serif;
  letter-spacing: 0.08em;
}

/* ---- angular buttons ---- */
.button,
button.button,
.product-form__submit,
.quick-add__submit,
.cart__checkout-button {
  background: var(--p5-red) !important;
  color: var(--p5-white) !important;
  border: 2px solid var(--p5-white) !important;
  border-radius: 0 !important;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.09em;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.button:hover,
button.button:hover,
.product-form__submit:hover,
.quick-add__submit:hover,
.cart__checkout-button:hover {
  background: var(--p5-white) !important;
  color: var(--p5-black) !important;
  transform: skewX(-3deg) scale(1.02);
}

.button--secondary {
  background: transparent !important;
  color: var(--p5-white) !important;
}

.button--secondary:hover {
  background: var(--p5-red) !important;
  color: var(--p5-white) !important;
}

/* ---- header ---- */
.header-wrapper {
  background: var(--p5-black) !important;
  border-bottom: 3px solid var(--p5-red) !important;
}

.header__heading-link .h2,
.header__heading-link span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  color: var(--p5-white);
}

.list-menu__item--link {
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}

.list-menu__item--link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  background: var(--p5-red);
  transition: width 0.2s ease;
}

.list-menu__item--link:hover::after {
  width: 100%;
}

/* ---- product cards: angular cut + glitch hover ---- */
.card {
  border-radius: 0 !important;
  background: var(--p5-black-soft);
  position: relative;
}

.card__media {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  position: relative;
  overflow: hidden;
}

.card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 0, 34, 0) 60%, rgba(255, 0, 34, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 2;
}

.card-wrapper:hover .card__media::before {
  opacity: 1;
}

.card-wrapper:hover .card__media img {
  filter: contrast(1.1) saturate(1.15);
  transform: scale(1.06) skewX(-1deg);
}

.card__media img {
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.card__heading a {
  color: var(--p5-white) !important;
}

.card__badge .badge {
  border-radius: 0 !important;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: var(--p5-red) !important;
  color: var(--p5-white) !important;
  width: 4.4em;
  height: 4.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ---- section divider ---- */
.p5-divider {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--p5-red) 0 18px,
    var(--p5-black) 18px 36px
  );
}

/* ---- New Drops ---- */
.p5-new-drops {
  background: var(--p5-black);
  padding: 60px 0;
  border-top: 3px solid var(--p5-red);
  border-bottom: 3px solid var(--p5-red);
  position: relative;
}

.p5-new-drops__heading {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--p5-white);
  text-align: center;
  margin: 0 0 8px;
  text-shadow: 4px 4px 0 var(--p5-red);
}

.p5-new-drops__sub {
  text-align: center;
  color: var(--p5-red);
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 40px;
}

.p5-empty-note {
  text-align: center;
  color: rgba(245, 242, 233, 0.6);
  font-family: 'Rajdhani', sans-serif;
  padding: 20px;
}

/* ---- Category grid ---- */
.p5-categories {
  background: var(--p5-black);
  padding: 60px 0;
}

.p5-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

@media screen and (max-width: 989px) {
  .p5-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p5-category-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: block;
  background: var(--p5-black-soft);
  border: 1px solid rgba(255, 0, 34, 0.4);
}

.p5-category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(0.35) contrast(1.05);
}

.p5-category-tile:hover img {
  transform: scale(1.08) skewX(-2deg);
  filter: grayscale(0) contrast(1.15) saturate(1.2);
}

.p5-category-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.1) 55%, transparent 100%);
}

.p5-category-tile__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--p5-white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}

.p5-category-tile__label::before {
  content: '';
  display: block;
  width: 40px;
  height: 5px;
  background: var(--p5-red);
  margin-bottom: 8px;
}

/* ---- Marquee (top sellers) ---- */
.p5-marquee {
  background: var(--p5-red);
  overflow: hidden;
  padding: 18px 0;
  border-top: 3px solid var(--p5-black);
  border-bottom: 3px solid var(--p5-black);
  position: relative;
}

.p5-marquee__track {
  display: flex;
  width: max-content;
  animation: p5-marquee-scroll 70s linear infinite;
}

.p5-marquee:hover .p5-marquee__track {
  animation-play-state: paused;
}

@keyframes p5-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.p5-marquee__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 2px dashed var(--p5-black);
  white-space: nowrap;
  color: var(--p5-black);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.p5-marquee__item img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border: 3px solid var(--p5-black);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.p5-marquee__item {
  font-size: 1.15rem;
}

.p5-marquee {
  padding: 26px 0;
}

/* ---- product page enlarge ---- */
.product__media-wrapper {
  position: relative;
}

.product__media-wrapper .media {
  border: 1px solid rgba(255, 0, 34, 0.4);
}

@media screen and (min-width: 990px) {
  .product--large .product__media-wrapper {
    max-width: none;
  }
}

@media screen and (min-width: 990px) {
  .product.grid--2-col-tablet {
    grid-template-columns: 1.35fr 1fr;
  }
}

.product__media-item img,
.product__media-item model-viewer,
.product__media-item video {
  border: none;
}

.product__accordion,
.product__description {
  border-top: 1px solid rgba(255, 0, 34, 0.3);
}

.product__info-container .price--large {
  color: var(--p5-red);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.product__accordion summary {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- collection pages (e.g. Shirts) & the Everything section: guaranteed visible text ---- */
.collection-hero,
.collection-hero.gradient,
.collection,
.collection__title,
#collection-p5_marquee,
[id^="collection-"] {
  background-color: var(--p5-black) !important;
}

.collection-hero__title,
.collection-hero__description,
.collection-hero__description *,
.collection__title,
.collection__title *,
.collection__description,
.collection__description * {
  color: var(--p5-red) !important;
}

.collection-hero__title .visually-hidden {
  color: transparent !important;
}

/* ---- product page (where you add to cart) & cart/checkout page: guaranteed visible text ---- */
product-info,
product-info .product,
.product__info-wrapper,
#main-cart-items,
#main-cart-footer,
cart-items,
.cart {
  background-color: var(--p5-black) !important;
}

cart-items .title--primary,
cart-items .cart__empty-text,
cart-items .cart__login-title,
cart-items .cart__login-paragraph,
cart-items .cart__login-paragraph * {
  color: var(--p5-white) !important;
}

cart-items .underlined-link,
cart-items .cart__login-paragraph a {
  color: var(--p5-red) !important;
}

cart-items .cart__warnings .button {
  color: var(--p5-white) !important;
}

/* add-to-cart popup */
#cart-notification,
cart-notification .cart-notification {
  background-color: var(--p5-black) !important;
}

.cart-notification__heading,
.cart-notification__heading *,
.cart-notification-product__name,
.cart-notification dt,
.cart-notification dd,
.cart-notification p,
.cart-notification__close {
  color: var(--p5-white) !important;
}

.cart-notification .button-label,
.cart-notification .link {
  color: var(--p5-red) !important;
}

product-info .product__info-container,
product-info .product__info-container *,
.product__title,
.product__title *,
.product__inventory,
.product__sku,
.product__tax {
  color: var(--p5-white) !important;
}

#main-cart-items,
#main-cart-items *,
#main-cart-footer,
#main-cart-footer *,
.cart__footer,
.cart__footer *,
.totals__total,
.totals__total-value {
  color: var(--p5-white) !important;
}

#main-cart-items .button,
#main-cart-footer .button {
  color: var(--p5-white) !important;
}

/* description / accordion content (size charts etc.) — one flat background, white text, no inherited striping */
.product__description,
.product__description *,
.product__accordion,
.product__accordion *,
.rte table,
.rte table * {
  background-color: var(--p5-black) !important;
  color: var(--p5-white) !important;
  border-color: rgba(255, 0, 34, 0.35) !important;
}

.product__description a,
.product__accordion a {
  color: var(--p5-red) !important;
}

product-info .price--large,
product-info .price--large * {
  color: var(--p5-white) !important;
  -webkit-text-fill-color: var(--p5-white);
}

/* buttons keep their own red/white treatment even inside colored-text zones */
product-info .button,
#main-cart-footer .button,
#main-cart-items .button {
  color: var(--p5-white) !important;
}

/* ---- quick bar ---- */
.p5-quickbar {
  background: var(--p5-black);
  border-bottom: 2px solid var(--p5-red);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 6px 0;
}

.p5-quickbar__link {
  color: var(--p5-white);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 4px 18px;
  border-right: 1px dashed rgba(255, 0, 34, 0.5);
  transition: color 0.15s ease;
}

.p5-quickbar__link:last-child {
  border-right: none;
}

.p5-quickbar__link:hover {
  color: var(--p5-red);
}

/* ---- PowerPoint mode ---- */
.p5-ppt-section {
  background: var(--p5-black);
  border-top: 3px solid var(--p5-red);
  padding: 60px 0 80px;
  text-align: center;
}

.p5-ppt-section__heading {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  color: var(--p5-white);
  text-shadow: 4px 4px 0 var(--p5-red);
  margin-bottom: 12px;
}

.p5-ppt-section__sub {
  font-family: 'Rajdhani', sans-serif;
  color: rgba(245, 242, 233, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}

.p5-ppt-status {
  margin-top: 16px;
  font-family: 'Rajdhani', sans-serif;
  color: var(--p5-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-height: 1.4em;
}

/* ---- PowerPoint mode: full-screen fly-through animation loop ---- */
.p5-ppt-overlay {
  position: fixed;
  inset: 0;
  z-index: 999998;
  background: var(--p5-black);
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.p5-ppt-overlay--active {
  opacity: 1;
}

.p5-ppt-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.p5-ppt-marquee__track {
  display: flex;
  width: max-content;
  animation: p5-marquee-scroll 55s linear infinite;
}

.p5-ppt-marquee__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 5vw;
}

.p5-ppt-marquee__item img {
  width: 34vw;
  max-width: 460px;
  height: 34vw;
  max-height: 460px;
  object-fit: cover;
  border: 4px solid var(--p5-red);
}

.p5-ppt-marquee__item h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  color: var(--p5-red);
  margin: 0;
  text-shadow: 3px 3px 0 var(--p5-white);
  white-space: nowrap;
}

.p5-ppt-marquee__item p {
  font-family: 'Rajdhani', sans-serif;
  color: var(--p5-white);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
}

.p5-ppt-qr {
  position: absolute;
  right: 4vw;
  bottom: 4vh;
  z-index: 2;
  width: 110px;
  height: 110px;
  padding: 8px;
  background: var(--p5-white);
  border: 3px solid var(--p5-red);
}

.p5-ppt-qr img {
  width: 100%;
  height: 100%;
  display: block;
}

.p5-ppt-close {
  position: absolute;
  top: 4vh;
  right: 4vw;
  z-index: 2;
  background: transparent;
  color: var(--p5-white);
  border: 2px solid var(--p5-red);
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.p5-ppt-close:hover {
  background: var(--p5-red);
}

@media screen and (max-width: 749px) {
  .p5-ppt-frame__img {
    max-width: 78vw;
    max-height: 46vh;
  }

  .p5-ppt-qr {
    width: 76px;
    height: 76px;
  }
}

/* ---- transition overlay ---- */
#p5-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  display: flex;
}

#p5-transition-overlay .p5-slice {
  flex: 1;
  background: var(--p5-black);
  transform: translateY(-100%);
}

#p5-transition-overlay .p5-slice:nth-child(odd) {
  background: var(--p5-red);
}

#p5-transition-overlay.p5-active {
  opacity: 1;
  pointer-events: all;
}

#p5-transition-overlay.p5-active .p5-slice {
  animation: p5-slice-in 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

#p5-transition-overlay.p5-leave .p5-slice {
  animation: p5-slice-out 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes p5-slice-in {
  to { transform: translateY(0%); }
}

@keyframes p5-slice-out {
  to { transform: translateY(100%); }
}

#p5-transition-overlay .p5-slice:nth-child(1) { animation-delay: 0s; }
#p5-transition-overlay .p5-slice:nth-child(2) { animation-delay: 0.03s; }
#p5-transition-overlay .p5-slice:nth-child(3) { animation-delay: 0.06s; }
#p5-transition-overlay .p5-slice:nth-child(4) { animation-delay: 0.09s; }
#p5-transition-overlay .p5-slice:nth-child(5) { animation-delay: 0.12s; }
#p5-transition-overlay .p5-slice:nth-child(6) { animation-delay: 0.15s; }

.p5-page-reveal {
  animation: p5-page-reveal-anim 0.5s ease both;
}

@keyframes p5-page-reveal-anim {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- burst particles ---- */
.p5-particle {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  will-change: transform, opacity;
  top: 0;
  left: 0;
}

/* shapes drawn with clip-path, colored via inline style */
.p5-particle--star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.p5-particle--diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.p5-particle--triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.p5-particle--spark {
  clip-path: polygon(50% 0%, 65% 40%, 100% 50%, 65% 60%, 50% 100%, 35% 60%, 0% 50%, 35% 40%);
}
