.aura-overlay {
  position: fixed;
  inset: 0;
  z-index: 999998;
  display: none;
  border: 0;
  background: rgba(13, 24, 36, .46);
}

.aura-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1000001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.aura-auth-modal.is-open {
  display: flex;
}

.aura-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 36, .58);
  border: 0;
}

.aura-auth-box {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(720px, calc(100vh - 32px));
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  color: #1d2a38;
  box-shadow: 0 28px 80px rgba(13, 24, 36, .28);
  padding: 28px;
}

.aura-auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid #e1eaec;
  border-radius: 50%;
  background: #fff;
  color: #1d2a38;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.aura-auth-copy span {
  display: block;
  color: #24aeb1;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.aura-auth-copy h2 {
  margin: 0 44px 10px 0;
  color: #1d2a38;
  font-size: 28px;
  line-height: 1.15;
}

.aura-auth-copy p {
  margin: 0 0 20px;
  color: #7d879c;
  line-height: 1.55;
}

.aura-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  border-radius: 8px;
  background: #f2f8f9;
  margin-bottom: 18px;
}

.aura-auth-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #526078;
  font-weight: 800;
  cursor: pointer;
}

.aura-auth-tabs button.is-active {
  background: #fff;
  color: #1d2a38;
  box-shadow: 0 6px 18px rgba(29, 42, 56, .08);
}

.aura-auth-form {
  display: none;
}

.aura-auth-form.is-active {
  display: grid;
  gap: 14px;
}

.aura-auth-form label,
.aura-address-form label {
  display: grid;
  gap: 7px;
  color: #1d2a38;
  font-weight: 700;
}

.aura-auth-form input,
.aura-address-form textarea {
  width: 100%;
  border: 1px solid #dfe8ea;
  border-radius: 6px;
  background: #fff;
  color: #1d2a38;
  font-size: 15px;
}

.aura-auth-form input {
  height: 50px;
  padding: 0 14px;
}

.aura-address-form textarea {
  min-height: 108px;
  padding: 12px 14px;
  resize: vertical;
}

.aura-auth-form button,
.aura-address-save {
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  background: #24aeb1;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.aura-auth-message,
.aura-account-runtime-message {
  min-height: 20px;
  color: #eb3a7b;
  font-size: 14px;
  line-height: 1.45;
}

.aura-account-runtime-message {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #f3fbfb;
  color: #1d2a38;
  border-left: 4px solid #24aeb1;
}

.aura-account-runtime-message.error {
  background: #fff5f8;
  border-left-color: #eb3a7b;
}

.aura-wishlist-product-img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 12px;
}

.aura-wishlist-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.aura-wishlist-actions button {
  border: 1px solid #e3eaec;
  border-radius: 6px;
  background: #fff;
  color: #eb3a7b;
  font-weight: 800;
  padding: 10px 14px;
  cursor: pointer;
}

.aura-address-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.aura-address-form[hidden] {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

.aura-drawer,
.aura-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  width: min(430px, 92vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #1d2a38;
  box-shadow: -18px 0 48px rgba(13, 24, 36, .18);
  transform: translateX(104%);
  transition: transform .24s ease;
}

.aura-menu-panel {
  left: 0;
  right: auto;
  transform: translateX(-104%);
}

.aura-drawer-open .aura-overlay,
.aura-menu-open .aura-overlay {
  display: block;
}

.aura-drawer-open .aura-drawer,
.aura-menu-open .aura-menu-panel {
  transform: translateX(0);
}

.aura-drawer-open .aura-whatsapp-float,
.aura-checkout-active .aura-whatsapp-float {
  display: none !important;
}

.aura-drawer__head,
.aura-drawer__foot {
  padding: 20px 22px;
  border-bottom: 1px solid #edf2f2;
}

.aura-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aura-drawer__head strong {
  color: #1d2a38;
  font-size: 22px;
}

.aura-drawer__head button {
  width: 38px;
  height: 38px;
  border: 1px solid #dfe8ea;
  border-radius: 50%;
  background: #fff;
  color: #1d2a38;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.aura-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 10px 22px;
}

.aura-drawer__foot {
  border-top: 1px solid #edf2f2;
  border-bottom: 0;
}

.aura-drawer-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #edf2f2;
}

.aura-drawer-item img,
.aura-drawer__placeholder {
  width: 72px;
  height: 72px;
  border: 1px solid #edf2f2;
  border-radius: 8px;
  object-fit: cover;
  background: #f6f8fa;
}

.aura-drawer-item strong,
.aura-check-row strong {
  display: block;
  color: #1d2a38;
  line-height: 1.25;
}

.aura-drawer-item span,
.aura-check-row span,
.aura-pay-box span {
  display: block;
  color: #7d879c;
  font-size: 13px;
  line-height: 1.4;
}

.aura-drawer-item em,
.aura-check-row em {
  color: #1d2a38;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.aura-mini-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.aura-mini-qty button,
.aura-check-row > button {
  min-width: 32px;
  min-height: 32px;
  border: 1px solid #dfe8ea;
  border-radius: 6px;
  background: #fff;
  color: #1d2a38;
  cursor: pointer;
}

.aura-mini-qty button:last-child,
.aura-check-row > button {
  padding: 0 10px;
  color: #eb3a7b;
}

.aura-drawer-total,
.aura-check-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: #1d2a38;
  font-size: 18px;
  font-weight: 800;
}

.aura-primary-link,
.aura-pay-button,
.aura-copy-button {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: #24aeb1;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
}

.aura-pay-button:disabled {
  opacity: .72;
  cursor: progress;
}

.aura-empty {
  padding: 34px 0;
  text-align: center;
}

.aura-empty strong {
  color: #1d2a38;
}

.aura-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000000;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #1d2a38;
  color: #fff;
  box-shadow: 0 16px 44px rgba(29, 42, 56, .24);
  font-size: 14px;
}

.add_to_wishlist.aura-wishlist-active,
.add_to_wishlist.aura-wishlist-active svg {
  color: #eb3a7b !important;
  fill: #eb3a7b !important;
  stroke: #eb3a7b !important;
}

.aura-menu-button {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 999997;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 26px rgba(13, 24, 36, .15);
  cursor: pointer;
}

.aura-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #1d2a38;
}

.aura-menu-panel nav {
  display: grid;
  gap: 6px;
  padding: 18px 22px;
}

.aura-menu-panel nav a {
  padding: 14px 0;
  border-bottom: 1px solid #edf2f2;
  color: #1d2a38;
  font-weight: 800;
  text-decoration: none;
}

.aura-checkout-host {
  width: 100%;
}

.aura-checkout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 16px 72px;
  text-align: left;
}

.aura-checkout h1 {
  margin: 0 0 24px;
  color: #1d2a38;
  font-size: 32px;
  line-height: 1.2;
}

.aura-checkout h2 {
  margin: 0 0 18px;
  color: #1d2a38;
  font-size: 20px;
}

.aura-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 28px;
  align-items: start;
}

.aura-checkout-card {
  min-width: 0;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 14px 38px rgba(29, 42, 56, .07);
}

.aura-check-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #edf2f2;
}

.aura-check-row img {
  width: 70px;
  height: 70px;
  border: 1px solid #edf2f2;
  border-radius: 8px;
  object-fit: cover;
}

.aura-check-total {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 2px solid #edf2f2;
}

.aura-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.aura-field span {
  color: #1d2a38;
  font-size: 13px;
  font-weight: 800;
}

.aura-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dfe8ea;
  border-radius: 6px;
  padding: 0 13px;
  background: #fff;
  color: #1d2a38;
}

.aura-pay-box {
  margin-top: 16px;
  border: 1px solid #d8f0f0;
  border-left: 4px solid #24aeb1;
  border-radius: 8px;
  background: #f6fbfb;
  padding: 16px;
  color: #526078;
  overflow-wrap: anywhere;
}

.aura-pay-error {
  border-color: #ffd7d7;
  border-left-color: #eb3a7b;
  background: #fff8fa;
}

.aura-pix-image {
  display: block;
  width: 220px;
  max-width: 100%;
  height: 220px;
  margin: 14px auto;
}

.aura-pix-copy {
  width: 100%;
  min-height: 96px;
  margin: 10px 0;
  border: 1px solid #dfe8ea;
  border-radius: 6px;
  padding: 10px;
  resize: vertical;
  color: #1d2a38;
  font-size: 12px;
}

.aura-copy-button {
  background: #1d2a38;
}

.aura-search-panel {
  position: fixed;
  z-index: 1000001;
  display: none;
  max-width: calc(100vw - 16px);
  max-height: min(360px, 62vh);
  overflow: auto;
  border: 1px solid #dfe8ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(13, 24, 36, .18);
}

.aura-search-panel.is-open {
  display: block;
}

.aura-search-result {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #edf2f2;
  color: #1d2a38 !important;
  text-decoration: none !important;
}

.aura-search-result:last-child {
  border-bottom: 0;
}

.aura-search-result:hover,
.aura-search-result:focus {
  background: #f6fbfb;
}

.aura-search-result img,
.aura-search-result span {
  width: 64px;
  height: 64px;
  border: 1px solid #edf2f2;
  border-radius: 8px;
  background: #f6f8fa;
}

.aura-search-result img {
  padding: 4px;
  object-fit: contain;
}

.aura-search-result strong {
  min-width: 0;
  overflow: hidden;
  color: #1d2a38;
  font-size: 14px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aura-search-result em {
  color: #7d879c;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.aura-search-empty,
.aura-search-archive-notice {
  padding: 14px 16px;
  color: #526078;
  font-size: 14px;
}

.aura-search-archive-notice {
  margin: 0 auto 18px;
  max-width: 1180px;
  border: 1px solid #d8f0f0;
  border-radius: 8px;
  background: #f6fbfb;
}

@media (max-width: 860px) {
  .aura-checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  body {
    overflow-x: hidden;
    touch-action: pan-x pan-y;
  }

  .aura-menu-button {
    display: block;
  }

  .elementor-menu-toggle {
    display: none !important;
  }

  .aura-whatsapp-float {
    top: auto !important;
    right: 18px !important;
    bottom: 86px !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }

  .aura-whatsapp-float span {
    display: none !important;
  }

  .aura-checkout {
    padding: 28px 8px 110px;
  }

  .aura-checkout h1 {
    font-size: 26px;
  }

  .aura-checkout-card {
    padding: 16px;
  }

  .aura-check-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .aura-check-row img {
    width: 64px;
    height: 64px;
  }

  .aura-check-row .aura-mini-qty,
  .aura-check-row em,
  .aura-check-row > button {
    grid-column: 2;
  }

  .aura-drawer-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .aura-drawer-item em {
    grid-column: 2;
  }

  .aura-search-panel {
    left: 8px !important;
    width: calc(100vw - 16px) !important;
  }

  .aura-search-result {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .aura-search-result img,
  .aura-search-result span {
    width: 58px;
    height: 58px;
  }

  .aura-search-result em {
    grid-column: 2;
  }
}
