.abdc-input,
.abdc-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.abdc-input:focus,
.abdc-select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.15);
}

.abdc-input::placeholder {
    color: #9ca3af;
}

.abdc-input--error {
    border-color: #ef4444;
}

.abdc-input--error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.abdc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: inherit;
}

.abdc-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.abdc-btn--primary {
    background: #2271b1;
    color: #fff;
}

.abdc-btn--primary:hover:not(:disabled) {
    background: #1c5f8a;
}

.abdc-btn--secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.abdc-btn--secondary:hover:not(:disabled) {
    background: #e5e7eb;
}

.abdc-btn--check {
    background: #2271b1;
    color: #fff;
    padding: 10px 16px;
}

.abdc-btn--check:hover:not(:disabled) {
    background: #1c5f8a;
}

.abdc-btn--danger {
    background: #dc2626;
    color: #fff;
}

.abdc-btn--danger:hover:not(:disabled) {
    background: #b91c1c;
}

.abdc-spin {
    animation: abdc-spin 1s linear infinite;
}

@keyframes abdc-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.abdc-address-book {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.abdc-address-book__header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.abdc-address-book__empty {
    padding: 40px 20px;
    text-align: center;
}

.abdc-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.abdc-empty-state svg {
    color: #d1d5db;
}

.abdc-empty-state h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #374151;
}

.abdc-empty-state p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.abdc-address-book__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.abdc-address-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.abdc-address-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.abdc-address-card--delivering {
    border-color: #2271b1;
    background: #f0f7fc;
}

.abdc-address-card__type {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.abdc-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    color: #4b5563;
    background: #f3f4f6;
}

.abdc-type-badge--home {
    background: #dbeafe;
    color: #1e40af;
}

.abdc-type-badge--work {
    background: #e0e7ff;
    color: #3730a3;
}

.abdc-type-badge--other {
    background: #fef3c7;
    color: #92400e;
}

.abdc-type-badge--selected {
    background: #2271b1;
    color: #fff;
}

.abdc-address-card__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.abdc-address-card__name {
    font-size: 15px;
    color: #1f2937;
}

.abdc-address-card__name strong {
    font-weight: 600;
}

.abdc-address-card__address {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.abdc-addr-line {
    display: block;
}

.abdc-addr-line+.abdc-addr-line {
    margin-top: 2px;
}

.abdc-addr-part::after {
    content: ', ';
}

.abdc-addr-part:last-child::after {
    content: '';
}

.landmark {
    font-style: italic;
    color: #9ca3af;
}

.abdc-address-card__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.abdc-address-card__phone svg {
    flex-shrink: 0;
}

.abdc-address-card__actions {
    position: absolute;
    top: 12px;
    right: 12px;
}

.abdc-address-card__menu-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #9ca3af;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.abdc-address-card__menu-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.abdc-address-card__menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    z-index: 100;
    display: none;
}

.abdc-address-card__menu.show {
    display: block;
}

.abdc-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.abdc-menu-item:hover {
    background: #f9fafb;
}

.abdc-menu-item:first-child {
    border-radius: 6px 6px 0 0;
}

.abdc-menu-item:last-child {
    border-radius: 0 0 6px 6px;
}

.abdc-menu-item--delete {
    color: #dc2626;
}

.abdc-menu-item--delete:hover {
    background: #fef2f2;
}

.abdc-menu-item--delivering {
    color: #2271b1;
}

.abdc-menu-item--delivering:hover {
    background: #f0f7fc;
}

.abdc-form-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    max-width: 640px;
    margin: 0 auto;
}

.abdc-address-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.abdc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.abdc-back-link:hover {
    color: #374151;
}

.abdc-page-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.abdc-address-form-container {
    padding: 20px;
}

.abdc-form-section {
    margin-bottom: 24px;
}

.abdc-form-section:last-child {
    margin-bottom: 0;
}

.abdc-form-section__title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.abdc-form__grid {
    display: grid;
    gap: 16px;
}

.abdc-form__grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.abdc-form__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 480px) {
    .abdc-form__grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .abdc-form__grid--3.abdc-form__grid--contact,
    .abdc-form__grid--3.abdc-form__grid--location {
        grid-template-columns: 1fr;
    }
}

.abdc-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.abdc-form__label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.abdc-required {
    color: #dc2626;
    margin-left: 2px;
}

.abdc-form__optional {
    font-weight: 400;
    color: #9ca3af;
}

.abdc-form__error {
    font-size: 12px;
    color: #dc2626;
    min-height: 16px;
}

.abdc-form__footer {
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.abdc-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.abdc-address-type-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 480px) {
    .abdc-address-type-selector {
        grid-template-columns: 1fr;
    }
}

.abdc-type-card {
    position: relative;
    cursor: pointer;
}

.abdc-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.abdc-type-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s;
}

.abdc-type-card:hover .abdc-type-card__content {
    border-color: #d1d5db;
}

.abdc-type-card--selected .abdc-type-card__content {
    border-color: #2271b1;
    background: #f0f7fc;
}

.abdc-type-card__content svg {
    color: #6b7280;
}

.abdc-type-card--selected .abdc-type-card__content svg {
    color: #2271b1;
}

.abdc-type-card__content span {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.abdc-checkout-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.abdc-checkout-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    text-align: center;
}

.abdc-checkout-empty__icon {
    color: #d1d5db;
}

.abdc-checkout-empty p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.abdc-checkout-selected {
    background: #f9fafb;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px;
}

.abdc-checkout-selected__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.abdc-checkout-selected__header h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.abdc-checkout-selected__header svg {
    color: #6b7280;
}

.abdc-checkout-change-btn {
    font-size: 13px;
    color: #2271b1;
    text-decoration: none;
    transition: color 0.2s;
}

.abdc-checkout-change-btn:hover {
    color: #1c5f8a;
}

.abdc-checkout-selected__card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 14px;
}

.abdc-checkout-selected__name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.abdc-checkout-selected__name {
    font-size: 15px;
    color: #1f2937;
}

.abdc-checkout-selected__address {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 6px;
}

.abdc-checkout-selected__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.abdc-checkout-selected__phone svg {
    flex-shrink: 0;
}

.abdc-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
}

.abdc-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: abdc-toast-in 0.3s ease-out;
}

@keyframes abdc-toast-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

.abdc-toast--success {
    border-left: 4px solid #10b981;
}

.abdc-toast--error {
    border-left: 4px solid #ef4444;
}

.abdc-toast--info {
    border-left: 4px solid #3b82f6;
}

.abdc-toast__icon {
    flex-shrink: 0;
}

.abdc-toast--success .abdc-toast__icon {
    color: #10b981;
}

.abdc-toast--error .abdc-toast__icon {
    color: #ef4444;
}

.abdc-toast--info .abdc-toast__icon {
    color: #3b82f6;
}

.abdc-toast__content {
    flex: 1;
}

.abdc-toast__title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px;
}

.abdc-toast__message {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.abdc-toast__close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s;
}

.abdc-toast__close:hover {
    color: #374151;
}

.abdc-ajax-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.abdc-ajax-modal.show {
    opacity: 1;
    visibility: visible;
}

.abdc-ajax-modal__content {
    background: #fff;
    border-radius: 8px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.abdc-ajax-modal.show .abdc-ajax-modal__content {
    transform: scale(1);
}

.abdc-ajax-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7280;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.abdc-ajax-modal__close:hover {
    background: #f3f4f6;
    color: #374151;
}

.abdc-ajax-modal__close svg {
    width: 20px;
    height: 20px;
}

.abdc-address-selection-list {
    padding: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.abdc-address-selection-list .abdc-address-card {
    margin-bottom: 12px;
}

.abdc-address-selection-list .abdc-address-card:last-child {
    margin-bottom: 0;
}

.abdc-select-address-btn {
    margin-top: 16px;
    width: 100%;
}

.abdc-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.abdc-loader svg {
    color: #2271b1;
}

.abdc-address-book__header .abdc-btn svg,
.abdc-address-book .abdc-empty-state .abdc-btn svg,
.abdc-checkout-empty .abdc-btn svg {
    width: 16px;
    height: 16px;
}

button.abdc-address-card__menu-btn svg {
    width: 20px;
    height: 20px;
}

.abdc-form__footer .abdc-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 480px) {
    .abdc-address-book__grid {
        grid-template-columns: 1fr;
    }

    .abdc-form__grid--2 {
        grid-template-columns: 1fr;
    }

    .abdc-address-form-header {
        flex-wrap: wrap;
    }

    .abdc-address-form-header .abdc-page-title {
        order: -1;
        width: 100%;
        margin-bottom: 8px;
    }

    .abdc-form__actions {
        flex-direction: column;
    }

    .abdc-form__actions .abdc-btn {
        width: 100%;
    }

    .abdc-toast-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* CSS Variables */
:root {
    --abdc-primary: #2271b1;
    --abdc-border-radius: 8px;
}

/* Form field error state */
.abdc-form__field.error .abdc-input,
.abdc-form__field.error .abdc-select {
    border-color: #ef4444;
}

.abdc-form__field.error .abdc-input:focus,
.abdc-form__field.error .abdc-select:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Selector Card (Checkout Address Selection) */
.abdc-selector-card {
    display: flex;
    gap: 12px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: var(--abdc-border-radius, 8px);
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.abdc-selector-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.abdc-selector-card--selected {
    border-color: var(--abdc-primary, #2271b1);
    background: #f0f7fc;
}

.abdc-selector-card__radio {
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.abdc-selector-card__radio input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.abdc-selector-card__radio-dot {
    display: none;
}

.abdc-selector-card__content {
    flex: 1;
    min-width: 0;
}

.abdc-selector-card__name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.abdc-selector-card__name-row strong {
    font-size: 15px;
    color: #1f2937;
}

.abdc-selector-card__address {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 4px;
}

.abdc-selector-card__phone {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.abdc-selector-card__deliver-action {
    margin-top: 12px;
}

/* Checkout Add Button */
.abdc-checkout-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 2px dashed var(--abdc-primary, #2271b1);
    color: var(--abdc-primary, #2271b1);
    border-radius: var(--abdc-border-radius, 8px);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.abdc-checkout-add-btn:hover {
    background: #f0f7fc;
    border-style: solid;
}

/* Checkout Selector List */
.abdc-checkout-selector__list {
    display: flex;
    flex-direction: column;
}

/* Select Address Page */
.abdc-select-address-page .abdc-address-form-container {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

/* Overlay Loading */
.abdc-overlay-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: transparent;
}

.abdc-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e5e5;
    border-top-color: var(--abdc-primary, #2271b1);
    border-radius: 50%;
    animation: abdc-spin 0.8s linear infinite;
}

/* Address Type Other Field */
.abdc-address-type-other {
    margin-top: 16px;
}

/* Input Group */
.abdc-input-group {
    position: relative;
    display: flex;
    align-items: stretch;
}

/* Button Loading State */
.abdc-btn--loading {
    position: relative;
    color: transparent !important;
}

.abdc-btn--loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: abdc-spin 0.6s linear infinite;
}

.abdc-product-delivery {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    margin-top: 14px;
    background: #fff;
}

.abdc-product-delivery__main {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.abdc-product-delivery__info {
    font-size: 14px;
    color: #1f2937;
    line-height: 1.45;
}

.abdc-product-delivery__change,
.abdc-product-delivery__open {
    border: 0;
    background: transparent;
    color: #2271b1;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

.abdc-product-delivery__open {
    margin-top: 8px;
    padding: 0;
}

.abdc-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9998;
}

.abdc-sheet-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.abdc-delivery-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(105%);
    transition: transform 0.28s ease;
    z-index: 9999;
    max-height: 82vh;
    overflow: hidden;
}

.abdc-delivery-sheet__title {
    margin: 0 40px 12px 0;
    font-size: 16px;
    line-height: 1.3;
    color: #111827;
}

.abdc-delivery-sheet.is-open {
    transform: translateY(0);
}

.abdc-delivery-sheet__handle {
    width: 52px;
    height: 6px;
    border-radius: 999px;
    background: #d1d5db;
    margin: 10px auto 4px;
}

.abdc-delivery-sheet__body {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    padding: 12px 16px 18px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.abdc-delivery-sheet__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7280;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.abdc-delivery-sheet__close:hover {
    background: #f3f4f6;
    color: #374151;
}

.abdc-delivery-sheet__close svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .abdc-delivery-sheet {
        left: 50%;
        right: auto;
        bottom: auto;
        top: 50%;
        width: min(680px, calc(100vw - 32px));
        max-height: min(80vh, 720px);
        border-radius: 14px;
        transform: translate(-50%, -45%) scale(0.98);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .abdc-delivery-sheet.is-open {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .abdc-delivery-sheet__handle {
        display: none;
    }

    .abdc-delivery-sheet__body {
        padding: 20px 20px 22px;
    }
}

@media (max-width: 767px) {
    .abdc-delivery-sheet {
        width: 100%;
        max-height: 82vh;
        border-radius: 16px 16px 0 0;
    }

    .abdc-delivery-sheet__body {
        padding: 12px 14px 18px;
    }
}

.abdc-delivery-address {
    width: 100%;
    text-align: left;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    cursor: pointer;
}

.abdc-delivery-address-card {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 10px;
}

.abdc-delivery-address-card .abdc-address-card__actions {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
}

.abdc-delivery-address-card .abdc-address-card__menu-btn {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.abdc-delivery-address-card .abdc-address-card__menu {
    right: 0;
    top: 34px;
    min-width: 110px;
}

.abdc-delivery-address-card .abdc-menu-item {
    width: 100%;
    text-align: left;
}

.abdc-delivery-address__name {
    display: block;
    font-weight: 600;
    color: #111827;
}

.abdc-delivery-address__meta {
    display: block;
    font-size: 13px;
    color: #4b5563;
    margin-top: 2px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
}

.abdc-delivery-sheet__pin-row {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.abdc-delivery-sheet__add {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #2271b1;
}

body.abdc-sheet-open {
    overflow: hidden;
}

.abdc-hidden {
    display: none !important;
}