.shop-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.shop-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    flex: 0 0 10px;
}

.shop-status-badge.is-published {
    color: #166534;
    background: linear-gradient(135deg, #ecfdf3 0%, #d1fae5 100%);
    border-color: #86efac;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.12);
}

.shop-status-badge.is-published .shop-status-dot {
    background: #16a34a;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
    animation: shop-status-pulse 2s ease-in-out infinite;
}

.shop-status-badge.is-unpublished {
    color: #92400e;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-color: #fdba74;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.shop-status-badge.is-unpublished .shop-status-dot {
    background: #f97316;
}

@keyframes shop-status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
        transform: scale(1.08);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-status-badge,
    .shop-status-dot {
        animation: none !important;
        transition: none !important;
    }
}

.address-form {
    display: grid;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color, #222);
    margin: 0;
}

.form-control {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    background: #fff;
    box-sizing: border-box;
}

.form-control-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-field ul,
.form-field .form-error-message,
.form-field .invalid-feedback {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    color: #c62828;
}

.address-lines {
    display: grid;
    gap: 2px;
    margin-top: 6px;
}

.address-recipient {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
    color: var(--text);
}

.address-line {
    font-size: 13px;
    line-height: 1.2;
    color: var(--text-muted, #666);
}