/* ai-variant-selector-generated.css */
/* Fashion / Streetwear — Dark editorial, raw urban minimalism */

/* ============================================================
   PRICE
   ============================================================ */
.vs-product-price {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--foreground);
}

/* ============================================================
   OPTION LABEL
   ============================================================ */
.vs-option-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--foreground);
  opacity: 0.65;
}

/* ============================================================
   OPTION BUTTON — BASE
   ============================================================ */
.vs-option-btn {
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--foreground);
  transition: border-color 0.15s ease, opacity 0.15s ease, background 0.15s ease;
  position: relative;
  outline: none;
  border-radius: 0;
}

.vs-option-btn:focus-visible {
  outline: 1px solid var(--foreground);
  outline-offset: 2px;
}

/* ============================================================
   IMAGE SWATCH
   ============================================================ */
.vs-option-btn[data-swatch-type="image"] {
  padding: 2px;
  width: 44px;
  height: 44px;
  border-color: transparent;
}

.vs-option-btn[data-swatch-type="image"]:hover:not(:disabled) {
  border-color: var(--foreground);
  opacity: 0.85;
}

.vs-swatch-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ============================================================
   COLOR SWATCH
   ============================================================ */
.vs-option-btn[data-swatch-type="color"] {
  padding: 3px;
  width: 32px;
  height: 32px;
  border-color: transparent;
}

.vs-option-btn[data-swatch-type="color"]:hover:not(:disabled) {
  border-color: var(--foreground);
}

.vs-swatch-color {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* ============================================================
   TEXT BUTTON
   ============================================================ */
.vs-option-btn[data-swatch-type="text"] {
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid currentColor;
  color: var(--foreground);
  opacity: 0.55;
}

.vs-option-btn[data-swatch-type="text"]:hover:not(:disabled) {
  opacity: 1;
  background: transparent;
  border-color: var(--foreground);
  color: var(--foreground);
}

/* ============================================================
   ACTIVE / SELECTED STATE
   ============================================================ */
.vs-option-btn--active {
  border-color: var(--foreground) !important;
  opacity: 1 !important;
}

.vs-option-btn--active[data-swatch-type="text"] {
  background: var(--foreground);
  color: inherit;
  opacity: 1 !important;
}

.vs-option-btn--active[data-swatch-type="image"],
.vs-option-btn--active[data-swatch-type="color"] {
  border-color: var(--foreground) !important;
  opacity: 1 !important;
}

/* ============================================================
   DISABLED / UNAVAILABLE STATE
   ============================================================ */
.vs-option-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.vs-option-btn[data-swatch-type="text"]:disabled {
  opacity: 0.2;
  text-decoration: line-through;
  text-decoration-color: currentColor;
  cursor: not-allowed;
}

/* ============================================================
   PDP CONTEXT — more spacious
   ============================================================ */
ai-product-detail .vs-option-btn[data-swatch-type="image"] {
  width: 52px;
  height: 52px;
}

ai-product-detail .vs-option-btn[data-swatch-type="color"] {
  width: 36px;
  height: 36px;
}

ai-product-detail .vs-option-btn[data-swatch-type="text"] {
  padding: 7px 18px;
  font-size: 12px;
}

ai-product-detail .vs-product-price {
  font-size: 16px;
}

/* ============================================================
   QAC MODAL CONTEXT — more compact
   ============================================================ */
.qac-product-info .vs-option-btn[data-swatch-type="image"] {
  width: 36px;
  height: 36px;
}

.qac-product-info .vs-option-btn[data-swatch-type="color"] {
  width: 28px;
  height: 28px;
}

.qac-product-info .vs-option-btn[data-swatch-type="text"] {
  padding: 4px 10px;
  font-size: 10px;
}

.qac-product-info .vs-product-price {
  font-size: 13px;
  margin-bottom: 12px;
}

.qac-product-info .vs-option-label {
  font-size: 10px;
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .vs-product-price {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .vs-option-label {
    font-size: 10px;
  }

  .vs-option-btn[data-swatch-type="image"] {
    width: 40px;
    height: 40px;
  }

  .vs-option-btn[data-swatch-type="color"] {
    width: 28px;
    height: 28px;
  }

  .vs-option-btn[data-swatch-type="text"] {
    padding: 5px 12px;
    font-size: 10px;
  }

  ai-product-detail .vs-option-btn[data-swatch-type="image"] {
    width: 44px;
    height: 44px;
  }

  ai-product-detail .vs-option-btn[data-swatch-type="color"] {
    width: 32px;
    height: 32px;
  }

  ai-product-detail .vs-option-btn[data-swatch-type="text"] {
    padding: 6px 14px;
    font-size: 11px;
  }
}