/**
 * BizzSwatches - Getting Started Page Styles
 *
 * Modern, clean design for the Getting Started page.
 * No gradients used. Flat design with subtle animations.
 *
 * @package Bizzswatches
 * @since 1.0.0
 */

/* Container */
.bizzswatches-getting-started-wrap {
    max-width: 960px;
    margin: 20px auto;
    padding: 0 20px;
}

.bizzswatches-gs-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Hero Section */
.bizzswatches-gs-hero {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 48px 40px;
    text-align: center;
}

.bizzswatches-gs-hero-icon {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #2271b1;
    display: inline-block;
    margin-bottom: 16px;
    animation: bizzswatches-fade-in 0.6s ease-out;
}

.bizzswatches-gs-hero h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 12px;
    animation: bizzswatches-slide-up 0.5s ease-out;
}

.bizzswatches-gs-hero-desc {
    font-size: 16px;
    color: #646970;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 16px;
    animation: bizzswatches-slide-up 0.6s ease-out;
}

.bizzswatches-gs-hero-version {
    display: inline-block;
    background: #f0f0f1;
    color: #50575e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    animation: bizzswatches-fade-in 0.8s ease-out;
}

/* Quick Actions */
.bizzswatches-gs-quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.bizzswatches-gs-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    color: #1d2327;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.bizzswatches-gs-action-btn:hover {
    border-color: #2271b1;
    color: #2271b1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.bizzswatches-gs-action-btn:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

.bizzswatches-gs-action-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.bizzswatches-gs-action-primary {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.bizzswatches-gs-action-primary:hover {
    background: #135e96;
    border-color: #135e96;
    color: #fff;
}

/* Sections */
.bizzswatches-gs-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
}

.bizzswatches-gs-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bizzswatches-gs-section-title .dashicons {
    color: #2271b1;
    font-size: 22px;
    width: 22px;
    height: 22px;
}

/* Setup Steps */
.bizzswatches-gs-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.bizzswatches-gs-step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f1;
    animation: bizzswatches-slide-up 0.5s ease-out both;
}

.bizzswatches-gs-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bizzswatches-gs-step:first-child {
    padding-top: 0;
}

.bizzswatches-gs-step:nth-child(1) { animation-delay: 0.1s; }
.bizzswatches-gs-step:nth-child(2) { animation-delay: 0.2s; }
.bizzswatches-gs-step:nth-child(3) { animation-delay: 0.3s; }
.bizzswatches-gs-step:nth-child(4) { animation-delay: 0.4s; }
.bizzswatches-gs-step:nth-child(5) { animation-delay: 0.5s; }

.bizzswatches-gs-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #2271b1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
}

.bizzswatches-gs-step-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 8px;
}

.bizzswatches-gs-step-content p {
    font-size: 14px;
    color: #50575e;
    line-height: 1.6;
    margin: 0 0 8px;
}

.bizzswatches-gs-list {
    margin: 8px 0 12px;
    padding-left: 20px;
    list-style: disc;
}

.bizzswatches-gs-list li {
    font-size: 14px;
    color: #50575e;
    line-height: 1.6;
    margin-bottom: 4px;
}

.bizzswatches-gs-step-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #2271b1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.bizzswatches-gs-step-link:hover {
    color: #135e96;
}

.bizzswatches-gs-step-link .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.bizzswatches-gs-step-link:hover .dashicons {
    transform: translateX(3px);
}

/* Important Notes */
.bizzswatches-gs-notes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bizzswatches-gs-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f6f7f7;
    border-radius: 6px;
    border-left: 3px solid #2271b1;
    transition: background 0.2s ease;
}

.bizzswatches-gs-note:hover {
    background: #f0f0f1;
}

.bizzswatches-gs-note > .dashicons {
    color: #2271b1;
    font-size: 20px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bizzswatches-gs-note strong {
    display: block;
    font-size: 14px;
    color: #1d2327;
    margin-bottom: 4px;
}

.bizzswatches-gs-note p {
    font-size: 13px;
    color: #646970;
    line-height: 1.5;
    margin: 0;
}

/* Features Grid */
.bizzswatches-gs-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bizzswatches-gs-feature {
    padding: 24px 20px;
    background: #f6f7f7;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bizzswatches-gs-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.bizzswatches-gs-feature .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #2271b1;
    margin-bottom: 12px;
}

.bizzswatches-gs-feature h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 8px;
}

.bizzswatches-gs-feature p {
    font-size: 13px;
    color: #646970;
    line-height: 1.5;
    margin: 0;
}

/* Help Section */
.bizzswatches-gs-help-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bizzswatches-gs-help-link {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: #f6f7f7;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bizzswatches-gs-help-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    color: inherit;
}

.bizzswatches-gs-help-link .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #2271b1;
    flex-shrink: 0;
    margin-top: 2px;
}

.bizzswatches-gs-help-link strong {
    display: block;
    font-size: 14px;
    color: #1d2327;
    margin-bottom: 4px;
}

.bizzswatches-gs-help-link p {
    font-size: 13px;
    color: #646970;
    line-height: 1.4;
    margin: 0;
}

/* Animations */
@keyframes bizzswatches-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bizzswatches-slide-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 782px) {
    .bizzswatches-getting-started-wrap {
        padding: 0 10px;
    }

    .bizzswatches-gs-hero {
        padding: 32px 24px;
    }

    .bizzswatches-gs-hero h1 {
        font-size: 24px;
    }

    .bizzswatches-gs-section {
        padding: 24px 20px;
    }

    .bizzswatches-gs-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .bizzswatches-gs-help-links {
        grid-template-columns: 1fr;
    }

    .bizzswatches-gs-quick-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bizzswatches-gs-action-btn {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .bizzswatches-gs-features {
        grid-template-columns: 1fr;
    }

    .bizzswatches-gs-step {
        flex-direction: column;
        gap: 12px;
    }
}
