/* =========================================
   Store Settings Page (Scoped Styling)
   Class prefix: .store-settings
========================================== */

.store-settings {
    --ss-primary-dark: #111827;
    --ss-primary-accent: #2563eb;
    --ss-success-color: #16a34a;
    --ss-warning-color: #d97706;
    --ss-info-color: #0284c7;
    --ss-border-color: #e5e7eb;
    --ss-bg-light: #f5f7fb;

    background: linear-gradient(135deg, #f5f7fb 0%, #eef1f6 100%);
    min-height: 100vh;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Card */
.store-settings .card {
    border: none;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.store-settings .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Heading */
.store-settings h4 {
    font-weight: 600;
    color: var(--ss-primary-dark);
}

/* Labels */
.store-settings .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #374151;
}

/* Inputs */
.store-settings .form-control {
    border-radius: 10px;
    border: 1px solid var(--ss-border-color);
    padding: 10px 12px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.store-settings .form-control:focus {
    border-color: var(--ss-primary-accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Checkbox */
.store-settings .form-check-input {
    cursor: pointer;
}

.store-settings .form-check-label {
    cursor: pointer;
    font-weight: 500;
}

/* Button */
.store-settings .btn-dark {
    background: var(--ss-primary-dark);
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.store-settings .btn-dark:hover {
    background: #000000;
    transform: translateY(-2px);
}

/* Alerts */
.store-settings .alert {
    border-radius: 12px;
    font-size: 0.9rem;
    padding: 15px;
}

.store-settings .alert-success {
    background-color: rgba(22, 163, 74, 0.08);
    color: var(--ss-success-color);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.store-settings .alert-info {
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--ss-info-color);
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.store-settings .alert-warning {
    background-color: rgba(217, 119, 6, 0.08);
    color: var(--ss-warning-color);
    border: 1px solid rgba(217, 119, 6, 0.2);
}

/* URL Box */
.store-settings .store-url-box {
    background: #f9fafb;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    word-break: break-all;
    border: 1px dashed var(--ss-border-color);
}

.store-settings .store-url-box a {
    text-decoration: none;
    color: var(--ss-primary-accent);
    font-weight: 500;
}

.store-settings .store-url-box a:hover {
    text-decoration: underline;
}

/* Small text */
.store-settings small.text-muted {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .store-settings .card {
        padding: 20px !important;
    }
}