/* [project]/component/VoucherInput.css [app-client] (css) */
.voucher-input-container {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 1rem 0;
  padding: 1rem;
}

.voucher-input-form {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.voucher-input-group {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.voucher-input {
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #ddd;
  border-radius: 4px;
  flex: 1;
  padding: .75rem;
  font-family: Courier New, monospace;
  font-size: .9rem;
}

.voucher-input:focus {
  border-color: #6b4f3e;
  outline: none;
  box-shadow: 0 0 0 2px #6b4f3e40;
}

.voucher-apply-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background-color: #6b4f3e;
  border: none;
  border-radius: 4px;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  transition: background-color .2s;
}

.voucher-apply-btn:hover:not(:disabled) {
  background-color: #5a3f32;
}

.voucher-apply-btn:disabled {
  cursor: not-allowed;
  opacity: .6;
  background-color: #a0a0a0;
}

.voucher-message {
  border-radius: 4px;
  padding: .5rem;
  font-size: .85rem;
  font-weight: 500;
  animation: .3s ease-in fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voucher-message.success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.voucher-message.error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.applied-voucher {
  flex-direction: column;
  gap: .5rem;
  animation: .3s ease-out slideIn;
  display: flex;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.voucher-info {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 1px solid #28a745;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  padding: .75rem;
  display: flex;
}

.voucher-details {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.voucher-code {
  color: #155724;
  letter-spacing: 1px;
  background-color: #ffffff80;
  border-radius: 3px;
  padding: .2rem .4rem;
  font-family: Courier New, monospace;
  font-size: .95rem;
  font-weight: bold;
  display: inline-block;
}

.voucher-name {
  color: #155724;
  font-size: .85rem;
  font-style: italic;
}

.voucher-discount {
  color: #28a745;
  margin-top: .25rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.voucher-remove-btn {
  color: #6c757d;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: .25rem;
  font-size: 1.5rem;
  transition: all .2s;
  display: flex;
}

.voucher-remove-btn:hover {
  color: #dc3545;
  background-color: #dc35451a;
  transform: rotate(90deg);
}

.voucher-success-message {
  color: #155724;
  text-align: center;
  background-color: #d4edda80;
  border-radius: 4px;
  padding: .5rem;
  font-size: .85rem;
  font-style: italic;
}

@media (width <= 768px) {
  .voucher-input-group {
    flex-direction: column;
  }

  .voucher-apply-btn {
    width: 100%;
  }

  .voucher-info {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .voucher-remove-btn {
    align-self: flex-end;
  }
}


/* [project]/app/[lang]/checkout/checkout.module.css [app-client] (css) */
.checkout-module__aa-wna__checkoutContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1rem 4rem;
}

.checkout-module__aa-wna__checkoutGrid {
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  display: grid;
}

@media (width <= 1024px) and (width >= 641px) {
  .checkout-module__aa-wna__checkoutGrid {
    grid-template-columns: 1fr;
  }

  .checkout-module__aa-wna__orderSummary {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media (width <= 640px) {
  .checkout-module__aa-wna__checkoutContainer {
    padding: 1rem .75rem 3rem;
  }

  .checkout-module__aa-wna__checkoutGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .checkout-module__aa-wna__orderSummary {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

.checkout-module__aa-wna__checkoutLeft {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.checkout-module__aa-wna__stepper {
  justify-content: space-between;
  margin-bottom: 1.5rem;
  display: flex;
  position: relative;
}

.checkout-module__aa-wna__stepperLine {
  background-color: var(--border-color, #e5e7eb);
  z-index: 1;
  height: 2px;
  position: absolute;
  top: 1.125rem;
  left: 2.5rem;
  right: 2.5rem;
}

.checkout-module__aa-wna__step {
  z-index: 2;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.checkout-module__aa-wna__stepCircle {
  border: 2px solid var(--border-color, #e5e7eb);
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: .5rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.checkout-module__aa-wna__stepLabel {
  color: var(--text-secondary, #6b7280);
  font-size: .875rem;
  font-weight: 500;
}

@media (width <= 640px) {
  .checkout-module__aa-wna__stepper {
    margin-bottom: 1.25rem;
  }

  .checkout-module__aa-wna__stepperLine {
    top: .875rem;
    left: 1.75rem;
    right: 1.75rem;
  }

  .checkout-module__aa-wna__stepCircle {
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: .25rem;
    font-size: .875rem;
  }

  .checkout-module__aa-wna__stepLabel {
    font-size: .75rem;
  }
}

.checkout-module__aa-wna__stepActive .checkout-module__aa-wna__stepCircle {
  background-color: var(--primary, #7c3aed);
  border-color: var(--primary, #7c3aed);
  color: #fff;
}

.checkout-module__aa-wna__stepActive .checkout-module__aa-wna__stepLabel {
  color: var(--text-primary, #111827);
  font-weight: 600;
}

.checkout-module__aa-wna__stepCompleted .checkout-module__aa-wna__stepCircle {
  background-color: var(--primary, #7c3aed);
  border-color: var(--primary, #7c3aed);
  color: #fff;
}

.checkout-module__aa-wna__stepCompleted .checkout-module__aa-wna__stepperLine {
  background-color: var(--primary, #7c3aed);
}

.checkout-module__aa-wna__card {
  border: 1px solid var(--border-color, #e5e7eb);
  background-color: #fff;
  border-radius: .75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px #0000000d;
}

.checkout-module__aa-wna__cardTitle {
  color: var(--text-primary, #111827);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

@media (width <= 640px) {
  .checkout-module__aa-wna__card {
    border-radius: .5rem;
    padding: 1rem;
  }

  .checkout-module__aa-wna__cardTitle {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
}

.checkout-module__aa-wna__formGroup {
  margin-bottom: 1.25rem;
}

.checkout-module__aa-wna__formLabel {
  color: var(--text-primary, #111827);
  margin-bottom: .5rem;
  font-weight: 500;
  display: block;
}

.checkout-module__aa-wna__formInput {
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: .5rem;
  width: 100%;
  padding: .75rem 1rem;
  font-size: 1rem;
  transition: border-color .2s;
}

.checkout-module__aa-wna__formInput:focus {
  border-color: var(--primary, #7c3aed);
  outline: none;
  box-shadow: 0 0 0 3px #7c3aed1a;
}

.checkout-module__aa-wna__formRow {
  gap: 1rem;
  display: flex;
}

.checkout-module__aa-wna__formRow .checkout-module__aa-wna__formGroup {
  flex: 1;
}

@media (width <= 640px) {
  .checkout-module__aa-wna__formGroup {
    margin-bottom: 1rem;
  }

  .checkout-module__aa-wna__formInput {
    padding: .625rem .875rem;
    font-size: .9rem;
  }

  .checkout-module__aa-wna__formRow {
    flex-direction: column;
    gap: .5rem;
  }
}

.checkout-module__aa-wna__authTabs {
  border-bottom: 2px solid var(--border-color, #e5e7eb);
  margin-bottom: 1.5rem;
  display: flex;
}

.checkout-module__aa-wna__authTab {
  color: var(--text-secondary, #6b7280);
  cursor: pointer;
  border-bottom: 2px solid #0000;
  margin-bottom: -2px;
  padding: .75rem 1.5rem;
  font-weight: 500;
}

.checkout-module__aa-wna__authTabActive {
  color: var(--primary, #7c3aed);
  border-bottom-color: var(--primary, #7c3aed);
  font-weight: 600;
}

@media (width <= 640px) {
  .checkout-module__aa-wna__authTabs {
    margin-bottom: 1rem;
  }

  .checkout-module__aa-wna__authTab {
    padding: .5rem 1rem;
    font-size: .9rem;
  }
}

.checkout-module__aa-wna__savedAddresses {
  margin-bottom: 1.5rem;
}

.checkout-module__aa-wna__addressCard {
  border: 1px solid var(--border-color, #e5e7eb);
  cursor: pointer;
  border-radius: .5rem;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  transition: all .2s;
  display: flex;
}

@media (width <= 640px) {
  .checkout-module__aa-wna__savedAddresses {
    margin-bottom: 1rem;
  }

  .checkout-module__aa-wna__addressCard {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: .75rem;
    padding: .75rem;
  }
}

.checkout-module__aa-wna__addressCard:hover, .checkout-module__aa-wna__addressCardSelected {
  border-color: var(--primary, #7c3aed);
  background-color: #7c3aed0d;
}

.checkout-module__aa-wna__addressRadio {
  margin-top: .25rem;
}

.checkout-module__aa-wna__addressDetails {
  flex: 1;
}

.checkout-module__aa-wna__addressName {
  margin-bottom: .25rem;
  font-weight: 600;
}

.checkout-module__aa-wna__addressLine {
  color: var(--text-secondary, #6b7280);
  margin: .25rem 0;
}

.checkout-module__aa-wna__defaultBadge {
  color: var(--primary, #7c3aed);
  background-color: #7c3aed1a;
  border-radius: .25rem;
  margin-top: .5rem;
  padding: .25rem .5rem;
  font-size: .75rem;
  font-weight: 500;
  display: inline-block;
}

.checkout-module__aa-wna__button {
  cursor: pointer;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.checkout-module__aa-wna__buttonPrimary {
  background-color: var(--primary, #7c3aed);
  color: #fff;
  border: none;
}

.checkout-module__aa-wna__buttonPrimary:hover {
  background-color: #6d28d9;
}

.checkout-module__aa-wna__buttonSecondary {
  color: var(--text-primary, #111827);
  border: 1px solid var(--border-color, #e5e7eb);
  background-color: #fff;
}

.checkout-module__aa-wna__buttonSecondary:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}

.checkout-module__aa-wna__buttonDisabled {
  opacity: .5;
  cursor: not-allowed;
}

.checkout-module__aa-wna__buttonDisabled:hover {
  background-color: var(--primary, #7c3aed);
}

.checkout-module__aa-wna__buttonsRow {
  justify-content: space-between;
  margin-top: 1.5rem;
  display: flex;
}

@media (width <= 640px) {
  .checkout-module__aa-wna__button {
    padding: .625rem 1.25rem;
    font-size: .9rem;
  }

  .checkout-module__aa-wna__buttonsRow {
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
  }

  @media (width <= 480px) {
    .checkout-module__aa-wna__buttonsRow {
      flex-direction: column;
    }

    .checkout-module__aa-wna__button {
      width: 100%;
    }
  }
}

.checkout-module__aa-wna__orderSummary {
  border: 1px solid var(--border-color, #e5e7eb);
  background-color: #fff;
  border-radius: .75rem;
  position: sticky;
  top: 2rem;
  box-shadow: 0 1px 3px #0000000d;
}

.checkout-module__aa-wna__orderSummaryHeader {
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  padding: 1.25rem;
}

.checkout-module__aa-wna__orderSummaryTitle {
  color: var(--text-primary, #111827);
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.checkout-module__aa-wna__orderSummaryContent {
  padding: 1.25rem;
}

@media (width <= 1024px) {
  .checkout-module__aa-wna__orderSummary {
    position: relative;
    top: 0;
  }
}

@media (width <= 640px) {
  .checkout-module__aa-wna__orderSummaryHeader {
    padding: 1rem;
  }

  .checkout-module__aa-wna__orderSummaryTitle {
    font-size: 1rem;
  }

  .checkout-module__aa-wna__orderSummaryContent {
    padding: 1rem;
  }
}

.checkout-module__aa-wna__summaryItems {
  margin-bottom: 1.25rem;
}

.checkout-module__aa-wna__summaryItem {
  border-bottom: 1px dashed var(--border-color, #e5e7eb);
  justify-content: space-between;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  display: flex;
}

.checkout-module__aa-wna__summaryItemName {
  color: var(--text-secondary, #6b7280);
  flex: 1;
  font-size: .875rem;
}

.checkout-module__aa-wna__summaryItemQuantity {
  color: var(--text-secondary, #6b7280);
  margin: 0 .75rem;
  font-size: .875rem;
}

.checkout-module__aa-wna__summaryRow {
  justify-content: space-between;
  margin-bottom: .75rem;
  font-size: .875rem;
  display: flex;
}

.checkout-module__aa-wna__summaryRowTotal {
  border-top: 2px solid var(--border-color, #e5e7eb);
  justify-content: space-between;
  margin-top: .75rem;
  padding-top: .75rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
}

@media (width <= 640px) {
  .checkout-module__aa-wna__summaryItems {
    margin-bottom: 1rem;
  }

  .checkout-module__aa-wna__summaryItem {
    margin-bottom: .5rem;
    padding-bottom: .5rem;
  }

  .checkout-module__aa-wna__summaryItemName {
    font-size: .8125rem;
  }

  .checkout-module__aa-wna__summaryItemQuantity {
    margin: 0 .5rem;
    font-size: .8125rem;
  }

  .checkout-module__aa-wna__summaryRow {
    margin-bottom: .5rem;
    font-size: .8125rem;
  }

  .checkout-module__aa-wna__summaryRowTotal {
    margin-top: .5rem;
    padding-top: .5rem;
    font-size: .9375rem;
  }
}

.checkout-module__aa-wna__summaryLabel {
  color: var(--text-secondary, #6b7280);
}

.checkout-module__aa-wna__summaryValue {
  color: var(--text-primary, #111827);
  font-weight: 500;
}

.checkout-module__aa-wna__summaryDiscount {
  color: #10b981;
}

.checkout-module__aa-wna__paymentSection {
  margin-top: 1.5rem;
}

.checkout-module__aa-wna__paymentHeader {
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.checkout-module__aa-wna__paymentIcon {
  color: var(--primary, #7c3aed);
}

.checkout-module__aa-wna__authSuccess {
  background-color: #f0fdf4;
  border-radius: .5rem;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  display: flex;
}

.checkout-module__aa-wna__authSuccessIcon {
  color: #10b981;
}

.checkout-module__aa-wna__loadingOverlay {
  z-index: 100;
  background-color: #fffc;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.checkout-module__aa-wna__loadingSpinner {
  border: 3px solid #7c3aed33;
  border-top-color: var(--primary, #7c3aed);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  animation: 1s linear infinite checkout-module__aa-wna__spin;
}

@keyframes checkout-module__aa-wna__spin {
  to {
    transform: rotate(360deg);
  }
}

.checkout-module__aa-wna__errorMessage {
  color: #ef4444;
  margin-top: .25rem;
  font-size: .875rem;
}

.checkout-module__aa-wna__errorsList {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.checkout-module__aa-wna__errorItem {
  color: #ef4444;
  margin: .25rem 0;
  font-size: .875rem;
}

.checkout-module__aa-wna__shippingInfo {
  background-color: #f0f9ff;
  border: 1px solid #e0f2fe;
  border-radius: .5rem;
  margin-top: 1rem;
  padding: 1rem;
}

.checkout-module__aa-wna__shippingCost {
  margin-top: .5rem;
  font-weight: 500;
}


/*# sourceMappingURL=_1d72cddc._.css.map*/