/** Shopify CDN: Minification failed

Line 1024:18 Expected identifier but found whitespace
Line 1024:19 Unexpected "#00BFFF"

**/
/* ==============================================
   FEATURED PRODUCTS SECTION - Streetwear Style
   ============================================== */

.featured-products {
  background-color: var(--featured-bg, #0a0a0a);
  color: var(--featured-text, #ffffff);
  position: relative;
  overflow: hidden;
}

/* Subtle texture */
.featured-products::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.featured-products__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .featured-products__container {
    padding: 0 40px;
  }
}

/* ==============================================
   HEADER
   ============================================== */

.featured-products__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .featured-products__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 40px;
  }
}

/* Header Badge - Red bg, white text - CHANGED FONT WEIGHT TO 300 */
.featured-products__badge {
  display: inline-block;
  background: var(--featured-badge-bg, #ff3b3b);
  color: var(--featured-badge-text, #ffffff);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  border-radius: 2px;
  /* Added text shadow for better readability */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.featured-products__heading {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .featured-products__heading {
    justify-content: flex-start;
  }
}

.featured-products__heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-products__heading-icon svg {
  width: clamp(28px, 5vw, 40px);
  height: clamp(28px, 5vw, 40px);
  color: var(--featured-accent);
}

.featured-products__subheading {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 8px 0 0;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .featured-products__subheading {
    font-size: 16px;
  }
}

/* ==============================================
   VIEW ALL BUTTON - FIXED SUBTLE HOVER
   ============================================== */

.featured-products__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: transparent;
}

.featured-products__view-all:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.featured-products__view-all svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.featured-products__view-all:hover svg {
  transform: translateX(4px);
}

/* ==============================================
   PRODUCTS WRAPPER & NAVIGATION
   ============================================== */

.featured-products__wrapper {
  position: relative;
}

.featured-products__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: var(--featured-bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--featured-text);
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .featured-products__nav {
    display: flex;
  }
}

.featured-products__nav:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.featured-products__nav svg {
  width: 20px;
  height: 20px;
}

.featured-products__nav--prev {
  left: -24px;
}

.featured-products__nav--next {
  right: -24px;
}

@media (min-width: 1200px) {
  .featured-products__nav--prev {
    left: -60px;
  }
  
  .featured-products__nav--next {
    right: -60px;
  }
}

/* ==============================================
   PRODUCTS TRACK - CAROUSEL
   ============================================== */

.featured-products__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-bottom: 8px;
}

.featured-products__track::-webkit-scrollbar {
  display: none;
}

.featured-products__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.featured-products__track.is-dragging * {
  pointer-events: none;
}

/* ==============================================
   PRODUCTS TRACK - GRID
   ============================================== */

.featured-products__track--grid {
  display: grid;
  overflow: visible;
  cursor: default;
  scroll-snap-type: none;
}

.featured-products__track--grid.featured-products__track--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.featured-products__track--grid.featured-products__track--cols-3 {
  grid-template-columns: repeat(2, 1fr);
}

.featured-products__track--grid.featured-products__track--cols-4 {
  grid-template-columns: repeat(2, 1fr);
}

.featured-products__track--grid.featured-products__track--cols-5 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .featured-products__track--grid.featured-products__track--cols-3,
  .featured-products__track--grid.featured-products__track--cols-4,
  .featured-products__track--grid.featured-products__track--cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .featured-products__track--grid.featured-products__track--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .featured-products__track--grid.featured-products__track--cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==============================================
   PROGRESS BAR
   ============================================== */

.featured-products__progress {
  margin-top: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured-products__progress {
    display: none;
  }
}

.featured-products__progress-bar {
  height: 100%;
  background: var(--featured-accent);
  width: 0%;
  transition: width 0.1s ease-out;
}

/* ==============================================
   PRODUCT CARD
   ============================================== */

.featured-product-card {
  flex: 0 0 calc(50% - 8px);
  min-width: calc(50% - 8px);
  scroll-snap-align: start;
  position: relative;
  background: var(--featured-card-bg);
  border: 1px solid var(--featured-card-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

@media (min-width: 640px) {
  .featured-product-card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: calc(33.333% - 11px);
  }
}

@media (min-width: 1024px) {
  .featured-product-card {
    flex: 0 0 calc(25% - 12px);
    min-width: calc(25% - 12px);
  }
}

@media (min-width: 1280px) {
  .featured-product-card {
    flex: 0 0 calc(20% - 13px);
    min-width: calc(20% - 13px);
  }
}

/* Grid layout cards don't need fixed width */
.featured-products__track--grid .featured-product-card {
  flex: none;
  min-width: 0;
}

/* Desktop hover effect */
@media (min-width: 1024px) {
  .featured-product-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
}

/* ==============================================
   PRODUCT MEDIA
   ============================================== */

.featured-product-card__media {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.featured-product-card__media--square {
  aspect-ratio: 1 / 1;
}

.featured-product-card__media--portrait {
  aspect-ratio: 3 / 4;
}

.featured-product-card__media--landscape {
  aspect-ratio: 4 / 3;
}

.featured-product-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.featured-product-card__image--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

/* Desktop only hover effects */
@media (min-width: 1024px) {
  /* Only hide primary image if secondary exists */
  .featured-product-card:hover .featured-product-card__image--primary:not(:only-child) {
    opacity: 0;
  }

  .featured-product-card:hover .featured-product-card__image--secondary {
    opacity: 1;
  }

  /* If no secondary image, just scale the primary */
  .featured-product-card:hover .featured-product-card__image {
    transform: scale(1.05);
  }
}

/* Placeholder */
.featured-product-card__placeholder-svg {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}

/* ==============================================
   LAST SIZES BADGE - SMALLER & OPTIMIZED
   ============================================== */

.featured-product-card__badges {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 768px) {
  .featured-product-card__badges {
    top: 8px;
    left: 8px;
  }
}

.featured-product-card__badge {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 9px;
  line-height: 1;
  border-radius: 3px;
  font-family: var(--font-body-family, 'Helvetica Neue', Arial, sans-serif);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  /* Added text shadow for better readability */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.84);
}

@media (min-width: 750px) {
  .featured-product-card__badge {
    font-size: 9px;
    padding: 5px 10px;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 990px) {
  .featured-product-card__badge {
    font-size: 10px;
    padding: 6px 12px;
  }
}

/* Last Sizes Badge - WITH CLOCK ICON & PULSE */
.featured-product-card__badge--last-sizes {
  background: var(--featured-last-sizes, #FF4757);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.45);
  animation: lastSizesPulse-featured 2.5s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Clock icon SVG (add to badge in liquid) */
.featured-product-card__badge--last-sizes svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

@keyframes lastSizesPulse-featured {
  0%, 100% { box-shadow: 0 2px 8px rgba(255, 71, 87, 0.45); }
  50% { box-shadow: 0 2px 14px rgba(255, 71, 87, 0.7); }
}

/* ==============================================
   QUICK ADD - DESKTOP ONLY - INSIDE MEDIA
   ============================================== */

.featured-product-card__quick-add {
  display: none;
}

@media (min-width: 1024px) {
  .featured-product-card__quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
  }

  .featured-product-card:hover .featured-product-card__quick-add {
    transform: translateY(0);
  }
}

/* Size Buttons */
.featured-product-card__quick-sizes {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.featured-product-card__size-btn {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  min-width: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #bbb;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  font-family: inherit;
  line-height: 1;
  flex: 0 0 auto;
}

.featured-product-card__size-btn:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.featured-product-card__size-btn.selected {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.featured-product-card__size-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ==============================================
   PREORDER SIZE BUTTONS - GREEN STYLING
   ============================================== */

.featured-product-card__size-btn.preorder {
  position: relative;
  border-color: var(--featured-preorder, #7BF50B);
  color: var(--featured-preorder, #7BF50B);
  background: rgba(123, 245, 11, 0.1);
  animation: preorderPulse 2s infinite;
}

.featured-product-card__size-btn.preorder::after {
  content: 'PRE';
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--featured-preorder, #7BF50B);
  color: #000;
  font-size: 7px;
  font-weight: 900;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  padding: 2px 4px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(123, 245, 11, 0.4);
}

.featured-product-card__size-btn.preorder:hover {
  background: var(--featured-preorder, #7BF50B);
  color: #000;
  border-color: var(--featured-preorder, #7BF50B);
}

.featured-product-card__size-btn.preorder.selected {
  background: var(--featured-preorder, #7BF50B);
  color: #000;
  border-color: var(--featured-preorder, #7BF50B);
}

@keyframes preorderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123, 245, 11, 0.4); }
  50% { box-shadow: 0 0 0 4px rgba(123, 245, 11, 0); }
}

/* ==============================================
   ADD TO CART BUTTON
   ============================================== */

.featured-product-card__atc-btn {
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.featured-product-card__atc-btn:hover {
  background: #e0e0e0;
}

.featured-product-card__atc-btn svg {
  width: 14px;
  height: 14px;
}

/* Preorder Add to Cart Button */
.featured-product-card__atc-btn.preorder {
  background: var(--featured-preorder, #7BF50B);
  color: #000;
}

.featured-product-card__atc-btn.preorder:hover {
  background: #8fff20;
}

/* ==============================================
   PRODUCT INFO
   ============================================== */

.featured-product-card__info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

@media (min-width: 768px) {
  .featured-product-card__info {
    padding: 14px;
  }
}

/* Reset link styles */
.featured-product-card__info a,
.featured-product-card__info a:link,
.featured-product-card__info a:visited {
  text-decoration: none;
  color: inherit;
}

.featured-product-card__title-link {
  display: block;
}

/* ==============================================
   PRODUCT LABELS - Limited, Sports, Music
   ============================================== */

.featured-product-card__label {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
  align-self: flex-start;
  text-decoration: none;
  border-radius: 2px;
  margin-bottom: 6px;
  cursor: default;
}

/* Labels that are links get pointer cursor */
a.featured-product-card__label {
  cursor: pointer;
}

/* Default hover - dark background with light text (readable) */
.featured-product-card__label:hover {
  background: #222;
  color: #fff;
  border-color: #444;
}

/* Limited Label (not a link) */
.featured-product-card__label--limited {
  background: rgba(246, 173, 85, 0.12);
  border-color: rgba(246, 173, 85, 0.4);
  color: var(--featured-limited, #F6AD55);
}

.featured-product-card__label--limited:hover {
  background: rgba(246, 173, 85, 0.2);
  color: var(--featured-limited, #F6AD55);
  border-color: rgba(246, 173, 85, 0.6);
}

/* Sports Label (link to /collections/sports) */
.featured-product-card__label--sports {
  background: rgba(77, 150, 255, 0.12);
  border-color: rgba(77, 150, 255, 0.4);
  color: var(--featured-sports, #4d96ff);
}

.featured-product-card__label--sports:hover {
  background: var(--featured-sports, #4d96ff);
  color: #fff;
  border-color: var(--featured-sports, #4d96ff);
}

/* Music Label (link to /collections/music) */
.featured-product-card__label--music {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.4);
  color: var(--featured-music, #a855f7);
}

.featured-product-card__label--music:hover {
  background: var(--featured-music, #a855f7);
  color: #fff;
  border-color: var(--featured-music, #a855f7);
}

/* ==============================================
   PRODUCT TITLE & PRICE
   ============================================== */

.featured-product-card__title {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
  color: #ddd;
}

@media (min-width: 768px) {
  .featured-product-card__title {
    font-size: 13px;
  }
}

@media (min-width: 1024px) {
  .featured-product-card:hover .featured-product-card__title {
    color: #fff;
  }
}

.featured-product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.featured-product-card__price--regular {
  font-size: 13px;
  font-weight: 700;
  color: var(--featured-price);
}

.featured-product-card__price--sale {
  font-size: 13px;
  font-weight: 700;
  color: var(--featured-sale);
}

.featured-product-card__price--compare {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

@media (min-width: 768px) {
  .featured-product-card__price--regular,
  .featured-product-card__price--sale {
    font-size: 14px;
  }
}

/* ==============================================
   CUSTOM CARD
   ============================================== */

.featured-product-card--custom {
  cursor: pointer;
}

.featured-product-card--custom .featured-product-card__media {
  height: 100%;
}

.featured-product-card__custom-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.featured-product-card__custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-product-card--custom:hover .featured-product-card__custom-image {
  transform: scale(1.05);
}

.featured-product-card__custom-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-product-card__custom-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.featured-product-card__custom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.featured-product-card__custom-text {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-product-card__custom-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.featured-product-card--custom:hover .featured-product-card__custom-cta {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.featured-product-card__custom-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.featured-product-card--custom:hover .featured-product-card__custom-cta svg {
  transform: translateX(4px);
}

/* ==============================================
   BOTTOM CTA
   ============================================== */

.featured-products__bottom-cta {
  text-align: center;
  margin-top: 40px;
}

.featured-products__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--featured-text);
  border: 2px solid var(--featured-text);
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-products__cta-button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.featured-products__cta-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.featured-products__cta-button:hover svg {
  transform: translateX(4px);
}

/* ==============================================
   ANIMATIONS
   ============================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-product-card {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.featured-product-card:nth-child(1) { animation-delay: 0.05s; }
.featured-product-card:nth-child(2) { animation-delay: 0.1s; }
.featured-product-card:nth-child(3) { animation-delay: 0.15s; }
.featured-product-card:nth-child(4) { animation-delay: 0.2s; }
.featured-product-card:nth-child(5) { animation-delay: 0.25s; }
.featured-product-card:nth-child(6) { animation-delay: 0.3s; }
.featured-product-card:nth-child(7) { animation-delay: 0.35s; }
.featured-product-card:nth-child(8) { animation-delay: 0.4s; }
.featured-product-card:nth-child(9) { animation-delay: 0.45s; }
.featured-product-card:nth-child(10) { animation-delay: 0.5s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .featured-product-card {
    animation: none;
    opacity: 1;
  }
  
  .featured-product-card__image,
  .featured-product-card__custom-image {
    transition: none;
  }
  
  .featured-product-card__size-btn.preorder {
    animation: none;
  }
}

/* ============================================
   LABEL COLORS (matching collection page)
   ============================================ */

/* Sports - Neon Blue */
--featured-sports: #00BFFF;

/* Music - Neon Purple */  
--featured-music: #BF00FF;

/* Limited - Orange */
--featured-limited: #F6AD55;

/* Preorder - Green */
--featured-preorder: #7BF50B;

/* Last Sizes - Red */
--featured-last-sizes: #FF4757;

/* Coming Soon - Silver */
--featured-coming-soon: #C0C0C0;
