.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;
}

.arsenal-pdp-variants {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.arsenal-pdp-variants__price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.arsenal-pdp-variants__price-now {
  margin: 0;
  color: #1d1a1a;
}

.arsenal-pdp-variants__price-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.arsenal-pdp-variants__price-was {
  color: #6b6b6b;
  text-decoration: line-through;
}

.arsenal-pdp-variants__price-save {
  color: #c41e3a;
  font-weight: 600;
}

.arsenal-pdp-variants__label {
  margin: 0.25rem 0 0;
  color: #1d1a1a;
}

.arsenal-pdp-variants__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.arsenal-pdp-variants__btn {
  min-width: 3rem;
  padding: 0.625rem 1rem;
  border: 1px solid #e1e1e1;
  border-radius: 0.375rem;
  background: #fff;
  color: #1d1a1a;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.arsenal-pdp-variants__btn:hover {
  border-color: #1d1a1a;
}

.arsenal-pdp-variants__btn:focus {
  outline: 2px solid #1d1a1a;
  outline-offset: 1px;
}

.arsenal-pdp-variants__btn[aria-pressed="true"] {
  border-color: #1d1a1a;
  background: #1d1a1a;
  color: #fff;
}

.arsenal-pdp-variants__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.arsenal-pdp-variants__label-row .arsenal-pdp-variants__label {
  margin: 0;
}

.arsenal-pdp-variants__size-chart-link {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.875rem;
  color: #1d1a1a;
  text-decoration: underline;
  cursor: pointer;
  flex-shrink: 0;
}

.arsenal-pdp-variants__size-chart-link:hover {
  color: #4a4a4a;
}

.arsenal-pdp-variants__size-chart-link:focus {
  outline: 2px solid #1d1a1a;
  outline-offset: 2px;
}

body.arsenal-size-chart-open {
  overflow: hidden;
}

.arsenal-size-chart-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.arsenal-size-chart-modal.is-open {
  display: flex;
}

.arsenal-size-chart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.arsenal-size-chart-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
  max-height: 90vh;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.arsenal-size-chart-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: #1d1a1a;
  cursor: pointer;
}

.arsenal-size-chart-modal__close:hover {
  background: #f6f6f6;
}

.arsenal-size-chart-modal__close:focus {
  outline: 2px solid #1d1a1a;
  outline-offset: 2px;
}

.arsenal-size-chart-modal__content {
  padding: 1.5rem 1.25rem 1.25rem;
}

.arsenal-size-chart-modal__title {
  margin: 0 2rem 1rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1d1a1a;
}

.arsenal-size-chart-modal__table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.arsenal-size-chart-modal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  color: #1d1a1a;
}

.arsenal-size-chart-modal__table th,
.arsenal-size-chart-modal__table td {
  padding: 0.5rem 0.625rem;
  border: 1px solid #e1e1e1;
  text-align: center;
  white-space: nowrap;
}

.arsenal-size-chart-modal__table th {
  background: #f6f6f6;
  font-weight: 600;
}

.arsenal-size-chart-modal__table td:first-child,
.arsenal-size-chart-modal__table th:first-child {
  text-align: left;
  font-weight: 600;
}

.js-skip-to-content {
  margin-bottom: 0.25rem;
}

.js-product-title {
  position: static;
  margin: 0;
  max-width: 100%;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 600;
}

.arsenal-pdp-variants__options--colors .arsenal-pdp-variants__btn {
  min-width: 7.75rem;
}

.arsenal-pdp-purchase-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  margin-top: 0.5rem;
}

.arsenal-pdp-add-to-bag-fallback,
.arsenal-pdp-apple-pay-fallback {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.arsenal-pdp-add-to-bag-fallback:disabled,
.arsenal-pdp-apple-pay-fallback:disabled {
  background: #c8c8c8;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}

.arsenal-pdp-apple-pay-fallback:disabled svg {
  opacity: 0.6;
}

.arsenal-pdp-add-to-bag-fallback {
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.arsenal-pdp-apple-pay-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #000;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.arsenal-pdp-apple-pay-fallback span {
  display: block;
  line-height: 1;
}

.arsenal-pdp-apple-pay-fallback svg {
  display: block;
  flex-shrink: 0;
  margin-bottom: 4px;
}
