.aside-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000001;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.aside-overlay.isActive {
  opacity: 1;
  visibility: visible;
}

.custom-aside {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 525px;
  height: 100dvh;
  z-index: 10000002;
  background: #fff;
  padding: 24px 8px 0px 24px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.custom-aside.isActive {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.custom-aside__wrapper {
  overflow-y: auto;
  height: 100%;
  padding: 0 12px 48px 0;
}
.custom-aside__wrapper::-webkit-scrollbar {
  width: 5px;
  border-radius: 16px;
}
.custom-aside__wrapper::-webkit-scrollbar-track {
  background: #e0e0e0;
}
.custom-aside__wrapper::-webkit-scrollbar-thumb {
  background: #757575;
}
.custom-aside__wrapper::-webkit-scrollbar-thumb:hover {
  background: #424242;
}
.custom-aside__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 24px;
}
.custom-aside__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.custom-aside__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #424242;
  margin-bottom: 16px;
}
.custom-aside__desc--sm {
  font-size: 0.75rem;
  font-weight: 400;
  color: #757575;
}
.custom-aside__adnotation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  font-size: 1rem;
  font-weight: 700;
  color: #757575;
  margin-bottom: 32px;
}
.custom-aside__editor {
  font-size: 1rem;
  font-weight: 500;
  color: #757575;
}
.custom-aside__editor p + p {
  margin-top: 16px;
}

.aside-product-available-immediately__description {
  margin-bottom: 16px;
}
.aside-product-available-immediately__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.aside-product-available-immediately__item {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}
.aside-product-available-immediately__toggle {
  display: none;
}
.aside-product-available-immediately__header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px auto;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  padding: 14px 16px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.aside-product-available-immediately__header:hover {
  background-color: #fafafa;
}
.aside-product-available-immediately__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 12px;
  color: #444;
  text-align: left;
}
.aside-product-available-immediately__attribute strong {
  font-weight: 600;
  color: #111;
}
.aside-product-available-immediately__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  padding-left: 16px;
  border-left: 2px solid #dcdcdc;
}
.aside-product-available-immediately__price .price {
  margin-bottom: 0;
}
.aside-product-available-immediately__price .discount-price {
  text-decoration: none;
  color: #b24646;
  font-size: 18px;
  font-weight: 800;
}
.aside-product-available-immediately__price .regular-price {
  text-decoration: line-through;
  color: #414141;
  font-size: 14px;
  font-weight: 500;
}
.aside-product-available-immediately__price .seba-wc-omnibus {
  display: none;
}
.aside-product-available-immediately__panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
  background-color: #fafafa;
}
.aside-product-available-immediately__image {
  padding: 16px;
}
.aside-product-available-immediately__image img {
  width: auto;
  border-radius: 6px;
  display: block;
  max-height: 300px;
  -ms-grid-column-align: center;
      justify-self: center;
}
.aside-product-available-immediately__toggle:checked + .aside-product-available-immediately__header + .aside-product-available-immediately__panel {
  max-height: 600px;
}
.aside-product-available-immediately__actions {
  padding: 0 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .aside-product-available-immediately__actions > :nth-child(1) {
    width: 100%;
  }
}
.aside-product-available-immediately__actions > :nth-child(2) {
  margin-left: auto;
}
.aside-product-available-immediately__stock-quantity {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #444;
}
.aside-product-available-immediately__stock-quantity span {
  font-weight: 700;
  display: contents;
}
.aside-product-available-immediately__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.aside-product-available-immediately__dot--green {
  background-color: #3a7416;
}
.aside-product-available-immediately__dot--orange {
  background-color: #F59E0B;
}
.aside-product-available-immediately__select {
  background: #3a7416;
}
.aside-product-available-immediately__add-to-cart, .aside-product-available-immediately__select {
  font-family: Montserrat, sans-serif;
  position: relative;
  padding: 8px 10px;
  font-size: 12px;
  color: #fff !important;
  text-transform: inherit;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aside-product-available-immediately__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.aside-product-available-immediately__icon svg {
  width: 18px;
  height: 18px;
}
.aside-product-available-immediately__select.is-loading {
  pointer-events: none;
  opacity: 0.2;
}
.aside-product-available-immediately__select.is-loading::after {
  content: "";
  width: 24px;
  height: 24px;
  border: 3px solid rgba(0, 0, 0, 0.4);
  border-top-color: #000;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
          animation: spin 0.8s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-available-immediately__badge {
    -webkit-animation: none;
            animation: none;
    background: #e8f5e9;
  }
  .aside-product-available-immediately__select.is-loading::after {
    -webkit-animation: none;
            animation: none;
  }
}
.summary-content:has(.product-available-immediately) .woocommerce-variation-availability {
  display: none;
}