/** Shopify CDN: Minification failed

Line 154:0 Unexpected "}"
Line 179:0 Unexpected "}"

**/
@charset 'UTF-8';
/* Slider */

/* Arrows */
.slider-arrow {
  outline: none;
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 50%;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.slider-arrow:hover {
  opacity: 1;
}

.slider-arrow svg {
  width: 55%;
  height: 55%;
}

.slider-arrow-prev {
  left: 1rem;
}

.slider-arrow-prev svg {
  transform: rotate(-90deg);
}

.slider-arrow-next {
  right: 1rem;
}

.slider-arrow-next svg {
  transform: rotate(90deg);
}
@media screen and (max-width: 750px) {
  .slider-arrow {
    width: 3rem;
    height: 3rem;
  }
  .slider-arrow-prev {
    left: 0.5rem;
  }
  .slider-arrow-next {
    right: 0.5rem;
  }
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 35px;
}

.slick-dots {
  position: absolute;
  bottom: -30px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}
.slick-dots li {
  position: relative;

  display: inline-block;

  width: 2rem;
  height: 2rem;
  padding: 0;

  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 2rem;
  height: 2rem;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 0.6rem;
  height: 0.6rem;
  display: block;
  border-radius: 50%;

  content: "";
  text-align: center;

  opacity: 0.25;
  background: rgb(var(--color-foreground));

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  width: 0.9rem;
  height: 0.9rem;
}
.holux-instagram-stories-container {
  display: flex;
  gap: 20px;
  padding: 0px 20px 0px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
}
}
}
}

.holux-instagram-stories-container::-webkit-scrollbar {
  display: none;
}

.holux-story-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.holux-story-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  transition: transform 0.2s ease;
}
}

.holux-story-item:hover .holux-story-circle {
  transform: scale(1.05);
}

.holux-story-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid white;
  overflow: hidden;
  background: #000;
  position: relative;
}

.holux-story-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.holux-story-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.holux-story-name {
  font-size: 15px;
  color: #262626;
  text-align: center;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.holux-story-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.holux-story-modal.active {
  display: flex !important;
}

.holux-story-modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 90vh;
  max-height: 900px;
}

.holux-story-modal video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.holux-story-progress-bar {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 4px;
  z-index: 10001;
}

.holux-story-progress-segment {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.holux-story-header {
  position: absolute;
  top: 40px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10001;
}

.holux-story-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid white;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.holux-story-header-name {
  color: white;
  font-weight: 600;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.holux-story-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 10002;
  font-weight: 300;
}

.holux-story-close:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .holux-instagram-stories-container {
    gap: 15px;
    padding: 0px 15px;
  }
  
  .holux-story-circle {
    width: 70px;
    height: 70px;
  }
  
  .holux-story-name {
    font-size: 15px;
    max-width: 70px;
  }
  
  .holux-story-modal-content {
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
  }
  
  .holux-story-modal video {
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .holux-story-circle {
    width: 75px;
    height: 75px;
  }
  
  .holux-story-name {
    max-width: 65px;
  }
}
/* SWIPE INSTRUCTIONS */
.holux-swipe-instructions {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
  animation: holuxFadeInOut 3s ease-in-out;
}

.holux-swipe-instruction {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes holuxFadeInOut {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

@media (max-width: 768px) {
  .holux-swipe-instructions {
    bottom: 60px;
  }
}
/* HOLUX INSTAGRAM STORIES - END */
/* Hide by option name */
[data-option-name="Style"],
[data-option-name="Size"] {
  display: none !important;
}
/* Hide Style and Size variant options - show only Color */
.product-form__input:nth-child(2),
.product-form__input:nth-child(3) {
  display: none !important;
}
/* ========== QUANTITY PICKER FONT ========== */
.quantity__input,
.quantity-selector input,
input[type="number"].quantity {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.quantity__button,
.quantity-selector button,
button.quantity__button {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

/* ========== ROUNDED COLOR SWATCHES ========== */
.color-swatches-container input[type="radio"] + label,
.product-form__input--swatches input + label,
.color-swatch,
.swatch {
  border-radius: 8px !important;
}

.color-swatches-container input[type="radio"]:checked + label,
.product-form__input--swatches input:checked + label {
  border-radius: 8px !important;
}
/* ========== ROUND VARIANT DROPDOWNS ========== */
.product-form__input--dropdown .select,
.select {
  border-radius: 12px !important;
  overflow: hidden !important; /* This fixes the white corners */
}

.product-form__input select,
.select__select,
select[name*="options"] {
  border-radius: 12px !important;
  background-color: transparent !important; /* Remove white background */
}

/* Fix the border to wrap properly */
.product-form__input--dropdown .select {
  border: 2px solid #cccccc !important; /* Adjust color if needed */
  border-radius: 12px !important;
}
/* Complete dropdown fix */
.select {
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 2px solid rgba(0,0,0,0.2) !important;
}

.select__select {
  border-radius: 12px !important;
  border: none !important;
  background: white !important;
}
/* Hide Style (HOT/COLD) and Size (ONE SIZE) in BOGO bundle */
.quantity-break__variant-select[name="options[style]"],
.quantity-break__variant-select[name="options[Size]"] {
  display: none !important;
}

/* Hide the entire select container for style and size */
.select:has(select[name="options[style]"]),
.select:has(select[name="options[Size]"]) {
  display: none !important;
}
/* Hide the default #1, #2 text */
.quantity-break__selector-item__number {
  font-size: 0 !important;
}

/* Replace #1 with "Color Mask 1" */
.quantity-break__selector-item:nth-child(1) .quantity-break__selector-item__number::before {
  content: "Color Mask 1:";
  font-size: 14px !important;
  font-weight: 600;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* Replace #2 with "Color Mask 2" */
.quantity-break__selector-item:nth-child(2) .quantity-break__selector-item__number::before {
  content: "Color Mask 2:";
  font-size: 14px !important;
  font-weight: 600;
  font-family: 'Bricolage Grotesque', sans-serif;
}