.arsenal-bundle-offers {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.25rem 0;
}

.arsenal-bundle-offer {
  position: relative;
  border: 1px solid #e1e1e1;
  border-radius: 0.5rem;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.arsenal-bundle-offer:has(input[type="radio"]:checked) {
  border-color: #1d1a1a;
  background: #fafafa;
  box-shadow: 0 0 0 1px #1d1a1a;
}

.arsenal-bundle-offer > input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.arsenal-bundle-offer__head {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1rem 1rem 1.125rem;
  margin: 0;
  cursor: pointer;
}

.arsenal-bundle-offer__radio {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.125rem;
  border: 2px solid #b8b8b8;
  border-radius: 50%;
  background: #fff;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.arsenal-bundle-offer:has(input[type="radio"]:checked) .arsenal-bundle-offer__radio {
  border-color: #1d1a1a;
  border-width: 2px;
  background: #fff;
  box-shadow: inset 0 0 0 4px #1d1a1a;
}

.arsenal-bundle-offer__content {
  flex: 1;
  min-width: 0;
}

.arsenal-bundle-offer__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.arsenal-bundle-offer__title {
  margin: 0;
  color: #1d1a1a;
}

.arsenal-bundle-offer__badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: #1d1a1a;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.4;
}

.arsenal-bundle-offer__price-block {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.arsenal-bundle-offer__price-now {
  margin: 0;
  color: #1d1a1a;
  line-height: 1.2;
}

.arsenal-bundle-offer__price-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  color: #666666;
  line-height: 1.3;
}

.arsenal-bundle-offer__price-was {
  text-decoration: line-through;
}

.arsenal-bundle-offer__price-save {
  color: #e30613;
  font-weight: 600;
}

.arsenal-bundle-offer__sizes {
  display: none;
  padding: 0 0.75rem 0.625rem;
}

.arsenal-bundle-offer:has(input[type="radio"]:checked) .arsenal-bundle-offer__sizes {
  display: block;
}

.arsenal-bundle-offer__sizes-inner {
  padding-top: 0.5rem;
  border-top: 1px solid #eceff1;
}

.arsenal-bundle-offer__sizes-title {
  display: block;
  margin: 0 0 0.375rem;
  color: #666;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.arsenal-bundle-offer__size-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.arsenal-bundle-offer__size-row {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: start;
  gap: 0.375rem;
}

.arsenal-bundle-offer__size-row--single {
  grid-template-columns: 1fr;
}

.arsenal-bundle-offer__item-tag {
  margin: 0;
  padding-top: 1.125rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.arsenal-bundle-offer__variant-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.375rem;
  min-width: 0;
}

.arsenal-bundle-offer__size-field {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.arsenal-bundle-offer__size-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: #888;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arsenal-bundle-offer__select {
  width: 100%;
  min-height: 2rem;
  padding: 0.2rem 1.5rem 0.2rem 0.375rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.2rem;
  background-color: #fff;
  color: #1d1a1a;
  font-size: 0.75rem;
  line-height: 1.25;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231d1a1a'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 0 1 1.06.02L10 11.168l3.71-3.94a.75.75 0 1 1 1.08 1.04l-4.25 4.5a.75.75 0 0 1-1.08 0l-4.25-4.5a.75.75 0 0 1 .02-1.06Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.3rem center;
  background-size: 0.875rem;
  transition: border-color 0.15s ease;
}

@media (max-width: 359px) {
  .arsenal-bundle-offer__variant-fields {
    grid-template-columns: 1fr 1fr;
  }

  .arsenal-bundle-offer__size-field:last-child {
    grid-column: 1 / -1;
  }

  .arsenal-bundle-offer__size-row:not(.arsenal-bundle-offer__size-row--single) {
    grid-template-columns: 1fr;
  }

  .arsenal-bundle-offer__item-tag {
    padding-top: 0;
    margin-bottom: 0.125rem;
  }
}

.arsenal-bundle-offer__select:hover {
  border-color: #1d1a1a;
}

.arsenal-bundle-offer__select:focus {
  outline: 2px solid #1d1a1a;
  outline-offset: 1px;
  border-color: #1d1a1a;
}

.arsenal-bundle-offer:not(:has(input[type="radio"]:checked)) .arsenal-bundle-offer__head:hover {
  background: #f6f6f6;
  border-radius: 0.5rem;
}

.arsenal-bundle-offer:not(:has(input[type="radio"]:checked)) .arsenal-bundle-offer__title,
.arsenal-bundle-offer:not(:has(input[type="radio"]:checked)) .arsenal-bundle-offer__price-now {
  color: #4a4a4a;
}

/* Mantém o seletor nativo da PDP no DOM (para sync), mas fora da vista */
#sizeVariantsSlot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
